content
stringlengths 1
1.04M
| input_ids
sequencelengths 1
774k
| ratio_char_token
float64 0.38
22.9
| token_count
int64 1
774k
|
---|---|---|---|
"""This module creates a Pygame surface from a source surface that
has "end caps" on its corners. The caps remain unscaled in the
destination surface and the rest is scaled/tiled.
This was inspired by Android's NinePatch and iOS'
resizableImageWithCapInsets
"""
import pygame
AUTHOR = 'Brian Hammond <[email protected]>'
LICENSE = 'MIT'
COPYRIGHT = 'Copyright (C) 2012 Fictorial LLC'
__version__ = '1.0.0'
def resize_with_caps(src, dst_size, cap_insets=None, grow='scale'):
"""Stretch nine-grid source surface to surface of desired size.
src
The source surface.
dst_size
The destination surface size (width, height). If height is
0 maintains aspect ratio of source surface.
cap_insets
The size of each of the 4 end caps (left, top, right,
bottom).
If None, the left and right end caps are taken as 1/2 the
source surface width; and, the top and bottom end caps are
taken as 1/2 the source surface height. In this case it's
expected that the center stretchy part is 1x1 pixel.
grow
The method used to grow portions of the source image that
are not end caps. The default is 'scale' which means the
relevant source surface portions are scaled before being
copied to the destination surface. The other option is
'tile' which instead tiles the relevant source surface
portions into the destination surface.
Source and destination surfaces are laid out as follows.
A B C
D E F
G H I
A, C, G, and I are the end caps; B and H stretch horizontally;
D and F stretch vertically; and E stretches in both directions.
Returns the destination surface.
"""
# s:source, d:destination,
# c:cap, m:middle/stretchable portion
# l:left, t:top, b:bottom, r:right
# w:width, h:height
sw, sh = src.get_size()
if cap_insets is None:
assert sw % 2 == 1 and sh % 2 == 1
cl, cr = sw // 2
ct, cb = sh // 2
else:
cl, ct, cr, cb = cap_insets
dw, dh = dst_size
if dh == 0:
dh = int(sh * dw / float(sw))
dst = pygame.surface.Surface((dw, dh), pygame.SRCALPHA, 32)
smw = sw - cl - cr
smh = sh - cb - ct
dmw = dw - cl - cr
dmh = dh - cb - ct
r = pygame.Rect
# render caps: A, C, G, I in that order
dst.blit(src, r(0, 0, cl, ct), r(0, 0, cl, ct))
dst.blit(src, r(dw - cr, 0, cr, ct), r(sw - cr, 0, cr, ct))
dst.blit(src, r(0, dh - cb, cl, cb), r(0, sh - cb, cl, cb))
dst.blit(src, r(dw - cr, dh - cb, cr, cb), r(sw - cr, sh - cb, cr, cb))
# extract subsurfaces from src for growable portions
B = src.subsurface(r(cl, 0, smw, ct))
D = src.subsurface(r(0, ct, cl, smh))
E = src.subsurface(r(cl, ct, smw, smh))
F = src.subsurface(r(sw - cr, ct, cr, smh))
H = src.subsurface(r(cl, sh - cb, smw, cb))
if grow == 'scale' or grow == 'stretch':
sc = pygame.transform.smoothscale
dst.blit(sc(B, (dmw, ct)), (cl, 0))
dst.blit(sc(D, (cl, dmh)), (0, ct))
dst.blit(sc(E, (dmw, dmh)), (cl, ct))
dst.blit(sc(F, (cr, dmh)), (dw - cr, ct))
dst.blit(sc(H, (dmw, cb)), (cl, dh - cb))
elif grow == 'tile':
n_across = dmw // smw
rem_px_across = dmw - n_across * smw
n_down = dmh // smh
rem_px_down = dmh - n_down * smh
render_across(B, 0, ct)
render_across(H, dh - smh, cb)
render_down(D, 0, cl)
render_down(F, dw - smw, cr)
y = ct
for i in range(int(n_down)):
render_across(E, y, smh)
y += smh
if rem_px_down > 0:
x = cl
for i in range(int(n_across)):
dst.blit(E, (x, y), r(0, 0, smw, rem_px_down))
x += smw
if rem_px_across > 0:
dst.blit(E, (x, y), r(0, 0, rem_px_across, rem_px_down))
return dst
if __name__ == '__main__':
pygame.init()
screen = pygame.display.set_mode((640, 800))
title = 'L: sources; R: stretch, tile, tile w/ leftovers, stretched button'
pygame.display.set_caption(title)
template = pygame.image.load('template.png').convert_alpha()
template_cap_insets = (24, 24, 24, 24)
template_tiled = resize_with_caps(template, (24 * 15, 24 * 9),
template_cap_insets, 'tile')
template_tiled1 = resize_with_caps(template, (24 * 7 + 4, 24 * 6 + 6),
template_cap_insets, 'tile')
template_stretched = resize_with_caps(template, (24 * 15, 24 * 9),
template_cap_insets, 'stretch')
#button = pygame.image.load('button.png').convert_alpha()
#button_stretched = resize_with_caps(button, (450, 120), (10, 9), 'scale')
button = pygame.image.load('textfield.png').convert_alpha()
button_cap_insets = (1, 6, 1, 4)
button_stretched = resize_with_caps(button, (450, 120),
button_cap_insets, 'scale')
clock = pygame.time.Clock()
running = True
while running:
dt = clock.tick(4) / 1000.0
for event in pygame.event.get():
if event.type == pygame.QUIT:
running = False
if event.type == pygame.KEYDOWN and event.key == pygame.K_ESCAPE:
running = False
if not running:
break
screen.fill((255, 255, 255))
screen.blit(template, (10, 10))
screen.blit(template_stretched, (150, 10))
screen.blit(template_tiled, (150, 24 * 9 + 20))
screen.blit(template_tiled1, (150, 2 * 24 * 9 + 30))
screen.blit(button, (10, 640))
screen.blit(button_stretched, (150, 640))
pygame.display.flip()
| [
37811,
1212,
8265,
8075,
257,
9485,
6057,
4417,
422,
257,
2723,
4417,
326,
198,
10134,
366,
437,
11022,
1,
319,
663,
14371,
13,
383,
11022,
3520,
28594,
3021,
287,
262,
220,
198,
16520,
1883,
4417,
290,
262,
1334,
318,
27464,
14,
83,
3902,
13,
198,
198,
1212,
373,
7867,
416,
5565,
338,
16431,
33952,
290,
8969,
6,
198,
411,
13821,
5159,
3152,
15610,
20376,
1039,
198,
198,
37811,
198,
198,
11748,
12972,
6057,
628,
198,
32,
24318,
1581,
796,
705,
24761,
26649,
1279,
65,
4484,
31,
69,
713,
5132,
13,
785,
29,
6,
198,
43,
2149,
24290,
796,
705,
36393,
6,
198,
34,
3185,
38162,
9947,
796,
705,
15269,
357,
34,
8,
2321,
376,
713,
5132,
11419,
6,
628,
198,
834,
9641,
834,
796,
705,
16,
13,
15,
13,
15,
6,
628,
198,
4299,
47558,
62,
4480,
62,
27979,
7,
10677,
11,
29636,
62,
7857,
11,
1451,
62,
1040,
1039,
28,
14202,
11,
1663,
11639,
9888,
6,
2599,
198,
220,
220,
220,
37227,
39181,
5193,
12,
25928,
2723,
4417,
284,
4417,
286,
10348,
2546,
13,
628,
220,
220,
220,
12351,
628,
220,
220,
220,
220,
220,
220,
220,
383,
2723,
4417,
13,
628,
220,
220,
220,
29636,
62,
7857,
628,
220,
220,
220,
220,
220,
220,
220,
383,
10965,
4417,
2546,
357,
10394,
11,
6001,
737,
220,
1002,
6001,
318,
198,
220,
220,
220,
220,
220,
220,
220,
657,
16047,
4843,
8064,
286,
2723,
4417,
13,
628,
220,
220,
220,
1451,
62,
1040,
1039,
628,
220,
220,
220,
220,
220,
220,
220,
383,
2546,
286,
1123,
286,
262,
604,
886,
11022,
357,
9464,
11,
1353,
11,
826,
11,
198,
220,
220,
220,
220,
220,
220,
220,
4220,
737,
628,
220,
220,
220,
220,
220,
220,
220,
1002,
6045,
11,
262,
1364,
290,
826,
886,
11022,
389,
2077,
355,
352,
14,
17,
262,
198,
220,
220,
220,
220,
220,
220,
220,
2723,
4417,
9647,
26,
290,
11,
262,
1353,
290,
4220,
886,
11022,
389,
198,
220,
220,
220,
220,
220,
220,
220,
2077,
355,
352,
14,
17,
262,
2723,
4417,
6001,
13,
554,
428,
1339,
340,
338,
198,
220,
220,
220,
220,
220,
220,
220,
2938,
326,
262,
3641,
7539,
88,
636,
318,
352,
87,
16,
17465,
13,
628,
220,
220,
220,
1663,
628,
220,
220,
220,
220,
220,
220,
220,
383,
2446,
973,
284,
1663,
16690,
286,
262,
2723,
2939,
326,
198,
220,
220,
220,
220,
220,
220,
220,
389,
407,
886,
11022,
13,
220,
383,
4277,
318,
705,
9888,
6,
543,
1724,
262,
198,
220,
220,
220,
220,
220,
220,
220,
5981,
2723,
4417,
16690,
389,
27464,
878,
852,
198,
220,
220,
220,
220,
220,
220,
220,
18984,
284,
262,
10965,
4417,
13,
220,
383,
584,
3038,
318,
198,
220,
220,
220,
220,
220,
220,
220,
705,
40927,
6,
543,
2427,
19867,
262,
5981,
2723,
4417,
198,
220,
220,
220,
220,
220,
220,
220,
16690,
656,
262,
10965,
4417,
13,
628,
220,
220,
220,
8090,
290,
10965,
16649,
389,
8104,
503,
355,
5679,
13,
628,
220,
220,
220,
220,
220,
220,
220,
317,
347,
327,
198,
220,
220,
220,
220,
220,
220,
220,
360,
412,
376,
198,
220,
220,
220,
220,
220,
220,
220,
402,
367,
314,
628,
220,
220,
220,
317,
11,
327,
11,
402,
11,
290,
314,
389,
262,
886,
11022,
26,
347,
290,
367,
7539,
36774,
26,
198,
220,
220,
220,
360,
290,
376,
7539,
31677,
26,
290,
412,
23687,
287,
1111,
11678,
13,
628,
220,
220,
220,
16409,
262,
10965,
4417,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
1303,
264,
25,
10459,
11,
288,
25,
16520,
1883,
11,
198,
220,
220,
220,
1303,
269,
25,
11128,
11,
285,
25,
27171,
14,
301,
22592,
540,
6903,
198,
220,
220,
220,
1303,
300,
25,
9464,
11,
256,
25,
4852,
11,
275,
25,
22487,
11,
374,
25,
3506,
198,
220,
220,
220,
1303,
266,
25,
10394,
11,
289,
25,
17015,
628,
220,
220,
220,
1509,
11,
427,
796,
12351,
13,
1136,
62,
7857,
3419,
628,
220,
220,
220,
611,
1451,
62,
1040,
1039,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
6818,
1509,
4064,
362,
6624,
352,
290,
427,
4064,
362,
6624,
352,
198,
220,
220,
220,
220,
220,
220,
220,
537,
11,
1067,
796,
1509,
3373,
362,
198,
220,
220,
220,
220,
220,
220,
220,
269,
83,
11,
269,
65,
796,
427,
3373,
362,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
537,
11,
269,
83,
11,
1067,
11,
269,
65,
796,
1451,
62,
1040,
1039,
628,
220,
220,
220,
43756,
11,
34590,
796,
29636,
62,
7857,
198,
220,
220,
220,
611,
34590,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
34590,
796,
493,
7,
1477,
1635,
43756,
1220,
12178,
7,
2032,
4008,
628,
220,
220,
220,
29636,
796,
12972,
6057,
13,
42029,
13,
14214,
2550,
19510,
67,
86,
11,
34590,
828,
12972,
6057,
13,
50,
7397,
1847,
47,
7801,
11,
3933,
8,
628,
220,
220,
220,
895,
86,
796,
1509,
532,
537,
532,
1067,
198,
220,
220,
220,
895,
71,
796,
427,
532,
269,
65,
532,
269,
83,
198,
220,
220,
220,
288,
76,
86,
796,
43756,
532,
537,
532,
1067,
198,
220,
220,
220,
288,
76,
71,
796,
34590,
532,
269,
65,
532,
269,
83,
628,
220,
220,
220,
374,
796,
12972,
6057,
13,
45474,
628,
220,
220,
220,
1303,
8543,
11022,
25,
317,
11,
327,
11,
402,
11,
314,
287,
326,
1502,
628,
220,
220,
220,
29636,
13,
2436,
270,
7,
10677,
11,
374,
7,
15,
11,
657,
11,
537,
11,
269,
83,
828,
374,
7,
15,
11,
657,
11,
537,
11,
269,
83,
4008,
198,
220,
220,
220,
29636,
13,
2436,
270,
7,
10677,
11,
374,
7,
67,
86,
532,
1067,
11,
657,
11,
1067,
11,
269,
83,
828,
374,
7,
2032,
532,
1067,
11,
657,
11,
1067,
11,
269,
83,
4008,
198,
220,
220,
220,
29636,
13,
2436,
270,
7,
10677,
11,
374,
7,
15,
11,
34590,
532,
269,
65,
11,
537,
11,
269,
65,
828,
374,
7,
15,
11,
427,
532,
269,
65,
11,
537,
11,
269,
65,
4008,
198,
220,
220,
220,
29636,
13,
2436,
270,
7,
10677,
11,
374,
7,
67,
86,
532,
1067,
11,
34590,
532,
269,
65,
11,
1067,
11,
269,
65,
828,
374,
7,
2032,
532,
1067,
11,
427,
532,
269,
65,
11,
1067,
11,
269,
65,
4008,
628,
220,
220,
220,
1303,
7925,
6352,
333,
32186,
422,
12351,
329,
1663,
540,
16690,
628,
220,
220,
220,
347,
796,
12351,
13,
7266,
42029,
7,
81,
7,
565,
11,
657,
11,
895,
86,
11,
269,
83,
4008,
198,
220,
220,
220,
360,
796,
12351,
13,
7266,
42029,
7,
81,
7,
15,
11,
269,
83,
11,
537,
11,
895,
71,
4008,
198,
220,
220,
220,
412,
796,
12351,
13,
7266,
42029,
7,
81,
7,
565,
11,
269,
83,
11,
895,
86,
11,
895,
71,
4008,
198,
220,
220,
220,
376,
796,
12351,
13,
7266,
42029,
7,
81,
7,
2032,
532,
1067,
11,
269,
83,
11,
1067,
11,
895,
71,
4008,
198,
220,
220,
220,
367,
796,
12351,
13,
7266,
42029,
7,
81,
7,
565,
11,
427,
532,
269,
65,
11,
895,
86,
11,
269,
65,
4008,
628,
220,
220,
220,
611,
1663,
6624,
705,
9888,
6,
393,
1663,
6624,
705,
301,
22592,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
629,
796,
12972,
6057,
13,
35636,
13,
5796,
5226,
9888,
198,
220,
220,
220,
220,
220,
220,
220,
29636,
13,
2436,
270,
7,
1416,
7,
33,
11,
357,
36020,
86,
11,
269,
83,
36911,
357,
565,
11,
657,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
29636,
13,
2436,
270,
7,
1416,
7,
35,
11,
357,
565,
11,
288,
76,
71,
36911,
357,
15,
11,
269,
83,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
29636,
13,
2436,
270,
7,
1416,
7,
36,
11,
357,
36020,
86,
11,
288,
76,
71,
36911,
357,
565,
11,
269,
83,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
29636,
13,
2436,
270,
7,
1416,
7,
37,
11,
357,
6098,
11,
288,
76,
71,
36911,
357,
67,
86,
532,
1067,
11,
269,
83,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
29636,
13,
2436,
270,
7,
1416,
7,
39,
11,
357,
36020,
86,
11,
269,
65,
36911,
357,
565,
11,
34590,
532,
269,
65,
4008,
198,
220,
220,
220,
1288,
361,
1663,
6624,
705,
40927,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
299,
62,
330,
1214,
796,
288,
76,
86,
3373,
895,
86,
198,
220,
220,
220,
220,
220,
220,
220,
816,
62,
8416,
62,
330,
1214,
796,
288,
76,
86,
532,
299,
62,
330,
1214,
1635,
895,
86,
628,
220,
220,
220,
220,
220,
220,
220,
299,
62,
2902,
796,
288,
76,
71,
3373,
895,
71,
198,
220,
220,
220,
220,
220,
220,
220,
816,
62,
8416,
62,
2902,
796,
288,
76,
71,
532,
299,
62,
2902,
1635,
895,
71,
628,
220,
220,
220,
220,
220,
220,
220,
8543,
62,
330,
1214,
7,
33,
11,
657,
11,
269,
83,
8,
198,
220,
220,
220,
220,
220,
220,
220,
8543,
62,
330,
1214,
7,
39,
11,
34590,
532,
895,
71,
11,
269,
65,
8,
628,
220,
220,
220,
220,
220,
220,
220,
8543,
62,
2902,
7,
35,
11,
657,
11,
537,
8,
198,
220,
220,
220,
220,
220,
220,
220,
8543,
62,
2902,
7,
37,
11,
43756,
532,
895,
86,
11,
1067,
8,
628,
220,
220,
220,
220,
220,
220,
220,
331,
796,
269,
83,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
287,
2837,
7,
600,
7,
77,
62,
2902,
8,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8543,
62,
330,
1214,
7,
36,
11,
331,
11,
895,
71,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
331,
15853,
895,
71,
628,
220,
220,
220,
220,
220,
220,
220,
611,
816,
62,
8416,
62,
2902,
1875,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2124,
796,
537,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
287,
2837,
7,
600,
7,
77,
62,
330,
1214,
8,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
29636,
13,
2436,
270,
7,
36,
11,
357,
87,
11,
331,
828,
374,
7,
15,
11,
657,
11,
895,
86,
11,
816,
62,
8416,
62,
2902,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2124,
15853,
895,
86,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
816,
62,
8416,
62,
330,
1214,
1875,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
29636,
13,
2436,
270,
7,
36,
11,
357,
87,
11,
331,
828,
374,
7,
15,
11,
657,
11,
816,
62,
8416,
62,
330,
1214,
11,
816,
62,
8416,
62,
2902,
4008,
628,
220,
220,
220,
1441,
29636,
628,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
12972,
6057,
13,
15003,
3419,
198,
220,
220,
220,
3159,
796,
12972,
6057,
13,
13812,
13,
2617,
62,
14171,
19510,
31102,
11,
10460,
4008,
198,
220,
220,
220,
3670,
796,
705,
43,
25,
4237,
26,
371,
25,
7539,
11,
17763,
11,
17763,
266,
14,
1364,
13801,
11,
19110,
4936,
6,
198,
220,
220,
220,
12972,
6057,
13,
13812,
13,
2617,
62,
6888,
1159,
7,
7839,
8,
628,
220,
220,
220,
11055,
796,
12972,
6057,
13,
9060,
13,
2220,
10786,
28243,
13,
11134,
27691,
1102,
1851,
62,
26591,
3419,
628,
220,
220,
220,
11055,
62,
11128,
62,
1040,
1039,
796,
357,
1731,
11,
1987,
11,
1987,
11,
1987,
8,
628,
220,
220,
220,
11055,
62,
83,
3902,
796,
47558,
62,
4480,
62,
27979,
7,
28243,
11,
357,
1731,
1635,
1315,
11,
1987,
1635,
860,
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,
11055,
62,
11128,
62,
1040,
1039,
11,
705,
40927,
11537,
628,
220,
220,
220,
11055,
62,
83,
3902,
16,
796,
47558,
62,
4480,
62,
27979,
7,
28243,
11,
357,
1731,
1635,
767,
1343,
604,
11,
1987,
1635,
718,
1343,
718,
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,
11055,
62,
11128,
62,
1040,
1039,
11,
705,
40927,
11537,
628,
220,
220,
220,
11055,
62,
49729,
796,
47558,
62,
4480,
62,
27979,
7,
28243,
11,
357,
1731,
1635,
1315,
11,
1987,
1635,
860,
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,
220,
220,
11055,
62,
11128,
62,
1040,
1039,
11,
705,
301,
22592,
11537,
628,
220,
220,
220,
1303,
16539,
796,
12972,
6057,
13,
9060,
13,
2220,
10786,
16539,
13,
11134,
27691,
1102,
1851,
62,
26591,
3419,
198,
220,
220,
220,
1303,
16539,
62,
49729,
796,
47558,
62,
4480,
62,
27979,
7,
16539,
11,
357,
17885,
11,
7982,
828,
357,
940,
11,
860,
828,
705,
9888,
11537,
628,
220,
220,
220,
4936,
796,
12972,
6057,
13,
9060,
13,
2220,
10786,
5239,
3245,
13,
11134,
27691,
1102,
1851,
62,
26591,
3419,
198,
220,
220,
220,
4936,
62,
11128,
62,
1040,
1039,
796,
357,
16,
11,
718,
11,
352,
11,
604,
8,
198,
220,
220,
220,
4936,
62,
49729,
796,
47558,
62,
4480,
62,
27979,
7,
16539,
11,
357,
17885,
11,
7982,
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,
4936,
62,
11128,
62,
1040,
1039,
11,
705,
9888,
11537,
628,
220,
220,
220,
8801,
796,
12972,
6057,
13,
2435,
13,
44758,
3419,
198,
220,
220,
220,
2491,
796,
6407,
198,
220,
220,
220,
981,
2491,
25,
198,
220,
220,
220,
220,
220,
220,
220,
288,
83,
796,
8801,
13,
42298,
7,
19,
8,
1220,
8576,
13,
15,
628,
220,
220,
220,
220,
220,
220,
220,
329,
1785,
287,
12972,
6057,
13,
15596,
13,
1136,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1785,
13,
4906,
6624,
12972,
6057,
13,
10917,
2043,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2491,
796,
10352,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1785,
13,
4906,
6624,
12972,
6057,
13,
20373,
41925,
290,
1785,
13,
2539,
6624,
12972,
6057,
13,
42,
62,
1546,
33177,
36,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2491,
796,
10352,
628,
220,
220,
220,
220,
220,
220,
220,
611,
407,
2491,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2270,
628,
220,
220,
220,
220,
220,
220,
220,
3159,
13,
20797,
19510,
13381,
11,
14280,
11,
14280,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
3159,
13,
2436,
270,
7,
28243,
11,
357,
940,
11,
838,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
3159,
13,
2436,
270,
7,
28243,
62,
49729,
11,
357,
8628,
11,
838,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
3159,
13,
2436,
270,
7,
28243,
62,
83,
3902,
11,
357,
8628,
11,
1987,
1635,
860,
1343,
1160,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
3159,
13,
2436,
270,
7,
28243,
62,
83,
3902,
16,
11,
357,
8628,
11,
362,
1635,
1987,
1635,
860,
1343,
1542,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
3159,
13,
2436,
270,
7,
16539,
11,
357,
940,
11,
33759,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
3159,
13,
2436,
270,
7,
16539,
62,
49729,
11,
357,
8628,
11,
33759,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
12972,
6057,
13,
13812,
13,
2704,
541,
3419,
198
] | 2.147221 | 2,717 |
import psycopg2
#insert("Water Glass", 10, 5)
#delete("Wine Glass")
#update(12,6,"Water Glass")
#print(view())
#create_table()
#insert("Orange",10,15)
delete("Orange")
print(view()) | [
11748,
17331,
22163,
70,
17,
198,
198,
2,
28463,
7203,
19184,
12158,
1600,
838,
11,
642,
8,
628,
198,
2,
33678,
7203,
54,
500,
12158,
4943,
198,
198,
2,
19119,
7,
1065,
11,
21,
553,
19184,
12158,
4943,
198,
2,
4798,
7,
1177,
28955,
198,
198,
2,
17953,
62,
11487,
3419,
198,
2,
28463,
7203,
40141,
1600,
940,
11,
1314,
8,
198,
33678,
7203,
40141,
4943,
198,
4798,
7,
1177,
28955
] | 2.619718 | 71 |
# nuScenes dev-kit.
# Code written by Holger Caesar, 2018.
from typing import List, Dict, Any
import numpy as np
from pyquaternion import Quaternion
from nuscenes.eval.common.data_classes import EvalBox
from nuscenes.utils.data_classes import Box
DetectionBox = Any # Workaround as direct imports lead to cyclic dependencies.
def center_distance(gt_box: EvalBox, pred_box: EvalBox) -> float:
"""
L2 distance between the box centers (xy only).
:param gt_box: GT annotation sample.
:param pred_box: Predicted sample.
:return: L2 distance.
"""
return np.linalg.norm(np.array(pred_box.translation[:2]) - np.array(gt_box.translation[:2]))
def velocity_l2(gt_box: EvalBox, pred_box: EvalBox) -> float:
"""
L2 distance between the velocity vectors (xy only).
If the predicted velocities are nan, we return inf, which is subsequently clipped to 1.
:param gt_box: GT annotation sample.
:param pred_box: Predicted sample.
:return: L2 distance.
"""
return np.linalg.norm(np.array(pred_box.velocity) - np.array(gt_box.velocity))
def yaw_diff(gt_box: EvalBox, eval_box: EvalBox, period: float = 2*np.pi) -> float:
"""
Returns the yaw angle difference between the orientation of two boxes.
:param gt_box: Ground truth box.
:param eval_box: Predicted box.
:param period: Periodicity in radians for assessing angle difference.
:return: Yaw angle difference in radians in [0, pi].
"""
yaw_gt = quaternion_yaw(Quaternion(gt_box.rotation))
yaw_est = quaternion_yaw(Quaternion(eval_box.rotation))
return abs(angle_diff(yaw_gt, yaw_est, period))
def angle_diff(x: float, y: float, period: float):
"""
Get the smallest angle difference between 2 angles: the angle from y to x.
:param x: To angle.
:param y: From angle.
:param period: Periodicity in radians for assessing angle difference.
:return: <float>. Signed smallest between-angle difference in range (-pi, pi).
"""
# calculate angle difference, modulo to [0, 2*pi]
diff = (x - y + period / 2) % period - period / 2
if diff > np.pi:
diff = diff - (2 * np.pi) # shift (pi, 2*pi] to (-pi, 0]
return diff
def attr_acc(gt_box: DetectionBox, pred_box: DetectionBox) -> float:
"""
Computes the classification accuracy for the attribute of this class (if any).
If the GT class has no attributes or the annotation is missing attributes, we assign an accuracy of nan, which is
ignored later on.
:param gt_box: GT annotation sample.
:param pred_box: Predicted sample.
:return: Attribute classification accuracy (0 or 1) or nan if GT annotation does not have any attributes.
"""
if gt_box.attribute_name == '':
# If the class does not have attributes or this particular sample is missing attributes, return nan, which is
# ignored later. Note that about 0.4% of the sample_annotations have no attributes, although they should.
acc = np.nan
else:
# Check that label is correct.
acc = float(gt_box.attribute_name == pred_box.attribute_name)
return acc
def scale_iou(sample_annotation: EvalBox, sample_result: EvalBox) -> float:
"""
This method compares predictions to the ground truth in terms of scale.
It is equivalent to intersection over union (IOU) between the two boxes in 3D,
if we assume that the boxes are aligned, i.e. translation and rotation are considered identical.
:param sample_annotation: GT annotation sample.
:param sample_result: Predicted sample.
:return: Scale IOU.
"""
# Validate inputs.
sa_size = np.array(sample_annotation.size)
sr_size = np.array(sample_result.size)
assert all(sa_size > 0), 'Error: sample_annotation sizes must be >0.'
assert all(sr_size > 0), 'Error: sample_result sizes must be >0.'
# Compute IOU.
min_wlh = np.minimum(sa_size, sr_size)
volume_annotation = np.prod(sa_size)
volume_result = np.prod(sr_size)
intersection = np.prod(min_wlh) # type: float
union = volume_annotation + volume_result - intersection # type: float
iou = intersection / union
return iou
def quaternion_yaw(q: Quaternion) -> float:
"""
Calculate the yaw angle from a quaternion.
Note that this only works for a quaternion that represents a box in lidar or global coordinate frame.
It does not work for a box in the camera frame.
:param q: Quaternion of interest.
:return: Yaw angle in radians.
"""
# Project into xy plane.
v = np.dot(q.rotation_matrix, np.array([1, 0, 0]))
# Measure yaw using arctan.
yaw = np.arctan2(v[1], v[0])
return yaw
def boxes_to_sensor(boxes: List[EvalBox], pose_record: Dict, cs_record: Dict):
"""
Map boxes from global coordinates to the vehicle's sensor coordinate system.
:param boxes: The boxes in global coordinates.
:param pose_record: The pose record of the vehicle at the current timestamp.
:param cs_record: The calibrated sensor record of the sensor.
:return: The transformed boxes.
"""
boxes_out = []
for box in boxes:
# Create Box instance.
box = Box(box.translation, box.size, Quaternion(box.rotation))
# Move box to ego vehicle coord system.
box.translate(-np.array(pose_record['translation']))
box.rotate(Quaternion(pose_record['rotation']).inverse)
# Move box to sensor coord system.
box.translate(-np.array(cs_record['translation']))
box.rotate(Quaternion(cs_record['rotation']).inverse)
boxes_out.append(box)
return boxes_out
def cummean(x: np.array) -> np.array:
"""
Computes the cumulative mean up to each position in a NaN sensitive way
- If all values are NaN return an array of ones.
- If some values are NaN, accumulate arrays discording those entries.
"""
if sum(np.isnan(x)) == len(x):
# Is all numbers in array are NaN's.
return np.ones(len(x)) # If all errors are NaN set to error to 1 for all operating points.
else:
# Accumulate in a nan-aware manner.
sum_vals = np.nancumsum(x.astype(float)) # Cumulative sum ignoring nans.
count_vals = np.cumsum(~np.isnan(x)) # Number of non-nans up to each position.
return np.divide(sum_vals, count_vals, out=np.zeros_like(sum_vals), where=count_vals != 0)
| [
2,
14364,
3351,
18719,
1614,
12,
15813,
13,
198,
2,
6127,
3194,
416,
6479,
1362,
24088,
11,
2864,
13,
198,
198,
6738,
19720,
1330,
7343,
11,
360,
713,
11,
4377,
198,
198,
11748,
299,
32152,
355,
45941,
198,
6738,
12972,
421,
9205,
295,
1330,
2264,
9205,
295,
198,
198,
6738,
299,
16241,
18719,
13,
18206,
13,
11321,
13,
7890,
62,
37724,
1330,
26439,
14253,
198,
6738,
299,
16241,
18719,
13,
26791,
13,
7890,
62,
37724,
1330,
8315,
198,
198,
11242,
3213,
14253,
796,
4377,
220,
1303,
5521,
14145,
355,
1277,
17944,
1085,
284,
11700,
291,
20086,
13,
628,
198,
4299,
3641,
62,
30246,
7,
13655,
62,
3524,
25,
26439,
14253,
11,
2747,
62,
3524,
25,
26439,
14253,
8,
4613,
12178,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
406,
17,
5253,
1022,
262,
3091,
10399,
357,
5431,
691,
737,
198,
220,
220,
220,
1058,
17143,
308,
83,
62,
3524,
25,
7963,
23025,
6291,
13,
198,
220,
220,
220,
1058,
17143,
2747,
62,
3524,
25,
14322,
5722,
6291,
13,
198,
220,
220,
220,
1058,
7783,
25,
406,
17,
5253,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
45941,
13,
75,
1292,
70,
13,
27237,
7,
37659,
13,
18747,
7,
28764,
62,
3524,
13,
41519,
58,
25,
17,
12962,
532,
45941,
13,
18747,
7,
13655,
62,
3524,
13,
41519,
58,
25,
17,
60,
4008,
628,
198,
4299,
15432,
62,
75,
17,
7,
13655,
62,
3524,
25,
26439,
14253,
11,
2747,
62,
3524,
25,
26439,
14253,
8,
4613,
12178,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
406,
17,
5253,
1022,
262,
15432,
30104,
357,
5431,
691,
737,
198,
220,
220,
220,
1002,
262,
11001,
11555,
420,
871,
389,
15709,
11,
356,
1441,
1167,
11,
543,
318,
12412,
49305,
284,
352,
13,
198,
220,
220,
220,
1058,
17143,
308,
83,
62,
3524,
25,
7963,
23025,
6291,
13,
198,
220,
220,
220,
1058,
17143,
2747,
62,
3524,
25,
14322,
5722,
6291,
13,
198,
220,
220,
220,
1058,
7783,
25,
406,
17,
5253,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1441,
45941,
13,
75,
1292,
70,
13,
27237,
7,
37659,
13,
18747,
7,
28764,
62,
3524,
13,
626,
11683,
8,
532,
45941,
13,
18747,
7,
13655,
62,
3524,
13,
626,
11683,
4008,
628,
198,
4299,
331,
707,
62,
26069,
7,
13655,
62,
3524,
25,
26439,
14253,
11,
5418,
62,
3524,
25,
26439,
14253,
11,
2278,
25,
12178,
796,
362,
9,
37659,
13,
14415,
8,
4613,
12178,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
16409,
262,
331,
707,
9848,
3580,
1022,
262,
12852,
286,
734,
10559,
13,
198,
220,
220,
220,
1058,
17143,
308,
83,
62,
3524,
25,
13706,
3872,
3091,
13,
198,
220,
220,
220,
1058,
17143,
5418,
62,
3524,
25,
14322,
5722,
3091,
13,
198,
220,
220,
220,
1058,
17143,
2278,
25,
18581,
8467,
287,
2511,
1547,
329,
24171,
9848,
3580,
13,
198,
220,
220,
220,
1058,
7783,
25,
575,
707,
9848,
3580,
287,
2511,
1547,
287,
685,
15,
11,
31028,
4083,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
331,
707,
62,
13655,
796,
627,
9205,
295,
62,
88,
707,
7,
4507,
9205,
295,
7,
13655,
62,
3524,
13,
10599,
341,
4008,
198,
220,
220,
220,
331,
707,
62,
395,
796,
627,
9205,
295,
62,
88,
707,
7,
4507,
9205,
295,
7,
18206,
62,
3524,
13,
10599,
341,
4008,
628,
220,
220,
220,
1441,
2352,
7,
9248,
62,
26069,
7,
88,
707,
62,
13655,
11,
331,
707,
62,
395,
11,
2278,
4008,
628,
198,
4299,
9848,
62,
26069,
7,
87,
25,
12178,
11,
331,
25,
12178,
11,
2278,
25,
12178,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
3497,
262,
18197,
9848,
3580,
1022,
362,
18333,
25,
262,
9848,
422,
331,
284,
2124,
13,
198,
220,
220,
220,
1058,
17143,
2124,
25,
1675,
9848,
13,
198,
220,
220,
220,
1058,
17143,
331,
25,
3574,
9848,
13,
198,
220,
220,
220,
1058,
17143,
2278,
25,
18581,
8467,
287,
2511,
1547,
329,
24171,
9848,
3580,
13,
198,
220,
220,
220,
1058,
7783,
25,
1279,
22468,
28401,
36215,
18197,
1022,
12,
9248,
3580,
287,
2837,
13841,
14415,
11,
31028,
737,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
1303,
15284,
9848,
3580,
11,
953,
43348,
284,
685,
15,
11,
362,
9,
14415,
60,
198,
220,
220,
220,
814,
796,
357,
87,
532,
331,
1343,
2278,
1220,
362,
8,
4064,
2278,
532,
2278,
1220,
362,
198,
220,
220,
220,
611,
814,
1875,
45941,
13,
14415,
25,
198,
220,
220,
220,
220,
220,
220,
220,
814,
796,
814,
532,
357,
17,
1635,
45941,
13,
14415,
8,
220,
1303,
6482,
357,
14415,
11,
362,
9,
14415,
60,
284,
13841,
14415,
11,
657,
60,
628,
220,
220,
220,
1441,
814,
628,
198,
4299,
708,
81,
62,
4134,
7,
13655,
62,
3524,
25,
46254,
14253,
11,
2747,
62,
3524,
25,
46254,
14253,
8,
4613,
12178,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
3082,
1769,
262,
17923,
9922,
329,
262,
11688,
286,
428,
1398,
357,
361,
597,
737,
198,
220,
220,
220,
1002,
262,
7963,
1398,
468,
645,
12608,
393,
262,
23025,
318,
4814,
12608,
11,
356,
8333,
281,
9922,
286,
15709,
11,
543,
318,
198,
220,
220,
220,
9514,
1568,
319,
13,
198,
220,
220,
220,
1058,
17143,
308,
83,
62,
3524,
25,
7963,
23025,
6291,
13,
198,
220,
220,
220,
1058,
17143,
2747,
62,
3524,
25,
14322,
5722,
6291,
13,
198,
220,
220,
220,
1058,
7783,
25,
3460,
4163,
17923,
9922,
357,
15,
393,
352,
8,
393,
15709,
611,
7963,
23025,
857,
407,
423,
597,
12608,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
308,
83,
62,
3524,
13,
42348,
62,
3672,
6624,
10148,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1002,
262,
1398,
857,
407,
423,
12608,
393,
428,
1948,
6291,
318,
4814,
12608,
11,
1441,
15709,
11,
543,
318,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
9514,
1568,
13,
5740,
326,
546,
657,
13,
19,
4,
286,
262,
6291,
62,
34574,
602,
423,
645,
12608,
11,
3584,
484,
815,
13,
198,
220,
220,
220,
220,
220,
220,
220,
697,
796,
45941,
13,
12647,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
6822,
326,
6167,
318,
3376,
13,
198,
220,
220,
220,
220,
220,
220,
220,
697,
796,
12178,
7,
13655,
62,
3524,
13,
42348,
62,
3672,
6624,
2747,
62,
3524,
13,
42348,
62,
3672,
8,
198,
220,
220,
220,
1441,
697,
628,
198,
4299,
5046,
62,
72,
280,
7,
39873,
62,
1236,
14221,
25,
26439,
14253,
11,
6291,
62,
20274,
25,
26439,
14253,
8,
4613,
12178,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
770,
2446,
23008,
16277,
284,
262,
2323,
3872,
287,
2846,
286,
5046,
13,
198,
220,
220,
220,
632,
318,
7548,
284,
16246,
625,
6441,
357,
40,
2606,
8,
1022,
262,
734,
10559,
287,
513,
35,
11,
198,
220,
220,
220,
611,
356,
7048,
326,
262,
10559,
389,
19874,
11,
1312,
13,
68,
13,
11059,
290,
13179,
389,
3177,
10411,
13,
198,
220,
220,
220,
1058,
17143,
6291,
62,
1236,
14221,
25,
7963,
23025,
6291,
13,
198,
220,
220,
220,
1058,
17143,
6291,
62,
20274,
25,
14322,
5722,
6291,
13,
198,
220,
220,
220,
1058,
7783,
25,
21589,
314,
2606,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1303,
3254,
20540,
17311,
13,
198,
220,
220,
220,
473,
62,
7857,
796,
45941,
13,
18747,
7,
39873,
62,
1236,
14221,
13,
7857,
8,
198,
220,
220,
220,
19677,
62,
7857,
796,
45941,
13,
18747,
7,
39873,
62,
20274,
13,
7857,
8,
198,
220,
220,
220,
6818,
477,
7,
11400,
62,
7857,
1875,
657,
828,
705,
12331,
25,
6291,
62,
1236,
14221,
10620,
1276,
307,
1875,
15,
2637,
198,
220,
220,
220,
6818,
477,
7,
27891,
62,
7857,
1875,
657,
828,
705,
12331,
25,
6291,
62,
20274,
10620,
1276,
307,
1875,
15,
2637,
628,
220,
220,
220,
1303,
3082,
1133,
314,
2606,
13,
198,
220,
220,
220,
949,
62,
40989,
71,
796,
45941,
13,
39504,
7,
11400,
62,
7857,
11,
19677,
62,
7857,
8,
198,
220,
220,
220,
6115,
62,
1236,
14221,
796,
45941,
13,
1676,
67,
7,
11400,
62,
7857,
8,
198,
220,
220,
220,
6115,
62,
20274,
796,
45941,
13,
1676,
67,
7,
27891,
62,
7857,
8,
198,
220,
220,
220,
16246,
796,
45941,
13,
1676,
67,
7,
1084,
62,
40989,
71,
8,
220,
1303,
2099,
25,
12178,
198,
220,
220,
220,
6441,
796,
6115,
62,
1236,
14221,
1343,
6115,
62,
20274,
532,
16246,
220,
1303,
2099,
25,
12178,
198,
220,
220,
220,
1312,
280,
796,
16246,
1220,
6441,
628,
220,
220,
220,
1441,
1312,
280,
628,
198,
4299,
627,
9205,
295,
62,
88,
707,
7,
80,
25,
2264,
9205,
295,
8,
4613,
12178,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
27131,
378,
262,
331,
707,
9848,
422,
257,
627,
9205,
295,
13,
198,
220,
220,
220,
5740,
326,
428,
691,
2499,
329,
257,
627,
9205,
295,
326,
6870,
257,
3091,
287,
19789,
283,
393,
3298,
20435,
5739,
13,
198,
220,
220,
220,
632,
857,
407,
670,
329,
257,
3091,
287,
262,
4676,
5739,
13,
198,
220,
220,
220,
1058,
17143,
10662,
25,
2264,
9205,
295,
286,
1393,
13,
198,
220,
220,
220,
1058,
7783,
25,
575,
707,
9848,
287,
2511,
1547,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
1303,
4935,
656,
2124,
88,
6614,
13,
198,
220,
220,
220,
410,
796,
45941,
13,
26518,
7,
80,
13,
10599,
341,
62,
6759,
8609,
11,
45941,
13,
18747,
26933,
16,
11,
657,
11,
657,
60,
4008,
628,
220,
220,
220,
1303,
24291,
331,
707,
1262,
610,
310,
272,
13,
198,
220,
220,
220,
331,
707,
796,
45941,
13,
283,
310,
272,
17,
7,
85,
58,
16,
4357,
410,
58,
15,
12962,
628,
220,
220,
220,
1441,
331,
707,
628,
198,
4299,
10559,
62,
1462,
62,
82,
22854,
7,
29305,
25,
7343,
58,
36,
2100,
14253,
4357,
12705,
62,
22105,
25,
360,
713,
11,
50115,
62,
22105,
25,
360,
713,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
9347,
10559,
422,
3298,
22715,
284,
262,
4038,
338,
12694,
20435,
1080,
13,
198,
220,
220,
220,
1058,
17143,
10559,
25,
383,
10559,
287,
3298,
22715,
13,
198,
220,
220,
220,
1058,
17143,
12705,
62,
22105,
25,
383,
12705,
1700,
286,
262,
4038,
379,
262,
1459,
41033,
13,
198,
220,
220,
220,
1058,
17143,
50115,
62,
22105,
25,
383,
48050,
12694,
1700,
286,
262,
12694,
13,
198,
220,
220,
220,
1058,
7783,
25,
383,
14434,
10559,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
10559,
62,
448,
796,
17635,
198,
220,
220,
220,
329,
3091,
287,
10559,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
13610,
8315,
4554,
13,
198,
220,
220,
220,
220,
220,
220,
220,
3091,
796,
8315,
7,
3524,
13,
41519,
11,
3091,
13,
7857,
11,
2264,
9205,
295,
7,
3524,
13,
10599,
341,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
10028,
3091,
284,
19225,
4038,
6349,
1080,
13,
198,
220,
220,
220,
220,
220,
220,
220,
3091,
13,
7645,
17660,
32590,
37659,
13,
18747,
7,
3455,
62,
22105,
17816,
41519,
20520,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
3091,
13,
10599,
378,
7,
4507,
9205,
295,
7,
3455,
62,
22105,
17816,
10599,
341,
20520,
737,
259,
4399,
8,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
220,
10028,
3091,
284,
12694,
6349,
1080,
13,
198,
220,
220,
220,
220,
220,
220,
220,
3091,
13,
7645,
17660,
32590,
37659,
13,
18747,
7,
6359,
62,
22105,
17816,
41519,
20520,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
3091,
13,
10599,
378,
7,
4507,
9205,
295,
7,
6359,
62,
22105,
17816,
10599,
341,
20520,
737,
259,
4399,
8,
628,
220,
220,
220,
220,
220,
220,
220,
10559,
62,
448,
13,
33295,
7,
3524,
8,
628,
220,
220,
220,
1441,
10559,
62,
448,
628,
198,
4299,
10973,
32604,
7,
87,
25,
45941,
13,
18747,
8,
4613,
45941,
13,
18747,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
3082,
1769,
262,
23818,
1612,
510,
284,
1123,
2292,
287,
257,
11013,
45,
8564,
835,
198,
220,
220,
220,
532,
1002,
477,
3815,
389,
11013,
45,
1441,
281,
7177,
286,
3392,
13,
198,
220,
220,
220,
532,
1002,
617,
3815,
389,
11013,
45,
11,
29915,
26515,
1221,
1284,
883,
12784,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
2160,
7,
37659,
13,
271,
12647,
7,
87,
4008,
6624,
18896,
7,
87,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
1148,
477,
3146,
287,
7177,
389,
11013,
45,
338,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
45941,
13,
1952,
7,
11925,
7,
87,
4008,
220,
1303,
1002,
477,
8563,
389,
11013,
45,
900,
284,
4049,
284,
352,
329,
477,
5361,
2173,
13,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
6366,
388,
5039,
287,
257,
15709,
12,
9685,
5642,
13,
198,
220,
220,
220,
220,
220,
220,
220,
2160,
62,
12786,
796,
45941,
13,
77,
1192,
5700,
388,
7,
87,
13,
459,
2981,
7,
22468,
4008,
220,
1303,
27843,
13628,
2160,
15482,
299,
504,
13,
198,
220,
220,
220,
220,
220,
220,
220,
954,
62,
12786,
796,
45941,
13,
66,
5700,
388,
7,
93,
37659,
13,
271,
12647,
7,
87,
4008,
220,
1303,
7913,
286,
1729,
12,
77,
504,
510,
284,
1123,
2292,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
45941,
13,
7146,
485,
7,
16345,
62,
12786,
11,
954,
62,
12786,
11,
503,
28,
37659,
13,
9107,
418,
62,
2339,
7,
16345,
62,
12786,
828,
810,
28,
9127,
62,
12786,
14512,
657,
8,
198
] | 2.80307 | 2,280 |
# parsetab.py
# This file is automatically generated. Do not edit.
_tabversion = '3.2'
_lr_method = 'LALR'
_lr_signature = 'l\x16\x9efz%\xc1\x8b\xa8O\x02{\x0b\xd1qJ'
_lr_action_items = {'PEEK':([179,247,248,253,293,299,321,345,352,355,366,368,369,370,372,375,376,],[242,242,-95,-80,-79,-86,-94,-87,-92,-96,-88,-90,-97,-98,-91,-89,-93,]),'TRANS':([0,1,2,5,7,15,45,56,62,73,120,149,161,178,220,229,239,253,254,255,260,269,270,271,278,286,288,293,309,311,313,315,318,334,338,339,348,350,],[8,8,-29,-70,-34,-39,-65,-6,-7,-30,-64,-32,-31,-10,-33,-17,-14,-80,-41,-36,-38,-40,-35,-37,8,-18,-16,-79,-20,8,-19,-21,-13,-8,-15,-12,-9,-11,]),'STAR':([5,11,20,22,61,81,83,84,87,93,94,96,97,99,100,101,102,132,135,136,138,140,142,160,162,185,197,199,201,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,227,251,261,263,266,268,292,305,306,325,326,328,330,331,347,357,367,],[-70,33,-62,-61,-60,128,-136,-135,-112,-104,-101,-134,-103,-107,-139,147,-137,-106,147,147,147,-102,-130,-127,147,128,147,-108,-131,-138,147,147,-113,147,147,147,147,147,147,147,147,-114,147,147,33,147,-132,-110,-133,-105,147,-134,147,147,147,-109,-99,-111,147,-100,147,]),'SLASH':([5,20,22,61,83,84,87,93,94,96,97,99,100,101,102,132,135,136,138,140,142,160,162,197,199,201,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,251,261,263,266,268,292,305,306,325,326,328,330,331,347,357,367,],[-70,-62,-61,-60,-136,-135,-112,-104,-101,-134,-103,-107,-139,157,-137,-106,157,157,157,-102,-130,-127,157,157,-108,-131,-138,157,157,-113,157,157,157,157,157,157,157,157,-114,157,157,157,-132,-110,-133,-105,157,-134,157,157,157,-109,-99,-111,157,-100,157,]),'FLOATNUMBER':([54,88,89,91,98,103,105,133,143,145,146,147,148,150,151,152,153,154,155,156,157,158,159,179,243,247,248,253,262,264,265,267,293,298,299,300,321,329,345,352,355,361,366,368,369,370,372,375,376,],[83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,-95,-80,83,83,83,83,-79,83,-86,83,-94,83,-87,-92,-96,83,-88,-90,-97,-98,-91,-89,-93,]),'VOID':([0,1,2,5,7,15,45,56,62,73,120,149,161,172,178,220,229,230,233,235,237,238,239,253,254,255,260,269,270,271,278,286,288,293,309,311,313,315,318,334,338,339,348,350,],[3,3,-29,-70,-34,-39,-65,-6,-7,-30,-64,-32,-31,3,-10,-33,-17,3,-26,3,-27,-28,-14,-80,-41,-36,-38,-40,-35,-37,3,-18,-16,-79,-20,3,-19,-21,-13,-8,-15,-12,-9,-11,]),'GLOBAL':([0,1,2,5,7,15,45,56,62,73,120,149,161,178,220,229,239,253,254,255,260,269,270,271,278,286,288,293,309,311,313,315,318,334,338,339,348,350,],[4,4,-29,-70,-34,-39,-65,-6,-7,-30,-64,-32,-31,-10,-33,-17,-14,-80,-41,-36,-38,-40,-35,-37,4,-18,-16,-79,-20,4,-19,-21,-13,-8,-15,-12,-9,-11,]),'NUMBER':([54,88,89,91,98,103,105,123,133,143,145,146,147,148,150,151,152,153,154,155,156,157,158,159,179,188,243,247,248,253,262,264,265,267,293,298,299,300,321,329,345,352,355,361,366,368,369,370,372,375,376,],[84,84,84,84,84,84,84,182,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,84,257,84,84,-95,-80,84,84,84,84,-79,84,-86,84,-94,84,-87,-92,-96,84,-88,-90,-97,-98,-91,-89,-93,]),',':([5,20,22,32,44,45,46,48,49,55,58,59,60,61,63,64,65,68,75,77,78,81,83,84,87,93,94,96,97,99,100,102,116,120,121,126,127,130,132,135,136,140,142,160,163,164,171,180,181,182,189,191,194,197,199,200,201,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,241,256,257,258,261,263,266,268,272,279,281,285,302,305,320,323,324,327,328,330,331,336,351,353,356,357,],[-70,-62,-61,51,51,-65,67,71,51,51,51,51,51,-60,51,51,114,119,-78,124,125,129,-136,-135,-112,-104,-101,-134,-103,-107,-139,-137,174,-64,177,51,-51,51,-106,-129,-128,-102,-130,-127,51,51,232,-76,-75,-77,-52,129,-139,262,-108,265,-131,-138,-123,-126,-113,-122,-121,-119,-120,-116,-117,-118,-115,-114,-125,-124,51,-56,-54,-55,-132,-110,-133,-105,51,51,314,51,-53,329,340,342,343,346,-109,-99,-111,51,51,361,364,-100,]),'GT':([5,20,22,61,83,84,87,93,94,96,97,99,100,101,102,132,135,136,138,140,142,160,162,197,199,201,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,251,261,263,266,268,292,305,306,325,326,328,330,331,347,357,367,],[-70,-62,-61,-60,-136,-135,-112,-104,-101,-134,-103,-107,-139,155,-137,-106,155,155,155,-102,-130,-127,155,155,-108,-131,-138,155,-126,-113,155,155,-119,-120,-116,-117,-118,-115,-114,-125,155,155,-132,-110,-133,-105,155,-134,155,155,155,-109,-99,-111,155,-100,155,]),'NEW':([54,88,89,91,98,103,105,133,143,145,146,147,148,150,151,152,153,154,155,156,157,158,159,179,243,247,248,253,262,264,265,267,293,298,299,300,321,329,345,352,355,361,366,368,369,370,372,375,376,],[86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,-95,-80,86,86,86,86,-79,86,-86,86,-94,86,-87,-92,-96,86,-88,-90,-97,-98,-91,-89,-93,]),'RIGHTSHIFT':([5,20,22,61,83,84,87,93,94,96,97,99,100,101,102,132,135,136,138,140,142,160,162,197,199,201,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,251,261,263,266,268,292,305,306,325,326,328,330,331,347,357,367,],[-70,-62,-61,-60,-136,-135,-112,-104,-101,-134,-103,-107,-139,158,-137,-106,158,158,158,-102,-130,-127,158,158,-108,-131,-138,158,-126,-113,158,158,158,158,-116,158,158,-115,-114,-125,158,158,-132,-110,-133,-105,158,-134,158,158,158,-109,-99,-111,158,-100,158,]),'DOT':([5,20,22,61,83,84,87,93,94,96,97,99,100,102,132,140,199,201,205,261,263,266,268,305,328,330,331,357,],[-70,-62,-61,-60,-136,-135,134,-104,-101,-134,-103,-107,-139,-137,-106,-102,-108,-131,-138,-132,-110,-133,-105,-134,-109,-99,-111,-100,]),'LEFTSHIFT':([5,20,22,61,83,84,87,93,94,96,97,99,100,101,102,132,135,136,138,140,142,160,162,197,199,201,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,251,261,263,266,268,292,305,306,325,326,328,330,331,347,357,367,],[-70,-62,-61,-60,-136,-135,-112,-104,-101,-134,-103,-107,-139,146,-137,-106,146,146,146,-102,-130,-127,146,146,-108,-131,-138,146,-126,-113,146,146,146,146,-116,146,146,-115,-114,-125,146,146,-132,-110,-133,-105,146,-134,146,146,146,-109,-99,-111,146,-100,146,]),'INCR':([54,88,89,91,98,103,105,133,143,145,146,147,148,150,151,152,153,154,155,156,157,158,159,179,243,247,248,253,262,264,265,267,293,298,299,300,321,329,345,352,355,361,366,368,369,370,372,375,376,],[89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,-95,-80,89,89,89,89,-79,89,-86,89,-94,89,-87,-92,-96,89,-88,-90,-97,-98,-91,-89,-93,]),'LE':([5,20,22,61,83,84,87,93,94,96,97,99,100,101,102,132,135,136,138,140,142,160,162,197,199,201,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,251,261,263,266,268,292,305,306,325,326,328,330,331,347,357,367,],[-70,-62,-61,-60,-136,-135,-112,-104,-101,-134,-103,-107,-139,151,-137,-106,151,151,151,-102,-130,-127,151,151,-108,-131,-138,151,-126,-113,151,151,-119,-120,-116,-117,-118,-115,-114,-125,151,151,-132,-110,-133,-105,151,-134,151,151,151,-109,-99,-111,151,-100,151,]),'SEMI':([5,20,22,32,34,40,50,52,55,61,68,75,76,77,83,84,87,93,94,96,97,99,100,101,102,104,126,130,132,135,136,140,142,160,162,163,164,168,180,181,182,183,187,193,199,201,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,221,222,251,261,263,266,268,272,279,292,308,319,326,328,330,331,336,341,349,357,362,374,],[-70,-62,-61,-2,56,62,73,-72,-2,-60,117,-78,-71,-74,-136,-135,-112,-104,-101,-134,-103,-107,-139,149,-137,161,-2,-2,-106,-129,-128,-102,-130,-127,220,-2,-2,229,-76,-75,-77,-73,255,260,-108,-131,-138,-123,-126,-113,-122,-121,-119,-120,-116,-117,-118,-115,-114,-125,-124,270,271,299,-132,-110,-133,-105,-2,-2,321,332,339,345,-109,-99,-111,-2,352,358,-100,368,376,]),'STATIC_CAST':([54,88,89,91,98,103,105,133,143,145,146,147,148,150,151,152,153,154,155,156,157,158,159,179,243,247,248,253,262,264,265,267,293,298,299,300,321,329,345,352,355,361,366,368,369,370,372,375,376,],[90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,-95,-80,90,90,90,90,-79,90,-86,90,-94,90,-87,-92,-96,90,-88,-90,-97,-98,-91,-89,-93,]),')':([5,20,22,44,45,49,52,53,57,58,59,60,61,63,64,66,72,75,76,77,78,79,80,81,82,83,84,87,93,94,96,97,99,100,102,106,107,108,109,111,112,113,116,120,125,127,129,132,135,136,138,140,142,143,160,180,181,182,183,184,186,189,190,191,192,194,195,196,197,199,201,202,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,240,241,256,257,258,261,262,263,264,266,267,268,285,290,302,303,304,305,306,307,317,322,325,328,330,331,347,351,353,354,357,359,367,371,],[-70,-62,-61,-2,-65,-2,-72,-2,-2,-2,110,-2,-60,-2,-2,115,122,-78,-71,-74,-49,126,-50,-58,130,-136,-135,-112,-104,-101,-134,-103,-107,-139,-137,163,164,165,166,168,169,170,173,-64,-2,-51,-2,-106,-129,-128,201,-102,-130,-2,-127,-76,-75,-77,-73,-48,-50,-52,-57,-58,-59,-139,261,-85,-84,-108,-131,266,268,-138,-123,-126,-113,-122,-121,-119,-120,-116,-117,-118,-115,-114,-125,-124,289,-2,-56,-54,-55,-132,-2,-110,-2,-133,-2,-105,-2,319,-53,-83,328,-134,330,331,337,341,344,-109,-99,-111,357,-2,360,362,-100,365,373,374,]),'(':([4,5,8,9,10,17,18,19,23,24,26,32,35,54,85,88,89,90,91,92,98,100,103,105,133,143,145,146,147,148,150,151,152,153,154,155,156,157,158,159,179,199,203,242,243,245,246,247,248,249,250,252,253,262,264,265,267,293,298,299,300,321,329,345,352,355,361,366,368,369,370,372,375,376,],[28,-70,29,30,31,36,37,38,41,42,43,53,57,91,131,91,91,137,91,139,91,143,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,264,267,291,91,294,295,91,-95,297,298,301,-80,91,91,91,91,-79,91,-86,91,-94,91,-87,-92,-96,91,-88,-90,-97,-98,-91,-89,-93,]),'IS_INVALID':([54,88,89,91,98,103,105,133,143,145,146,147,148,150,151,152,153,154,155,156,157,158,159,179,243,247,248,253,262,264,265,267,293,298,299,300,321,329,345,352,355,361,366,368,369,370,372,375,376,],[92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,92,-95,-80,92,92,92,92,-79,92,-86,92,-94,92,-87,-92,-96,92,-88,-90,-97,-98,-91,-89,-93,]),'NE':([5,20,22,61,83,84,87,93,94,96,97,99,100,101,102,132,135,136,138,140,142,160,162,197,199,201,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,251,261,263,266,268,292,305,306,325,326,328,330,331,347,357,367,],[-70,-62,-61,-60,-136,-135,-112,-104,-101,-134,-103,-107,-139,148,-137,-106,148,148,148,-102,-130,-127,148,148,-108,-131,-138,148,-126,-113,-122,-121,-119,-120,-116,-117,-118,-115,-114,-125,148,148,-132,-110,-133,-105,148,-134,148,148,148,-109,-99,-111,148,-100,148,]),'OUT_PORT':([0,1,2,5,7,15,45,56,62,73,120,149,161,178,220,229,239,253,254,255,260,269,270,271,278,286,288,293,309,311,313,315,318,334,338,339,348,350,],[9,9,-29,-70,-34,-39,-65,-6,-7,-30,-64,-32,-31,-10,-33,-17,-14,-80,-41,-36,-38,-40,-35,-37,9,-18,-16,-79,-20,9,-19,-21,-13,-8,-15,-12,-9,-11,]),'ENQUEUE':([179,247,248,253,293,299,321,345,352,355,366,368,369,370,372,375,376,],[246,246,-95,-80,-79,-86,-94,-87,-92,-96,-88,-90,-97,-98,-91,-89,-93,]),'LT':([5,20,22,61,83,84,87,93,94,96,97,99,100,101,102,132,135,136,138,140,142,160,162,197,199,201,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,251,261,263,266,268,292,305,306,325,326,328,330,331,347,357,367,],[-70,-62,-61,-60,-136,-135,-112,-104,-101,-134,-103,-107,-139,154,-137,-106,154,154,154,-102,-130,-127,154,154,-108,-131,-138,154,-126,-113,154,154,-119,-120,-116,-117,-118,-115,-114,-125,154,154,-132,-110,-133,-105,154,-134,154,154,154,-109,-99,-111,154,-100,154,]),'DOUBLE_COLON':([5,20,22,61,95,100,],[-70,39,-61,-60,141,-61,]),'PLUS':([5,20,22,61,83,84,87,93,94,96,97,99,100,101,102,132,135,136,138,140,142,160,162,197,199,201,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,251,261,263,266,268,292,305,306,325,326,328,330,331,347,357,367,],[-70,-62,-61,-60,-136,-135,-112,-104,-101,-134,-103,-107,-139,156,-137,-106,156,156,156,-102,-130,-127,156,156,-108,-131,-138,156,156,-113,156,156,156,156,-116,156,156,-115,-114,156,156,156,-132,-110,-133,-105,156,-134,156,156,156,-109,-99,-111,156,-100,156,]),'DECR':([54,88,89,91,98,103,105,133,143,145,146,147,148,150,151,152,153,154,155,156,157,158,159,179,243,247,248,253,262,264,265,267,293,298,299,300,321,329,345,352,355,361,366,368,369,370,372,375,376,],[88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,-95,-80,88,88,88,88,-79,88,-86,88,-94,88,-87,-92,-96,88,-88,-90,-97,-98,-91,-89,-93,]),'ACTION':([0,1,2,5,7,15,45,56,62,73,120,149,161,178,220,229,239,253,254,255,260,269,270,271,278,286,288,293,309,311,313,315,318,334,338,339,348,350,],[10,10,-29,-70,-34,-39,-65,-6,-7,-30,-64,-32,-31,-10,-33,-17,-14,-80,-41,-36,-38,-40,-35,-37,10,-18,-16,-79,-20,10,-19,-21,-13,-8,-15,-12,-9,-11,]),':':([5,100,110,166,335,],[-70,144,167,224,144,]),'=':([5,74,],[-70,123,]),'ASSIGN':([5,20,22,32,55,61,83,84,87,93,94,96,97,99,100,102,127,132,135,136,140,142,160,189,199,201,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,251,261,263,266,268,279,328,330,331,357,],[-70,-62,-61,54,105,-60,-136,-135,-112,-104,-101,-134,-103,-107,-139,-137,188,-106,-129,-128,-102,-130,-127,259,-108,-131,-138,-123,-126,-113,-122,-121,-119,-120,-116,-117,-118,-115,-114,-125,-124,300,-132,-110,-133,-105,54,-109,-99,-111,-100,]),'$end':([0,1,2,5,6,7,12,13,15,25,27,45,56,62,73,120,149,161,178,220,229,239,253,254,255,260,269,270,271,286,288,293,309,313,315,318,334,338,339,348,350,],[-2,-2,-29,-70,0,-34,-5,-3,-39,-1,-4,-65,-6,-7,-30,-64,-32,-31,-10,-33,-17,-14,-80,-41,-36,-38,-40,-35,-37,-18,-16,-79,-20,-19,-21,-13,-8,-15,-12,-9,-11,]),'IDENT':([0,1,2,3,5,7,11,15,16,20,22,28,29,30,31,33,36,37,38,39,41,42,43,45,47,51,53,54,56,57,61,62,67,68,71,73,81,86,88,89,91,95,98,100,103,105,114,117,119,120,123,124,125,128,129,131,133,134,137,139,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,161,167,172,173,174,177,178,179,185,220,223,224,225,227,229,230,231,232,233,235,237,238,239,243,247,248,253,254,255,260,262,264,265,267,269,270,271,274,278,283,286,288,289,291,293,294,295,297,298,299,300,301,309,311,313,314,315,318,321,329,332,334,338,339,340,342,343,345,348,350,352,355,358,361,366,368,369,370,372,375,376,],[5,5,-29,-63,-70,-34,5,-39,5,-62,-61,5,5,5,5,5,5,5,5,5,5,5,5,-65,5,5,5,5,-6,5,-60,-7,5,5,5,-30,5,5,5,5,5,5,5,-61,5,5,5,5,5,-64,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,-32,5,5,5,5,5,5,5,5,5,5,-31,5,5,5,5,5,-10,5,5,-33,5,5,5,5,-17,5,5,5,-26,5,-27,-28,5,5,5,-95,-80,-41,-36,-38,5,5,5,5,-40,-35,-37,5,5,5,-18,-16,5,5,-79,5,5,5,5,-86,5,5,-20,5,-19,5,-21,5,-94,5,-44,-8,-15,-12,5,5,5,-87,-9,-11,-92,-96,-47,5,-88,-90,-97,-98,-91,-89,-93,]),'PROTOCOL':([0,1,2,5,7,15,45,56,62,73,120,149,161,178,220,229,239,253,254,255,260,269,270,271,278,286,288,293,309,311,313,315,318,334,338,339,348,350,],[14,14,-29,-70,-34,-39,-65,-6,-7,-30,-64,-32,-31,-10,-33,-17,-14,-80,-41,-36,-38,-40,-35,-37,14,-18,-16,-79,-20,14,-19,-21,-13,-8,-15,-12,-9,-11,]),'STRING':([14,21,51,54,88,89,91,98,103,105,123,124,133,143,145,146,147,148,150,151,152,153,154,155,156,157,158,159,179,188,243,247,248,253,259,262,264,265,267,293,298,299,300,321,329,345,346,352,355,361,364,366,368,369,370,372,375,376,],[34,40,75,96,96,96,96,96,96,96,181,75,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,256,96,96,-95,-80,302,96,96,305,96,-79,96,-86,96,-94,96,-87,356,-92,-96,96,371,-88,-90,-97,-98,-91,-89,-93,]),'STALL_AND_WAIT':([179,247,248,253,293,299,321,345,352,355,366,368,369,370,372,375,376,],[249,249,-95,-80,-79,-86,-94,-87,-92,-96,-88,-90,-97,-98,-91,-89,-93,]),'OOD':([54,88,89,91,98,103,105,133,143,145,146,147,148,150,151,152,153,154,155,156,157,158,159,179,243,247,248,253,262,264,265,267,293,298,299,300,321,329,345,352,355,361,366,368,369,370,372,375,376,],[99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,-95,-80,99,99,99,99,-79,99,-86,99,-94,99,-87,-92,-96,99,-88,-90,-97,-98,-91,-89,-93,]),'ENUM':([0,1,2,5,7,15,45,56,62,73,120,149,161,178,220,229,239,253,254,255,260,269,270,271,278,286,288,293,309,311,313,315,318,334,338,339,348,350,],[17,17,-29,-70,-34,-39,-65,-6,-7,-30,-64,-32,-31,-10,-33,-17,-14,-80,-41,-36,-38,-40,-35,-37,17,-18,-16,-79,-20,17,-19,-21,-13,-8,-15,-12,-9,-11,]),'ELSE':([253,293,355,],[-80,-79,363,]),'MACHINE':([0,1,2,5,7,15,45,56,62,73,120,149,161,178,220,229,239,253,254,255,260,269,270,271,278,286,288,293,309,311,313,315,318,334,338,339,348,350,],[18,18,-29,-70,-34,-39,-65,-6,-7,-30,-64,-32,-31,-10,-33,-17,-14,-80,-41,-36,-38,-40,-35,-37,18,-18,-16,-79,-20,18,-19,-21,-13,-8,-15,-12,-9,-11,]),'GE':([5,20,22,61,83,84,87,93,94,96,97,99,100,101,102,132,135,136,138,140,142,160,162,197,199,201,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,251,261,263,266,268,292,305,306,325,326,328,330,331,347,357,367,],[-70,-62,-61,-60,-136,-135,-112,-104,-101,-134,-103,-107,-139,152,-137,-106,152,152,152,-102,-130,-127,152,152,-108,-131,-138,152,-126,-113,152,152,-119,-120,-116,-117,-118,-115,-114,-125,152,152,-132,-110,-133,-105,152,-134,152,152,152,-109,-99,-111,152,-100,152,]),'EXTERN_TYPE':([0,1,2,5,7,15,45,56,62,73,120,149,161,178,220,229,239,253,254,255,260,269,270,271,278,286,288,293,309,311,313,315,318,334,338,339,348,350,],[19,19,-29,-70,-34,-39,-65,-6,-7,-30,-64,-32,-31,-10,-33,-17,-14,-80,-41,-36,-38,-40,-35,-37,19,-18,-16,-79,-20,19,-19,-21,-13,-8,-15,-12,-9,-11,]),'[':([5,20,22,61,83,84,87,93,94,96,97,99,100,102,132,140,199,201,205,261,263,266,268,305,328,330,331,357,],[-70,-62,-61,-60,-136,-135,133,-104,-101,-134,-103,-107,-139,-137,-106,-102,-108,-131,-138,-132,-110,-133,-105,-134,-109,-99,-111,-100,]),'INCLUDE':([0,1,2,5,7,15,45,56,62,73,120,149,161,178,220,229,239,253,254,255,260,269,270,271,278,286,288,293,309,311,313,315,318,334,338,339,348,350,],[21,21,-29,-70,-34,-39,-65,-6,-7,-30,-64,-32,-31,-10,-33,-17,-14,-80,-41,-36,-38,-40,-35,-37,21,-18,-16,-79,-20,21,-19,-21,-13,-8,-15,-12,-9,-11,]),']':([5,20,22,61,83,84,87,93,94,96,97,99,100,102,132,133,135,136,140,142,160,196,197,198,199,201,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,261,262,263,266,268,303,328,330,331,357,],[-70,-62,-61,-60,-136,-135,-112,-104,-101,-134,-103,-107,-139,-137,-106,-2,-129,-128,-102,-130,-127,-85,-84,263,-108,-131,-138,-123,-126,-113,-122,-121,-119,-120,-116,-117,-118,-115,-114,-125,-124,-132,-2,-110,-133,-105,-83,-109,-99,-111,-100,]),'IF':([179,247,248,253,293,299,321,345,352,355,363,366,368,369,370,372,375,376,],[250,250,-95,-80,-79,-86,-94,-87,-92,-96,250,-88,-90,-97,-98,-91,-89,-93,]),'AND':([5,20,22,61,83,84,87,93,94,96,97,99,100,101,102,132,135,136,138,140,142,160,162,197,199,201,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,251,261,263,266,268,292,305,306,325,326,328,330,331,347,357,367,],[-70,-62,-61,-60,-136,-135,-112,-104,-101,-134,-103,-107,-139,145,-137,-106,145,145,145,-102,-130,-127,145,145,-108,-131,-138,-123,-126,-113,-122,-121,-119,-120,-116,-117,-118,-115,-114,-125,-124,145,-132,-110,-133,-105,145,-134,145,145,145,-109,-99,-111,145,-100,145,]),'DASH':([5,20,22,54,61,83,84,87,88,89,91,93,94,96,97,98,99,100,101,102,103,105,132,133,135,136,138,140,142,143,145,146,147,148,150,151,152,153,154,155,156,157,158,159,160,162,179,197,199,201,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,243,247,248,251,253,261,262,263,264,265,266,267,268,292,293,298,299,300,305,306,321,325,326,328,329,330,331,345,347,352,355,357,361,366,367,368,369,370,372,375,376,],[-70,-62,-61,98,-60,-136,-135,-112,98,98,98,-104,-101,-134,-103,98,-107,-139,153,-137,98,98,-106,98,153,153,153,-102,-130,98,98,98,98,98,98,98,98,98,98,98,98,98,98,98,-127,153,98,153,-108,-131,-138,153,153,-113,153,153,153,153,-116,153,153,-115,-114,153,153,98,98,-95,153,-80,-132,98,-110,98,98,-133,98,-105,153,-79,98,-86,98,-134,153,-94,153,153,-109,98,-99,-111,-87,153,-92,-96,-100,98,-88,153,-90,-97,-98,-91,-89,-93,]),'RETURN':([179,247,248,253,293,299,321,345,352,355,366,368,369,370,372,375,376,],[243,243,-95,-80,-79,-86,-94,-87,-92,-96,-88,-90,-97,-98,-91,-89,-93,]),'EQ':([5,20,22,61,83,84,87,93,94,96,97,99,100,101,102,132,135,136,138,140,142,160,162,197,199,201,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,251,261,263,266,268,292,305,306,325,326,328,330,331,347,357,367,],[-70,-62,-61,-60,-136,-135,-112,-104,-101,-134,-103,-107,-139,150,-137,-106,150,150,150,-102,-130,-127,150,150,-108,-131,-138,150,-126,-113,-122,-121,-119,-120,-116,-117,-118,-115,-114,-125,150,150,-132,-110,-133,-105,150,-134,150,150,150,-109,-99,-111,150,-100,150,]),'STRUCT':([0,1,2,5,7,15,45,56,62,73,120,149,161,178,220,229,239,253,254,255,260,269,270,271,278,286,288,293,309,311,313,315,318,334,338,339,348,350,],[23,23,-29,-70,-34,-39,-65,-6,-7,-30,-64,-32,-31,-10,-33,-17,-14,-80,-41,-36,-38,-40,-35,-37,23,-18,-16,-79,-20,23,-19,-21,-13,-8,-15,-12,-9,-11,]),'CHECK_STOP_SLOTS':([179,247,248,253,293,299,321,345,352,355,366,368,369,370,372,375,376,],[252,252,-95,-80,-79,-86,-94,-87,-92,-96,-88,-90,-97,-98,-91,-89,-93,]),'STATE_DECL':([0,1,2,5,7,15,45,56,62,73,120,149,161,178,220,229,239,253,254,255,260,269,270,271,278,286,288,293,309,311,313,315,318,334,338,339,348,350,],[24,24,-29,-70,-34,-39,-65,-6,-7,-30,-64,-32,-31,-10,-33,-17,-14,-80,-41,-36,-38,-40,-35,-37,24,-18,-16,-79,-20,24,-19,-21,-13,-8,-15,-12,-9,-11,]),'CHECK_ALLOCATE':([179,247,248,253,293,299,321,345,352,355,366,368,369,370,372,375,376,],[245,245,-95,-80,-79,-86,-94,-87,-92,-96,-88,-90,-97,-98,-91,-89,-93,]),'LIT_BOOL':([54,88,89,91,98,103,105,133,143,145,146,147,148,150,151,152,153,154,155,156,157,158,159,179,188,243,247,248,253,262,264,265,267,293,298,299,300,321,329,345,352,355,361,366,368,369,370,372,375,376,],[102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,258,102,102,-95,-80,102,102,102,102,-79,102,-86,102,-94,102,-87,-92,-96,102,-88,-90,-97,-98,-91,-89,-93,]),'IS_VALID':([54,88,89,91,98,103,105,133,143,145,146,147,148,150,151,152,153,154,155,156,157,158,159,179,243,247,248,253,262,264,265,267,293,298,299,300,321,329,345,352,355,361,366,368,369,370,372,375,376,],[85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,-95,-80,85,85,85,85,-79,85,-86,85,-94,85,-87,-92,-96,85,-88,-90,-97,-98,-91,-89,-93,]),'NOT':([54,88,89,91,98,103,105,133,143,145,146,147,148,150,151,152,153,154,155,156,157,158,159,179,243,247,248,253,262,264,265,267,293,298,299,300,321,329,345,352,355,361,366,368,369,370,372,375,376,],[103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,103,-95,-80,103,103,103,103,-79,103,-86,103,-94,103,-87,-92,-96,103,-88,-90,-97,-98,-91,-89,-93,]),'{':([5,29,37,45,52,67,73,75,76,77,115,120,122,126,149,161,163,165,167,169,170,173,180,181,182,183,187,220,221,224,225,226,228,239,276,277,289,318,337,344,360,363,365,373,],[-70,47,47,-65,-72,47,-30,-78,-71,-74,172,-64,179,-2,-32,-31,-2,223,-2,230,231,47,-76,-75,-77,-73,179,-33,179,-2,-2,278,-23,47,311,-22,47,47,179,179,179,179,179,179,]),'}':([1,2,5,7,12,13,15,27,45,47,56,62,68,69,70,73,117,118,119,120,149,161,172,175,176,178,179,220,223,229,230,231,233,234,235,236,237,238,239,244,247,248,253,254,255,260,269,270,271,273,274,275,278,280,282,283,284,286,287,288,293,296,299,309,310,311,312,313,315,316,318,321,332,333,334,338,339,345,348,350,352,355,358,366,368,369,370,372,375,376,],[-2,-29,-70,-34,-5,-3,-39,-4,-65,-2,-6,-7,-2,120,-69,-30,-2,-68,-2,-64,-32,-31,-2,-66,-67,-10,253,-33,-2,-17,-2,-2,-26,286,-2,-25,-27,-28,-14,293,-82,-95,-80,-41,-36,-38,-40,-35,-37,309,-2,-43,-2,313,315,-2,-46,-18,-24,-16,-79,-81,-86,-20,-42,-2,334,-19,-21,-45,-13,-94,-44,348,-8,-15,-12,-87,-9,-11,-92,-96,-47,-88,-90,-97,-98,-91,-89,-93,]),'OR':([5,20,22,61,83,84,87,93,94,96,97,99,100,101,102,132,135,136,138,140,142,160,162,197,199,201,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,251,261,263,266,268,292,305,306,325,326,328,330,331,347,357,367,],[-70,-62,-61,-60,-136,-135,-112,-104,-101,-134,-103,-107,-139,159,-137,-106,159,159,159,-102,-130,-127,159,159,-108,-131,-138,-123,-126,-113,-122,-121,-119,-120,-116,-117,-118,-115,-114,-125,-124,159,-132,-110,-133,-105,159,-134,159,159,159,-109,-99,-111,159,-100,159,]),'IN_PORT':([0,1,2,5,7,15,45,56,62,73,120,149,161,178,220,229,239,253,254,255,260,269,270,271,278,286,288,293,309,311,313,315,318,334,338,339,348,350,],[26,26,-29,-70,-34,-39,-65,-6,-7,-30,-64,-32,-31,-10,-33,-17,-14,-80,-41,-36,-38,-40,-35,-37,26,-18,-16,-79,-20,26,-19,-21,-13,-8,-15,-12,-9,-11,]),}
_lr_action = { }
for _k, _v in _lr_action_items.items():
for _x,_y in zip(_v[0],_v[1]):
if not _x in _lr_action: _lr_action[_x] = { }
_lr_action[_x][_k] = _y
del _lr_action_items
_lr_goto_items = {'decl':([0,1,278,311,],[1,1,1,1,]),'obj_decl':([0,1,167,172,224,225,230,235,278,311,],[2,2,225,233,225,225,233,233,2,2,]),'statements':([122,187,221,337,344,360,363,365,373,],[178,254,269,350,355,366,369,372,375,]),'type_enums':([223,274,],[273,310,]),'pairsx':([51,124,],[76,183,]),'type_members':([172,230,235,],[234,280,287,]),'statements_inner':([179,247,],[244,296,]),'enumeration':([54,88,89,91,98,103,105,133,143,145,146,147,148,150,151,152,153,154,155,156,157,158,159,179,243,247,262,264,265,267,298,300,314,329,361,],[93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,93,336,93,93,]),'file':([0,],[6,]),'type_state':([231,283,],[283,283,]),'type_member':([172,230,235,],[235,235,235,]),'aexpr':([54,88,89,91,98,103,105,133,143,145,146,147,148,150,151,152,153,154,155,156,157,158,159,179,243,247,262,264,265,267,298,300,329,361,],[87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,]),'param':([53,57,125,],[78,78,78,]),'literal':([54,88,89,91,98,103,105,133,143,145,146,147,148,150,151,152,153,154,155,156,157,158,159,179,243,247,262,264,265,267,298,300,329,361,],[97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,97,]),'params':([53,57,125,],[79,106,184,]),'statement':([179,247,],[247,247,]),'var':([54,88,89,91,98,103,105,131,133,139,143,145,146,147,148,150,151,152,153,154,155,156,157,158,159,177,179,232,243,247,262,264,265,267,291,294,295,297,298,300,301,329,343,361,],[94,94,94,94,94,94,94,195,94,202,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,241,94,285,94,94,94,94,94,94,320,322,323,324,94,94,327,94,354,94,]),'if_statement':([179,247,363,],[248,248,370,]),'type':([0,1,28,36,38,41,42,53,54,57,71,86,88,89,91,98,103,105,114,125,129,133,137,143,145,146,147,148,150,151,152,153,154,155,156,157,158,159,167,172,179,224,225,230,235,243,247,262,264,265,267,278,298,300,311,329,340,342,361,],[11,11,44,58,60,63,64,81,95,81,121,132,95,95,95,95,95,95,171,185,191,95,200,95,95,95,95,95,95,95,95,95,95,95,95,95,95,95,227,11,95,227,227,11,11,95,95,95,95,95,95,11,95,95,11,95,351,353,95,]),'empty':([0,1,32,44,47,49,53,55,57,58,59,60,63,64,68,117,119,125,126,129,130,133,143,163,164,167,172,223,224,225,230,231,235,241,262,264,267,272,274,278,279,283,285,311,336,351,],[12,12,52,52,70,52,80,52,80,52,52,52,52,52,70,70,70,186,52,192,52,196,196,52,52,228,236,275,228,228,236,284,236,52,196,196,196,52,275,12,52,284,52,12,52,52,]),'declsx':([0,1,278,311,],[13,27,13,13,]),'func_decl':([0,1,172,230,235,278,311,],[7,7,237,237,237,7,7,]),'func_def':([0,1,172,230,235,278,311,],[15,15,238,238,238,15,15,]),'idents':([29,37,67,173,239,289,318,],[46,59,116,239,288,318,338,]),'void':([0,1,172,230,235,278,311,],[16,16,16,16,16,16,16,]),'identx':([47,68,117,119,],[69,118,175,176,]),'type_states':([231,283,],[282,316,]),'pair':([51,124,],[77,77,]),'type_enum':([223,274,],[274,274,]),'typestr':([0,1,28,36,38,41,42,53,54,57,71,86,88,89,91,98,103,105,114,125,129,133,137,143,145,146,147,148,150,151,152,153,154,155,156,157,158,159,167,172,179,224,225,230,235,243,247,262,264,265,267,278,298,300,311,329,340,342,361,],[20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,]),'types':([53,57,129,],[82,107,190,]),'pairs':([32,44,49,55,58,59,60,63,64,126,130,163,164,241,272,279,285,336,351,],[50,66,72,104,108,109,111,112,113,187,193,221,222,290,308,50,317,349,359,]),'ident':([0,1,11,16,28,29,30,31,33,36,37,38,39,41,42,43,47,51,53,54,57,67,68,71,81,86,88,89,91,95,98,103,105,114,117,119,123,124,125,128,129,131,133,134,137,139,141,143,144,145,146,147,148,150,151,152,153,154,155,156,157,158,159,167,172,173,174,177,179,185,223,224,225,227,230,231,232,235,239,243,247,262,264,265,267,274,278,283,289,291,294,295,297,298,300,301,311,314,318,329,340,342,343,361,],[22,22,32,35,22,45,48,49,55,22,45,22,61,22,22,65,68,74,22,100,22,45,68,22,127,22,100,100,100,140,100,100,100,22,68,68,180,74,22,189,22,194,100,199,22,194,203,100,205,100,100,100,100,100,100,100,100,100,100,100,100,100,100,22,22,45,240,194,100,127,272,22,22,279,22,281,194,22,45,100,100,100,100,100,100,272,22,281,45,194,194,194,194,100,100,194,22,335,45,100,22,22,194,100,]),'obj_decls':([167,224,225,],[226,276,277,]),'expr':([54,88,89,91,98,103,105,133,143,145,146,147,148,150,151,152,153,154,155,156,157,158,159,179,243,247,262,264,265,267,298,300,329,361,],[101,135,136,138,142,160,162,197,197,206,207,208,209,210,211,212,213,214,215,216,217,218,219,251,292,251,197,197,306,197,325,326,347,367,]),'exprs':([133,143,262,264,267,],[198,204,303,304,307,]),'decls':([0,278,311,],[25,312,333,]),}
_lr_goto = { }
for _k, _v in _lr_goto_items.items():
for _x,_y in zip(_v[0],_v[1]):
if not _x in _lr_goto: _lr_goto[_x] = { }
_lr_goto[_x][_k] = _y
del _lr_goto_items
_lr_productions = [
("S' -> file","S'",1,None,None,None),
('file -> decls','file',1,'p_file','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',218),
('empty -> <empty>','empty',0,'p_empty','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',222),
('decls -> declsx','decls',1,'p_decls','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',225),
('declsx -> decl declsx','declsx',2,'p_declsx__list','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',229),
('declsx -> empty','declsx',1,'p_declsx__none','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',239),
('decl -> PROTOCOL STRING SEMI','decl',3,'p_decl__protocol','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',243),
('decl -> INCLUDE STRING SEMI','decl',3,'p_decl__include','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',252),
('decl -> MACHINE ( idents ) : obj_decls { decls }','decl',9,'p_decl__machine0','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',261),
('decl -> MACHINE ( idents pairs ) : obj_decls { decls }','decl',10,'p_decl__machine1','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',265),
('decl -> ACTION ( ident pairs ) statements','decl',6,'p_decl__action','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',269),
('decl -> IN_PORT ( ident , type , var pairs ) statements','decl',10,'p_decl__in_port','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',273),
('decl -> OUT_PORT ( ident , type , var pairs ) SEMI','decl',10,'p_decl__out_port','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',277),
('decl -> TRANS ( idents , idents , ident ) idents','decl',9,'p_decl__trans0','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',281),
('decl -> TRANS ( idents , idents ) idents','decl',7,'p_decl__trans1','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',285),
('decl -> TRANS ( idents , idents , ident ) idents idents','decl',10,'p_decl__trans2','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',289),
('decl -> TRANS ( idents , idents ) idents idents','decl',8,'p_decl__trans3','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',293),
('decl -> EXTERN_TYPE ( type pairs ) SEMI','decl',6,'p_decl__extern0','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',297),
('decl -> GLOBAL ( type pairs ) { type_members }','decl',8,'p_decl__global','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',302),
('decl -> STRUCT ( type pairs ) { type_members }','decl',8,'p_decl__struct','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',307),
('decl -> ENUM ( type pairs ) { type_enums }','decl',8,'p_decl__enum','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',311),
('decl -> STATE_DECL ( type pairs ) { type_states }','decl',8,'p_decl__state_decl','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',316),
('obj_decls -> obj_decl obj_decls','obj_decls',2,'p_obj_decls__list','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',323),
('obj_decls -> empty','obj_decls',1,'p_obj_decls__empty','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',327),
('type_members -> type_member type_members','type_members',2,'p_type_members__list','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',331),
('type_members -> empty','type_members',1,'p_type_members__empty','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',335),
('type_member -> obj_decl','type_member',1,'p_type_member__0','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',339),
('type_member -> func_decl','type_member',1,'p_type_member__0','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',340),
('type_member -> func_def','type_member',1,'p_type_member__0','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',341),
('decl -> obj_decl','decl',1,'p_decl__obj_decl','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',346),
('obj_decl -> type ident pairs SEMI','obj_decl',4,'p_obj_decl__0','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',350),
('obj_decl -> type STAR ident pairs SEMI','obj_decl',5,'p_obj_decl__1','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',354),
('obj_decl -> type ident ASSIGN expr SEMI','obj_decl',5,'p_obj_decl__2','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',358),
('obj_decl -> type STAR ident ASSIGN expr SEMI','obj_decl',6,'p_obj_decl__3','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',363),
('decl -> func_decl','decl',1,'p_decl__func_decl','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',369),
('func_decl -> void ident ( params ) pairs SEMI','func_decl',7,'p_func_decl__0','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',373),
('func_decl -> type ident ( params ) pairs SEMI','func_decl',7,'p_func_decl__0','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',374),
('func_decl -> void ident ( types ) pairs SEMI','func_decl',7,'p_func_decl__1','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',378),
('func_decl -> type ident ( types ) pairs SEMI','func_decl',7,'p_func_decl__1','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',379),
('decl -> func_def','decl',1,'p_decl__func_def','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',383),
('func_def -> void ident ( params ) pairs statements','func_def',7,'p_func_def__0','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',387),
('func_def -> type ident ( params ) pairs statements','func_def',7,'p_func_def__0','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',388),
('type_enums -> type_enum type_enums','type_enums',2,'p_type_enums__list','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',393),
('type_enums -> empty','type_enums',1,'p_type_enums__empty','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',397),
('type_enum -> ident pairs SEMI','type_enum',3,'p_type_enum','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',401),
('type_states -> type_state type_states','type_states',2,'p_type_states__list','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',406),
('type_states -> empty','type_states',1,'p_type_states__empty','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',410),
('type_state -> ident , enumeration pairs SEMI','type_state',5,'p_type_state','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',414),
('params -> param , params','params',3,'p_params__many','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',419),
('params -> param','params',1,'p_params__one','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',423),
('params -> empty','params',1,'p_params__none','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',427),
('param -> type ident','param',2,'p_param','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',431),
('param -> type STAR ident','param',3,'p_param__pointer','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',435),
('param -> type STAR ident ASSIGN STRING','param',5,'p_param__pointer_default','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',439),
('param -> type ident ASSIGN NUMBER','param',4,'p_param__default_number','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',443),
('param -> type ident ASSIGN LIT_BOOL','param',4,'p_param__default_bool','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',447),
('param -> type ident ASSIGN STRING','param',4,'p_param__default_string','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',451),
('types -> type , types','types',3,'p_types__multiple','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',456),
('types -> type','types',1,'p_types__one','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',460),
('types -> empty','types',1,'p_types__empty','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',464),
('typestr -> typestr DOUBLE_COLON ident','typestr',3,'p_typestr__multi','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',468),
('typestr -> ident','typestr',1,'p_typestr__single','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',472),
('type -> typestr','type',1,'p_type__one','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',476),
('void -> VOID','void',1,'p_void','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',480),
('idents -> { identx }','idents',3,'p_idents__braced','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',485),
('idents -> ident','idents',1,'p_idents__bare','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',489),
('identx -> ident SEMI identx','identx',3,'p_identx__multiple_1','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',493),
('identx -> ident , identx','identx',3,'p_identx__multiple_1','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',494),
('identx -> ident identx','identx',2,'p_identx__multiple_2','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',498),
('identx -> empty','identx',1,'p_identx__single','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',502),
('ident -> IDENT','ident',1,'p_ident','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',506),
('pairs -> , pairsx','pairs',2,'p_pairs__list','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',511),
('pairs -> empty','pairs',1,'p_pairs__empty','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',515),
('pairsx -> pair , pairsx','pairsx',3,'p_pairsx__many','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',519),
('pairsx -> pair','pairsx',1,'p_pairsx__one','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',524),
('pair -> ident = STRING','pair',3,'p_pair__assign','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',529),
('pair -> ident = ident','pair',3,'p_pair__assign','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',530),
('pair -> ident = NUMBER','pair',3,'p_pair__assign','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',531),
('pair -> STRING','pair',1,'p_pair__literal','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',535),
('statements -> { statements_inner }','statements',3,'p_statements__inner','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',540),
('statements -> { }','statements',2,'p_statements__none','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',544),
('statements_inner -> statement statements_inner','statements_inner',2,'p_statements_inner__many','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',548),
('statements_inner -> statement','statements_inner',1,'p_statements_inner__one','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',552),
('exprs -> expr , exprs','exprs',3,'p_exprs__multiple','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',556),
('exprs -> expr','exprs',1,'p_exprs__one','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',560),
('exprs -> empty','exprs',1,'p_exprs__empty','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',564),
('statement -> expr SEMI','statement',2,'p_statement__expression','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',568),
('statement -> expr ASSIGN expr SEMI','statement',4,'p_statement__assign','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',572),
('statement -> ENQUEUE ( var , type ) statements','statement',7,'p_statement__enqueue','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',576),
('statement -> ENQUEUE ( var , type , expr ) statements','statement',9,'p_statement__enqueue_latency','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',580),
('statement -> STALL_AND_WAIT ( var , var ) SEMI','statement',7,'p_statement__stall_and_wait','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',584),
('statement -> PEEK ( var , type pairs ) statements','statement',8,'p_statement__peek','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',588),
('statement -> CHECK_ALLOCATE ( var ) SEMI','statement',5,'p_statement__check_allocate','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',592),
('statement -> CHECK_STOP_SLOTS ( var , STRING , STRING ) SEMI','statement',9,'p_statement__check_stop','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',596),
('statement -> RETURN expr SEMI','statement',3,'p_statement__return','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',600),
('statement -> if_statement','statement',1,'p_statement__if','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',604),
('if_statement -> IF ( expr ) statements','if_statement',5,'p_if_statement__if','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',608),
('if_statement -> IF ( expr ) statements ELSE statements','if_statement',7,'p_if_statement__if_else','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',612),
('if_statement -> IF ( expr ) statements ELSE if_statement','if_statement',7,'p_statement__if_else_if','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',616),
('aexpr -> STATIC_CAST ( type , expr )','aexpr',6,'p_expr__static_cast','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',621),
('aexpr -> STATIC_CAST ( type , STRING , expr )','aexpr',8,'p_expr__static_cast_ptr','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',625),
('aexpr -> var','aexpr',1,'p_expr__var','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',629),
('aexpr -> type ident','aexpr',2,'p_expr__localvar','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',633),
('aexpr -> literal','aexpr',1,'p_expr__literal','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',637),
('aexpr -> enumeration','aexpr',1,'p_expr__enumeration','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',641),
('aexpr -> ident ( exprs )','aexpr',4,'p_expr__func_call','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',645),
('aexpr -> NEW type','aexpr',2,'p_expr__new','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',649),
('aexpr -> OOD','aexpr',1,'p_expr__null','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',653),
('aexpr -> aexpr DOT ident','aexpr',3,'p_expr__member','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',657),
('aexpr -> aexpr DOT ident ( exprs )','aexpr',6,'p_expr__member_method_call','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',661),
('aexpr -> aexpr [ exprs ]','aexpr',4,'p_expr__member_method_call_lookup','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',665),
('aexpr -> type DOUBLE_COLON ident ( exprs )','aexpr',6,'p_expr__class_method_call','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',669),
('expr -> aexpr','expr',1,'p_expr__aexpr','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',673),
('expr -> expr STAR expr','expr',3,'p_expr__binary_op','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',677),
('expr -> expr SLASH expr','expr',3,'p_expr__binary_op','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',678),
('expr -> expr PLUS expr','expr',3,'p_expr__binary_op','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',679),
('expr -> expr DASH expr','expr',3,'p_expr__binary_op','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',680),
('expr -> expr LT expr','expr',3,'p_expr__binary_op','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',681),
('expr -> expr GT expr','expr',3,'p_expr__binary_op','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',682),
('expr -> expr LE expr','expr',3,'p_expr__binary_op','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',683),
('expr -> expr GE expr','expr',3,'p_expr__binary_op','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',684),
('expr -> expr EQ expr','expr',3,'p_expr__binary_op','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',685),
('expr -> expr NE expr','expr',3,'p_expr__binary_op','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',686),
('expr -> expr AND expr','expr',3,'p_expr__binary_op','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',687),
('expr -> expr OR expr','expr',3,'p_expr__binary_op','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',688),
('expr -> expr RIGHTSHIFT expr','expr',3,'p_expr__binary_op','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',689),
('expr -> expr LEFTSHIFT expr','expr',3,'p_expr__binary_op','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',690),
('expr -> NOT expr','expr',2,'p_expr__unary_op','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',695),
('expr -> INCR expr','expr',2,'p_expr__unary_op','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',696),
('expr -> DECR expr','expr',2,'p_expr__unary_op','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',697),
('expr -> DASH expr','expr',2,'p_expr__unary_op','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',698),
('aexpr -> ( expr )','aexpr',3,'p_expr__parens','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',702),
('aexpr -> IS_VALID ( var )','aexpr',4,'p_expr__is_valid_ptr','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',706),
('aexpr -> IS_INVALID ( var )','aexpr',4,'p_expr__is_invalid_ptr','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',710),
('literal -> STRING','literal',1,'p_literal__string','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',714),
('literal -> NUMBER','literal',1,'p_literal__number','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',718),
('literal -> FLOATNUMBER','literal',1,'p_literal__float','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',722),
('literal -> LIT_BOOL','literal',1,'p_literal__bool','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',726),
('enumeration -> ident : ident','enumeration',3,'p_enumeration','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',730),
('var -> ident','var',1,'p_var','/home/duan-xg/gem5-nvp/gem5/src/mem/slicc/parser.py',734),
]
| [
198,
2,
13544,
316,
397,
13,
9078,
198,
2,
770,
2393,
318,
6338,
7560,
13,
2141,
407,
4370,
13,
198,
62,
8658,
9641,
796,
705,
18,
13,
17,
6,
198,
198,
62,
14050,
62,
24396,
796,
705,
43,
1847,
49,
6,
198,
198,
62,
14050,
62,
12683,
1300,
796,
705,
75,
59,
87,
1433,
59,
87,
24,
891,
89,
4,
59,
25306,
16,
59,
87,
23,
65,
59,
27865,
23,
46,
59,
87,
2999,
31478,
87,
15,
65,
59,
24954,
16,
80,
41,
6,
198,
220,
220,
220,
220,
198,
62,
14050,
62,
2673,
62,
23814,
796,
1391,
6,
47,
33823,
10354,
26933,
21738,
11,
23753,
11,
23045,
11,
28592,
11,
31675,
11,
22579,
11,
36453,
11,
27712,
11,
33394,
11,
28567,
11,
32459,
11,
27412,
11,
30803,
11,
20167,
11,
36720,
11,
22318,
11,
32128,
11,
38430,
27877,
11,
27877,
12095,
3865,
12095,
1795,
12095,
3720,
12095,
4521,
12095,
5824,
12095,
5774,
12095,
5892,
12095,
4846,
12095,
3459,
12095,
3829,
12095,
5607,
12095,
4089,
12095,
6420,
12095,
4531,
12095,
6052,
11,
46570,
6,
5446,
15037,
10354,
26933,
15,
11,
16,
11,
17,
11,
20,
11,
22,
11,
1314,
11,
2231,
11,
3980,
11,
5237,
11,
4790,
11,
10232,
11,
19442,
11,
25948,
11,
23188,
11,
17572,
11,
23539,
11,
23516,
11,
28592,
11,
24970,
11,
13381,
11,
21719,
11,
26276,
11,
20233,
11,
28977,
11,
25870,
11,
27033,
11,
25270,
11,
31675,
11,
26895,
11,
36244,
11,
25838,
11,
27936,
11,
36042,
11,
31380,
11,
28460,
11,
29626,
11,
28978,
11,
14877,
11,
38430,
23,
11,
23,
12095,
1959,
12095,
2154,
12095,
2682,
12095,
2670,
12095,
2996,
12095,
21,
12095,
22,
12095,
1270,
12095,
2414,
12095,
2624,
12095,
3132,
12095,
940,
12095,
2091,
12095,
1558,
12095,
1415,
12095,
1795,
12095,
3901,
12095,
2623,
12095,
2548,
12095,
1821,
12095,
2327,
12095,
2718,
11,
23,
12095,
1507,
12095,
1433,
12095,
3720,
12095,
1238,
11,
23,
12095,
1129,
12095,
2481,
12095,
1485,
12095,
23,
12095,
1314,
12095,
1065,
12095,
24,
12095,
1157,
11,
46570,
6,
46678,
10354,
26933,
20,
11,
1157,
11,
1238,
11,
1828,
11,
5333,
11,
6659,
11,
5999,
11,
5705,
11,
5774,
11,
6052,
11,
5824,
11,
4846,
11,
5607,
11,
2079,
11,
3064,
11,
8784,
11,
15377,
11,
19924,
11,
17059,
11,
20809,
11,
20107,
11,
15187,
11,
23726,
11,
14198,
11,
25061,
11,
21652,
11,
24991,
11,
19104,
11,
1264,
11,
21261,
11,
22136,
11,
22745,
11,
21315,
11,
22567,
11,
21536,
11,
21895,
11,
21777,
11,
26427,
11,
22291,
11,
23349,
11,
20666,
11,
24591,
11,
28727,
11,
28896,
11,
24403,
11,
28072,
11,
30057,
11,
29558,
11,
25540,
11,
25022,
11,
32759,
11,
22515,
11,
20548,
11,
26582,
11,
39195,
11,
34256,
11,
26073,
11,
31697,
11,
30995,
11,
27277,
11,
27824,
11,
38430,
12,
2154,
11,
2091,
12095,
5237,
12095,
5333,
12095,
1899,
11,
12762,
12095,
20809,
12095,
17059,
12095,
14686,
12095,
13464,
12095,
8784,
12095,
19880,
12095,
15197,
12095,
15982,
12095,
20219,
11,
20198,
12095,
19708,
12095,
15801,
11,
20198,
11,
20198,
11,
20198,
12095,
15377,
12095,
12952,
12095,
16799,
11,
20198,
11,
12762,
11,
20198,
12095,
15711,
12095,
22042,
12095,
20107,
11,
20198,
11,
20198,
12095,
16616,
11,
20198,
11,
20198,
11,
20198,
11,
20198,
11,
20198,
11,
20198,
11,
20198,
11,
20198,
12095,
16562,
11,
20198,
11,
20198,
11,
2091,
11,
20198,
12095,
19924,
12095,
11442,
12095,
16945,
12095,
13348,
11,
20198,
12095,
19880,
11,
20198,
11,
20198,
11,
20198,
12095,
14454,
12095,
2079,
12095,
16243,
11,
20198,
12095,
3064,
11,
20198,
11,
46570,
6,
8634,
11211,
10354,
26933,
20,
11,
1238,
11,
1828,
11,
5333,
11,
5999,
11,
5705,
11,
5774,
11,
6052,
11,
5824,
11,
4846,
11,
5607,
11,
2079,
11,
3064,
11,
8784,
11,
15377,
11,
19924,
11,
17059,
11,
20809,
11,
20107,
11,
15187,
11,
23726,
11,
14198,
11,
25061,
11,
24991,
11,
19104,
11,
1264,
11,
21261,
11,
22136,
11,
22745,
11,
21315,
11,
22567,
11,
21536,
11,
21895,
11,
21777,
11,
26427,
11,
22291,
11,
23349,
11,
20666,
11,
24591,
11,
28727,
11,
28896,
11,
28072,
11,
30057,
11,
29558,
11,
25540,
11,
25022,
11,
32759,
11,
22515,
11,
20548,
11,
26582,
11,
39195,
11,
34256,
11,
26073,
11,
31697,
11,
30995,
11,
27277,
11,
27824,
11,
38430,
12,
2154,
12095,
5237,
12095,
5333,
12095,
1899,
12095,
20809,
12095,
17059,
12095,
14686,
12095,
13464,
12095,
8784,
12095,
19880,
12095,
15197,
12095,
15982,
12095,
20219,
11,
18458,
12095,
19708,
12095,
15801,
11,
18458,
11,
18458,
11,
18458,
12095,
15377,
12095,
12952,
12095,
16799,
11,
18458,
11,
18458,
12095,
15711,
12095,
22042,
12095,
20107,
11,
18458,
11,
18458,
12095,
16616,
11,
18458,
11,
18458,
11,
18458,
11,
18458,
11,
18458,
11,
18458,
11,
18458,
11,
18458,
12095,
16562,
11,
18458,
11,
18458,
11,
18458,
12095,
19924,
12095,
11442,
12095,
16945,
12095,
13348,
11,
18458,
12095,
19880,
11,
18458,
11,
18458,
11,
18458,
12095,
14454,
12095,
2079,
12095,
16243,
11,
18458,
12095,
3064,
11,
18458,
11,
46570,
6,
3697,
46,
1404,
41359,
13246,
10354,
26933,
4051,
11,
3459,
11,
4531,
11,
6420,
11,
4089,
11,
15197,
11,
13348,
11,
16945,
11,
21139,
11,
18781,
11,
20964,
11,
20198,
11,
18294,
11,
8628,
11,
24309,
11,
17827,
11,
21395,
11,
21526,
11,
18742,
11,
21599,
11,
18458,
11,
21273,
11,
19707,
11,
21738,
11,
26660,
11,
23753,
11,
23045,
11,
28592,
11,
29119,
11,
18897,
11,
22980,
11,
25674,
11,
31675,
11,
27728,
11,
22579,
11,
6200,
11,
36453,
11,
37967,
11,
27712,
11,
33394,
11,
28567,
11,
35195,
11,
32459,
11,
27412,
11,
30803,
11,
20167,
11,
36720,
11,
22318,
11,
32128,
11,
38430,
5999,
11,
5999,
11,
5999,
11,
5999,
11,
5999,
11,
5999,
11,
5999,
11,
5999,
11,
5999,
11,
5999,
11,
5999,
11,
5999,
11,
5999,
11,
5999,
11,
5999,
11,
5999,
11,
5999,
11,
5999,
11,
5999,
11,
5999,
11,
5999,
11,
5999,
11,
5999,
11,
5999,
11,
5999,
11,
5999,
12095,
3865,
12095,
1795,
11,
5999,
11,
5999,
11,
5999,
11,
5999,
12095,
3720,
11,
5999,
12095,
4521,
11,
5999,
12095,
5824,
11,
5999,
12095,
5774,
12095,
5892,
12095,
4846,
11,
5999,
12095,
3459,
12095,
3829,
12095,
5607,
12095,
4089,
12095,
6420,
12095,
4531,
12095,
6052,
11,
46570,
6,
29516,
2389,
10354,
26933,
15,
11,
16,
11,
17,
11,
20,
11,
22,
11,
1314,
11,
2231,
11,
3980,
11,
5237,
11,
4790,
11,
10232,
11,
19442,
11,
25948,
11,
23628,
11,
23188,
11,
17572,
11,
23539,
11,
19214,
11,
25429,
11,
22370,
11,
24693,
11,
23721,
11,
23516,
11,
28592,
11,
24970,
11,
13381,
11,
21719,
11,
26276,
11,
20233,
11,
28977,
11,
25870,
11,
27033,
11,
25270,
11,
31675,
11,
26895,
11,
36244,
11,
25838,
11,
27936,
11,
36042,
11,
31380,
11,
28460,
11,
29626,
11,
28978,
11,
14877,
11,
38430,
18,
11,
18,
12095,
1959,
12095,
2154,
12095,
2682,
12095,
2670,
12095,
2996,
12095,
21,
12095,
22,
12095,
1270,
12095,
2414,
12095,
2624,
12095,
3132,
11,
18,
12095,
940,
12095,
2091,
12095,
1558,
11,
18,
12095,
2075,
11,
18,
12095,
1983,
12095,
2078,
12095,
1415,
12095,
1795,
12095,
3901,
12095,
2623,
12095,
2548,
12095,
1821,
12095,
2327,
12095,
2718,
11,
18,
12095,
1507,
12095,
1433,
12095,
3720,
12095,
1238,
11,
18,
12095,
1129,
12095,
2481,
12095,
1485,
12095,
23,
12095,
1314,
12095,
1065,
12095,
24,
12095,
1157,
11,
46570,
6,
8763,
9864,
1847,
10354,
26933,
15,
11,
16,
11,
17,
11,
20,
11,
22,
11,
1314,
11,
2231,
11,
3980,
11,
5237,
11,
4790,
11,
10232,
11,
19442,
11,
25948,
11,
23188,
11,
17572,
11,
23539,
11,
23516,
11,
28592,
11,
24970,
11,
13381,
11,
21719,
11,
26276,
11,
20233,
11,
28977,
11,
25870,
11,
27033,
11,
25270,
11,
31675,
11,
26895,
11,
36244,
11,
25838,
11,
27936,
11,
36042,
11,
31380,
11,
28460,
11,
29626,
11,
28978,
11,
14877,
11,
38430,
19,
11,
19,
12095,
1959,
12095,
2154,
12095,
2682,
12095,
2670,
12095,
2996,
12095,
21,
12095,
22,
12095,
1270,
12095,
2414,
12095,
2624,
12095,
3132,
12095,
940,
12095,
2091,
12095,
1558,
12095,
1415,
12095,
1795,
12095,
3901,
12095,
2623,
12095,
2548,
12095,
1821,
12095,
2327,
12095,
2718,
11,
19,
12095,
1507,
12095,
1433,
12095,
3720,
12095,
1238,
11,
19,
12095,
1129,
12095,
2481,
12095,
1485,
12095,
23,
12095,
1314,
12095,
1065,
12095,
24,
12095,
1157,
11,
46570,
6,
41359,
13246,
10354,
26933,
4051,
11,
3459,
11,
4531,
11,
6420,
11,
4089,
11,
15197,
11,
13348,
11,
10163,
11,
16945,
11,
21139,
11,
18781,
11,
20964,
11,
20198,
11,
18294,
11,
8628,
11,
24309,
11,
17827,
11,
21395,
11,
21526,
11,
18742,
11,
21599,
11,
18458,
11,
21273,
11,
19707,
11,
21738,
11,
20356,
11,
26660,
11,
23753,
11,
23045,
11,
28592,
11,
29119,
11,
18897,
11,
22980,
11,
25674,
11,
31675,
11,
27728,
11,
22579,
11,
6200,
11,
36453,
11,
37967,
11,
27712,
11,
33394,
11,
28567,
11,
35195,
11,
32459,
11,
27412,
11,
30803,
11,
20167,
11,
36720,
11,
22318,
11,
32128,
11,
38430,
5705,
11,
5705,
11,
5705,
11,
5705,
11,
5705,
11,
5705,
11,
5705,
11,
24294,
11,
5705,
11,
5705,
11,
5705,
11,
5705,
11,
5705,
11,
5705,
11,
5705,
11,
5705,
11,
5705,
11,
5705,
11,
5705,
11,
5705,
11,
5705,
11,
5705,
11,
5705,
11,
5705,
11,
5705,
11,
28676,
11,
5705,
11,
5705,
12095,
3865,
12095,
1795,
11,
5705,
11,
5705,
11,
5705,
11,
5705,
12095,
3720,
11,
5705,
12095,
4521,
11,
5705,
12095,
5824,
11,
5705,
12095,
5774,
12095,
5892,
12095,
4846,
11,
5705,
12095,
3459,
12095,
3829,
12095,
5607,
12095,
4089,
12095,
6420,
12095,
4531,
12095,
6052,
11,
46570,
3256,
10354,
26933,
20,
11,
1238,
11,
1828,
11,
2624,
11,
2598,
11,
2231,
11,
3510,
11,
2780,
11,
2920,
11,
2816,
11,
3365,
11,
3270,
11,
1899,
11,
5333,
11,
5066,
11,
2414,
11,
2996,
11,
3104,
11,
2425,
11,
3324,
11,
3695,
11,
6659,
11,
5999,
11,
5705,
11,
5774,
11,
6052,
11,
5824,
11,
4846,
11,
5607,
11,
2079,
11,
3064,
11,
15377,
11,
18298,
11,
10232,
11,
19244,
11,
19420,
11,
16799,
11,
12952,
11,
19924,
11,
17059,
11,
20809,
11,
15187,
11,
23726,
11,
14198,
11,
24136,
11,
23237,
11,
27192,
11,
15259,
11,
27057,
11,
24294,
11,
23362,
11,
26492,
11,
22913,
11,
24991,
11,
19104,
11,
2167,
11,
1264,
11,
21261,
11,
22136,
11,
22745,
11,
21315,
11,
22567,
11,
21536,
11,
21895,
11,
21777,
11,
26427,
11,
22291,
11,
23349,
11,
20666,
11,
24591,
11,
28727,
11,
28896,
11,
28872,
11,
11645,
11,
28676,
11,
25600,
11,
30057,
11,
29558,
11,
25540,
11,
25022,
11,
29807,
11,
26050,
11,
30368,
11,
26279,
11,
22709,
11,
22515,
11,
19504,
11,
32637,
11,
33916,
11,
34159,
11,
34256,
11,
26073,
11,
31697,
11,
29211,
11,
35273,
11,
33319,
11,
32066,
11,
27277,
11,
38430,
12,
2154,
12095,
5237,
12095,
5333,
11,
4349,
11,
4349,
12095,
2996,
11,
3134,
11,
4869,
11,
4349,
11,
4349,
11,
4349,
11,
4349,
11,
4349,
12095,
1899,
11,
4349,
11,
4349,
11,
16562,
11,
16315,
12095,
3695,
11,
17464,
11,
11623,
11,
18741,
12095,
20809,
12095,
17059,
12095,
14686,
12095,
13464,
12095,
8784,
12095,
19880,
12095,
15197,
12095,
15982,
12095,
20219,
12095,
19708,
11,
22985,
12095,
2414,
11,
22413,
11,
4349,
12095,
4349,
11,
4349,
12095,
15801,
12095,
18741,
12095,
12762,
12095,
15377,
12095,
12952,
12095,
16799,
11,
4349,
11,
4349,
11,
24339,
12095,
4304,
12095,
2425,
12095,
3324,
12095,
4309,
11,
18741,
12095,
20219,
11,
29119,
12095,
15711,
11,
22980,
12095,
22042,
12095,
20107,
12095,
10163,
12095,
19420,
12095,
16616,
12095,
18376,
12095,
19244,
12095,
16315,
12095,
10232,
12095,
18298,
12095,
17657,
12095,
16817,
12095,
15363,
12095,
16562,
12095,
11623,
12095,
17464,
11,
4349,
12095,
3980,
12095,
4051,
12095,
2816,
12095,
19924,
12095,
11442,
12095,
16945,
12095,
13348,
11,
4349,
11,
4349,
11,
33638,
11,
4349,
12095,
4310,
11,
37967,
11,
23601,
11,
31575,
11,
32118,
11,
30557,
12095,
14454,
12095,
2079,
12095,
16243,
11,
4349,
11,
4349,
11,
35195,
11,
26780,
12095,
3064,
11,
46570,
6,
19555,
10354,
26933,
20,
11,
1238,
11,
1828,
11,
5333,
11,
5999,
11,
5705,
11,
5774,
11,
6052,
11,
5824,
11,
4846,
11,
5607,
11,
2079,
11,
3064,
11,
8784,
11,
15377,
11,
19924,
11,
17059,
11,
20809,
11,
20107,
11,
15187,
11,
23726,
11,
14198,
11,
25061,
11,
24991,
11,
19104,
11,
1264,
11,
21261,
11,
22136,
11,
22745,
11,
21315,
11,
22567,
11,
21536,
11,
21895,
11,
21777,
11,
26427,
11,
22291,
11,
23349,
11,
20666,
11,
24591,
11,
28727,
11,
28896,
11,
28072,
11,
30057,
11,
29558,
11,
25540,
11,
25022,
11,
32759,
11,
22515,
11,
20548,
11,
26582,
11,
39195,
11,
34256,
11,
26073,
11,
31697,
11,
30995,
11,
27277,
11,
27824,
11,
38430,
12,
2154,
12095,
5237,
12095,
5333,
12095,
1899,
12095,
20809,
12095,
17059,
12095,
14686,
12095,
13464,
12095,
8784,
12095,
19880,
12095,
15197,
12095,
15982,
12095,
20219,
11,
18742,
12095,
19708,
12095,
15801,
11,
18742,
11,
18742,
11,
18742,
12095,
15377,
12095,
12952,
12095,
16799,
11,
18742,
11,
18742,
12095,
15711,
12095,
22042,
12095,
20107,
11,
18742,
12095,
19420,
12095,
16616,
11,
18742,
11,
18742,
12095,
16315,
12095,
10232,
12095,
18298,
12095,
17657,
12095,
16817,
12095,
15363,
12095,
16562,
12095,
11623,
11,
18742,
11,
18742,
12095,
19924,
12095,
11442,
12095,
16945,
12095,
13348,
11,
18742,
12095,
19880,
11,
18742,
11,
18742,
11,
18742,
12095,
14454,
12095,
2079,
12095,
16243,
11,
18742,
12095,
3064,
11,
18742,
11,
46570,
6,
13965,
10354,
26933,
4051,
11,
3459,
11,
4531,
11,
6420,
11,
4089,
11,
15197,
11,
13348,
11,
16945,
11,
21139,
11,
18781,
11,
20964,
11,
20198,
11,
18294,
11,
8628,
11,
24309,
11,
17827,
11,
21395,
11,
21526,
11,
18742,
11,
21599,
11,
18458,
11,
21273,
11,
19707,
11,
21738,
11,
26660,
11,
23753,
11,
23045,
11,
28592,
11,
29119,
11,
18897,
11,
22980,
11,
25674,
11,
31675,
11,
27728,
11,
22579,
11,
6200,
11,
36453,
11,
37967,
11,
27712,
11,
33394,
11,
28567,
11,
35195,
11,
32459,
11,
27412,
11,
30803,
11,
20167,
11,
36720,
11,
22318,
11,
32128,
11,
38430,
4521,
11,
4521,
11,
4521,
11,
4521,
11,
4521,
11,
4521,
11,
4521,
11,
4521,
11,
4521,
11,
4521,
11,
4521,
11,
4521,
11,
4521,
11,
4521,
11,
4521,
11,
4521,
11,
4521,
11,
4521,
11,
4521,
11,
4521,
11,
4521,
11,
4521,
11,
4521,
11,
4521,
11,
4521,
11,
4521,
12095,
3865,
12095,
1795,
11,
4521,
11,
4521,
11,
4521,
11,
4521,
12095,
3720,
11,
4521,
12095,
4521,
11,
4521,
12095,
5824,
11,
4521,
12095,
5774,
12095,
5892,
12095,
4846,
11,
4521,
12095,
3459,
12095,
3829,
12095,
5607,
12095,
4089,
12095,
6420,
12095,
4531,
12095,
6052,
11,
46570,
6,
49,
34874,
39,
32297,
10354,
26933,
20,
11,
1238,
11,
1828,
11,
5333,
11,
5999,
11,
5705,
11,
5774,
11,
6052,
11,
5824,
11,
4846,
11,
5607,
11,
2079,
11,
3064,
11,
8784,
11,
15377,
11,
19924,
11,
17059,
11,
20809,
11,
20107,
11,
15187,
11,
23726,
11,
14198,
11,
25061,
11,
24991,
11,
19104,
11,
1264,
11,
21261,
11,
22136,
11,
22745,
11,
21315,
11,
22567,
11,
21536,
11,
21895,
11,
21777,
11,
26427,
11,
22291,
11,
23349,
11,
20666,
11,
24591,
11,
28727,
11,
28896,
11,
28072,
11,
30057,
11,
29558,
11,
25540,
11,
25022,
11,
32759,
11,
22515,
11,
20548,
11,
26582,
11,
39195,
11,
34256,
11,
26073,
11,
31697,
11,
30995,
11,
27277,
11,
27824,
11,
38430,
12,
2154,
12095,
5237,
12095,
5333,
12095,
1899,
12095,
20809,
12095,
17059,
12095,
14686,
12095,
13464,
12095,
8784,
12095,
19880,
12095,
15197,
12095,
15982,
12095,
20219,
11,
21273,
12095,
19708,
12095,
15801,
11,
21273,
11,
21273,
11,
21273,
12095,
15377,
12095,
12952,
12095,
16799,
11,
21273,
11,
21273,
12095,
15711,
12095,
22042,
12095,
20107,
11,
21273,
12095,
19420,
12095,
16616,
11,
21273,
11,
21273,
11,
21273,
11,
21273,
12095,
18298,
11,
21273,
11,
21273,
12095,
15363,
12095,
16562,
12095,
11623,
11,
21273,
11,
21273,
12095,
19924,
12095,
11442,
12095,
16945,
12095,
13348,
11,
21273,
12095,
19880,
11,
21273,
11,
21273,
11,
21273,
12095,
14454,
12095,
2079,
12095,
16243,
11,
21273,
12095,
3064,
11,
21273,
11,
46570,
6,
35,
2394,
10354,
26933,
20,
11,
1238,
11,
1828,
11,
5333,
11,
5999,
11,
5705,
11,
5774,
11,
6052,
11,
5824,
11,
4846,
11,
5607,
11,
2079,
11,
3064,
11,
15377,
11,
19924,
11,
15187,
11,
19104,
11,
1264,
11,
21261,
11,
30057,
11,
29558,
11,
25540,
11,
25022,
11,
22515,
11,
34256,
11,
26073,
11,
31697,
11,
27277,
11,
38430,
12,
2154,
12095,
5237,
12095,
5333,
12095,
1899,
12095,
20809,
12095,
17059,
11,
19880,
12095,
13464,
12095,
8784,
12095,
19880,
12095,
15197,
12095,
15982,
12095,
20219,
12095,
19708,
12095,
15801,
12095,
15377,
12095,
15711,
12095,
22042,
12095,
20107,
12095,
19924,
12095,
11442,
12095,
16945,
12095,
13348,
12095,
19880,
12095,
14454,
12095,
2079,
12095,
16243,
12095,
3064,
11,
46570,
6,
2538,
37,
4694,
39,
32297,
10354,
26933,
20,
11,
1238,
11,
1828,
11,
5333,
11,
5999,
11,
5705,
11,
5774,
11,
6052,
11,
5824,
11,
4846,
11,
5607,
11,
2079,
11,
3064,
11,
8784,
11,
15377,
11,
19924,
11,
17059,
11,
20809,
11,
20107,
11,
15187,
11,
23726,
11,
14198,
11,
25061,
11,
24991,
11,
19104,
11,
1264,
11,
21261,
11,
22136,
11,
22745,
11,
21315,
11,
22567,
11,
21536,
11,
21895,
11,
21777,
11,
26427,
11,
22291,
11,
23349,
11,
20666,
11,
24591,
11,
28727,
11,
28896,
11,
28072,
11,
30057,
11,
29558,
11,
25540,
11,
25022,
11,
32759,
11,
22515,
11,
20548,
11,
26582,
11,
39195,
11,
34256,
11,
26073,
11,
31697,
11,
30995,
11,
27277,
11,
27824,
11,
38430,
12,
2154,
12095,
5237,
12095,
5333,
12095,
1899,
12095,
20809,
12095,
17059,
12095,
14686,
12095,
13464,
12095,
8784,
12095,
19880,
12095,
15197,
12095,
15982,
12095,
20219,
11,
20964,
12095,
19708,
12095,
15801,
11,
20964,
11,
20964,
11,
20964,
12095,
15377,
12095,
12952,
12095,
16799,
11,
20964,
11,
20964,
12095,
15711,
12095,
22042,
12095,
20107,
11,
20964,
12095,
19420,
12095,
16616,
11,
20964,
11,
20964,
11,
20964,
11,
20964,
12095,
18298,
11,
20964,
11,
20964,
12095,
15363,
12095,
16562,
12095,
11623,
11,
20964,
11,
20964,
12095,
19924,
12095,
11442,
12095,
16945,
12095,
13348,
11,
20964,
12095,
19880,
11,
20964,
11,
20964,
11,
20964,
12095,
14454,
12095,
2079,
12095,
16243,
11,
20964,
12095,
3064,
11,
20964,
11,
46570,
6,
1268,
9419,
10354,
26933,
4051,
11,
3459,
11,
4531,
11,
6420,
11,
4089,
11,
15197,
11,
13348,
11,
16945,
11,
21139,
11,
18781,
11,
20964,
11,
20198,
11,
18294,
11,
8628,
11,
24309,
11,
17827,
11,
21395,
11,
21526,
11,
18742,
11,
21599,
11,
18458,
11,
21273,
11,
19707,
11,
21738,
11,
26660,
11,
23753,
11,
23045,
11,
28592,
11,
29119,
11,
18897,
11,
22980,
11,
25674,
11,
31675,
11,
27728,
11,
22579,
11,
6200,
11,
36453,
11,
37967,
11,
27712,
11,
33394,
11,
28567,
11,
35195,
11,
32459,
11,
27412,
11,
30803,
11,
20167,
11,
36720,
11,
22318,
11,
32128,
11,
38430,
4531,
11,
4531,
11,
4531,
11,
4531,
11,
4531,
11,
4531,
11,
4531,
11,
4531,
11,
4531,
11,
4531,
11,
4531,
11,
4531,
11,
4531,
11,
4531,
11,
4531,
11,
4531,
11,
4531,
11,
4531,
11,
4531,
11,
4531,
11,
4531,
11,
4531,
11,
4531,
11,
4531,
11,
4531,
11,
4531,
12095,
3865,
12095,
1795,
11,
4531,
11,
4531,
11,
4531,
11,
4531,
12095,
3720,
11,
4531,
12095,
4521,
11,
4531,
12095,
5824,
11,
4531,
12095,
5774,
12095,
5892,
12095,
4846,
11,
4531,
12095,
3459,
12095,
3829,
12095,
5607,
12095,
4089,
12095,
6420,
12095,
4531,
12095,
6052,
11,
46570,
6,
2538,
10354,
26933,
20,
11,
1238,
11,
1828,
11,
5333,
11,
5999,
11,
5705,
11,
5774,
11,
6052,
11,
5824,
11,
4846,
11,
5607,
11,
2079,
11,
3064,
11,
8784,
11,
15377,
11,
19924,
11,
17059,
11,
20809,
11,
20107,
11,
15187,
11,
23726,
11,
14198,
11,
25061,
11,
24991,
11,
19104,
11,
1264,
11,
21261,
11,
22136,
11,
22745,
11,
21315,
11,
22567,
11,
21536,
11,
21895,
11,
21777,
11,
26427,
11,
22291,
11,
23349,
11,
20666,
11,
24591,
11,
28727,
11,
28896,
11,
28072,
11,
30057,
11,
29558,
11,
25540,
11,
25022,
11,
32759,
11,
22515,
11,
20548,
11,
26582,
11,
39195,
11,
34256,
11,
26073,
11,
31697,
11,
30995,
11,
27277,
11,
27824,
11,
38430,
12,
2154,
12095,
5237,
12095,
5333,
12095,
1899,
12095,
20809,
12095,
17059,
12095,
14686,
12095,
13464,
12095,
8784,
12095,
19880,
12095,
15197,
12095,
15982,
12095,
20219,
11,
24309,
12095,
19708,
12095,
15801,
11,
24309,
11,
24309,
11,
24309,
12095,
15377,
12095,
12952,
12095,
16799,
11,
24309,
11,
24309,
12095,
15711,
12095,
22042,
12095,
20107,
11,
24309,
12095,
19420,
12095,
16616,
11,
24309,
11,
24309,
12095,
16315,
12095,
10232,
12095,
18298,
12095,
17657,
12095,
16817,
12095,
15363,
12095,
16562,
12095,
11623,
11,
24309,
11,
24309,
12095,
19924,
12095,
11442,
12095,
16945,
12095,
13348,
11,
24309,
12095,
19880,
11,
24309,
11,
24309,
11,
24309,
12095,
14454,
12095,
2079,
12095,
16243,
11,
24309,
12095,
3064,
11,
24309,
11,
46570,
6,
50,
3620,
40,
10354,
26933,
20,
11,
1238,
11,
1828,
11,
2624,
11,
2682,
11,
1821,
11,
1120,
11,
4309,
11,
2816,
11,
5333,
11,
3104,
11,
2425,
11,
4304,
11,
3324,
11,
5999,
11,
5705,
11,
5774,
11,
6052,
11,
5824,
11,
4846,
11,
5607,
11,
2079,
11,
3064,
11,
8784,
11,
15377,
11,
13464,
11,
19420,
11,
12952,
11,
19924,
11,
17059,
11,
20809,
11,
15187,
11,
23726,
11,
14198,
11,
25061,
11,
24136,
11,
23237,
11,
14656,
11,
15259,
11,
27057,
11,
24294,
11,
24839,
11,
23451,
11,
24943,
11,
19104,
11,
1264,
11,
21261,
11,
22136,
11,
22745,
11,
21315,
11,
22567,
11,
21536,
11,
21895,
11,
21777,
11,
26427,
11,
22291,
11,
23349,
11,
20666,
11,
24591,
11,
28727,
11,
28896,
11,
26115,
11,
23148,
11,
28072,
11,
30057,
11,
29558,
11,
25540,
11,
25022,
11,
29807,
11,
26050,
11,
32759,
11,
21495,
11,
35175,
11,
39195,
11,
34256,
11,
26073,
11,
31697,
11,
29211,
11,
33660,
11,
27371,
11,
27277,
11,
35667,
11,
31020,
11,
38430,
12,
2154,
12095,
5237,
12095,
5333,
12095,
17,
11,
3980,
11,
5237,
11,
4790,
12095,
4761,
12095,
17,
12095,
1899,
11,
17657,
12095,
3695,
12095,
4869,
12095,
4524,
12095,
20809,
12095,
17059,
12095,
14686,
12095,
13464,
12095,
8784,
12095,
19880,
12095,
15197,
12095,
15982,
12095,
20219,
11,
19442,
12095,
19708,
11,
25948,
12095,
17,
12095,
17,
12095,
15801,
12095,
18741,
12095,
12762,
12095,
15377,
12095,
12952,
12095,
16799,
11,
17572,
12095,
17,
12095,
17,
11,
23539,
12095,
4304,
12095,
2425,
12095,
3324,
12095,
4790,
11,
13381,
11,
21719,
12095,
15711,
12095,
22042,
12095,
20107,
12095,
10163,
12095,
19420,
12095,
16616,
12095,
18376,
12095,
19244,
12095,
16315,
12095,
10232,
12095,
18298,
12095,
17657,
12095,
16817,
12095,
15363,
12095,
16562,
12095,
11623,
12095,
17464,
11,
20233,
11,
28977,
11,
22579,
12095,
19924,
12095,
11442,
12095,
16945,
12095,
13348,
12095,
17,
12095,
17,
11,
36453,
11,
32148,
11,
29626,
11,
27712,
12095,
14454,
12095,
2079,
12095,
16243,
12095,
17,
11,
33394,
11,
31128,
12095,
3064,
11,
27412,
11,
32128,
11,
46570,
6,
35744,
2149,
62,
44647,
10354,
26933,
4051,
11,
3459,
11,
4531,
11,
6420,
11,
4089,
11,
15197,
11,
13348,
11,
16945,
11,
21139,
11,
18781,
11,
20964,
11,
20198,
11,
18294,
11,
8628,
11,
24309,
11,
17827,
11,
21395,
11,
21526,
11,
18742,
11,
21599,
11,
18458,
11,
21273,
11,
19707,
11,
21738,
11,
26660,
11,
23753,
11,
23045,
11,
28592,
11,
29119,
11,
18897,
11,
22980,
11,
25674,
11,
31675,
11,
27728,
11,
22579,
11,
6200,
11,
36453,
11,
37967,
11,
27712,
11,
33394,
11,
28567,
11,
35195,
11,
32459,
11,
27412,
11,
30803,
11,
20167,
11,
36720,
11,
22318,
11,
32128,
11,
38430,
3829,
11,
3829,
11,
3829,
11,
3829,
11,
3829,
11,
3829,
11,
3829,
11,
3829,
11,
3829,
11,
3829,
11,
3829,
11,
3829,
11,
3829,
11,
3829,
11,
3829,
11,
3829,
11,
3829,
11,
3829,
11,
3829,
11,
3829,
11,
3829,
11,
3829,
11,
3829,
11,
3829,
11,
3829,
11,
3829,
12095,
3865,
12095,
1795,
11,
3829,
11,
3829,
11,
3829,
11,
3829,
12095,
3720,
11,
3829,
12095,
4521,
11,
3829,
12095,
5824,
11,
3829,
12095,
5774,
12095,
5892,
12095,
4846,
11,
3829,
12095,
3459,
12095,
3829,
12095,
5607,
12095,
4089,
12095,
6420,
12095,
4531,
12095,
6052,
11,
46570,
11537,
10354,
26933,
20,
11,
1238,
11,
1828,
11,
2598,
11,
2231,
11,
2920,
11,
4309,
11,
4310,
11,
3553,
11,
3365,
11,
3270,
11,
1899,
11,
5333,
11,
5066,
11,
2414,
11,
2791,
11,
4761,
11,
2425,
11,
4304,
11,
3324,
11,
3695,
11,
3720,
11,
1795,
11,
6659,
11,
6469,
11,
5999,
11,
5705,
11,
5774,
11,
6052,
11,
5824,
11,
4846,
11,
5607,
11,
2079,
11,
3064,
11,
15377,
11,
15801,
11,
15982,
11,
15711,
11,
14454,
11,
16243,
11,
14686,
11,
16616,
11,
18298,
11,
10232,
11,
11623,
11,
16799,
11,
18741,
11,
19924,
11,
17059,
11,
20809,
11,
20107,
11,
15187,
11,
23726,
11,
21139,
11,
14198,
11,
15259,
11,
27057,
11,
24294,
11,
24839,
11,
22883,
11,
25096,
11,
23362,
11,
19782,
11,
26492,
11,
17477,
11,
22913,
11,
22186,
11,
25272,
11,
24991,
11,
19104,
11,
1264,
11,
19004,
11,
18638,
11,
21261,
11,
22136,
11,
22745,
11,
21315,
11,
22567,
11,
21536,
11,
21895,
11,
21777,
11,
26427,
11,
22291,
11,
23349,
11,
20666,
11,
24591,
11,
28727,
11,
28896,
11,
16102,
11,
28872,
11,
11645,
11,
28676,
11,
25600,
11,
30057,
11,
29119,
11,
29558,
11,
18897,
11,
25540,
11,
25674,
11,
25022,
11,
26279,
11,
24369,
11,
22709,
11,
22572,
11,
21288,
11,
22515,
11,
20548,
11,
22996,
11,
34125,
11,
37283,
11,
26582,
11,
34256,
11,
26073,
11,
31697,
11,
30995,
11,
35273,
11,
33319,
11,
32182,
11,
27277,
11,
30743,
11,
27824,
11,
38056,
11,
38430,
12,
2154,
12095,
5237,
12095,
5333,
12095,
17,
12095,
2996,
12095,
17,
12095,
4761,
12095,
17,
12095,
17,
12095,
17,
11,
11442,
12095,
17,
12095,
1899,
12095,
17,
12095,
17,
11,
15363,
11,
18376,
12095,
3695,
12095,
4869,
12095,
4524,
12095,
2920,
11,
19420,
12095,
1120,
12095,
3365,
11,
12952,
12095,
20809,
12095,
17059,
12095,
14686,
12095,
13464,
12095,
8784,
12095,
19880,
12095,
15197,
12095,
15982,
12095,
20219,
12095,
19708,
11,
24136,
11,
23237,
11,
20986,
11,
23055,
11,
14656,
11,
22172,
11,
17279,
11,
25399,
12095,
2414,
12095,
17,
12095,
4349,
12095,
17,
12095,
15801,
12095,
18741,
12095,
12762,
11,
1264,
12095,
15377,
12095,
12952,
12095,
17,
12095,
16799,
12095,
4304,
12095,
2425,
12095,
3324,
12095,
4790,
12095,
2780,
12095,
1120,
12095,
4309,
12095,
3553,
12095,
3365,
12095,
3270,
12095,
20219,
11,
30057,
12095,
5332,
12095,
5705,
12095,
15711,
12095,
22042,
11,
25540,
11,
25022,
12095,
20107,
12095,
10163,
12095,
19420,
12095,
16616,
12095,
18376,
12095,
19244,
12095,
16315,
12095,
10232,
12095,
18298,
12095,
17657,
12095,
16817,
12095,
15363,
12095,
16562,
12095,
11623,
12095,
17464,
11,
27693,
12095,
17,
12095,
3980,
12095,
4051,
12095,
2816,
12095,
19924,
12095,
17,
12095,
11442,
12095,
17,
12095,
16945,
12095,
17,
12095,
13348,
12095,
17,
11,
35175,
12095,
4310,
12095,
5999,
11,
34256,
12095,
19880,
11,
26073,
11,
31697,
11,
31496,
11,
33660,
11,
33535,
12095,
14454,
12095,
2079,
12095,
16243,
11,
27277,
12095,
17,
11,
15277,
11,
35667,
12095,
3064,
11,
24760,
11,
34770,
11,
31020,
11,
46570,
6,
7,
10354,
26933,
19,
11,
20,
11,
23,
11,
24,
11,
940,
11,
1558,
11,
1507,
11,
1129,
11,
1954,
11,
1731,
11,
2075,
11,
2624,
11,
2327,
11,
4051,
11,
5332,
11,
3459,
11,
4531,
11,
3829,
11,
6420,
11,
5892,
11,
4089,
11,
3064,
11,
15197,
11,
13348,
11,
16945,
11,
21139,
11,
18781,
11,
20964,
11,
20198,
11,
18294,
11,
8628,
11,
24309,
11,
17827,
11,
21395,
11,
21526,
11,
18742,
11,
21599,
11,
18458,
11,
21273,
11,
19707,
11,
21738,
11,
19104,
11,
22416,
11,
27877,
11,
26660,
11,
22995,
11,
26912,
11,
23753,
11,
23045,
11,
21626,
11,
9031,
11,
22800,
11,
28592,
11,
29119,
11,
18897,
11,
22980,
11,
25674,
11,
31675,
11,
27728,
11,
22579,
11,
6200,
11,
36453,
11,
37967,
11,
27712,
11,
33394,
11,
28567,
11,
35195,
11,
32459,
11,
27412,
11,
30803,
11,
20167,
11,
36720,
11,
22318,
11,
32128,
11,
38430,
2078,
12095,
2154,
11,
1959,
11,
1270,
11,
3132,
11,
2623,
11,
2718,
11,
2548,
11,
3901,
11,
3682,
11,
3559,
11,
4310,
11,
3553,
11,
6420,
11,
22042,
11,
6420,
11,
6420,
11,
19708,
11,
6420,
11,
20219,
11,
6420,
11,
21139,
11,
6420,
11,
6420,
11,
6420,
11,
6420,
11,
6420,
11,
6420,
11,
6420,
11,
6420,
11,
6420,
11,
6420,
11,
6420,
11,
6420,
11,
6420,
11,
6420,
11,
6420,
11,
6420,
11,
6420,
11,
6420,
11,
6420,
11,
18897,
11,
25674,
11,
33551,
11,
6420,
11,
27696,
11,
25710,
11,
6420,
12095,
3865,
11,
26561,
11,
27728,
11,
18938,
12095,
1795,
11,
6420,
11,
6420,
11,
6420,
11,
6420,
12095,
3720,
11,
6420,
12095,
4521,
11,
6420,
12095,
5824,
11,
6420,
12095,
5774,
12095,
5892,
12095,
4846,
11,
6420,
12095,
3459,
12095,
3829,
12095,
5607,
12095,
4089,
12095,
6420,
12095,
4531,
12095,
6052,
11,
46570,
6,
1797,
62,
1268,
23428,
2389,
10354,
26933,
4051,
11,
3459,
11,
4531,
11,
6420,
11,
4089,
11,
15197,
11,
13348,
11,
16945,
11,
21139,
11,
18781,
11,
20964,
11,
20198,
11,
18294,
11,
8628,
11,
24309,
11,
17827,
11,
21395,
11,
21526,
11,
18742,
11,
21599,
11,
18458,
11,
21273,
11,
19707,
11,
21738,
11,
26660,
11,
23753,
11,
23045,
11,
28592,
11,
29119,
11,
18897,
11,
22980,
11,
25674,
11,
31675,
11,
27728,
11,
22579,
11,
6200,
11,
36453,
11,
37967,
11,
27712,
11,
33394,
11,
28567,
11,
35195,
11,
32459,
11,
27412,
11,
30803,
11,
20167,
11,
36720,
11,
22318,
11,
32128,
11,
38430,
5892,
11,
5892,
11,
5892,
11,
5892,
11,
5892,
11,
5892,
11,
5892,
11,
5892,
11,
5892,
11,
5892,
11,
5892,
11,
5892,
11,
5892,
11,
5892,
11,
5892,
11,
5892,
11,
5892,
11,
5892,
11,
5892,
11,
5892,
11,
5892,
11,
5892,
11,
5892,
11,
5892,
11,
5892,
11,
5892,
12095,
3865,
12095,
1795,
11,
5892,
11,
5892,
11,
5892,
11,
5892,
12095,
3720,
11,
5892,
12095,
4521,
11,
5892,
12095,
5824,
11,
5892,
12095,
5774,
12095,
5892,
12095,
4846,
11,
5892,
12095,
3459,
12095,
3829,
12095,
5607,
12095,
4089,
12095,
6420,
12095,
4531,
12095,
6052,
11,
46570,
6,
12161,
10354,
26933,
20,
11,
1238,
11,
1828,
11,
5333,
11,
5999,
11,
5705,
11,
5774,
11,
6052,
11,
5824,
11,
4846,
11,
5607,
11,
2079,
11,
3064,
11,
8784,
11,
15377,
11,
19924,
11,
17059,
11,
20809,
11,
20107,
11,
15187,
11,
23726,
11,
14198,
11,
25061,
11,
24991,
11,
19104,
11,
1264,
11,
21261,
11,
22136,
11,
22745,
11,
21315,
11,
22567,
11,
21536,
11,
21895,
11,
21777,
11,
26427,
11,
22291,
11,
23349,
11,
20666,
11,
24591,
11,
28727,
11,
28896,
11,
28072,
11,
30057,
11,
29558,
11,
25540,
11,
25022,
11,
32759,
11,
22515,
11,
20548,
11,
26582,
11,
39195,
11,
34256,
11,
26073,
11,
31697,
11,
30995,
11,
27277,
11,
27824,
11,
38430,
12,
2154,
12095,
5237,
12095,
5333,
12095,
1899,
12095,
20809,
12095,
17059,
12095,
14686,
12095,
13464,
12095,
8784,
12095,
19880,
12095,
15197,
12095,
15982,
12095,
20219,
11,
18294,
12095,
19708,
12095,
15801,
11,
18294,
11,
18294,
11,
18294,
12095,
15377,
12095,
12952,
12095,
16799,
11,
18294,
11,
18294,
12095,
15711,
12095,
22042,
12095,
20107,
11,
18294,
12095,
19420,
12095,
16616,
12095,
18376,
12095,
19244,
12095,
16315,
12095,
10232,
12095,
18298,
12095,
17657,
12095,
16817,
12095,
15363,
12095,
16562,
12095,
11623,
11,
18294,
11,
18294,
12095,
19924,
12095,
11442,
12095,
16945,
12095,
13348,
11,
18294,
12095,
19880,
11,
18294,
11,
18294,
11,
18294,
12095,
14454,
12095,
2079,
12095,
16243,
11,
18294,
12095,
3064,
11,
18294,
11,
46570,
6,
12425,
62,
15490,
10354,
26933,
15,
11,
16,
11,
17,
11,
20,
11,
22,
11,
1314,
11,
2231,
11,
3980,
11,
5237,
11,
4790,
11,
10232,
11,
19442,
11,
25948,
11,
23188,
11,
17572,
11,
23539,
11,
23516,
11,
28592,
11,
24970,
11,
13381,
11,
21719,
11,
26276,
11,
20233,
11,
28977,
11,
25870,
11,
27033,
11,
25270,
11,
31675,
11,
26895,
11,
36244,
11,
25838,
11,
27936,
11,
36042,
11,
31380,
11,
28460,
11,
29626,
11,
28978,
11,
14877,
11,
38430,
24,
11,
24,
12095,
1959,
12095,
2154,
12095,
2682,
12095,
2670,
12095,
2996,
12095,
21,
12095,
22,
12095,
1270,
12095,
2414,
12095,
2624,
12095,
3132,
12095,
940,
12095,
2091,
12095,
1558,
12095,
1415,
12095,
1795,
12095,
3901,
12095,
2623,
12095,
2548,
12095,
1821,
12095,
2327,
12095,
2718,
11,
24,
12095,
1507,
12095,
1433,
12095,
3720,
12095,
1238,
11,
24,
12095,
1129,
12095,
2481,
12095,
1485,
12095,
23,
12095,
1314,
12095,
1065,
12095,
24,
12095,
1157,
11,
46570,
6,
1677,
48,
8924,
8924,
10354,
26933,
21738,
11,
23753,
11,
23045,
11,
28592,
11,
31675,
11,
22579,
11,
36453,
11,
27712,
11,
33394,
11,
28567,
11,
32459,
11,
27412,
11,
30803,
11,
20167,
11,
36720,
11,
22318,
11,
32128,
11,
38430,
26912,
11,
26912,
12095,
3865,
12095,
1795,
12095,
3720,
12095,
4521,
12095,
5824,
12095,
5774,
12095,
5892,
12095,
4846,
12095,
3459,
12095,
3829,
12095,
5607,
12095,
4089,
12095,
6420,
12095,
4531,
12095,
6052,
11,
46570,
6,
27734,
10354,
26933,
20,
11,
1238,
11,
1828,
11,
5333,
11,
5999,
11,
5705,
11,
5774,
11,
6052,
11,
5824,
11,
4846,
11,
5607,
11,
2079,
11,
3064,
11,
8784,
11,
15377,
11,
19924,
11,
17059,
11,
20809,
11,
20107,
11,
15187,
11,
23726,
11,
14198,
11,
25061,
11,
24991,
11,
19104,
11,
1264,
11,
21261,
11,
22136,
11,
22745,
11,
21315,
11,
22567,
11,
21536,
11,
21895,
11,
21777,
11,
26427,
11,
22291,
11,
23349,
11,
20666,
11,
24591,
11,
28727,
11,
28896,
11,
28072,
11,
30057,
11,
29558,
11,
25540,
11,
25022,
11,
32759,
11,
22515,
11,
20548,
11,
26582,
11,
39195,
11,
34256,
11,
26073,
11,
31697,
11,
30995,
11,
27277,
11,
27824,
11,
38430,
12,
2154,
12095,
5237,
12095,
5333,
12095,
1899,
12095,
20809,
12095,
17059,
12095,
14686,
12095,
13464,
12095,
8784,
12095,
19880,
12095,
15197,
12095,
15982,
12095,
20219,
11,
21526,
12095,
19708,
12095,
15801,
11,
21526,
11,
21526,
11,
21526,
12095,
15377,
12095,
12952,
12095,
16799,
11,
21526,
11,
21526,
12095,
15711,
12095,
22042,
12095,
20107,
11,
21526,
12095,
19420,
12095,
16616,
11,
21526,
11,
21526,
12095,
16315,
12095,
10232,
12095,
18298,
12095,
17657,
12095,
16817,
12095,
15363,
12095,
16562,
12095,
11623,
11,
21526,
11,
21526,
12095,
19924,
12095,
11442,
12095,
16945,
12095,
13348,
11,
21526,
12095,
19880,
11,
21526,
11,
21526,
11,
21526,
12095,
14454,
12095,
2079,
12095,
16243,
11,
21526,
12095,
3064,
11,
21526,
11,
46570,
6,
35,
2606,
19146,
62,
25154,
1340,
10354,
26933,
20,
11,
1238,
11,
1828,
11,
5333,
11,
3865,
11,
3064,
11,
38430,
12,
2154,
11,
2670,
12095,
5333,
12095,
1899,
11,
23756,
12095,
5333,
11,
46570,
6,
6489,
2937,
10354,
26933,
20,
11,
1238,
11,
1828,
11,
5333,
11,
5999,
11,
5705,
11,
5774,
11,
6052,
11,
5824,
11,
4846,
11,
5607,
11,
2079,
11,
3064,
11,
8784,
11,
15377,
11,
19924,
11,
17059,
11,
20809,
11,
20107,
11,
15187,
11,
23726,
11,
14198,
11,
25061,
11,
24991,
11,
19104,
11,
1264,
11,
21261,
11,
22136,
11,
22745,
11,
21315,
11,
22567,
11,
21536,
11,
21895,
11,
21777,
11,
26427,
11,
22291,
11,
23349,
11,
20666,
11,
24591,
11,
28727,
11,
28896,
11,
28072,
11,
30057,
11,
29558,
11,
25540,
11,
25022,
11,
32759,
11,
22515,
11,
20548,
11,
26582,
11,
39195,
11,
34256,
11,
26073,
11,
31697,
11,
30995,
11,
27277,
11,
27824,
11,
38430,
12,
2154,
12095,
5237,
12095,
5333,
12095,
1899,
12095,
20809,
12095,
17059,
12095,
14686,
12095,
13464,
12095,
8784,
12095,
19880,
12095,
15197,
12095,
15982,
12095,
20219,
11,
21599,
12095,
19708,
12095,
15801,
11,
21599,
11,
21599,
11,
21599,
12095,
15377,
12095,
12952,
12095,
16799,
11,
21599,
11,
21599,
12095,
15711,
12095,
22042,
12095,
20107,
11,
21599,
11,
21599,
12095,
16616,
11,
21599,
11,
21599,
11,
21599,
11,
21599,
12095,
18298,
11,
21599,
11,
21599,
12095,
15363,
12095,
16562,
11,
21599,
11,
21599,
11,
21599,
12095,
19924,
12095,
11442,
12095,
16945,
12095,
13348,
11,
21599,
12095,
19880,
11,
21599,
11,
21599,
11,
21599,
12095,
14454,
12095,
2079,
12095,
16243,
11,
21599,
12095,
3064,
11,
21599,
11,
46570,
6,
41374,
49,
10354,
26933,
4051,
11,
3459,
11,
4531,
11,
6420,
11,
4089,
11,
15197,
11,
13348,
11,
16945,
11,
21139,
11,
18781,
11,
20964,
11,
20198,
11,
18294,
11,
8628,
11,
24309,
11,
17827,
11,
21395,
11,
21526,
11,
18742,
11,
21599,
11,
18458,
11,
21273,
11,
19707,
11,
21738,
11,
26660,
11,
23753,
11,
23045,
11,
28592,
11,
29119,
11,
18897,
11,
22980,
11,
25674,
11,
31675,
11,
27728,
11,
22579,
11,
6200,
11,
36453,
11,
37967,
11,
27712,
11,
33394,
11,
28567,
11,
35195,
11,
32459,
11,
27412,
11,
30803,
11,
20167,
11,
36720,
11,
22318,
11,
32128,
11,
38430,
3459,
11,
3459,
11,
3459,
11,
3459,
11,
3459,
11,
3459,
11,
3459,
11,
3459,
11,
3459,
11,
3459,
11,
3459,
11,
3459,
11,
3459,
11,
3459,
11,
3459,
11,
3459,
11,
3459,
11,
3459,
11,
3459,
11,
3459,
11,
3459,
11,
3459,
11,
3459,
11,
3459,
11,
3459,
11,
3459,
12095,
3865,
12095,
1795,
11,
3459,
11,
3459,
11,
3459,
11,
3459,
12095,
3720,
11,
3459,
12095,
4521,
11,
3459,
12095,
5824,
11,
3459,
12095,
5774,
12095,
5892,
12095,
4846,
11,
3459,
12095,
3459,
12095,
3829,
12095,
5607,
12095,
4089,
12095,
6420,
12095,
4531,
12095,
6052,
11,
46570,
6,
44710,
10354,
26933,
15,
11,
16,
11,
17,
11,
20,
11,
22,
11,
1314,
11,
2231,
11,
3980,
11,
5237,
11,
4790,
11,
10232,
11,
19442,
11,
25948,
11,
23188,
11,
17572,
11,
23539,
11,
23516,
11,
28592,
11,
24970,
11,
13381,
11,
21719,
11,
26276,
11,
20233,
11,
28977,
11,
25870,
11,
27033,
11,
25270,
11,
31675,
11,
26895,
11,
36244,
11,
25838,
11,
27936,
11,
36042,
11,
31380,
11,
28460,
11,
29626,
11,
28978,
11,
14877,
11,
38430,
940,
11,
940,
12095,
1959,
12095,
2154,
12095,
2682,
12095,
2670,
12095,
2996,
12095,
21,
12095,
22,
12095,
1270,
12095,
2414,
12095,
2624,
12095,
3132,
12095,
940,
12095,
2091,
12095,
1558,
12095,
1415,
12095,
1795,
12095,
3901,
12095,
2623,
12095,
2548,
12095,
1821,
12095,
2327,
12095,
2718,
11,
940,
12095,
1507,
12095,
1433,
12095,
3720,
12095,
1238,
11,
940,
12095,
1129,
12095,
2481,
12095,
1485,
12095,
23,
12095,
1314,
12095,
1065,
12095,
24,
12095,
1157,
11,
46570,
10354,
10354,
26933,
20,
11,
3064,
11,
11442,
11,
23055,
11,
27326,
11,
38430,
12,
2154,
11,
18444,
11,
21940,
11,
24137,
11,
18444,
11,
46570,
6,
28,
10354,
26933,
20,
11,
4524,
11,
38430,
12,
2154,
11,
10163,
11,
46570,
6,
10705,
16284,
10354,
26933,
20,
11,
1238,
11,
1828,
11,
2624,
11,
2816,
11,
5333,
11,
5999,
11,
5705,
11,
5774,
11,
6052,
11,
5824,
11,
4846,
11,
5607,
11,
2079,
11,
3064,
11,
15377,
11,
16799,
11,
19924,
11,
17059,
11,
20809,
11,
15187,
11,
23726,
11,
14198,
11,
23362,
11,
19104,
11,
1264,
11,
21261,
11,
22136,
11,
22745,
11,
21315,
11,
22567,
11,
21536,
11,
21895,
11,
21777,
11,
26427,
11,
22291,
11,
23349,
11,
20666,
11,
24591,
11,
28727,
11,
28896,
11,
28072,
11,
30057,
11,
29558,
11,
25540,
11,
25022,
11,
26050,
11,
34256,
11,
26073,
11,
31697,
11,
27277,
11,
38430,
12,
2154,
12095,
5237,
12095,
5333,
11,
4051,
11,
13348,
12095,
1899,
12095,
20809,
12095,
17059,
12095,
14686,
12095,
13464,
12095,
8784,
12095,
19880,
12095,
15197,
12095,
15982,
12095,
20219,
12095,
19708,
11,
20356,
12095,
15801,
12095,
18741,
12095,
12762,
12095,
15377,
12095,
12952,
12095,
16799,
11,
25191,
12095,
15711,
12095,
22042,
12095,
20107,
12095,
10163,
12095,
19420,
12095,
16616,
12095,
18376,
12095,
19244,
12095,
16315,
12095,
10232,
12095,
18298,
12095,
17657,
12095,
16817,
12095,
15363,
12095,
16562,
12095,
11623,
12095,
17464,
11,
6200,
12095,
19924,
12095,
11442,
12095,
16945,
12095,
13348,
11,
4051,
12095,
14454,
12095,
2079,
12095,
16243,
12095,
3064,
11,
46570,
6,
3,
437,
10354,
26933,
15,
11,
16,
11,
17,
11,
20,
11,
21,
11,
22,
11,
1065,
11,
1485,
11,
1314,
11,
1495,
11,
1983,
11,
2231,
11,
3980,
11,
5237,
11,
4790,
11,
10232,
11,
19442,
11,
25948,
11,
23188,
11,
17572,
11,
23539,
11,
23516,
11,
28592,
11,
24970,
11,
13381,
11,
21719,
11,
26276,
11,
20233,
11,
28977,
11,
27033,
11,
25270,
11,
31675,
11,
26895,
11,
25838,
11,
27936,
11,
36042,
11,
31380,
11,
28460,
11,
29626,
11,
28978,
11,
14877,
11,
38430,
12,
17,
12095,
17,
12095,
1959,
12095,
2154,
11,
15,
12095,
2682,
12095,
20,
12095,
18,
12095,
2670,
12095,
16,
12095,
19,
12095,
2996,
12095,
21,
12095,
22,
12095,
1270,
12095,
2414,
12095,
2624,
12095,
3132,
12095,
940,
12095,
2091,
12095,
1558,
12095,
1415,
12095,
1795,
12095,
3901,
12095,
2623,
12095,
2548,
12095,
1821,
12095,
2327,
12095,
2718,
12095,
1507,
12095,
1433,
12095,
3720,
12095,
1238,
12095,
1129,
12095,
2481,
12095,
1485,
12095,
23,
12095,
1314,
12095,
1065,
12095,
24,
12095,
1157,
11,
46570,
6,
25256,
10354,
26933,
15,
11,
16,
11,
17,
11,
18,
11,
20,
11,
22,
11,
1157,
11,
1314,
11,
1433,
11,
1238,
11,
1828,
11,
2078,
11,
1959,
11,
1270,
11,
3132,
11,
2091,
11,
2623,
11,
2718,
11,
2548,
11,
2670,
11,
3901,
11,
3682,
11,
3559,
11,
2231,
11,
2857,
11,
4349,
11,
4310,
11,
4051,
11,
3980,
11,
3553,
11,
5333,
11,
5237,
11,
3134,
11,
3104,
11,
4869,
11,
4790,
11,
6659,
11,
4521,
11,
3459,
11,
4531,
11,
6420,
11,
3865,
11,
4089,
11,
3064,
11,
15197,
11,
13348,
11,
16562,
11,
17657,
11,
16315,
11,
10232,
11,
10163,
11,
17464,
11,
11623,
11,
12762,
11,
18741,
11,
22042,
11,
16945,
11,
19880,
11,
19708,
11,
20219,
11,
23756,
11,
21139,
11,
18444,
11,
18781,
11,
20964,
11,
20198,
11,
18294,
11,
19442,
11,
8628,
11,
24309,
11,
17827,
11,
21395,
11,
21526,
11,
18742,
11,
21599,
11,
18458,
11,
21273,
11,
19707,
11,
25948,
11,
21940,
11,
23628,
11,
25399,
11,
22985,
11,
22413,
11,
23188,
11,
21738,
11,
21652,
11,
17572,
11,
22047,
11,
24137,
11,
18182,
11,
24403,
11,
23539,
11,
19214,
11,
25667,
11,
24339,
11,
25429,
11,
22370,
11,
24693,
11,
23721,
11,
23516,
11,
26660,
11,
23753,
11,
23045,
11,
28592,
11,
24970,
11,
13381,
11,
21719,
11,
29119,
11,
18897,
11,
22980,
11,
25674,
11,
26276,
11,
20233,
11,
28977,
11,
28857,
11,
25870,
11,
30290,
11,
27033,
11,
25270,
11,
27693,
11,
33551,
11,
31675,
11,
27696,
11,
25710,
11,
26561,
11,
27728,
11,
22579,
11,
6200,
11,
18938,
11,
26895,
11,
36244,
11,
25838,
11,
33638,
11,
27936,
11,
36042,
11,
36453,
11,
37967,
11,
32148,
11,
31380,
11,
28460,
11,
29626,
11,
23601,
11,
31575,
11,
32118,
11,
27712,
11,
28978,
11,
14877,
11,
33394,
11,
28567,
11,
31128,
11,
35195,
11,
32459,
11,
27412,
11,
30803,
11,
20167,
11,
36720,
11,
22318,
11,
32128,
11,
38430,
20,
11,
20,
12095,
1959,
12095,
5066,
12095,
2154,
12095,
2682,
11,
20,
12095,
2670,
11,
20,
12095,
5237,
12095,
5333,
11,
20,
11,
20,
11,
20,
11,
20,
11,
20,
11,
20,
11,
20,
11,
20,
11,
20,
11,
20,
11,
20,
11,
20,
12095,
2996,
11,
20,
11,
20,
11,
20,
11,
20,
12095,
21,
11,
20,
12095,
1899,
12095,
22,
11,
20,
11,
20,
11,
20,
12095,
1270,
11,
20,
11,
20,
11,
20,
11,
20,
11,
20,
11,
20,
11,
20,
12095,
5333,
11,
20,
11,
20,
11,
20,
11,
20,
11,
20,
12095,
2414,
11,
20,
11,
20,
11,
20,
11,
20,
11,
20,
11,
20,
11,
20,
11,
20,
11,
20,
11,
20,
11,
20,
11,
20,
11,
20,
11,
20,
11,
20,
11,
20,
11,
20,
12095,
2624,
11,
20,
11,
20,
11,
20,
11,
20,
11,
20,
11,
20,
11,
20,
11,
20,
11,
20,
11,
20,
12095,
3132,
11,
20,
11,
20,
11,
20,
11,
20,
11,
20,
12095,
940,
11,
20,
11,
20,
12095,
2091,
11,
20,
11,
20,
11,
20,
11,
20,
12095,
1558,
11,
20,
11,
20,
11,
20,
12095,
2075,
11,
20,
12095,
1983,
12095,
2078,
11,
20,
11,
20,
11,
20,
12095,
3865,
12095,
1795,
12095,
3901,
12095,
2623,
12095,
2548,
11,
20,
11,
20,
11,
20,
11,
20,
12095,
1821,
12095,
2327,
12095,
2718,
11,
20,
11,
20,
11,
20,
12095,
1507,
12095,
1433,
11,
20,
11,
20,
12095,
3720,
11,
20,
11,
20,
11,
20,
11,
20,
12095,
4521,
11,
20,
11,
20,
12095,
1238,
11,
20,
12095,
1129,
11,
20,
12095,
2481,
11,
20,
12095,
5824,
11,
20,
12095,
2598,
12095,
23,
12095,
1314,
12095,
1065,
11,
20,
11,
20,
11,
20,
12095,
5774,
12095,
24,
12095,
1157,
12095,
5892,
12095,
4846,
12095,
2857,
11,
20,
12095,
3459,
12095,
3829,
12095,
5607,
12095,
4089,
12095,
6420,
12095,
4531,
12095,
6052,
11,
46570,
6,
4805,
2394,
4503,
3535,
10354,
26933,
15,
11,
16,
11,
17,
11,
20,
11,
22,
11,
1314,
11,
2231,
11,
3980,
11,
5237,
11,
4790,
11,
10232,
11,
19442,
11,
25948,
11,
23188,
11,
17572,
11,
23539,
11,
23516,
11,
28592,
11,
24970,
11,
13381,
11,
21719,
11,
26276,
11,
20233,
11,
28977,
11,
25870,
11,
27033,
11,
25270,
11,
31675,
11,
26895,
11,
36244,
11,
25838,
11,
27936,
11,
36042,
11,
31380,
11,
28460,
11,
29626,
11,
28978,
11,
14877,
11,
38430,
1415,
11,
1415,
12095,
1959,
12095,
2154,
12095,
2682,
12095,
2670,
12095,
2996,
12095,
21,
12095,
22,
12095,
1270,
12095,
2414,
12095,
2624,
12095,
3132,
12095,
940,
12095,
2091,
12095,
1558,
12095,
1415,
12095,
1795,
12095,
3901,
12095,
2623,
12095,
2548,
12095,
1821,
12095,
2327,
12095,
2718,
11,
1415,
12095,
1507,
12095,
1433,
12095,
3720,
12095,
1238,
11,
1415,
12095,
1129,
12095,
2481,
12095,
1485,
12095,
23,
12095,
1314,
12095,
1065,
12095,
24,
12095,
1157,
11,
46570,
6,
18601,
2751,
10354,
26933,
1415,
11,
2481,
11,
4349,
11,
4051,
11,
3459,
11,
4531,
11,
6420,
11,
4089,
11,
15197,
11,
13348,
11,
10163,
11,
17464,
11,
16945,
11,
21139,
11,
18781,
11,
20964,
11,
20198,
11,
18294,
11,
8628,
11,
24309,
11,
17827,
11,
21395,
11,
21526,
11,
18742,
11,
21599,
11,
18458,
11,
21273,
11,
19707,
11,
21738,
11,
20356,
11,
26660,
11,
23753,
11,
23045,
11,
28592,
11,
25191,
11,
29119,
11,
18897,
11,
22980,
11,
25674,
11,
31675,
11,
27728,
11,
22579,
11,
6200,
11,
36453,
11,
37967,
11,
27712,
11,
30557,
11,
33394,
11,
28567,
11,
35195,
11,
26780,
11,
32459,
11,
27412,
11,
30803,
11,
20167,
11,
36720,
11,
22318,
11,
32128,
11,
38430,
2682,
11,
1821,
11,
2425,
11,
4846,
11,
4846,
11,
4846,
11,
4846,
11,
4846,
11,
4846,
11,
4846,
11,
27057,
11,
2425,
11,
4846,
11,
4846,
11,
4846,
11,
4846,
11,
4846,
11,
4846,
11,
4846,
11,
4846,
11,
4846,
11,
4846,
11,
4846,
11,
4846,
11,
4846,
11,
4846,
11,
4846,
11,
4846,
11,
4846,
11,
11645,
11,
4846,
11,
4846,
12095,
3865,
12095,
1795,
11,
22709,
11,
4846,
11,
4846,
11,
22515,
11,
4846,
12095,
3720,
11,
4846,
12095,
4521,
11,
4846,
12095,
5824,
11,
4846,
12095,
5774,
11,
32066,
12095,
5892,
12095,
4846,
11,
4846,
11,
38056,
12095,
3459,
12095,
3829,
12095,
5607,
12095,
4089,
12095,
6420,
12095,
4531,
12095,
6052,
11,
46570,
6,
2257,
7036,
62,
6981,
62,
15543,
2043,
10354,
26933,
21738,
11,
23753,
11,
23045,
11,
28592,
11,
31675,
11,
22579,
11,
36453,
11,
27712,
11,
33394,
11,
28567,
11,
32459,
11,
27412,
11,
30803,
11,
20167,
11,
36720,
11,
22318,
11,
32128,
11,
38430,
21626,
11,
21626,
12095,
3865,
12095,
1795,
12095,
3720,
12095,
4521,
12095,
5824,
12095,
5774,
12095,
5892,
12095,
4846,
12095,
3459,
12095,
3829,
12095,
5607,
12095,
4089,
12095,
6420,
12095,
4531,
12095,
6052,
11,
46570,
6,
22808,
10354,
26933,
4051,
11,
3459,
11,
4531,
11,
6420,
11,
4089,
11,
15197,
11,
13348,
11,
16945,
11,
21139,
11,
18781,
11,
20964,
11,
20198,
11,
18294,
11,
8628,
11,
24309,
11,
17827,
11,
21395,
11,
21526,
11,
18742,
11,
21599,
11,
18458,
11,
21273,
11,
19707,
11,
21738,
11,
26660,
11,
23753,
11,
23045,
11,
28592,
11,
29119,
11,
18897,
11,
22980,
11,
25674,
11,
31675,
11,
27728,
11,
22579,
11,
6200,
11,
36453,
11,
37967,
11,
27712,
11,
33394,
11,
28567,
11,
35195,
11,
32459,
11,
27412,
11,
30803,
11,
20167,
11,
36720,
11,
22318,
11,
32128,
11,
38430,
2079,
11,
2079,
11,
2079,
11,
2079,
11,
2079,
11,
2079,
11,
2079,
11,
2079,
11,
2079,
11,
2079,
11,
2079,
11,
2079,
11,
2079,
11,
2079,
11,
2079,
11,
2079,
11,
2079,
11,
2079,
11,
2079,
11,
2079,
11,
2079,
11,
2079,
11,
2079,
11,
2079,
11,
2079,
11,
2079,
12095,
3865,
12095,
1795,
11,
2079,
11,
2079,
11,
2079,
11,
2079,
12095,
3720,
11,
2079,
12095,
4521,
11,
2079,
12095,
5824,
11,
2079,
12095,
5774,
12095,
5892,
12095,
4846,
11,
2079,
12095,
3459,
12095,
3829,
12095,
5607,
12095,
4089,
12095,
6420,
12095,
4531,
12095,
6052,
11,
46570,
6,
1677,
5883,
10354,
26933,
15,
11,
16,
11,
17,
11,
20,
11,
22,
11,
1314,
11,
2231,
11,
3980,
11,
5237,
11,
4790,
11,
10232,
11,
19442,
11,
25948,
11,
23188,
11,
17572,
11,
23539,
11,
23516,
11,
28592,
11,
24970,
11,
13381,
11,
21719,
11,
26276,
11,
20233,
11,
28977,
11,
25870,
11,
27033,
11,
25270,
11,
31675,
11,
26895,
11,
36244,
11,
25838,
11,
27936,
11,
36042,
11,
31380,
11,
28460,
11,
29626,
11,
28978,
11,
14877,
11,
38430,
1558,
11,
1558,
12095,
1959,
12095,
2154,
12095,
2682,
12095,
2670,
12095,
2996,
12095,
21,
12095,
22,
12095,
1270,
12095,
2414,
12095,
2624,
12095,
3132,
12095,
940,
12095,
2091,
12095,
1558,
12095,
1415,
12095,
1795,
12095,
3901,
12095,
2623,
12095,
2548,
12095,
1821,
12095,
2327,
12095,
2718,
11,
1558,
12095,
1507,
12095,
1433,
12095,
3720,
12095,
1238,
11,
1558,
12095,
1129,
12095,
2481,
12095,
1485,
12095,
23,
12095,
1314,
12095,
1065,
12095,
24,
12095,
1157,
11,
46570,
6,
3698,
5188,
10354,
26933,
28592,
11,
31675,
11,
28567,
11,
38430,
12,
1795,
12095,
3720,
11,
35447,
11,
46570,
6,
44,
16219,
8881,
10354,
26933,
15,
11,
16,
11,
17,
11,
20,
11,
22,
11,
1314,
11,
2231,
11,
3980,
11,
5237,
11,
4790,
11,
10232,
11,
19442,
11,
25948,
11,
23188,
11,
17572,
11,
23539,
11,
23516,
11,
28592,
11,
24970,
11,
13381,
11,
21719,
11,
26276,
11,
20233,
11,
28977,
11,
25870,
11,
27033,
11,
25270,
11,
31675,
11,
26895,
11,
36244,
11,
25838,
11,
27936,
11,
36042,
11,
31380,
11,
28460,
11,
29626,
11,
28978,
11,
14877,
11,
38430,
1507,
11,
1507,
12095,
1959,
12095,
2154,
12095,
2682,
12095,
2670,
12095,
2996,
12095,
21,
12095,
22,
12095,
1270,
12095,
2414,
12095,
2624,
12095,
3132,
12095,
940,
12095,
2091,
12095,
1558,
12095,
1415,
12095,
1795,
12095,
3901,
12095,
2623,
12095,
2548,
12095,
1821,
12095,
2327,
12095,
2718,
11,
1507,
12095,
1507,
12095,
1433,
12095,
3720,
12095,
1238,
11,
1507,
12095,
1129,
12095,
2481,
12095,
1485,
12095,
23,
12095,
1314,
12095,
1065,
12095,
24,
12095,
1157,
11,
46570,
6,
8264,
10354,
26933,
20,
11,
1238,
11,
1828,
11,
5333,
11,
5999,
11,
5705,
11,
5774,
11,
6052,
11,
5824,
11,
4846,
11,
5607,
11,
2079,
11,
3064,
11,
8784,
11,
15377,
11,
19924,
11,
17059,
11,
20809,
11,
20107,
11,
15187,
11,
23726,
11,
14198,
11,
25061,
11,
24991,
11,
19104,
11,
1264,
11,
21261,
11,
22136,
11,
22745,
11,
21315,
11,
22567,
11,
21536,
11,
21895,
11,
21777,
11,
26427,
11,
22291,
11,
23349,
11,
20666,
11,
24591,
11,
28727,
11,
28896,
11,
28072,
11,
30057,
11,
29558,
11,
25540,
11,
25022,
11,
32759,
11,
22515,
11,
20548,
11,
26582,
11,
39195,
11,
34256,
11,
26073,
11,
31697,
11,
30995,
11,
27277,
11,
27824,
11,
38430,
12,
2154,
12095,
5237,
12095,
5333,
12095,
1899,
12095,
20809,
12095,
17059,
12095,
14686,
12095,
13464,
12095,
8784,
12095,
19880,
12095,
15197,
12095,
15982,
12095,
20219,
11,
17827,
12095,
19708,
12095,
15801,
11,
17827,
11,
17827,
11,
17827,
12095,
15377,
12095,
12952,
12095,
16799,
11,
17827,
11,
17827,
12095,
15711,
12095,
22042,
12095,
20107,
11,
17827,
12095,
19420,
12095,
16616,
11,
17827,
11,
17827,
12095,
16315,
12095,
10232,
12095,
18298,
12095,
17657,
12095,
16817,
12095,
15363,
12095,
16562,
12095,
11623,
11,
17827,
11,
17827,
12095,
19924,
12095,
11442,
12095,
16945,
12095,
13348,
11,
17827,
12095,
19880,
11,
17827,
11,
17827,
11,
17827,
12095,
14454,
12095,
2079,
12095,
16243,
11,
17827,
12095,
3064,
11,
17827,
11,
46570,
6,
6369,
31800,
62,
25216,
10354,
26933,
15,
11,
16,
11,
17,
11,
20,
11,
22,
11,
1314,
11,
2231,
11,
3980,
11,
5237,
11,
4790,
11,
10232,
11,
19442,
11,
25948,
11,
23188,
11,
17572,
11,
23539,
11,
23516,
11,
28592,
11,
24970,
11,
13381,
11,
21719,
11,
26276,
11,
20233,
11,
28977,
11,
25870,
11,
27033,
11,
25270,
11,
31675,
11,
26895,
11,
36244,
11,
25838,
11,
27936,
11,
36042,
11,
31380,
11,
28460,
11,
29626,
11,
28978,
11,
14877,
11,
38430,
1129,
11,
1129,
12095,
1959,
12095,
2154,
12095,
2682,
12095,
2670,
12095,
2996,
12095,
21,
12095,
22,
12095,
1270,
12095,
2414,
12095,
2624,
12095,
3132,
12095,
940,
12095,
2091,
12095,
1558,
12095,
1415,
12095,
1795,
12095,
3901,
12095,
2623,
12095,
2548,
12095,
1821,
12095,
2327,
12095,
2718,
11,
1129,
12095,
1507,
12095,
1433,
12095,
3720,
12095,
1238,
11,
1129,
12095,
1129,
12095,
2481,
12095,
1485,
12095,
23,
12095,
1314,
12095,
1065,
12095,
24,
12095,
1157,
11,
46570,
6,
58,
10354,
26933,
20,
11,
1238,
11,
1828,
11,
5333,
11,
5999,
11,
5705,
11,
5774,
11,
6052,
11,
5824,
11,
4846,
11,
5607,
11,
2079,
11,
3064,
11,
15377,
11,
19924,
11,
15187,
11,
19104,
11,
1264,
11,
21261,
11,
30057,
11,
29558,
11,
25540,
11,
25022,
11,
22515,
11,
34256,
11,
26073,
11,
31697,
11,
27277,
11,
38430,
12,
2154,
12095,
5237,
12095,
5333,
12095,
1899,
12095,
20809,
12095,
17059,
11,
16945,
12095,
13464,
12095,
8784,
12095,
19880,
12095,
15197,
12095,
15982,
12095,
20219,
12095,
19708,
12095,
15801,
12095,
15377,
12095,
15711,
12095,
22042,
12095,
20107,
12095,
19924,
12095,
11442,
12095,
16945,
12095,
13348,
12095,
19880,
12095,
14454,
12095,
2079,
12095,
16243,
12095,
3064,
11,
46570,
6,
1268,
5097,
52,
7206,
10354,
26933,
15,
11,
16,
11,
17,
11,
20,
11,
22,
11,
1314,
11,
2231,
11,
3980,
11,
5237,
11,
4790,
11,
10232,
11,
19442,
11,
25948,
11,
23188,
11,
17572,
11,
23539,
11,
23516,
11,
28592,
11,
24970,
11,
13381,
11,
21719,
11,
26276,
11,
20233,
11,
28977,
11,
25870,
11,
27033,
11,
25270,
11,
31675,
11,
26895,
11,
36244,
11,
25838,
11,
27936,
11,
36042,
11,
31380,
11,
28460,
11,
29626,
11,
28978,
11,
14877,
11,
38430,
2481,
11,
2481,
12095,
1959,
12095,
2154,
12095,
2682,
12095,
2670,
12095,
2996,
12095,
21,
12095,
22,
12095,
1270,
12095,
2414,
12095,
2624,
12095,
3132,
12095,
940,
12095,
2091,
12095,
1558,
12095,
1415,
12095,
1795,
12095,
3901,
12095,
2623,
12095,
2548,
12095,
1821,
12095,
2327,
12095,
2718,
11,
2481,
12095,
1507,
12095,
1433,
12095,
3720,
12095,
1238,
11,
2481,
12095,
1129,
12095,
2481,
12095,
1485,
12095,
23,
12095,
1314,
12095,
1065,
12095,
24,
12095,
1157,
11,
46570,
20520,
10354,
26933,
20,
11,
1238,
11,
1828,
11,
5333,
11,
5999,
11,
5705,
11,
5774,
11,
6052,
11,
5824,
11,
4846,
11,
5607,
11,
2079,
11,
3064,
11,
15377,
11,
19924,
11,
16945,
11,
17059,
11,
20809,
11,
15187,
11,
23726,
11,
14198,
11,
25272,
11,
24991,
11,
22337,
11,
19104,
11,
1264,
11,
21261,
11,
22136,
11,
22745,
11,
21315,
11,
22567,
11,
21536,
11,
21895,
11,
21777,
11,
26427,
11,
22291,
11,
23349,
11,
20666,
11,
24591,
11,
28727,
11,
28896,
11,
30057,
11,
29119,
11,
29558,
11,
25540,
11,
25022,
11,
22572,
11,
34256,
11,
26073,
11,
31697,
11,
27277,
11,
38430,
12,
2154,
12095,
5237,
12095,
5333,
12095,
1899,
12095,
20809,
12095,
17059,
12095,
14686,
12095,
13464,
12095,
8784,
12095,
19880,
12095,
15197,
12095,
15982,
12095,
20219,
12095,
19708,
12095,
15801,
12095,
17,
12095,
18741,
12095,
12762,
12095,
15377,
12095,
12952,
12095,
16799,
12095,
5332,
12095,
5705,
11,
29558,
12095,
15711,
12095,
22042,
12095,
20107,
12095,
10163,
12095,
19420,
12095,
16616,
12095,
18376,
12095,
19244,
12095,
16315,
12095,
10232,
12095,
18298,
12095,
17657,
12095,
16817,
12095,
15363,
12095,
16562,
12095,
11623,
12095,
17464,
12095,
19924,
12095,
17,
12095,
11442,
12095,
16945,
12095,
13348,
12095,
5999,
12095,
14454,
12095,
2079,
12095,
16243,
12095,
3064,
11,
46570,
6,
5064,
10354,
26933,
21738,
11,
23753,
11,
23045,
11,
28592,
11,
31675,
11,
22579,
11,
36453,
11,
27712,
11,
33394,
11,
28567,
11,
35447,
11,
32459,
11,
27412,
11,
30803,
11,
20167,
11,
36720,
11,
22318,
11,
32128,
11,
38430,
9031,
11,
9031,
12095,
3865,
12095,
1795,
12095,
3720,
12095,
4521,
12095,
5824,
12095,
5774,
12095,
5892,
12095,
4846,
11,
9031,
12095,
3459,
12095,
3829,
12095,
5607,
12095,
4089,
12095,
6420,
12095,
4531,
12095,
6052,
11,
46570,
6,
6981,
10354,
26933,
20,
11,
1238,
11,
1828,
11,
5333,
11,
5999,
11,
5705,
11,
5774,
11,
6052,
11,
5824,
11,
4846,
11,
5607,
11,
2079,
11,
3064,
11,
8784,
11,
15377,
11,
19924,
11,
17059,
11,
20809,
11,
20107,
11,
15187,
11,
23726,
11,
14198,
11,
25061,
11,
24991,
11,
19104,
11,
1264,
11,
21261,
11,
22136,
11,
22745,
11,
21315,
11,
22567,
11,
21536,
11,
21895,
11,
21777,
11,
26427,
11,
22291,
11,
23349,
11,
20666,
11,
24591,
11,
28727,
11,
28896,
11,
28072,
11,
30057,
11,
29558,
11,
25540,
11,
25022,
11,
32759,
11,
22515,
11,
20548,
11,
26582,
11,
39195,
11,
34256,
11,
26073,
11,
31697,
11,
30995,
11,
27277,
11,
27824,
11,
38430,
12,
2154,
12095,
5237,
12095,
5333,
12095,
1899,
12095,
20809,
12095,
17059,
12095,
14686,
12095,
13464,
12095,
8784,
12095,
19880,
12095,
15197,
12095,
15982,
12095,
20219,
11,
18781,
12095,
19708,
12095,
15801,
11,
18781,
11,
18781,
11,
18781,
12095,
15377,
12095,
12952,
12095,
16799,
11,
18781,
11,
18781,
12095,
15711,
12095,
22042,
12095,
20107,
12095,
10163,
12095,
19420,
12095,
16616,
12095,
18376,
12095,
19244,
12095,
16315,
12095,
10232,
12095,
18298,
12095,
17657,
12095,
16817,
12095,
15363,
12095,
16562,
12095,
11623,
12095,
17464,
11,
18781,
12095,
19924,
12095,
11442,
12095,
16945,
12095,
13348,
11,
18781,
12095,
19880,
11,
18781,
11,
18781,
11,
18781,
12095,
14454,
12095,
2079,
12095,
16243,
11,
18781,
12095,
3064,
11,
18781,
11,
46570,
6,
35,
11211,
10354,
26933,
20,
11,
1238,
11,
1828,
11,
4051,
11,
5333,
11,
5999,
11,
5705,
11,
5774,
11,
3459,
11,
4531,
11,
6420,
11,
6052,
11,
5824,
11,
4846,
11,
5607,
11,
4089,
11,
2079,
11,
3064,
11,
8784,
11,
15377,
11,
15197,
11,
13348,
11,
19924,
11,
16945,
11,
17059,
11,
20809,
11,
20107,
11,
15187,
11,
23726,
11,
21139,
11,
18781,
11,
20964,
11,
20198,
11,
18294,
11,
8628,
11,
24309,
11,
17827,
11,
21395,
11,
21526,
11,
18742,
11,
21599,
11,
18458,
11,
21273,
11,
19707,
11,
14198,
11,
25061,
11,
21738,
11,
24991,
11,
19104,
11,
1264,
11,
21261,
11,
22136,
11,
22745,
11,
21315,
11,
22567,
11,
21536,
11,
21895,
11,
21777,
11,
26427,
11,
22291,
11,
23349,
11,
20666,
11,
24591,
11,
28727,
11,
28896,
11,
26660,
11,
23753,
11,
23045,
11,
28072,
11,
28592,
11,
30057,
11,
29119,
11,
29558,
11,
18897,
11,
22980,
11,
25540,
11,
25674,
11,
25022,
11,
32759,
11,
31675,
11,
27728,
11,
22579,
11,
6200,
11,
22515,
11,
20548,
11,
36453,
11,
26582,
11,
39195,
11,
34256,
11,
37967,
11,
26073,
11,
31697,
11,
27712,
11,
30995,
11,
33394,
11,
28567,
11,
27277,
11,
35195,
11,
32459,
11,
27824,
11,
27412,
11,
30803,
11,
20167,
11,
36720,
11,
22318,
11,
32128,
11,
38430,
12,
2154,
12095,
5237,
12095,
5333,
11,
4089,
12095,
1899,
12095,
20809,
12095,
17059,
12095,
14686,
11,
4089,
11,
4089,
11,
4089,
12095,
13464,
12095,
8784,
12095,
19880,
12095,
15197,
11,
4089,
12095,
15982,
12095,
20219,
11,
21395,
12095,
19708,
11,
4089,
11,
4089,
12095,
15801,
11,
4089,
11,
21395,
11,
21395,
11,
21395,
12095,
15377,
12095,
12952,
11,
4089,
11,
4089,
11,
4089,
11,
4089,
11,
4089,
11,
4089,
11,
4089,
11,
4089,
11,
4089,
11,
4089,
11,
4089,
11,
4089,
11,
4089,
11,
4089,
11,
4089,
12095,
16799,
11,
21395,
11,
4089,
11,
21395,
12095,
15711,
12095,
22042,
12095,
20107,
11,
21395,
11,
21395,
12095,
16616,
11,
21395,
11,
21395,
11,
21395,
11,
21395,
12095,
18298,
11,
21395,
11,
21395,
12095,
15363,
12095,
16562,
11,
21395,
11,
21395,
11,
4089,
11,
4089,
12095,
3865,
11,
21395,
12095,
1795,
12095,
19924,
11,
4089,
12095,
11442,
11,
4089,
11,
4089,
12095,
16945,
11,
4089,
12095,
13348,
11,
21395,
12095,
3720,
11,
4089,
12095,
4521,
11,
4089,
12095,
19880,
11,
21395,
12095,
5824,
11,
21395,
11,
21395,
12095,
14454,
11,
4089,
12095,
2079,
12095,
16243,
12095,
5774,
11,
21395,
12095,
5892,
12095,
4846,
12095,
3064,
11,
4089,
12095,
3459,
11,
21395,
12095,
3829,
12095,
5607,
12095,
4089,
12095,
6420,
12095,
4531,
12095,
6052,
11,
46570,
6,
26087,
27064,
10354,
26933,
21738,
11,
23753,
11,
23045,
11,
28592,
11,
31675,
11,
22579,
11,
36453,
11,
27712,
11,
33394,
11,
28567,
11,
32459,
11,
27412,
11,
30803,
11,
20167,
11,
36720,
11,
22318,
11,
32128,
11,
38430,
26660,
11,
26660,
12095,
3865,
12095,
1795,
12095,
3720,
12095,
4521,
12095,
5824,
12095,
5774,
12095,
5892,
12095,
4846,
12095,
3459,
12095,
3829,
12095,
5607,
12095,
4089,
12095,
6420,
12095,
4531,
12095,
6052,
11,
46570,
6,
36,
48,
10354,
26933,
20,
11,
1238,
11,
1828,
11,
5333,
11,
5999,
11,
5705,
11,
5774,
11,
6052,
11,
5824,
11,
4846,
11,
5607,
11,
2079,
11,
3064,
11,
8784,
11,
15377,
11,
19924,
11,
17059,
11,
20809,
11,
20107,
11,
15187,
11,
23726,
11,
14198,
11,
25061,
11,
24991,
11,
19104,
11,
1264,
11,
21261,
11,
22136,
11,
22745,
11,
21315,
11,
22567,
11,
21536,
11,
21895,
11,
21777,
11,
26427,
11,
22291,
11,
23349,
11,
20666,
11,
24591,
11,
28727,
11,
28896,
11,
28072,
11,
30057,
11,
29558,
11,
25540,
11,
25022,
11,
32759,
11,
22515,
11,
20548,
11,
26582,
11,
39195,
11,
34256,
11,
26073,
11,
31697,
11,
30995,
11,
27277,
11,
27824,
11,
38430,
12,
2154,
12095,
5237,
12095,
5333,
12095,
1899,
12095,
20809,
12095,
17059,
12095,
14686,
12095,
13464,
12095,
8784,
12095,
19880,
12095,
15197,
12095,
15982,
12095,
20219,
11,
8628,
12095,
19708,
12095,
15801,
11,
8628,
11,
8628,
11,
8628,
12095,
15377,
12095,
12952,
12095,
16799,
11,
8628,
11,
8628,
12095,
15711,
12095,
22042,
12095,
20107,
11,
8628,
12095,
19420,
12095,
16616,
12095,
18376,
12095,
19244,
12095,
16315,
12095,
10232,
12095,
18298,
12095,
17657,
12095,
16817,
12095,
15363,
12095,
16562,
12095,
11623,
11,
8628,
11,
8628,
12095,
19924,
12095,
11442,
12095,
16945,
12095,
13348,
11,
8628,
12095,
19880,
11,
8628,
11,
8628,
11,
8628,
12095,
14454,
12095,
2079,
12095,
16243,
11,
8628,
12095,
3064,
11,
8628,
11,
46570,
6,
46126,
10354,
26933,
15,
11,
16,
11,
17,
11,
20,
11,
22,
11,
1314,
11,
2231,
11,
3980,
11,
5237,
11,
4790,
11,
10232,
11,
19442,
11,
25948,
11,
23188,
11,
17572,
11,
23539,
11,
23516,
11,
28592,
11,
24970,
11,
13381,
11,
21719,
11,
26276,
11,
20233,
11,
28977,
11,
25870,
11,
27033,
11,
25270,
11,
31675,
11,
26895,
11,
36244,
11,
25838,
11,
27936,
11,
36042,
11,
31380,
11,
28460,
11,
29626,
11,
28978,
11,
14877,
11,
38430,
1954,
11,
1954,
12095,
1959,
12095,
2154,
12095,
2682,
12095,
2670,
12095,
2996,
12095,
21,
12095,
22,
12095,
1270,
12095,
2414,
12095,
2624,
12095,
3132,
12095,
940,
12095,
2091,
12095,
1558,
12095,
1415,
12095,
1795,
12095,
3901,
12095,
2623,
12095,
2548,
12095,
1821,
12095,
2327,
12095,
2718,
11,
1954,
12095,
1507,
12095,
1433,
12095,
3720,
12095,
1238,
11,
1954,
12095,
1129,
12095,
2481,
12095,
1485,
12095,
23,
12095,
1314,
12095,
1065,
12095,
24,
12095,
1157,
11,
46570,
6,
50084,
62,
2257,
3185,
62,
8634,
33472,
10354,
26933,
21738,
11,
23753,
11,
23045,
11,
28592,
11,
31675,
11,
22579,
11,
36453,
11,
27712,
11,
33394,
11,
28567,
11,
32459,
11,
27412,
11,
30803,
11,
20167,
11,
36720,
11,
22318,
11,
32128,
11,
38430,
22800,
11,
22800,
12095,
3865,
12095,
1795,
12095,
3720,
12095,
4521,
12095,
5824,
12095,
5774,
12095,
5892,
12095,
4846,
12095,
3459,
12095,
3829,
12095,
5607,
12095,
4089,
12095,
6420,
12095,
4531,
12095,
6052,
11,
46570,
6,
44724,
62,
41374,
43,
10354,
26933,
15,
11,
16,
11,
17,
11,
20,
11,
22,
11,
1314,
11,
2231,
11,
3980,
11,
5237,
11,
4790,
11,
10232,
11,
19442,
11,
25948,
11,
23188,
11,
17572,
11,
23539,
11,
23516,
11,
28592,
11,
24970,
11,
13381,
11,
21719,
11,
26276,
11,
20233,
11,
28977,
11,
25870,
11,
27033,
11,
25270,
11,
31675,
11,
26895,
11,
36244,
11,
25838,
11,
27936,
11,
36042,
11,
31380,
11,
28460,
11,
29626,
11,
28978,
11,
14877,
11,
38430,
1731,
11,
1731,
12095,
1959,
12095,
2154,
12095,
2682,
12095,
2670,
12095,
2996,
12095,
21,
12095,
22,
12095,
1270,
12095,
2414,
12095,
2624,
12095,
3132,
12095,
940,
12095,
2091,
12095,
1558,
12095,
1415,
12095,
1795,
12095,
3901,
12095,
2623,
12095,
2548,
12095,
1821,
12095,
2327,
12095,
2718,
11,
1731,
12095,
1507,
12095,
1433,
12095,
3720,
12095,
1238,
11,
1731,
12095,
1129,
12095,
2481,
12095,
1485,
12095,
23,
12095,
1314,
12095,
1065,
12095,
24,
12095,
1157,
11,
46570,
6,
50084,
62,
7036,
4503,
6158,
10354,
26933,
21738,
11,
23753,
11,
23045,
11,
28592,
11,
31675,
11,
22579,
11,
36453,
11,
27712,
11,
33394,
11,
28567,
11,
32459,
11,
27412,
11,
30803,
11,
20167,
11,
36720,
11,
22318,
11,
32128,
11,
38430,
22995,
11,
22995,
12095,
3865,
12095,
1795,
12095,
3720,
12095,
4521,
12095,
5824,
12095,
5774,
12095,
5892,
12095,
4846,
12095,
3459,
12095,
3829,
12095,
5607,
12095,
4089,
12095,
6420,
12095,
4531,
12095,
6052,
11,
46570,
6,
43,
2043,
62,
8202,
3535,
10354,
26933,
4051,
11,
3459,
11,
4531,
11,
6420,
11,
4089,
11,
15197,
11,
13348,
11,
16945,
11,
21139,
11,
18781,
11,
20964,
11,
20198,
11,
18294,
11,
8628,
11,
24309,
11,
17827,
11,
21395,
11,
21526,
11,
18742,
11,
21599,
11,
18458,
11,
21273,
11,
19707,
11,
21738,
11,
20356,
11,
26660,
11,
23753,
11,
23045,
11,
28592,
11,
29119,
11,
18897,
11,
22980,
11,
25674,
11,
31675,
11,
27728,
11,
22579,
11,
6200,
11,
36453,
11,
37967,
11,
27712,
11,
33394,
11,
28567,
11,
35195,
11,
32459,
11,
27412,
11,
30803,
11,
20167,
11,
36720,
11,
22318,
11,
32128,
11,
38430,
15377,
11,
15377,
11,
15377,
11,
15377,
11,
15377,
11,
15377,
11,
15377,
11,
15377,
11,
15377,
11,
15377,
11,
15377,
11,
15377,
11,
15377,
11,
15377,
11,
15377,
11,
15377,
11,
15377,
11,
15377,
11,
15377,
11,
15377,
11,
15377,
11,
15377,
11,
15377,
11,
15377,
11,
25600,
11,
15377,
11,
15377,
12095,
3865,
12095,
1795,
11,
15377,
11,
15377,
11,
15377,
11,
15377,
12095,
3720,
11,
15377,
12095,
4521,
11,
15377,
12095,
5824,
11,
15377,
12095,
5774,
12095,
5892,
12095,
4846,
11,
15377,
12095,
3459,
12095,
3829,
12095,
5607,
12095,
4089,
12095,
6420,
12095,
4531,
12095,
6052,
11,
46570,
6,
1797,
62,
23428,
2389,
10354,
26933,
4051,
11,
3459,
11,
4531,
11,
6420,
11,
4089,
11,
15197,
11,
13348,
11,
16945,
11,
21139,
11,
18781,
11,
20964,
11,
20198,
11,
18294,
11,
8628,
11,
24309,
11,
17827,
11,
21395,
11,
21526,
11,
18742,
11,
21599,
11,
18458,
11,
21273,
11,
19707,
11,
21738,
11,
26660,
11,
23753,
11,
23045,
11,
28592,
11,
29119,
11,
18897,
11,
22980,
11,
25674,
11,
31675,
11,
27728,
11,
22579,
11,
6200,
11,
36453,
11,
37967,
11,
27712,
11,
33394,
11,
28567,
11,
35195,
11,
32459,
11,
27412,
11,
30803,
11,
20167,
11,
36720,
11,
22318,
11,
32128,
11,
38430,
5332,
11,
5332,
11,
5332,
11,
5332,
11,
5332,
11,
5332,
11,
5332,
11,
5332,
11,
5332,
11,
5332,
11,
5332,
11,
5332,
11,
5332,
11,
5332,
11,
5332,
11,
5332,
11,
5332,
11,
5332,
11,
5332,
11,
5332,
11,
5332,
11,
5332,
11,
5332,
11,
5332,
11,
5332,
11,
5332,
12095,
3865,
12095,
1795,
11,
5332,
11,
5332,
11,
5332,
11,
5332,
12095,
3720,
11,
5332,
12095,
4521,
11,
5332,
12095,
5824,
11,
5332,
12095,
5774,
12095,
5892,
12095,
4846,
11,
5332,
12095,
3459,
12095,
3829,
12095,
5607,
12095,
4089,
12095,
6420,
12095,
4531,
12095,
6052,
11,
46570,
6,
11929,
10354,
26933,
4051,
11,
3459,
11,
4531,
11,
6420,
11,
4089,
11,
15197,
11,
13348,
11,
16945,
11,
21139,
11,
18781,
11,
20964,
11,
20198,
11,
18294,
11,
8628,
11,
24309,
11,
17827,
11,
21395,
11,
21526,
11,
18742,
11,
21599,
11,
18458,
11,
21273,
11,
19707,
11,
21738,
11,
26660,
11,
23753,
11,
23045,
11,
28592,
11,
29119,
11,
18897,
11,
22980,
11,
25674,
11,
31675,
11,
27728,
11,
22579,
11,
6200,
11,
36453,
11,
37967,
11,
27712,
11,
33394,
11,
28567,
11,
35195,
11,
32459,
11,
27412,
11,
30803,
11,
20167,
11,
36720,
11,
22318,
11,
32128,
11,
38430,
15197,
11,
15197,
11,
15197,
11,
15197,
11,
15197,
11,
15197,
11,
15197,
11,
15197,
11,
15197,
11,
15197,
11,
15197,
11,
15197,
11,
15197,
11,
15197,
11,
15197,
11,
15197,
11,
15197,
11,
15197,
11,
15197,
11,
15197,
11,
15197,
11,
15197,
11,
15197,
11,
15197,
11,
15197,
11,
15197,
12095,
3865,
12095,
1795,
11,
15197,
11,
15197,
11,
15197,
11,
15197,
12095,
3720,
11,
15197,
12095,
4521,
11,
15197,
12095,
5824,
11,
15197,
12095,
5774,
12095,
5892,
12095,
4846,
11,
15197,
12095,
3459,
12095,
3829,
12095,
5607,
12095,
4089,
12095,
6420,
12095,
4531,
12095,
6052,
11,
46570,
6,
90,
10354,
26933,
20,
11,
1959,
11,
2718,
11,
2231,
11,
4309,
11,
3134,
11,
4790,
11,
2425,
11,
4304,
11,
3324,
11,
15363,
11,
10232,
11,
18376,
11,
19420,
11,
19442,
11,
25948,
11,
24136,
11,
20986,
11,
21940,
11,
22172,
11,
17279,
11,
25399,
11,
15259,
11,
27057,
11,
24294,
11,
24839,
11,
23451,
11,
17572,
11,
26115,
11,
24137,
11,
18182,
11,
24909,
11,
23815,
11,
23516,
11,
27988,
11,
27019,
11,
27693,
11,
36042,
11,
31496,
11,
33535,
11,
15277,
11,
35447,
11,
24760,
11,
34770,
11,
38430,
12,
2154,
11,
2857,
11,
2857,
12095,
2996,
12095,
4761,
11,
2857,
12095,
1270,
12095,
3695,
12095,
4869,
12095,
4524,
11,
23628,
12095,
2414,
11,
21738,
12095,
17,
12095,
2624,
12095,
3132,
12095,
17,
11,
22047,
12095,
17,
11,
19214,
11,
25667,
11,
2857,
12095,
4304,
12095,
2425,
12095,
3324,
12095,
4790,
11,
21738,
12095,
2091,
11,
21738,
12095,
17,
12095,
17,
11,
25870,
12095,
1954,
11,
2857,
11,
36244,
12095,
1828,
11,
2857,
11,
2857,
11,
21738,
11,
21738,
11,
21738,
11,
21738,
11,
21738,
11,
21738,
11,
46570,
6,
92,
10354,
26933,
16,
11,
17,
11,
20,
11,
22,
11,
1065,
11,
1485,
11,
1314,
11,
1983,
11,
2231,
11,
2857,
11,
3980,
11,
5237,
11,
3104,
11,
3388,
11,
2154,
11,
4790,
11,
17657,
11,
16817,
11,
16315,
11,
10232,
11,
19442,
11,
25948,
11,
23628,
11,
17430,
11,
24096,
11,
23188,
11,
21738,
11,
17572,
11,
22047,
11,
23539,
11,
19214,
11,
25667,
11,
25429,
11,
24409,
11,
22370,
11,
24940,
11,
24693,
11,
23721,
11,
23516,
11,
25707,
11,
23753,
11,
23045,
11,
28592,
11,
24970,
11,
13381,
11,
21719,
11,
26276,
11,
20233,
11,
28977,
11,
27367,
11,
28857,
11,
23195,
11,
25870,
11,
21033,
11,
32568,
11,
30290,
11,
30336,
11,
27033,
11,
27800,
11,
25270,
11,
31675,
11,
27137,
11,
22579,
11,
26895,
11,
26717,
11,
36244,
11,
27970,
11,
25838,
11,
27936,
11,
33400,
11,
36042,
11,
36453,
11,
32148,
11,
20370,
11,
31380,
11,
28460,
11,
29626,
11,
27712,
11,
28978,
11,
14877,
11,
33394,
11,
28567,
11,
31128,
11,
32459,
11,
27412,
11,
30803,
11,
20167,
11,
36720,
11,
22318,
11,
32128,
11,
38430,
12,
17,
12095,
1959,
12095,
2154,
12095,
2682,
12095,
20,
12095,
18,
12095,
2670,
12095,
19,
12095,
2996,
12095,
17,
12095,
21,
12095,
22,
12095,
17,
11,
10232,
12095,
3388,
12095,
1270,
12095,
17,
12095,
3104,
12095,
17,
12095,
2414,
12095,
2624,
12095,
3132,
12095,
17,
12095,
2791,
12095,
3134,
12095,
940,
11,
28592,
12095,
2091,
12095,
17,
12095,
1558,
12095,
17,
12095,
17,
12095,
2075,
11,
27033,
12095,
17,
12095,
1495,
12095,
1983,
12095,
2078,
12095,
1415,
11,
31675,
12095,
6469,
12095,
3865,
12095,
1795,
12095,
3901,
12095,
2623,
12095,
2548,
12095,
1821,
12095,
2327,
12095,
2718,
11,
26895,
12095,
17,
12095,
3559,
12095,
17,
11,
25838,
11,
27936,
12095,
17,
12095,
3510,
12095,
1507,
12095,
1731,
12095,
1433,
12095,
3720,
12095,
6659,
12095,
4521,
12095,
1238,
12095,
3682,
12095,
17,
11,
31380,
12095,
1129,
12095,
2481,
12095,
2231,
12095,
1485,
12095,
5824,
12095,
2598,
11,
28978,
12095,
23,
12095,
1314,
12095,
1065,
12095,
5774,
12095,
24,
12095,
1157,
12095,
5892,
12095,
4846,
12095,
2857,
12095,
3459,
12095,
3829,
12095,
5607,
12095,
4089,
12095,
6420,
12095,
4531,
12095,
6052,
11,
46570,
6,
1581,
10354,
26933,
20,
11,
1238,
11,
1828,
11,
5333,
11,
5999,
11,
5705,
11,
5774,
11,
6052,
11,
5824,
11,
4846,
11,
5607,
11,
2079,
11,
3064,
11,
8784,
11,
15377,
11,
19924,
11,
17059,
11,
20809,
11,
20107,
11,
15187,
11,
23726,
11,
14198,
11,
25061,
11,
24991,
11,
19104,
11,
1264,
11,
21261,
11,
22136,
11,
22745,
11,
21315,
11,
22567,
11,
21536,
11,
21895,
11,
21777,
11,
26427,
11,
22291,
11,
23349,
11,
20666,
11,
24591,
11,
28727,
11,
28896,
11,
28072,
11,
30057,
11,
29558,
11,
25540,
11,
25022,
11,
32759,
11,
22515,
11,
20548,
11,
26582,
11,
39195,
11,
34256,
11,
26073,
11,
31697,
11,
30995,
11,
27277,
11,
27824,
11,
38430,
12,
2154,
12095,
5237,
12095,
5333,
12095,
1899,
12095,
20809,
12095,
17059,
12095,
14686,
12095,
13464,
12095,
8784,
12095,
19880,
12095,
15197,
12095,
15982,
12095,
20219,
11,
19707,
12095,
19708,
12095,
15801,
11,
19707,
11,
19707,
11,
19707,
12095,
15377,
12095,
12952,
12095,
16799,
11,
19707,
11,
19707,
12095,
15711,
12095,
22042,
12095,
20107,
12095,
10163,
12095,
19420,
12095,
16616,
12095,
18376,
12095,
19244,
12095,
16315,
12095,
10232,
12095,
18298,
12095,
17657,
12095,
16817,
12095,
15363,
12095,
16562,
12095,
11623,
12095,
17464,
11,
19707,
12095,
19924,
12095,
11442,
12095,
16945,
12095,
13348,
11,
19707,
12095,
19880,
11,
19707,
11,
19707,
11,
19707,
12095,
14454,
12095,
2079,
12095,
16243,
11,
19707,
12095,
3064,
11,
19707,
11,
46570,
6,
1268,
62,
15490,
10354,
26933,
15,
11,
16,
11,
17,
11,
20,
11,
22,
11,
1314,
11,
2231,
11,
3980,
11,
5237,
11,
4790,
11,
10232,
11,
19442,
11,
25948,
11,
23188,
11,
17572,
11,
23539,
11,
23516,
11,
28592,
11,
24970,
11,
13381,
11,
21719,
11,
26276,
11,
20233,
11,
28977,
11,
25870,
11,
27033,
11,
25270,
11,
31675,
11,
26895,
11,
36244,
11,
25838,
11,
27936,
11,
36042,
11,
31380,
11,
28460,
11,
29626,
11,
28978,
11,
14877,
11,
38430,
2075,
11,
2075,
12095,
1959,
12095,
2154,
12095,
2682,
12095,
2670,
12095,
2996,
12095,
21,
12095,
22,
12095,
1270,
12095,
2414,
12095,
2624,
12095,
3132,
12095,
940,
12095,
2091,
12095,
1558,
12095,
1415,
12095,
1795,
12095,
3901,
12095,
2623,
12095,
2548,
12095,
1821,
12095,
2327,
12095,
2718,
11,
2075,
12095,
1507,
12095,
1433,
12095,
3720,
12095,
1238,
11,
2075,
12095,
1129,
12095,
2481,
12095,
1485,
12095,
23,
12095,
1314,
12095,
1065,
12095,
24,
12095,
1157,
11,
46570,
92,
198,
198,
62,
14050,
62,
2673,
796,
1391,
1782,
198,
1640,
4808,
74,
11,
4808,
85,
287,
4808,
14050,
62,
2673,
62,
23814,
13,
23814,
33529,
198,
220,
220,
329,
4808,
87,
11,
62,
88,
287,
19974,
28264,
85,
58,
15,
4357,
62,
85,
58,
16,
60,
2599,
198,
220,
220,
220,
220,
220,
611,
407,
4808,
87,
287,
4808,
14050,
62,
2673,
25,
220,
4808,
14050,
62,
2673,
29795,
87,
60,
796,
1391,
1782,
198,
220,
220,
220,
220,
220,
4808,
14050,
62,
2673,
29795,
87,
7131,
62,
74,
60,
796,
4808,
88,
198,
12381,
4808,
14050,
62,
2673,
62,
23814,
198,
198,
62,
14050,
62,
70,
2069,
62,
23814,
796,
1391,
6,
32446,
10354,
26933,
15,
11,
16,
11,
25870,
11,
36244,
11,
38430,
16,
11,
16,
11,
16,
11,
16,
11,
46570,
6,
26801,
62,
32446,
10354,
26933,
15,
11,
16,
11,
21940,
11,
23628,
11,
24137,
11,
18182,
11,
19214,
11,
22370,
11,
25870,
11,
36244,
11,
38430,
17,
11,
17,
11,
18182,
11,
25429,
11,
18182,
11,
18182,
11,
25429,
11,
25429,
11,
17,
11,
17,
11,
46570,
6,
14269,
3196,
10354,
26933,
18376,
11,
23451,
11,
26115,
11,
31496,
11,
33535,
11,
15277,
11,
35447,
11,
24760,
11,
34770,
11,
38430,
23188,
11,
24970,
11,
26276,
11,
14877,
11,
28567,
11,
32459,
11,
30803,
11,
36720,
11,
22318,
11,
46570,
6,
4906,
62,
268,
5700,
10354,
26933,
22047,
11,
28857,
11,
38430,
27367,
11,
26717,
11,
46570,
6,
79,
3468,
87,
10354,
26933,
4349,
11,
17464,
11,
38430,
4304,
11,
24839,
11,
46570,
6,
4906,
62,
30814,
10354,
26933,
23628,
11,
19214,
11,
22370,
11,
38430,
24409,
11,
21033,
11,
27800,
11,
46570,
6,
14269,
3196,
62,
5083,
10354,
26933,
21738,
11,
23753,
11,
38430,
25707,
11,
27137,
11,
46570,
6,
268,
6975,
341,
10354,
26933,
4051,
11,
3459,
11,
4531,
11,
6420,
11,
4089,
11,
15197,
11,
13348,
11,
16945,
11,
21139,
11,
18781,
11,
20964,
11,
20198,
11,
18294,
11,
8628,
11,
24309,
11,
17827,
11,
21395,
11,
21526,
11,
18742,
11,
21599,
11,
18458,
11,
21273,
11,
19707,
11,
21738,
11,
26660,
11,
23753,
11,
29119,
11,
18897,
11,
22980,
11,
25674,
11,
27728,
11,
6200,
11,
33638,
11,
37967,
11,
35195,
11,
38430,
6052,
11,
6052,
11,
6052,
11,
6052,
11,
6052,
11,
6052,
11,
6052,
11,
6052,
11,
6052,
11,
6052,
11,
6052,
11,
6052,
11,
6052,
11,
6052,
11,
6052,
11,
6052,
11,
6052,
11,
6052,
11,
6052,
11,
6052,
11,
6052,
11,
6052,
11,
6052,
11,
6052,
11,
6052,
11,
6052,
11,
6052,
11,
6052,
11,
6052,
11,
6052,
11,
6052,
11,
6052,
11,
29211,
11,
6052,
11,
6052,
11,
46570,
6,
7753,
10354,
26933,
15,
11,
38430,
21,
11,
46570,
6,
4906,
62,
5219,
10354,
26933,
25667,
11,
30290,
11,
38430,
30290,
11,
30290,
11,
46570,
6,
4906,
62,
19522,
10354,
26933,
23628,
11,
19214,
11,
22370,
11,
38430,
22370,
11,
22370,
11,
22370,
11,
46570,
6,
64,
31937,
10354,
26933,
4051,
11,
3459,
11,
4531,
11,
6420,
11,
4089,
11,
15197,
11,
13348,
11,
16945,
11,
21139,
11,
18781,
11,
20964,
11,
20198,
11,
18294,
11,
8628,
11,
24309,
11,
17827,
11,
21395,
11,
21526,
11,
18742,
11,
21599,
11,
18458,
11,
21273,
11,
19707,
11,
21738,
11,
26660,
11,
23753,
11,
29119,
11,
18897,
11,
22980,
11,
25674,
11,
27728,
11,
6200,
11,
37967,
11,
35195,
11,
38430,
5774,
11,
5774,
11,
5774,
11,
5774,
11,
5774,
11,
5774,
11,
5774,
11,
5774,
11,
5774,
11,
5774,
11,
5774,
11,
5774,
11,
5774,
11,
5774,
11,
5774,
11,
5774,
11,
5774,
11,
5774,
11,
5774,
11,
5774,
11,
5774,
11,
5774,
11,
5774,
11,
5774,
11,
5774,
11,
5774,
11,
5774,
11,
5774,
11,
5774,
11,
5774,
11,
5774,
11,
5774,
11,
5774,
11,
5774,
11,
46570,
6,
17143,
10354,
26933,
4310,
11,
3553,
11,
11623,
11,
38430,
3695,
11,
3695,
11,
3695,
11,
46570,
6,
18250,
1691,
10354,
26933,
4051,
11,
3459,
11,
4531,
11,
6420,
11,
4089,
11,
15197,
11,
13348,
11,
16945,
11,
21139,
11,
18781,
11,
20964,
11,
20198,
11,
18294,
11,
8628,
11,
24309,
11,
17827,
11,
21395,
11,
21526,
11,
18742,
11,
21599,
11,
18458,
11,
21273,
11,
19707,
11,
21738,
11,
26660,
11,
23753,
11,
29119,
11,
18897,
11,
22980,
11,
25674,
11,
27728,
11,
6200,
11,
37967,
11,
35195,
11,
38430,
5607,
11,
5607,
11,
5607,
11,
5607,
11,
5607,
11,
5607,
11,
5607,
11,
5607,
11,
5607,
11,
5607,
11,
5607,
11,
5607,
11,
5607,
11,
5607,
11,
5607,
11,
5607,
11,
5607,
11,
5607,
11,
5607,
11,
5607,
11,
5607,
11,
5607,
11,
5607,
11,
5607,
11,
5607,
11,
5607,
11,
5607,
11,
5607,
11,
5607,
11,
5607,
11,
5607,
11,
5607,
11,
5607,
11,
5607,
11,
46570,
6,
37266,
10354,
26933,
4310,
11,
3553,
11,
11623,
11,
38430,
3720,
11,
15801,
11,
22883,
11,
46570,
6,
26090,
10354,
26933,
21738,
11,
23753,
11,
38430,
23753,
11,
23753,
11,
46570,
6,
7785,
10354,
26933,
4051,
11,
3459,
11,
4531,
11,
6420,
11,
4089,
11,
15197,
11,
13348,
11,
22042,
11,
16945,
11,
20219,
11,
21139,
11,
18781,
11,
20964,
11,
20198,
11,
18294,
11,
8628,
11,
24309,
11,
17827,
11,
21395,
11,
21526,
11,
18742,
11,
21599,
11,
18458,
11,
21273,
11,
19707,
11,
22413,
11,
21738,
11,
24339,
11,
26660,
11,
23753,
11,
29119,
11,
18897,
11,
22980,
11,
25674,
11,
33551,
11,
27696,
11,
25710,
11,
26561,
11,
27728,
11,
6200,
11,
18938,
11,
37967,
11,
32118,
11,
35195,
11,
38430,
5824,
11,
5824,
11,
5824,
11,
5824,
11,
5824,
11,
5824,
11,
5824,
11,
22186,
11,
5824,
11,
19004,
11,
5824,
11,
5824,
11,
5824,
11,
5824,
11,
5824,
11,
5824,
11,
5824,
11,
5824,
11,
5824,
11,
5824,
11,
5824,
11,
5824,
11,
5824,
11,
5824,
11,
5824,
11,
28872,
11,
5824,
11,
26279,
11,
5824,
11,
5824,
11,
5824,
11,
5824,
11,
5824,
11,
5824,
11,
19504,
11,
37283,
11,
32637,
11,
33916,
11,
5824,
11,
5824,
11,
34159,
11,
5824,
11,
32182,
11,
5824,
11,
46570,
6,
361,
62,
26090,
10354,
26933,
21738,
11,
23753,
11,
35447,
11,
38430,
23045,
11,
23045,
11,
20167,
11,
46570,
6,
4906,
10354,
26933,
15,
11,
16,
11,
2078,
11,
2623,
11,
2548,
11,
3901,
11,
3682,
11,
4310,
11,
4051,
11,
3553,
11,
4869,
11,
4521,
11,
3459,
11,
4531,
11,
6420,
11,
4089,
11,
15197,
11,
13348,
11,
16562,
11,
11623,
11,
18741,
11,
16945,
11,
19708,
11,
21139,
11,
18781,
11,
20964,
11,
20198,
11,
18294,
11,
8628,
11,
24309,
11,
17827,
11,
21395,
11,
21526,
11,
18742,
11,
21599,
11,
18458,
11,
21273,
11,
19707,
11,
21940,
11,
23628,
11,
21738,
11,
24137,
11,
18182,
11,
19214,
11,
22370,
11,
26660,
11,
23753,
11,
29119,
11,
18897,
11,
22980,
11,
25674,
11,
25870,
11,
27728,
11,
6200,
11,
36244,
11,
37967,
11,
23601,
11,
31575,
11,
35195,
11,
38430,
1157,
11,
1157,
11,
2598,
11,
3365,
11,
1899,
11,
5066,
11,
2414,
11,
6659,
11,
3865,
11,
6659,
11,
19244,
11,
19924,
11,
3865,
11,
3865,
11,
3865,
11,
3865,
11,
3865,
11,
3865,
11,
27192,
11,
21652,
11,
26492,
11,
3865,
11,
2167,
11,
3865,
11,
3865,
11,
3865,
11,
3865,
11,
3865,
11,
3865,
11,
3865,
11,
3865,
11,
3865,
11,
3865,
11,
3865,
11,
3865,
11,
3865,
11,
3865,
11,
3865,
11,
24403,
11,
1157,
11,
3865,
11,
24403,
11,
24403,
11,
1157,
11,
1157,
11,
3865,
11,
3865,
11,
3865,
11,
3865,
11,
3865,
11,
3865,
11,
1157,
11,
3865,
11,
3865,
11,
1157,
11,
3865,
11,
35273,
11,
33319,
11,
3865,
11,
46570,
6,
28920,
10354,
26933,
15,
11,
16,
11,
2624,
11,
2598,
11,
2857,
11,
2920,
11,
4310,
11,
2816,
11,
3553,
11,
3365,
11,
3270,
11,
1899,
11,
5066,
11,
2414,
11,
3104,
11,
17657,
11,
16315,
11,
11623,
11,
19420,
11,
18741,
11,
12952,
11,
16945,
11,
21139,
11,
24136,
11,
23237,
11,
21940,
11,
23628,
11,
22047,
11,
24137,
11,
18182,
11,
19214,
11,
25667,
11,
22370,
11,
28872,
11,
29119,
11,
18897,
11,
25674,
11,
29807,
11,
28857,
11,
25870,
11,
26050,
11,
30290,
11,
26279,
11,
36244,
11,
29211,
11,
35273,
11,
38430,
1065,
11,
1065,
11,
4309,
11,
4309,
11,
2154,
11,
4309,
11,
1795,
11,
4309,
11,
1795,
11,
4309,
11,
4309,
11,
4309,
11,
4309,
11,
4309,
11,
2154,
11,
2154,
11,
2154,
11,
25096,
11,
4309,
11,
17477,
11,
4309,
11,
25272,
11,
25272,
11,
4309,
11,
4309,
11,
23815,
11,
24940,
11,
23195,
11,
23815,
11,
23815,
11,
24940,
11,
30336,
11,
24940,
11,
4309,
11,
25272,
11,
25272,
11,
25272,
11,
4309,
11,
23195,
11,
1065,
11,
4309,
11,
30336,
11,
4309,
11,
1065,
11,
4309,
11,
4309,
11,
46570,
6,
32446,
82,
87,
10354,
26933,
15,
11,
16,
11,
25870,
11,
36244,
11,
38430,
1485,
11,
1983,
11,
1485,
11,
1485,
11,
46570,
6,
20786,
62,
32446,
10354,
26933,
15,
11,
16,
11,
23628,
11,
19214,
11,
22370,
11,
25870,
11,
36244,
11,
38430,
22,
11,
22,
11,
24693,
11,
24693,
11,
24693,
11,
22,
11,
22,
11,
46570,
6,
20786,
62,
4299,
10354,
26933,
15,
11,
16,
11,
23628,
11,
19214,
11,
22370,
11,
25870,
11,
36244,
11,
38430,
1314,
11,
1314,
11,
23721,
11,
23721,
11,
23721,
11,
1314,
11,
1314,
11,
46570,
6,
3231,
10354,
26933,
1959,
11,
2718,
11,
3134,
11,
25399,
11,
23516,
11,
27693,
11,
36042,
11,
38430,
3510,
11,
3270,
11,
18298,
11,
23516,
11,
25270,
11,
36042,
11,
28460,
11,
46570,
6,
19382,
10354,
26933,
15,
11,
16,
11,
23628,
11,
19214,
11,
22370,
11,
25870,
11,
36244,
11,
38430,
1433,
11,
1433,
11,
1433,
11,
1433,
11,
1433,
11,
1433,
11,
1433,
11,
46570,
6,
738,
87,
10354,
26933,
2857,
11,
3104,
11,
17657,
11,
16315,
11,
38430,
3388,
11,
16817,
11,
17430,
11,
24096,
11,
46570,
6,
4906,
62,
27219,
10354,
26933,
25667,
11,
30290,
11,
38430,
32568,
11,
33400,
11,
46570,
6,
24874,
10354,
26933,
4349,
11,
17464,
11,
38430,
3324,
11,
3324,
11,
46570,
6,
4906,
62,
44709,
10354,
26933,
22047,
11,
28857,
11,
38430,
28857,
11,
28857,
11,
46570,
6,
28004,
395,
81,
10354,
26933,
15,
11,
16,
11,
2078,
11,
2623,
11,
2548,
11,
3901,
11,
3682,
11,
4310,
11,
4051,
11,
3553,
11,
4869,
11,
4521,
11,
3459,
11,
4531,
11,
6420,
11,
4089,
11,
15197,
11,
13348,
11,
16562,
11,
11623,
11,
18741,
11,
16945,
11,
19708,
11,
21139,
11,
18781,
11,
20964,
11,
20198,
11,
18294,
11,
8628,
11,
24309,
11,
17827,
11,
21395,
11,
21526,
11,
18742,
11,
21599,
11,
18458,
11,
21273,
11,
19707,
11,
21940,
11,
23628,
11,
21738,
11,
24137,
11,
18182,
11,
19214,
11,
22370,
11,
26660,
11,
23753,
11,
29119,
11,
18897,
11,
22980,
11,
25674,
11,
25870,
11,
27728,
11,
6200,
11,
36244,
11,
37967,
11,
23601,
11,
31575,
11,
35195,
11,
38430,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
1238,
11,
46570,
6,
19199,
10354,
26933,
4310,
11,
3553,
11,
18741,
11,
38430,
6469,
11,
15982,
11,
19782,
11,
46570,
6,
79,
3468,
10354,
26933,
2624,
11,
2598,
11,
2920,
11,
2816,
11,
3365,
11,
3270,
11,
1899,
11,
5066,
11,
2414,
11,
19420,
11,
12952,
11,
24136,
11,
23237,
11,
28872,
11,
29807,
11,
26050,
11,
26279,
11,
29211,
11,
35273,
11,
38430,
1120,
11,
2791,
11,
4761,
11,
13464,
11,
15711,
11,
14454,
11,
16243,
11,
14686,
11,
16616,
11,
23451,
11,
24943,
11,
26115,
11,
23148,
11,
24369,
11,
21495,
11,
1120,
11,
34125,
11,
27371,
11,
30743,
11,
46570,
6,
738,
10354,
26933,
15,
11,
16,
11,
1157,
11,
1433,
11,
2078,
11,
1959,
11,
1270,
11,
3132,
11,
2091,
11,
2623,
11,
2718,
11,
2548,
11,
2670,
11,
3901,
11,
3682,
11,
3559,
11,
2857,
11,
4349,
11,
4310,
11,
4051,
11,
3553,
11,
3134,
11,
3104,
11,
4869,
11,
6659,
11,
4521,
11,
3459,
11,
4531,
11,
6420,
11,
3865,
11,
4089,
11,
15197,
11,
13348,
11,
16562,
11,
17657,
11,
16315,
11,
10163,
11,
17464,
11,
11623,
11,
12762,
11,
18741,
11,
22042,
11,
16945,
11,
19880,
11,
19708,
11,
20219,
11,
23756,
11,
21139,
11,
18444,
11,
18781,
11,
20964,
11,
20198,
11,
18294,
11,
8628,
11,
24309,
11,
17827,
11,
21395,
11,
21526,
11,
18742,
11,
21599,
11,
18458,
11,
21273,
11,
19707,
11,
21940,
11,
23628,
11,
25399,
11,
22985,
11,
22413,
11,
21738,
11,
21652,
11,
22047,
11,
24137,
11,
18182,
11,
24403,
11,
19214,
11,
25667,
11,
24339,
11,
22370,
11,
23516,
11,
26660,
11,
23753,
11,
29119,
11,
18897,
11,
22980,
11,
25674,
11,
28857,
11,
25870,
11,
30290,
11,
27693,
11,
33551,
11,
27696,
11,
25710,
11,
26561,
11,
27728,
11,
6200,
11,
18938,
11,
36244,
11,
33638,
11,
36042,
11,
37967,
11,
23601,
11,
31575,
11,
32118,
11,
35195,
11,
38430,
1828,
11,
1828,
11,
2624,
11,
2327,
11,
1828,
11,
2231,
11,
2780,
11,
2920,
11,
2816,
11,
1828,
11,
2231,
11,
1828,
11,
5333,
11,
1828,
11,
1828,
11,
2996,
11,
3104,
11,
4524,
11,
1828,
11,
3064,
11,
1828,
11,
2231,
11,
3104,
11,
1828,
11,
16799,
11,
1828,
11,
3064,
11,
3064,
11,
3064,
11,
15187,
11,
3064,
11,
3064,
11,
3064,
11,
1828,
11,
3104,
11,
3104,
11,
15259,
11,
4524,
11,
1828,
11,
23362,
11,
1828,
11,
22913,
11,
3064,
11,
19104,
11,
1828,
11,
22913,
11,
22416,
11,
3064,
11,
21261,
11,
3064,
11,
3064,
11,
3064,
11,
3064,
11,
3064,
11,
3064,
11,
3064,
11,
3064,
11,
3064,
11,
3064,
11,
3064,
11,
3064,
11,
3064,
11,
3064,
11,
1828,
11,
1828,
11,
2231,
11,
16102,
11,
22913,
11,
3064,
11,
16799,
11,
29807,
11,
1828,
11,
1828,
11,
26050,
11,
1828,
11,
30368,
11,
22913,
11,
1828,
11,
2231,
11,
3064,
11,
3064,
11,
3064,
11,
3064,
11,
3064,
11,
3064,
11,
29807,
11,
1828,
11,
30368,
11,
2231,
11,
22913,
11,
22913,
11,
22913,
11,
22913,
11,
3064,
11,
3064,
11,
22913,
11,
1828,
11,
27326,
11,
2231,
11,
3064,
11,
1828,
11,
1828,
11,
22913,
11,
3064,
11,
46570,
6,
26801,
62,
32446,
82,
10354,
26933,
21940,
11,
24137,
11,
18182,
11,
38430,
24909,
11,
27988,
11,
27019,
11,
46570,
6,
31937,
10354,
26933,
4051,
11,
3459,
11,
4531,
11,
6420,
11,
4089,
11,
15197,
11,
13348,
11,
16945,
11,
21139,
11,
18781,
11,
20964,
11,
20198,
11,
18294,
11,
8628,
11,
24309,
11,
17827,
11,
21395,
11,
21526,
11,
18742,
11,
21599,
11,
18458,
11,
21273,
11,
19707,
11,
21738,
11,
26660,
11,
23753,
11,
29119,
11,
18897,
11,
22980,
11,
25674,
11,
27728,
11,
6200,
11,
37967,
11,
35195,
11,
38430,
8784,
11,
17059,
11,
20809,
11,
20107,
11,
23726,
11,
14198,
11,
25061,
11,
24991,
11,
24991,
11,
22136,
11,
22745,
11,
21315,
11,
22567,
11,
21536,
11,
21895,
11,
21777,
11,
26427,
11,
22291,
11,
23349,
11,
20666,
11,
24591,
11,
28727,
11,
28896,
11,
28072,
11,
32759,
11,
28072,
11,
24991,
11,
24991,
11,
20548,
11,
24991,
11,
26582,
11,
39195,
11,
30995,
11,
27824,
11,
46570,
6,
31937,
82,
10354,
26933,
16945,
11,
21139,
11,
29119,
11,
18897,
11,
25674,
11,
38430,
22337,
11,
18638,
11,
22572,
11,
21288,
11,
22996,
11,
46570,
6,
32446,
82,
10354,
26933,
15,
11,
25870,
11,
36244,
11,
38430,
1495,
11,
27970,
11,
20370,
11,
46570,
92,
198,
198,
62,
14050,
62,
70,
2069,
796,
1391,
1782,
198,
1640,
4808,
74,
11,
4808,
85,
287,
4808,
14050,
62,
70,
2069,
62,
23814,
13,
23814,
33529,
198,
220,
220,
329,
4808,
87,
11,
62,
88,
287,
19974,
28264,
85,
58,
15,
4357,
62,
85,
58,
16,
60,
2599,
198,
220,
220,
220,
220,
220,
220,
611,
407,
4808,
87,
287,
4808,
14050,
62,
70,
2069,
25,
4808,
14050,
62,
70,
2069,
29795,
87,
60,
796,
1391,
1782,
198,
220,
220,
220,
220,
220,
220,
4808,
14050,
62,
70,
2069,
29795,
87,
7131,
62,
74,
60,
796,
4808,
88,
198,
12381,
4808,
14050,
62,
70,
2069,
62,
23814,
198,
62,
14050,
62,
11167,
507,
796,
685,
198,
220,
5855,
50,
6,
4613,
2393,
2430,
50,
6,
1600,
16,
11,
14202,
11,
14202,
11,
14202,
828,
198,
220,
19203,
7753,
4613,
2377,
82,
41707,
7753,
3256,
16,
4032,
79,
62,
7753,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
28727,
828,
198,
220,
19203,
28920,
4613,
1279,
28920,
29,
41707,
28920,
3256,
15,
4032,
79,
62,
28920,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
23148,
828,
198,
220,
19203,
32446,
82,
4613,
2377,
82,
87,
41707,
32446,
82,
3256,
16,
4032,
79,
62,
32446,
82,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
18182,
828,
198,
220,
19203,
32446,
82,
87,
4613,
2377,
2377,
82,
87,
41707,
32446,
82,
87,
3256,
17,
4032,
79,
62,
32446,
82,
87,
834,
4868,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
23539,
828,
198,
220,
19203,
32446,
82,
87,
4613,
6565,
41707,
32446,
82,
87,
3256,
16,
4032,
79,
62,
32446,
82,
87,
834,
23108,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
23516,
828,
198,
220,
19203,
32446,
4613,
48006,
4503,
3535,
19269,
2751,
48603,
40,
41707,
32446,
3256,
18,
4032,
79,
62,
32446,
834,
11235,
4668,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
26660,
828,
198,
220,
19203,
32446,
4613,
3268,
5097,
52,
7206,
19269,
2751,
48603,
40,
41707,
32446,
3256,
18,
4032,
79,
62,
32446,
834,
17256,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
22800,
828,
198,
220,
19203,
32446,
4613,
337,
16219,
8881,
357,
220,
3231,
1267,
1058,
26181,
62,
32446,
82,
1391,
2377,
82,
1782,
41707,
32446,
3256,
24,
4032,
79,
62,
32446,
834,
30243,
15,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
30057,
828,
198,
220,
19203,
32446,
4613,
337,
16219,
8881,
357,
220,
3231,
14729,
1267,
1058,
26181,
62,
32446,
82,
1391,
2377,
82,
1782,
41707,
32446,
3256,
940,
4032,
79,
62,
32446,
834,
30243,
16,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
22980,
828,
198,
220,
19203,
32446,
4613,
40282,
357,
1852,
14729,
1267,
6299,
41707,
32446,
3256,
21,
4032,
79,
62,
32446,
834,
2673,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
26276,
828,
198,
220,
19203,
32446,
4613,
3268,
62,
15490,
357,
1852,
837,
2099,
837,
1401,
14729,
1267,
6299,
41707,
32446,
3256,
940,
4032,
79,
62,
32446,
834,
259,
62,
634,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
27367,
828,
198,
220,
19203,
32446,
4613,
16289,
62,
15490,
357,
1852,
837,
2099,
837,
1401,
14729,
1267,
48603,
40,
41707,
32446,
3256,
940,
4032,
79,
62,
32446,
834,
448,
62,
634,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
27019,
828,
198,
220,
19203,
32446,
4613,
44069,
357,
220,
3231,
837,
220,
3231,
837,
1852,
1267,
220,
3231,
41707,
32446,
3256,
24,
4032,
79,
62,
32446,
834,
7645,
15,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
30368,
828,
198,
220,
19203,
32446,
4613,
44069,
357,
220,
3231,
837,
220,
3231,
1267,
220,
3231,
41707,
32446,
3256,
22,
4032,
79,
62,
32446,
834,
7645,
16,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
26279,
828,
198,
220,
19203,
32446,
4613,
44069,
357,
220,
3231,
837,
220,
3231,
837,
1852,
1267,
220,
3231,
220,
3231,
41707,
32446,
3256,
940,
4032,
79,
62,
32446,
834,
7645,
17,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
27693,
828,
198,
220,
19203,
32446,
4613,
44069,
357,
220,
3231,
837,
220,
3231,
1267,
220,
3231,
220,
3231,
41707,
32446,
3256,
23,
4032,
79,
62,
32446,
834,
7645,
18,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
31675,
828,
198,
220,
19203,
32446,
4613,
7788,
31800,
62,
25216,
357,
2099,
14729,
1267,
48603,
40,
41707,
32446,
3256,
21,
4032,
79,
62,
32446,
834,
1069,
759,
15,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
26561,
828,
198,
220,
19203,
32446,
4613,
10188,
9864,
1847,
357,
2099,
14729,
1267,
1391,
2099,
62,
30814,
1782,
41707,
32446,
3256,
23,
4032,
79,
62,
32446,
834,
20541,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
22709,
828,
198,
220,
19203,
32446,
4613,
19269,
18415,
357,
2099,
14729,
1267,
1391,
2099,
62,
30814,
1782,
41707,
32446,
3256,
23,
4032,
79,
62,
32446,
834,
7249,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
22996,
828,
198,
220,
19203,
32446,
4613,
12964,
5883,
357,
2099,
14729,
1267,
1391,
2099,
62,
268,
5700,
1782,
41707,
32446,
3256,
23,
4032,
79,
62,
32446,
834,
44709,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
36244,
828,
198,
220,
19203,
32446,
4613,
35454,
62,
41374,
43,
357,
2099,
14729,
1267,
1391,
2099,
62,
27219,
1782,
41707,
32446,
3256,
23,
4032,
79,
62,
32446,
834,
5219,
62,
32446,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
33400,
828,
198,
220,
19203,
26801,
62,
32446,
82,
4613,
26181,
62,
32446,
26181,
62,
32446,
82,
41707,
26801,
62,
32446,
82,
3256,
17,
4032,
79,
62,
26801,
62,
32446,
82,
834,
4868,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
32637,
828,
198,
220,
19203,
26801,
62,
32446,
82,
4613,
6565,
41707,
26801,
62,
32446,
82,
3256,
16,
4032,
79,
62,
26801,
62,
32446,
82,
834,
28920,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
34159,
828,
198,
220,
19203,
4906,
62,
30814,
4613,
2099,
62,
19522,
2099,
62,
30814,
41707,
4906,
62,
30814,
3256,
17,
4032,
79,
62,
4906,
62,
30814,
834,
4868,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
31697,
828,
198,
220,
19203,
4906,
62,
30814,
4613,
6565,
41707,
4906,
62,
30814,
3256,
16,
4032,
79,
62,
4906,
62,
30814,
834,
28920,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
27326,
828,
198,
220,
19203,
4906,
62,
19522,
4613,
26181,
62,
32446,
41707,
4906,
62,
19522,
3256,
16,
4032,
79,
62,
4906,
62,
19522,
834,
15,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
29626,
828,
198,
220,
19203,
4906,
62,
19522,
4613,
25439,
62,
32446,
41707,
4906,
62,
19522,
3256,
16,
4032,
79,
62,
4906,
62,
19522,
834,
15,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
23601,
828,
198,
220,
19203,
4906,
62,
19522,
4613,
25439,
62,
4299,
41707,
4906,
62,
19522,
3256,
16,
4032,
79,
62,
4906,
62,
19522,
834,
15,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
33660,
828,
198,
220,
19203,
32446,
4613,
26181,
62,
32446,
41707,
32446,
3256,
16,
4032,
79,
62,
32446,
834,
26801,
62,
32446,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
30557,
828,
198,
220,
19203,
26801,
62,
32446,
4613,
2099,
1852,
14729,
48603,
40,
41707,
26801,
62,
32446,
3256,
19,
4032,
79,
62,
26801,
62,
32446,
834,
15,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
14877,
828,
198,
220,
19203,
26801,
62,
32446,
4613,
2099,
25424,
1852,
14729,
48603,
40,
41707,
26801,
62,
32446,
3256,
20,
4032,
79,
62,
26801,
62,
32446,
834,
16,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
32182,
828,
198,
220,
19203,
26801,
62,
32446,
4613,
2099,
1852,
24994,
16284,
44052,
48603,
40,
41707,
26801,
62,
32446,
3256,
20,
4032,
79,
62,
26801,
62,
32446,
834,
17,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
31128,
828,
198,
220,
19203,
26801,
62,
32446,
4613,
2099,
25424,
1852,
24994,
16284,
44052,
48603,
40,
41707,
26801,
62,
32446,
3256,
21,
4032,
79,
62,
26801,
62,
32446,
834,
18,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
35447,
828,
198,
220,
19203,
32446,
4613,
25439,
62,
32446,
41707,
32446,
3256,
16,
4032,
79,
62,
32446,
834,
20786,
62,
32446,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
30803,
828,
198,
220,
19203,
20786,
62,
32446,
4613,
7951,
1852,
357,
42287,
1267,
14729,
48603,
40,
41707,
20786,
62,
32446,
3256,
22,
4032,
79,
62,
20786,
62,
32446,
834,
15,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
34770,
828,
198,
220,
19203,
20786,
62,
32446,
4613,
2099,
1852,
357,
42287,
1267,
14729,
48603,
40,
41707,
20786,
62,
32446,
3256,
22,
4032,
79,
62,
20786,
62,
32446,
834,
15,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
31020,
828,
198,
220,
19203,
20786,
62,
32446,
4613,
7951,
1852,
357,
3858,
1267,
14729,
48603,
40,
41707,
20786,
62,
32446,
3256,
22,
4032,
79,
62,
20786,
62,
32446,
834,
16,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
30695,
828,
198,
220,
19203,
20786,
62,
32446,
4613,
2099,
1852,
357,
3858,
1267,
14729,
48603,
40,
41707,
20786,
62,
32446,
3256,
22,
4032,
79,
62,
20786,
62,
32446,
834,
16,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
29088,
828,
198,
220,
19203,
32446,
4613,
25439,
62,
4299,
41707,
32446,
3256,
16,
4032,
79,
62,
32446,
834,
20786,
62,
4299,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
34741,
828,
198,
220,
19203,
20786,
62,
4299,
4613,
7951,
1852,
357,
42287,
1267,
14729,
6299,
41707,
20786,
62,
4299,
3256,
22,
4032,
79,
62,
20786,
62,
4299,
834,
15,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
32220,
828,
198,
220,
19203,
20786,
62,
4299,
4613,
2099,
1852,
357,
42287,
1267,
14729,
6299,
41707,
20786,
62,
4299,
3256,
22,
4032,
79,
62,
20786,
62,
4299,
834,
15,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
30460,
828,
198,
220,
19203,
4906,
62,
268,
5700,
4613,
2099,
62,
44709,
2099,
62,
268,
5700,
41707,
4906,
62,
268,
5700,
3256,
17,
4032,
79,
62,
4906,
62,
268,
5700,
834,
4868,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
26007,
828,
198,
220,
19203,
4906,
62,
268,
5700,
4613,
6565,
41707,
4906,
62,
268,
5700,
3256,
16,
4032,
79,
62,
4906,
62,
268,
5700,
834,
28920,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
33372,
828,
198,
220,
19203,
4906,
62,
44709,
4613,
1852,
14729,
48603,
40,
41707,
4906,
62,
44709,
3256,
18,
4032,
79,
62,
4906,
62,
44709,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
21844,
828,
198,
220,
19203,
4906,
62,
27219,
4613,
2099,
62,
5219,
2099,
62,
27219,
41707,
4906,
62,
27219,
3256,
17,
4032,
79,
62,
4906,
62,
27219,
834,
4868,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
29703,
828,
198,
220,
19203,
4906,
62,
27219,
4613,
6565,
41707,
4906,
62,
27219,
3256,
16,
4032,
79,
62,
4906,
62,
27219,
834,
28920,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
33289,
828,
198,
220,
19203,
4906,
62,
5219,
4613,
1852,
837,
27056,
341,
14729,
48603,
40,
41707,
4906,
62,
5219,
3256,
20,
4032,
79,
62,
4906,
62,
5219,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
37309,
828,
198,
220,
19203,
37266,
4613,
5772,
837,
42287,
41707,
37266,
3256,
18,
4032,
79,
62,
37266,
834,
21834,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
45068,
828,
198,
220,
19203,
37266,
4613,
5772,
41707,
37266,
3256,
16,
4032,
79,
62,
37266,
834,
505,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
43356,
828,
198,
220,
19203,
37266,
4613,
6565,
41707,
37266,
3256,
16,
4032,
79,
62,
37266,
834,
23108,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
42363,
828,
198,
220,
19203,
17143,
4613,
2099,
1852,
41707,
17143,
3256,
17,
4032,
79,
62,
17143,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
50080,
828,
198,
220,
19203,
17143,
4613,
2099,
25424,
1852,
41707,
17143,
3256,
18,
4032,
79,
62,
17143,
834,
29536,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
40064,
828,
198,
220,
19203,
17143,
4613,
2099,
25424,
1852,
24994,
16284,
19269,
2751,
41707,
17143,
3256,
20,
4032,
79,
62,
17143,
834,
29536,
62,
12286,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
47106,
828,
198,
220,
19203,
17143,
4613,
2099,
1852,
24994,
16284,
36871,
13246,
41707,
17143,
3256,
19,
4032,
79,
62,
17143,
834,
12286,
62,
17618,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
34938,
828,
198,
220,
19203,
17143,
4613,
2099,
1852,
24994,
16284,
406,
2043,
62,
8202,
3535,
41707,
17143,
3256,
19,
4032,
79,
62,
17143,
834,
12286,
62,
30388,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
34825,
828,
198,
220,
19203,
17143,
4613,
2099,
1852,
24994,
16284,
19269,
2751,
41707,
17143,
3256,
19,
4032,
79,
62,
17143,
834,
12286,
62,
8841,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
36330,
828,
198,
220,
19203,
19199,
4613,
2099,
837,
3858,
41707,
19199,
3256,
18,
4032,
79,
62,
19199,
834,
48101,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
29228,
828,
198,
220,
19203,
19199,
4613,
2099,
41707,
19199,
3256,
16,
4032,
79,
62,
19199,
834,
505,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
34716,
828,
198,
220,
19203,
19199,
4613,
6565,
41707,
19199,
3256,
16,
4032,
79,
62,
19199,
834,
28920,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
44578,
828,
198,
220,
19203,
28004,
395,
81,
4613,
2170,
395,
81,
360,
2606,
19146,
62,
25154,
1340,
1852,
41707,
28004,
395,
81,
3256,
18,
4032,
79,
62,
28004,
395,
81,
834,
41684,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
38472,
828,
198,
220,
19203,
28004,
395,
81,
4613,
1852,
41707,
28004,
395,
81,
3256,
16,
4032,
79,
62,
28004,
395,
81,
834,
29762,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
37856,
828,
198,
220,
19203,
4906,
4613,
2170,
395,
81,
41707,
4906,
3256,
16,
4032,
79,
62,
4906,
834,
505,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
35435,
828,
198,
220,
19203,
19382,
4613,
30578,
2389,
41707,
19382,
3256,
16,
4032,
79,
62,
19382,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
22148,
828,
198,
220,
19203,
3231,
4613,
1391,
1852,
87,
1782,
41707,
3231,
3256,
18,
4032,
79,
62,
3231,
834,
1671,
2286,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
32642,
828,
198,
220,
19203,
3231,
4613,
1852,
41707,
3231,
3256,
16,
4032,
79,
62,
3231,
834,
49382,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
35890,
828,
198,
220,
19203,
738,
87,
4613,
1852,
48603,
40,
1852,
87,
41707,
738,
87,
3256,
18,
4032,
79,
62,
738,
87,
834,
48101,
62,
16,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
43134,
828,
198,
220,
19203,
738,
87,
4613,
1852,
837,
1852,
87,
41707,
738,
87,
3256,
18,
4032,
79,
62,
738,
87,
834,
48101,
62,
16,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
39449,
828,
198,
220,
19203,
738,
87,
4613,
1852,
1852,
87,
41707,
738,
87,
3256,
17,
4032,
79,
62,
738,
87,
834,
48101,
62,
17,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
36260,
828,
198,
220,
19203,
738,
87,
4613,
6565,
41707,
738,
87,
3256,
16,
4032,
79,
62,
738,
87,
834,
29762,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
35126,
828,
198,
220,
19203,
738,
4613,
4522,
3525,
41707,
738,
3256,
16,
4032,
79,
62,
738,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
35638,
828,
198,
220,
19203,
79,
3468,
4613,
837,
14729,
87,
41707,
79,
3468,
3256,
17,
4032,
79,
62,
79,
3468,
834,
4868,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
41647,
828,
198,
220,
19203,
79,
3468,
4613,
6565,
41707,
79,
3468,
3256,
16,
4032,
79,
62,
79,
3468,
834,
28920,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
45969,
828,
198,
220,
19203,
79,
3468,
87,
4613,
5166,
837,
14729,
87,
41707,
79,
3468,
87,
3256,
18,
4032,
79,
62,
79,
3468,
87,
834,
21834,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
47785,
828,
198,
220,
19203,
79,
3468,
87,
4613,
5166,
41707,
79,
3468,
87,
3256,
16,
4032,
79,
62,
79,
3468,
87,
834,
505,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
48057,
828,
198,
220,
19203,
24874,
4613,
1852,
796,
19269,
2751,
41707,
24874,
3256,
18,
4032,
79,
62,
24874,
834,
562,
570,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
49721,
828,
198,
220,
19203,
24874,
4613,
1852,
796,
1852,
41707,
24874,
3256,
18,
4032,
79,
62,
24874,
834,
562,
570,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
38612,
828,
198,
220,
19203,
24874,
4613,
1852,
796,
36871,
13246,
41707,
24874,
3256,
18,
4032,
79,
62,
24874,
834,
562,
570,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
20,
3132,
828,
198,
220,
19203,
24874,
4613,
19269,
2751,
41707,
24874,
3256,
16,
4032,
79,
62,
24874,
834,
18250,
1691,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
44465,
828,
198,
220,
19203,
14269,
3196,
4613,
1391,
6299,
62,
5083,
1782,
41707,
14269,
3196,
3256,
18,
4032,
79,
62,
14269,
3196,
834,
5083,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
35005,
828,
198,
220,
19203,
14269,
3196,
4613,
1391,
1782,
41707,
14269,
3196,
3256,
17,
4032,
79,
62,
14269,
3196,
834,
23108,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
47576,
828,
198,
220,
19203,
14269,
3196,
62,
5083,
4613,
2643,
6299,
62,
5083,
41707,
14269,
3196,
62,
5083,
3256,
17,
4032,
79,
62,
14269,
3196,
62,
5083,
834,
21834,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
49934,
828,
198,
220,
19203,
14269,
3196,
62,
5083,
4613,
2643,
41707,
14269,
3196,
62,
5083,
3256,
16,
4032,
79,
62,
14269,
3196,
62,
5083,
834,
505,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
40427,
828,
198,
220,
19203,
31937,
82,
4613,
44052,
837,
1033,
3808,
41707,
31937,
82,
3256,
18,
4032,
79,
62,
31937,
82,
834,
48101,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
37864,
828,
198,
220,
19203,
31937,
82,
4613,
44052,
41707,
31937,
82,
3256,
16,
4032,
79,
62,
31937,
82,
834,
505,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
34135,
828,
198,
220,
19203,
31937,
82,
4613,
6565,
41707,
31937,
82,
3256,
16,
4032,
79,
62,
31937,
82,
834,
28920,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
20,
2414,
828,
198,
220,
19203,
26090,
4613,
44052,
48603,
40,
41707,
26090,
3256,
17,
4032,
79,
62,
26090,
834,
38011,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
49211,
828,
198,
220,
19203,
26090,
4613,
44052,
24994,
16284,
44052,
48603,
40,
41707,
26090,
3256,
19,
4032,
79,
62,
26090,
834,
562,
570,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
48724,
828,
198,
220,
19203,
26090,
4613,
12964,
48,
8924,
8924,
357,
1401,
837,
2099,
1267,
6299,
41707,
26090,
3256,
22,
4032,
79,
62,
26090,
834,
268,
36560,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
37452,
828,
198,
220,
19203,
26090,
4613,
12964,
48,
8924,
8924,
357,
1401,
837,
2099,
837,
44052,
1267,
6299,
41707,
26090,
3256,
24,
4032,
79,
62,
26090,
834,
268,
36560,
62,
15460,
1387,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
39322,
828,
198,
220,
19203,
26090,
4613,
3563,
7036,
62,
6981,
62,
15543,
2043,
357,
1401,
837,
1401,
1267,
48603,
40,
41707,
26090,
3256,
22,
4032,
79,
62,
26090,
834,
32989,
62,
392,
62,
17077,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
46352,
828,
198,
220,
19203,
26090,
4613,
350,
33823,
357,
1401,
837,
2099,
14729,
1267,
6299,
41707,
26090,
3256,
23,
4032,
79,
62,
26090,
834,
431,
988,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
39118,
828,
198,
220,
19203,
26090,
4613,
5870,
25171,
62,
7036,
4503,
6158,
357,
1401,
1267,
48603,
40,
41707,
26090,
3256,
20,
4032,
79,
62,
26090,
834,
9122,
62,
439,
13369,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
45839,
828,
198,
220,
19203,
26090,
4613,
5870,
25171,
62,
2257,
3185,
62,
8634,
33472,
357,
1401,
837,
19269,
2751,
837,
19269,
2751,
1267,
48603,
40,
41707,
26090,
3256,
24,
4032,
79,
62,
26090,
834,
9122,
62,
11338,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
45734,
828,
198,
220,
19203,
26090,
4613,
30826,
27064,
44052,
48603,
40,
41707,
26090,
3256,
18,
4032,
79,
62,
26090,
834,
7783,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
8054,
828,
198,
220,
19203,
26090,
4613,
611,
62,
26090,
41707,
26090,
3256,
16,
4032,
79,
62,
26090,
834,
361,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
31916,
828,
198,
220,
19203,
361,
62,
26090,
4613,
16876,
357,
44052,
1267,
6299,
41707,
361,
62,
26090,
3256,
20,
4032,
79,
62,
361,
62,
26090,
834,
361,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
28688,
828,
198,
220,
19203,
361,
62,
26090,
4613,
16876,
357,
44052,
1267,
6299,
17852,
5188,
6299,
41707,
361,
62,
26090,
3256,
22,
4032,
79,
62,
361,
62,
26090,
834,
361,
62,
17772,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
43610,
828,
198,
220,
19203,
361,
62,
26090,
4613,
16876,
357,
44052,
1267,
6299,
17852,
5188,
611,
62,
26090,
41707,
361,
62,
26090,
3256,
22,
4032,
79,
62,
26090,
834,
361,
62,
17772,
62,
361,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
44214,
828,
198,
220,
19203,
64,
31937,
4613,
15486,
2149,
62,
44647,
357,
2099,
837,
44052,
1267,
41707,
64,
31937,
3256,
21,
4032,
79,
62,
31937,
834,
12708,
62,
2701,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
21,
2481,
828,
198,
220,
19203,
64,
31937,
4613,
15486,
2149,
62,
44647,
357,
2099,
837,
19269,
2751,
837,
44052,
1267,
41707,
64,
31937,
3256,
23,
4032,
79,
62,
31937,
834,
12708,
62,
2701,
62,
20692,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
26704,
828,
198,
220,
19203,
64,
31937,
4613,
1401,
41707,
64,
31937,
3256,
16,
4032,
79,
62,
31937,
834,
7785,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
48602,
828,
198,
220,
19203,
64,
31937,
4613,
2099,
1852,
41707,
64,
31937,
3256,
17,
4032,
79,
62,
31937,
834,
12001,
7785,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
21,
2091,
828,
198,
220,
19203,
64,
31937,
4613,
18875,
41707,
64,
31937,
3256,
16,
4032,
79,
62,
31937,
834,
18250,
1691,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
21,
2718,
828,
198,
220,
19203,
64,
31937,
4613,
27056,
341,
41707,
64,
31937,
3256,
16,
4032,
79,
62,
31937,
834,
268,
6975,
341,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
42759,
828,
198,
220,
19203,
64,
31937,
4613,
1852,
357,
1033,
3808,
1267,
41707,
64,
31937,
3256,
19,
4032,
79,
62,
31937,
834,
20786,
62,
13345,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
49259,
828,
198,
220,
19203,
64,
31937,
4613,
12682,
2099,
41707,
64,
31937,
3256,
17,
4032,
79,
62,
31937,
834,
3605,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
33300,
828,
198,
220,
19203,
64,
31937,
4613,
440,
3727,
41707,
64,
31937,
3256,
16,
4032,
79,
62,
31937,
834,
8423,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
46435,
828,
198,
220,
19203,
64,
31937,
4613,
257,
31937,
42743,
1852,
41707,
64,
31937,
3256,
18,
4032,
79,
62,
31937,
834,
19522,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
37680,
828,
198,
220,
19203,
64,
31937,
4613,
257,
31937,
42743,
1852,
357,
1033,
3808,
1267,
41707,
64,
31937,
3256,
21,
4032,
79,
62,
31937,
834,
19522,
62,
24396,
62,
13345,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
47159,
828,
198,
220,
19203,
64,
31937,
4613,
257,
31937,
685,
1033,
3808,
2361,
41707,
64,
31937,
3256,
19,
4032,
79,
62,
31937,
834,
19522,
62,
24396,
62,
13345,
62,
5460,
929,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
36879,
828,
198,
220,
19203,
64,
31937,
4613,
2099,
360,
2606,
19146,
62,
25154,
1340,
1852,
357,
1033,
3808,
1267,
41707,
64,
31937,
3256,
21,
4032,
79,
62,
31937,
834,
4871,
62,
24396,
62,
13345,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
36657,
828,
198,
220,
19203,
31937,
4613,
257,
31937,
41707,
31937,
3256,
16,
4032,
79,
62,
31937,
834,
64,
31937,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
45758,
828,
198,
220,
19203,
31937,
4613,
44052,
25424,
44052,
41707,
31937,
3256,
18,
4032,
79,
62,
31937,
834,
39491,
62,
404,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
40179,
828,
198,
220,
19203,
31937,
4613,
44052,
12419,
11211,
44052,
41707,
31937,
3256,
18,
4032,
79,
62,
31937,
834,
39491,
62,
404,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
30924,
828,
198,
220,
19203,
31937,
4613,
44052,
48635,
44052,
41707,
31937,
3256,
18,
4032,
79,
62,
31937,
834,
39491,
62,
404,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
37601,
828,
198,
220,
19203,
31937,
4613,
44052,
360,
11211,
44052,
41707,
31937,
3256,
18,
4032,
79,
62,
31937,
834,
39491,
62,
404,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
37397,
828,
198,
220,
19203,
31937,
4613,
44052,
34146,
44052,
41707,
31937,
3256,
18,
4032,
79,
62,
31937,
834,
39491,
62,
404,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
48564,
828,
198,
220,
19203,
31937,
4613,
44052,
7963,
44052,
41707,
31937,
3256,
18,
4032,
79,
62,
31937,
834,
39491,
62,
404,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
43950,
828,
198,
220,
19203,
31937,
4613,
44052,
12509,
44052,
41707,
31937,
3256,
18,
4032,
79,
62,
31937,
834,
39491,
62,
404,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
47521,
828,
198,
220,
19203,
31937,
4613,
44052,
22319,
44052,
41707,
31937,
3256,
18,
4032,
79,
62,
31937,
834,
39491,
62,
404,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
41580,
828,
198,
220,
19203,
31937,
4613,
44052,
36529,
44052,
41707,
31937,
3256,
18,
4032,
79,
62,
31937,
834,
39491,
62,
404,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
35978,
828,
198,
220,
19203,
31937,
4613,
44052,
10635,
44052,
41707,
31937,
3256,
18,
4032,
79,
62,
31937,
834,
39491,
62,
404,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
33808,
828,
198,
220,
19203,
31937,
4613,
44052,
5357,
44052,
41707,
31937,
3256,
18,
4032,
79,
62,
31937,
834,
39491,
62,
404,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
39925,
828,
198,
220,
19203,
31937,
4613,
44052,
6375,
44052,
41707,
31937,
3256,
18,
4032,
79,
62,
31937,
834,
39491,
62,
404,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
34427,
828,
198,
220,
19203,
31937,
4613,
44052,
371,
34874,
39,
32297,
44052,
41707,
31937,
3256,
18,
4032,
79,
62,
31937,
834,
39491,
62,
404,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
40523,
828,
198,
220,
19203,
31937,
4613,
44052,
12509,
37,
4694,
39,
32297,
44052,
41707,
31937,
3256,
18,
4032,
79,
62,
31937,
834,
39491,
62,
404,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
35844,
828,
198,
220,
19203,
31937,
4613,
5626,
44052,
41707,
31937,
3256,
17,
4032,
79,
62,
31937,
834,
403,
560,
62,
404,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
37381,
828,
198,
220,
19203,
31937,
4613,
3268,
9419,
44052,
41707,
31937,
3256,
17,
4032,
79,
62,
31937,
834,
403,
560,
62,
404,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
38205,
828,
198,
220,
19203,
31937,
4613,
27196,
49,
44052,
41707,
31937,
3256,
17,
4032,
79,
62,
31937,
834,
403,
560,
62,
404,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
40035,
828,
198,
220,
19203,
31937,
4613,
360,
11211,
44052,
41707,
31937,
3256,
17,
4032,
79,
62,
31937,
834,
403,
560,
62,
404,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
39357,
828,
198,
220,
19203,
64,
31937,
4613,
357,
44052,
1267,
41707,
64,
31937,
3256,
18,
4032,
79,
62,
31937,
834,
11730,
82,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
36680,
828,
198,
220,
19203,
64,
31937,
4613,
3180,
62,
23428,
2389,
357,
1401,
1267,
41707,
64,
31937,
3256,
19,
4032,
79,
62,
31937,
834,
271,
62,
12102,
62,
20692,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
35402,
828,
198,
220,
19203,
64,
31937,
4613,
3180,
62,
1268,
23428,
2389,
357,
1401,
1267,
41707,
64,
31937,
3256,
19,
4032,
79,
62,
31937,
834,
271,
62,
259,
12102,
62,
20692,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
43147,
828,
198,
220,
19203,
18250,
1691,
4613,
19269,
2751,
41707,
18250,
1691,
3256,
16,
4032,
79,
62,
18250,
1691,
834,
8841,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
45722,
828,
198,
220,
19203,
18250,
1691,
4613,
36871,
13246,
41707,
18250,
1691,
3256,
16,
4032,
79,
62,
18250,
1691,
834,
17618,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
45720,
828,
198,
220,
19203,
18250,
1691,
4613,
9977,
46,
1404,
41359,
13246,
41707,
18250,
1691,
3256,
16,
4032,
79,
62,
18250,
1691,
834,
22468,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
22,
1828,
828,
198,
220,
19203,
18250,
1691,
4613,
406,
2043,
62,
8202,
3535,
41707,
18250,
1691,
3256,
16,
4032,
79,
62,
18250,
1691,
834,
30388,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
22,
2075,
828,
198,
220,
19203,
268,
6975,
341,
4613,
1852,
1058,
1852,
41707,
268,
6975,
341,
3256,
18,
4032,
79,
62,
268,
6975,
341,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
43916,
828,
198,
220,
19203,
7785,
4613,
1852,
41707,
7785,
3256,
16,
4032,
79,
62,
7785,
3256,
26488,
11195,
14,
646,
272,
12,
87,
70,
14,
24090,
20,
12,
77,
36133,
14,
24090,
20,
14,
10677,
14,
11883,
14,
82,
677,
66,
14,
48610,
13,
9078,
3256,
22,
2682,
828,
198,
60,
198
] | 2.017526 | 23,051 |
from pdb import set_trace
import json
import itertools
# import pygments
import random
import csv
# from pygments.token import Comment, Text, Keyword, Name
# from bpe import Encoder
# from nltk import everygrams, ngrams
# from nltk.tokenize import word_tokenize
# from lexer import build_lexer
if __name__ == "__main__":
import argparse
ap = argparse.ArgumentParser()
ap.add_argument("data", help="Path to training data")
args = ap.parse_args()
main_java(args.data)
| [
6738,
279,
9945,
1330,
900,
62,
40546,
198,
11748,
33918,
198,
11748,
340,
861,
10141,
198,
2,
1330,
12972,
11726,
198,
11748,
4738,
198,
11748,
269,
21370,
198,
2,
422,
12972,
11726,
13,
30001,
1330,
18957,
11,
8255,
11,
7383,
4775,
11,
6530,
198,
198,
2,
422,
275,
431,
1330,
14711,
12342,
198,
2,
422,
299,
2528,
74,
1330,
790,
4546,
82,
11,
299,
4546,
82,
198,
2,
422,
299,
2528,
74,
13,
30001,
1096,
1330,
1573,
62,
30001,
1096,
628,
198,
2,
422,
31191,
263,
1330,
1382,
62,
2588,
263,
628,
628,
628,
628,
628,
628,
628,
628,
628,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
1330,
1822,
29572,
198,
220,
220,
220,
2471,
796,
1822,
29572,
13,
28100,
1713,
46677,
3419,
198,
220,
220,
220,
2471,
13,
2860,
62,
49140,
7203,
7890,
1600,
1037,
2625,
15235,
284,
3047,
1366,
4943,
198,
220,
220,
220,
26498,
796,
2471,
13,
29572,
62,
22046,
3419,
198,
220,
220,
220,
1388,
62,
12355,
7,
22046,
13,
7890,
8,
198
] | 2.897143 | 175 |
from django.db import models
| [
6738,
42625,
14208,
13,
9945,
1330,
4981,
628
] | 3.75 | 8 |
from pyawx.models._mixins import DataModelMixin
from pyawx.models.utils import set_changes, types
from pyawx.exceptions import ValueReadOnly
| [
6738,
12972,
707,
87,
13,
27530,
13557,
19816,
1040,
1330,
6060,
17633,
35608,
259,
198,
6738,
12972,
707,
87,
13,
27530,
13,
26791,
1330,
900,
62,
36653,
11,
3858,
198,
6738,
12972,
707,
87,
13,
1069,
11755,
1330,
11052,
5569,
10049,
628,
198
] | 3.325581 | 43 |
#!/usr/bin/env python3
# Copyright (c) 2015 The Bitcoin Core developers
# Copyright (c) 2015-2017 The Bitcoin Unlimited developers
# Distributed under the MIT software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
#
# Test ZMQ interface
#
import time
import test_framework.loginit
from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import *
import zmq
import struct
import http.client
import urllib.parse
if __name__ == '__main__':
ZMQTest ().main ()
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
18,
198,
2,
15069,
357,
66,
8,
1853,
383,
6185,
7231,
6505,
198,
2,
15069,
357,
66,
8,
1853,
12,
5539,
383,
6185,
26774,
6505,
198,
2,
4307,
6169,
739,
262,
17168,
3788,
5964,
11,
766,
262,
19249,
198,
2,
2393,
27975,
45761,
393,
2638,
1378,
2503,
13,
44813,
1668,
13,
2398,
14,
677,
4541,
14,
2781,
12,
43085,
13,
10121,
13,
198,
198,
2,
198,
2,
6208,
1168,
49215,
7071,
198,
2,
198,
198,
11748,
640,
198,
11748,
1332,
62,
30604,
13,
6404,
15003,
198,
6738,
1332,
62,
30604,
13,
9288,
62,
30604,
1330,
6185,
14402,
21055,
6433,
198,
6738,
1332,
62,
30604,
13,
22602,
1330,
1635,
198,
11748,
1976,
76,
80,
198,
11748,
2878,
198,
198,
11748,
2638,
13,
16366,
198,
11748,
2956,
297,
571,
13,
29572,
628,
628,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
1168,
49215,
14402,
27972,
12417,
7499,
198,
220,
198
] | 3.404908 | 163 |
#!/usr/bin/env pipenv-shebang
import csv
import time
import yaml
import configReader
from datetime import datetime
from miio import AirPurifierMiot
configFile = "config.yaml"
ip = configReader.fetchIpAddress(configFile,"airpurifier")
token = configReader.fetchToken(configFile,"airpurifier")
air = AirPurifierMiot(ip,token)
while(True):
try:
prop = air.get_properties()
dateTimeObj = datetime.now()
#print(prop)
temp = 0
hum = 0
aqi = 0
for e in prop:
if(e["did"] == "humidity"):
hum = e["value"]
if(e["did"] == "temperature"):
temp = e["value"]
if(e["did"] == "aqi"):
aqi = e["value"]
with open('../visualize/studies/data_3.csv', mode = 'a') as csv_file:
writer = csv.writer(csv_file, delimiter=',',quotechar='"', quoting=csv.QUOTE_MINIMAL)
#Timestamp, Temperatura, Umidità, AQI
writer.writerow([round(time.time() * 1000),temp,hum,aqi])
print(dateTimeObj)
print(temp)
print(hum)
print(aqi)
time.sleep(15.0 * 60)
except Exception:
pass | [
2,
48443,
14629,
14,
8800,
14,
24330,
7347,
24330,
12,
7091,
36668,
198,
11748,
269,
21370,
198,
11748,
640,
198,
11748,
331,
43695,
198,
11748,
4566,
33634,
198,
6738,
4818,
8079,
1330,
4818,
8079,
198,
6738,
21504,
952,
1330,
3701,
30026,
7483,
44,
5151,
198,
198,
11250,
8979,
796,
366,
11250,
13,
88,
43695,
1,
198,
541,
796,
4566,
33634,
13,
69,
7569,
40,
79,
20231,
7,
11250,
8979,
553,
958,
14225,
7483,
4943,
198,
30001,
796,
4566,
33634,
13,
69,
7569,
30642,
7,
11250,
8979,
553,
958,
14225,
7483,
4943,
198,
198,
958,
796,
3701,
30026,
7483,
44,
5151,
7,
541,
11,
30001,
8,
198,
198,
4514,
7,
17821,
2599,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2632,
796,
1633,
13,
1136,
62,
48310,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
3128,
7575,
49201,
796,
4818,
8079,
13,
2197,
3419,
628,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
4798,
7,
22930,
8,
628,
220,
220,
220,
220,
220,
220,
220,
20218,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
1311,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
257,
40603,
796,
657,
628,
220,
220,
220,
220,
220,
220,
220,
329,
304,
287,
2632,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
7,
68,
14692,
20839,
8973,
6624,
366,
17047,
17995,
1,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1311,
796,
304,
14692,
8367,
8973,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
7,
68,
14692,
20839,
8973,
6624,
366,
11498,
21069,
1,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20218,
796,
304,
14692,
8367,
8973,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
7,
68,
14692,
20839,
8973,
6624,
366,
30188,
72,
1,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
257,
40603,
796,
304,
14692,
8367,
8973,
628,
220,
220,
220,
220,
220,
220,
220,
351,
1280,
10786,
40720,
41464,
1096,
14,
19149,
444,
14,
7890,
62,
18,
13,
40664,
3256,
4235,
796,
705,
64,
11537,
355,
269,
21370,
62,
7753,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6260,
796,
269,
21370,
13,
16002,
7,
40664,
62,
7753,
11,
46728,
2676,
28,
3256,
3256,
22708,
10641,
11639,
1,
3256,
28411,
28,
40664,
13,
10917,
23051,
62,
23678,
3955,
1847,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
14967,
27823,
11,
48125,
2541,
64,
11,
471,
13602,
270,
24247,
11,
39514,
40,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6260,
13,
16002,
322,
26933,
744,
7,
2435,
13,
2435,
3419,
1635,
8576,
828,
29510,
11,
17047,
11,
30188,
72,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
4475,
7575,
49201,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
29510,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
17047,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
30188,
72,
8,
198,
220,
220,
220,
220,
220,
220,
220,
640,
13,
42832,
7,
1314,
13,
15,
1635,
3126,
8,
198,
220,
220,
220,
2845,
35528,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1208
] | 2.023529 | 595 |
import os
import sys
from numpy.distutils.exec_command import exec_command
if '--install' in sys.argv[1:]:
print('Building and installing local dev version via conda')
installing()
elif '--remove' in sys.argv[1:]:
print('Removing local dev package')
remove()
elif '--update' in sys.argv[1:]:
print('Updating local dev package')
update()
| [
11748,
28686,
198,
11748,
25064,
198,
6738,
299,
32152,
13,
17080,
26791,
13,
18558,
62,
21812,
1330,
2452,
62,
21812,
198,
198,
361,
705,
438,
17350,
6,
287,
25064,
13,
853,
85,
58,
16,
25,
5974,
198,
220,
220,
220,
3601,
10786,
25954,
290,
15975,
1957,
1614,
2196,
2884,
1779,
64,
11537,
198,
220,
220,
220,
15975,
3419,
198,
417,
361,
705,
438,
28956,
6,
287,
25064,
13,
853,
85,
58,
16,
25,
5974,
198,
220,
220,
220,
3601,
10786,
8413,
5165,
1957,
1614,
5301,
11537,
198,
220,
220,
220,
4781,
3419,
198,
417,
361,
705,
438,
19119,
6,
287,
25064,
13,
853,
85,
58,
16,
25,
5974,
198,
220,
220,
220,
3601,
10786,
4933,
38734,
1957,
1614,
5301,
11537,
198,
220,
220,
220,
4296,
3419,
198
] | 2.850394 | 127 |
import os
from io import open
from setuptools import setup, find_packages
setup(
name="apichanges",
version='0.0.1',
description="AWS API Changes",
long_description=read('readme.md'),
long_description_content_type='text/markdown',
license="Apache-2.0",
packages=find_packages(),
entry_points={
'console_scripts': [
'apichanges = apichanges.cli:cli']},
install_requires=[
"botocore>=1.12.228",
"Click==7.0",
"docutils==0.15.2",
"Jinja2>=2.10.1",
"jmespath==0.9.4",
"MarkupSafe==1.1.1",
"pycparser==2.19",
"pygit2==0.28.2",
"python-dateutil==2.8.0",
"six==1.13.0",
"lxml==4.4.2",
"feedgen>=0.9.0",
"urllib3==1.25.7"
],
)
| [
11748,
28686,
198,
6738,
33245,
1330,
1280,
198,
6738,
900,
37623,
10141,
1330,
9058,
11,
1064,
62,
43789,
628,
198,
198,
40406,
7,
198,
220,
220,
220,
1438,
2625,
499,
488,
6231,
1600,
198,
220,
220,
220,
2196,
11639,
15,
13,
15,
13,
16,
3256,
198,
220,
220,
220,
6764,
2625,
12298,
50,
7824,
19179,
1600,
198,
220,
220,
220,
890,
62,
11213,
28,
961,
10786,
961,
1326,
13,
9132,
33809,
198,
220,
220,
220,
890,
62,
11213,
62,
11299,
62,
4906,
11639,
5239,
14,
4102,
2902,
3256,
198,
220,
220,
220,
5964,
2625,
25189,
4891,
12,
17,
13,
15,
1600,
198,
220,
220,
220,
10392,
28,
19796,
62,
43789,
22784,
198,
220,
220,
220,
5726,
62,
13033,
34758,
198,
220,
220,
220,
220,
220,
220,
220,
705,
41947,
62,
46521,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
499,
488,
6231,
796,
2471,
488,
6231,
13,
44506,
25,
44506,
20520,
5512,
198,
220,
220,
220,
2721,
62,
47911,
41888,
628,
220,
220,
220,
220,
220,
220,
220,
366,
13645,
420,
382,
29,
28,
16,
13,
1065,
13,
23815,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
8164,
855,
22,
13,
15,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
15390,
26791,
855,
15,
13,
1314,
13,
17,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
41,
259,
6592,
17,
29,
28,
17,
13,
940,
13,
16,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
73,
6880,
6978,
855,
15,
13,
24,
13,
19,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
9704,
929,
31511,
855,
16,
13,
16,
13,
16,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
9078,
13155,
28198,
855,
17,
13,
1129,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
9078,
18300,
17,
855,
15,
13,
2078,
13,
17,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
29412,
12,
4475,
22602,
855,
17,
13,
23,
13,
15,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
19412,
855,
16,
13,
1485,
13,
15,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
75,
19875,
855,
19,
13,
19,
13,
17,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
12363,
5235,
29,
28,
15,
13,
24,
13,
15,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
366,
333,
297,
571,
18,
855,
16,
13,
1495,
13,
22,
1,
198,
220,
220,
220,
16589,
198,
8,
198
] | 1.88729 | 417 |
# utils.py
import asyncio
import aiohttp
import discord
import math
import os
import psutil
import re
import socket
import subprocess
import psycopg2
import xmltodict
from core import const
from datetime import datetime, timedelta
from configparser import ConfigParser
from contextlib import closing, suppress
from discord.ext import commands
from typing import Union
SAVED_GAMES = os.path.expandvars('%USERPROFILE%\\Saved Games')
REGEXP = {
'branch': re.compile(r'"branch": "(?P<branch>.*)"'),
'version': re.compile(r'"version": "(?P<version>.*)"')
}
PATCHNOTES_URL = 'https://www.digitalcombatsimulator.com/en/news/changelog/rss/'
config = ConfigParser()
config.read('config/dcsserverbot.ini')
| [
2,
3384,
4487,
13,
9078,
198,
11748,
30351,
952,
198,
11748,
257,
952,
4023,
198,
11748,
36446,
198,
11748,
10688,
198,
11748,
28686,
198,
11748,
26692,
22602,
198,
11748,
302,
198,
11748,
17802,
198,
11748,
850,
14681,
198,
11748,
17331,
22163,
70,
17,
198,
11748,
2124,
76,
2528,
375,
713,
198,
6738,
4755,
1330,
1500,
198,
6738,
4818,
8079,
1330,
4818,
8079,
11,
28805,
12514,
198,
6738,
4566,
48610,
1330,
17056,
46677,
198,
6738,
4732,
8019,
1330,
9605,
11,
18175,
198,
6738,
36446,
13,
2302,
1330,
9729,
198,
6738,
19720,
1330,
4479,
198,
198,
4090,
53,
1961,
62,
38,
29559,
796,
28686,
13,
6978,
13,
11201,
392,
85,
945,
10786,
4,
29904,
31190,
25664,
4,
6852,
50,
9586,
5776,
11537,
198,
31553,
49864,
796,
1391,
198,
220,
220,
220,
705,
1671,
3702,
10354,
302,
13,
5589,
576,
7,
81,
29653,
1671,
3702,
1298,
30629,
30,
47,
27,
1671,
3702,
29,
15885,
16725,
33809,
198,
220,
220,
220,
705,
9641,
10354,
302,
13,
5589,
576,
7,
81,
29653,
9641,
1298,
30629,
30,
47,
27,
9641,
29,
15885,
16725,
11537,
198,
92,
198,
47,
11417,
11929,
1546,
62,
21886,
796,
705,
5450,
1378,
2503,
13,
34725,
24011,
1381,
320,
8927,
13,
785,
14,
268,
14,
10827,
14,
354,
8368,
519,
14,
42216,
14,
6,
198,
198,
11250,
796,
17056,
46677,
3419,
198,
11250,
13,
961,
10786,
11250,
14,
17896,
824,
18497,
13645,
13,
5362,
11537,
628,
628,
628,
628,
628,
628,
628,
628,
628,
628
] | 2.983539 | 243 |
"""lab app URL configuration"""
from django.urls import path
from django.utils.translation import gettext_lazy as _
from .views import (SampleCreateView, SampleDeleteView, SampleListView,
SampleUpdateView)
urlpatterns = [
path(
_(''),
SampleListView.as_view(),
name='sample_list'
),
path(
_('create'),
SampleCreateView.as_view(),
name='sample_create'
),
path(
_('update/<int:pk>'),
SampleUpdateView.as_view(),
name='sample_update'
),
path(
_('delete/<int:pk>'),
SampleDeleteView.as_view(),
name='sample_delete'
)
]
| [
37811,
23912,
598,
10289,
8398,
37811,
198,
198,
6738,
42625,
14208,
13,
6371,
82,
1330,
3108,
198,
6738,
42625,
14208,
13,
26791,
13,
41519,
1330,
651,
5239,
62,
75,
12582,
355,
4808,
198,
198,
6738,
764,
33571,
1330,
357,
36674,
16447,
7680,
11,
27565,
38727,
7680,
11,
27565,
8053,
7680,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
27565,
10260,
7680,
8,
198,
198,
6371,
33279,
82,
796,
685,
198,
220,
220,
220,
3108,
7,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
7,
7061,
828,
198,
220,
220,
220,
220,
220,
220,
220,
27565,
8053,
7680,
13,
292,
62,
1177,
22784,
198,
220,
220,
220,
220,
220,
220,
220,
1438,
11639,
39873,
62,
4868,
6,
198,
220,
220,
220,
10612,
198,
220,
220,
220,
3108,
7,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
10786,
17953,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
27565,
16447,
7680,
13,
292,
62,
1177,
22784,
198,
220,
220,
220,
220,
220,
220,
220,
1438,
11639,
39873,
62,
17953,
6,
198,
220,
220,
220,
10612,
198,
220,
220,
220,
3108,
7,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
10786,
19119,
14,
27,
600,
25,
79,
74,
29,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
27565,
10260,
7680,
13,
292,
62,
1177,
22784,
198,
220,
220,
220,
220,
220,
220,
220,
1438,
11639,
39873,
62,
19119,
6,
198,
220,
220,
220,
10612,
198,
220,
220,
220,
3108,
7,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
10786,
33678,
14,
27,
600,
25,
79,
74,
29,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
27565,
38727,
7680,
13,
292,
62,
1177,
22784,
198,
220,
220,
220,
220,
220,
220,
220,
1438,
11639,
39873,
62,
33678,
6,
198,
220,
220,
220,
1267,
198,
60,
198
] | 2.141479 | 311 |
from ..others_module import OthersModule
| [
6738,
11485,
847,
82,
62,
21412,
1330,
12691,
26796,
628
] | 4.2 | 10 |
#!/usr/bin/env python
"""
:Author Patrik Valkovic
:Created 19.03.2019 12:21
:Licence MIT
Part of grammpy
"""
from string import ascii_lowercase
from grammpy import *
from grammpy.transforms import ContextFree, InverseContextFree, InverseCommon
from grammpy.parsers import cyk
g = Grammar(terminals=list(ascii_lowercase + '()*+'),
nonterminals=[Symb, Concat, Or, Iterate],
rules=[SymbRule, Bracket, ConcatRewrite, ConcatRule, OrRewrite, OrRule, IterateRewrite, IterateRule],
start_symbol=Or)
if __name__ == '__main__':
gr = ContextFree.prepare_for_cyk(g)
while True:
read = input("Type regex or exit to quit: ").strip()
if read == "exit":
break
if len(read) == 0:
continue
root = cyk(gr, read)
root = InverseContextFree.reverse_cyk_transforms(root)
root = InverseCommon.splitted_rules(root)
for form in root.get:
print(form)
print("Quiting the application")
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
37811,
198,
25,
13838,
9606,
74,
569,
971,
17215,
198,
25,
41972,
678,
13,
3070,
13,
23344,
1105,
25,
2481,
198,
25,
26656,
594,
17168,
198,
7841,
286,
14599,
3149,
88,
198,
198,
37811,
198,
6738,
4731,
1330,
355,
979,
72,
62,
21037,
7442,
198,
6738,
14599,
3149,
88,
1330,
1635,
198,
6738,
14599,
3149,
88,
13,
7645,
23914,
1330,
30532,
11146,
11,
554,
4399,
21947,
11146,
11,
554,
4399,
17227,
198,
6738,
14599,
3149,
88,
13,
79,
945,
364,
1330,
3075,
74,
628,
628,
628,
628,
628,
198,
198,
70,
796,
20159,
3876,
7,
23705,
874,
28,
4868,
7,
292,
979,
72,
62,
21037,
7442,
1343,
705,
3419,
9,
10,
33809,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1729,
23705,
874,
41888,
13940,
2022,
11,
1482,
9246,
11,
1471,
11,
40806,
378,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3173,
41888,
13940,
2022,
31929,
11,
1709,
8317,
11,
1482,
9246,
30003,
6525,
11,
1482,
9246,
31929,
11,
1471,
30003,
6525,
11,
1471,
31929,
11,
40806,
378,
30003,
6525,
11,
40806,
378,
31929,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
923,
62,
1837,
23650,
28,
5574,
8,
628,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
1036,
796,
30532,
11146,
13,
46012,
533,
62,
1640,
62,
948,
74,
7,
70,
8,
628,
220,
220,
220,
981,
6407,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1100,
796,
5128,
7203,
6030,
40364,
393,
8420,
284,
11238,
25,
366,
737,
36311,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1100,
6624,
366,
37023,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2270,
198,
220,
220,
220,
220,
220,
220,
220,
611,
18896,
7,
961,
8,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
628,
220,
220,
220,
220,
220,
220,
220,
6808,
796,
3075,
74,
7,
2164,
11,
1100,
8,
198,
220,
220,
220,
220,
220,
220,
220,
6808,
796,
554,
4399,
21947,
11146,
13,
50188,
62,
948,
74,
62,
7645,
23914,
7,
15763,
8,
198,
220,
220,
220,
220,
220,
220,
220,
6808,
796,
554,
4399,
17227,
13,
22018,
2175,
62,
38785,
7,
15763,
8,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1296,
287,
6808,
13,
1136,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
687,
8,
628,
220,
220,
220,
3601,
7203,
4507,
1780,
262,
3586,
4943,
198
] | 2.325688 | 436 |
from .. import usbhid
_BATTERY_CHARGING_FLAG = 0b10000000
profile = {
"name": "SteelSeries Aerox 3 Wireless",
"models": [
{
"name": "SteelSeries Aerox 3 Wireless (wired mode)",
"vendor_id": 0x1038,
"product_id": 0x183A,
"endpoint": 3,
},
],
"settings": {
"sensitivity": {
"label": "Sensibility presets",
"description": "Set sensitivity preset (DPI)",
"cli": ["-s", "--sensitivity"],
"report_type": usbhid.HID_REPORT_TYPE_OUTPUT,
"command": [0x2D],
"value_type": "multidpi_range",
"input_range": [100, 18000, 100],
"output_range": [0x00, 0xD6, 1.2],
"dpi_length_byte": 1,
"first_preset": 0,
"count_mode": "number",
"max_preset_count": 5,
"default": "400, 800, 1200, 2400, 3200",
},
"polling_rate": {
"label": "Polling rate",
"description": "Set polling rate (Hz)",
"cli": ["-p", "--polling-rate"],
"report_type": usbhid.HID_REPORT_TYPE_OUTPUT,
"command": [0x2B],
"value_type": "choice",
"choices": {
125: 0x03,
250: 0x02,
500: 0x01,
1000: 0x00,
},
"default": 1000,
},
"z1_color": {
"label": "Strip top LED color",
"description": "Set the color of the top LED",
"cli": ["--top-color", "--z1"],
"report_type": usbhid.HID_REPORT_TYPE_OUTPUT,
"command": [0x21, 0x01, 0x00],
"value_type": "rgbcolor",
"default": "red",
},
"z2_color": {
"label": "Strip middle LED color",
"description": "Set the color of the middle LED",
"cli": ["--middle-color", "--z2"],
"report_type": usbhid.HID_REPORT_TYPE_OUTPUT,
"command": [0x21, 0x01, 0x01],
"value_type": "rgbcolor",
"default": "lime",
},
"z3_color": {
"label": "Strip bottom LED color",
"description": "Set the color of the bottom LED",
"cli": ["--bottom-color", "--z3"],
"report_type": usbhid.HID_REPORT_TYPE_OUTPUT,
"command": [0x21, 0x01, 0x02],
"value_type": "rgbcolor",
"default": "blue",
},
"reactive_color": {
"label": "Reactive color",
"description": "Set the color of the LEDs in reaction to a button click",
"cli": ["-a", "--reactive-color"],
"report_type": usbhid.HID_REPORT_TYPE_OUTPUT,
"command": [0x26],
"value_type": "reactive_rgbcolor",
"default": "off",
},
"led_brightness": {
"label": "LED Brightness",
"description": "Set the brightness of the LEDs",
"cli": ["-l", "--led-brightness"],
"report_type": usbhid.HID_REPORT_TYPE_OUTPUT,
"command": [0x23],
"command_suffix": [0x01, 0x01, 0x00, 0x30, 0x75, 0x00],
"value_type": "range",
"input_range": [0, 15, 1],
"output_range": [0x00, 0x0F, 1],
"default": 15,
},
"buttons_mapping": {
"label": "Buttons mapping",
"description": "Set the mapping of the buttons",
"cli": ["-b", "--buttons"],
"report_type": usbhid.HID_REPORT_TYPE_OUTPUT,
"command": [0x2A],
"value_type": "buttons",
# fmt: off
"buttons": {
"Button1": {"id": 0x01, "offset": 0x00, "default": "button1"},
"Button2": {"id": 0x02, "offset": 0x05, "default": "button2"},
"Button3": {"id": 0x03, "offset": 0x0A, "default": "button3"},
"Button4": {"id": 0x04, "offset": 0x0F, "default": "button4"},
"Button5": {"id": 0x05, "offset": 0x14, "default": "button5"},
"Button6": {"id": 0x06, "offset": 0x19, "default": "dpi"},
"ScrollUp" : {"id": 0x31, "offset": 0x1E, "default": "scrollup"},
"ScrollDown": {"id": 0x32, "offset": 0x23, "default": "scrolldown"},
},
"button_field_length": 5,
"button_disable": 0x00,
"button_keyboard": 0x51,
"button_multimedia": 0x61,
"button_dpi_switch": 0x30,
"button_scroll_up": None,
"button_scroll_down": None,
# fmt: on
"default": "buttons(button1=button1; button2=button2; button3=button3; button4=button4; button5=button5; button6=dpi; scrollup=scrollup; scrolldown=scrolldown; layout=qwerty)",
},
"rainbow_effect": {
"label": "rainbow effect",
"description": "Enable the rainbow effect (can be disabled by setting a color)",
"cli": ["-e", "--rainbow-effect"],
"report_type": usbhid.HID_REPORT_TYPE_OUTPUT,
"command": [0x22, 0xFF],
"value_type": "none",
},
},
"battery_level": {
"report_type": usbhid.HID_REPORT_TYPE_OUTPUT,
"command": [0x92],
"response_length": 2,
"is_charging": lambda data: bool(data[1] & _BATTERY_CHARGING_FLAG),
"level": lambda data: ((data[1] & ~_BATTERY_CHARGING_FLAG) - 1) * 5,
},
"save_command": {
"report_type": usbhid.HID_REPORT_TYPE_OUTPUT,
"command": [0x11, 0x00],
},
}
| [
6738,
11485,
1330,
514,
34369,
312,
628,
198,
62,
47379,
5781,
56,
62,
38019,
38,
2751,
62,
38948,
796,
657,
65,
16,
24598,
628,
198,
13317,
796,
1391,
198,
220,
220,
220,
366,
3672,
1298,
366,
39807,
27996,
15781,
1140,
513,
24365,
1600,
198,
220,
220,
220,
366,
27530,
1298,
685,
198,
220,
220,
220,
220,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
3672,
1298,
366,
39807,
27996,
15781,
1140,
513,
24365,
357,
44236,
4235,
42501,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
85,
18738,
62,
312,
1298,
657,
87,
940,
2548,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11167,
62,
312,
1298,
657,
87,
24839,
32,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
437,
4122,
1298,
513,
11,
198,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
366,
33692,
1298,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
82,
40545,
1298,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
18242,
1298,
366,
50,
641,
2247,
46613,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11213,
1298,
366,
7248,
14233,
38266,
357,
6322,
40,
42501,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
44506,
1298,
14631,
12,
82,
1600,
366,
438,
82,
40545,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
13116,
62,
4906,
1298,
514,
34369,
312,
13,
39,
2389,
62,
2200,
15490,
62,
25216,
62,
2606,
7250,
3843,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
21812,
1298,
685,
15,
87,
17,
35,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
8367,
62,
4906,
1298,
366,
16680,
312,
14415,
62,
9521,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
15414,
62,
9521,
1298,
685,
3064,
11,
1248,
830,
11,
1802,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
22915,
62,
9521,
1298,
685,
15,
87,
405,
11,
657,
87,
35,
21,
11,
352,
13,
17,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
67,
14415,
62,
13664,
62,
26327,
1298,
352,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11085,
62,
18302,
316,
1298,
657,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
9127,
62,
14171,
1298,
366,
17618,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
9806,
62,
18302,
316,
62,
9127,
1298,
642,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
12286,
1298,
366,
7029,
11,
10460,
11,
24938,
11,
48548,
11,
513,
2167,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
366,
30393,
278,
62,
4873,
1298,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
18242,
1298,
366,
39176,
278,
2494,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11213,
1298,
366,
7248,
13985,
2494,
357,
7399,
42501,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
44506,
1298,
14631,
12,
79,
1600,
366,
438,
30393,
278,
12,
4873,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
13116,
62,
4906,
1298,
514,
34369,
312,
13,
39,
2389,
62,
2200,
15490,
62,
25216,
62,
2606,
7250,
3843,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
21812,
1298,
685,
15,
87,
17,
33,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
8367,
62,
4906,
1298,
366,
25541,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
6679,
1063,
1298,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
13151,
25,
657,
87,
3070,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8646,
25,
657,
87,
2999,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5323,
25,
657,
87,
486,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8576,
25,
657,
87,
405,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
12286,
1298,
8576,
11,
198,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
366,
89,
16,
62,
8043,
1298,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
18242,
1298,
366,
1273,
5528,
1353,
12365,
3124,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11213,
1298,
366,
7248,
262,
3124,
286,
262,
1353,
12365,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
44506,
1298,
14631,
438,
4852,
12,
8043,
1600,
366,
438,
89,
16,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
13116,
62,
4906,
1298,
514,
34369,
312,
13,
39,
2389,
62,
2200,
15490,
62,
25216,
62,
2606,
7250,
3843,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
21812,
1298,
685,
15,
87,
2481,
11,
657,
87,
486,
11,
657,
87,
405,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
8367,
62,
4906,
1298,
366,
81,
22296,
8043,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
12286,
1298,
366,
445,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
366,
89,
17,
62,
8043,
1298,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
18242,
1298,
366,
1273,
5528,
3504,
12365,
3124,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11213,
1298,
366,
7248,
262,
3124,
286,
262,
3504,
12365,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
44506,
1298,
14631,
438,
27171,
12,
8043,
1600,
366,
438,
89,
17,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
13116,
62,
4906,
1298,
514,
34369,
312,
13,
39,
2389,
62,
2200,
15490,
62,
25216,
62,
2606,
7250,
3843,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
21812,
1298,
685,
15,
87,
2481,
11,
657,
87,
486,
11,
657,
87,
486,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
8367,
62,
4906,
1298,
366,
81,
22296,
8043,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
12286,
1298,
366,
27299,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
366,
89,
18,
62,
8043,
1298,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
18242,
1298,
366,
1273,
5528,
4220,
12365,
3124,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11213,
1298,
366,
7248,
262,
3124,
286,
262,
4220,
12365,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
44506,
1298,
14631,
438,
22487,
12,
8043,
1600,
366,
438,
89,
18,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
13116,
62,
4906,
1298,
514,
34369,
312,
13,
39,
2389,
62,
2200,
15490,
62,
25216,
62,
2606,
7250,
3843,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
21812,
1298,
685,
15,
87,
2481,
11,
657,
87,
486,
11,
657,
87,
2999,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
8367,
62,
4906,
1298,
366,
81,
22296,
8043,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
12286,
1298,
366,
17585,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
366,
260,
5275,
62,
8043,
1298,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
18242,
1298,
366,
3041,
5275,
3124,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11213,
1298,
366,
7248,
262,
3124,
286,
262,
33697,
287,
6317,
284,
257,
4936,
3904,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
44506,
1298,
14631,
12,
64,
1600,
366,
438,
260,
5275,
12,
8043,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
13116,
62,
4906,
1298,
514,
34369,
312,
13,
39,
2389,
62,
2200,
15490,
62,
25216,
62,
2606,
7250,
3843,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
21812,
1298,
685,
15,
87,
2075,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
8367,
62,
4906,
1298,
366,
260,
5275,
62,
81,
22296,
8043,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
12286,
1298,
366,
2364,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
366,
992,
62,
29199,
1108,
1298,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
18242,
1298,
366,
30465,
17558,
1108,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11213,
1298,
366,
7248,
262,
22204,
286,
262,
33697,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
44506,
1298,
14631,
12,
75,
1600,
366,
438,
992,
12,
29199,
1108,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
13116,
62,
4906,
1298,
514,
34369,
312,
13,
39,
2389,
62,
2200,
15490,
62,
25216,
62,
2606,
7250,
3843,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
21812,
1298,
685,
15,
87,
1954,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
21812,
62,
37333,
844,
1298,
685,
15,
87,
486,
11,
657,
87,
486,
11,
657,
87,
405,
11,
657,
87,
1270,
11,
657,
87,
2425,
11,
657,
87,
405,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
8367,
62,
4906,
1298,
366,
9521,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
15414,
62,
9521,
1298,
685,
15,
11,
1315,
11,
352,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
22915,
62,
9521,
1298,
685,
15,
87,
405,
11,
657,
87,
15,
37,
11,
352,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
12286,
1298,
1315,
11,
198,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
366,
4360,
27288,
62,
76,
5912,
1298,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
18242,
1298,
366,
1537,
27288,
16855,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11213,
1298,
366,
7248,
262,
16855,
286,
262,
12163,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
44506,
1298,
14631,
12,
65,
1600,
366,
438,
4360,
27288,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
13116,
62,
4906,
1298,
514,
34369,
312,
13,
39,
2389,
62,
2200,
15490,
62,
25216,
62,
2606,
7250,
3843,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
21812,
1298,
685,
15,
87,
17,
32,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
8367,
62,
4906,
1298,
366,
4360,
27288,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
46996,
25,
572,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
4360,
27288,
1298,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
21864,
16,
1298,
220,
220,
220,
19779,
312,
1298,
657,
87,
486,
11,
366,
28968,
1298,
657,
87,
405,
11,
366,
12286,
1298,
366,
16539,
16,
25719,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
21864,
17,
1298,
220,
220,
220,
19779,
312,
1298,
657,
87,
2999,
11,
366,
28968,
1298,
657,
87,
2713,
11,
366,
12286,
1298,
366,
16539,
17,
25719,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
21864,
18,
1298,
220,
220,
220,
19779,
312,
1298,
657,
87,
3070,
11,
366,
28968,
1298,
657,
87,
15,
32,
11,
366,
12286,
1298,
366,
16539,
18,
25719,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
21864,
19,
1298,
220,
220,
220,
19779,
312,
1298,
657,
87,
3023,
11,
366,
28968,
1298,
657,
87,
15,
37,
11,
366,
12286,
1298,
366,
16539,
19,
25719,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
21864,
20,
1298,
220,
220,
220,
19779,
312,
1298,
657,
87,
2713,
11,
366,
28968,
1298,
657,
87,
1415,
11,
366,
12286,
1298,
366,
16539,
20,
25719,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
21864,
21,
1298,
220,
220,
220,
19779,
312,
1298,
657,
87,
3312,
11,
366,
28968,
1298,
657,
87,
1129,
11,
366,
12286,
1298,
366,
67,
14415,
25719,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
29261,
4933,
1,
220,
1058,
19779,
312,
1298,
657,
87,
3132,
11,
366,
28968,
1298,
657,
87,
16,
36,
11,
366,
12286,
1298,
366,
48728,
929,
25719,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
29261,
8048,
1298,
19779,
312,
1298,
657,
87,
2624,
11,
366,
28968,
1298,
657,
87,
1954,
11,
366,
12286,
1298,
366,
48728,
2902,
25719,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
16539,
62,
3245,
62,
13664,
1298,
642,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
16539,
62,
40223,
1298,
220,
220,
220,
220,
657,
87,
405,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
16539,
62,
2539,
3526,
1298,
220,
220,
220,
657,
87,
4349,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
16539,
62,
16680,
20626,
1298,
220,
657,
87,
5333,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
16539,
62,
67,
14415,
62,
31943,
1298,
220,
657,
87,
1270,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
16539,
62,
48728,
62,
929,
1298,
220,
220,
6045,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
16539,
62,
48728,
62,
2902,
1298,
6045,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
46996,
25,
319,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
12286,
1298,
366,
4360,
27288,
7,
16539,
16,
28,
16539,
16,
26,
4936,
17,
28,
16539,
17,
26,
4936,
18,
28,
16539,
18,
26,
4936,
19,
28,
16539,
19,
26,
4936,
20,
28,
16539,
20,
26,
4936,
21,
28,
67,
14415,
26,
10743,
929,
28,
48728,
929,
26,
10743,
2902,
28,
48728,
2902,
26,
12461,
28,
80,
15448,
774,
42501,
198,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
366,
3201,
8176,
62,
10760,
1298,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
18242,
1298,
366,
3201,
8176,
1245,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11213,
1298,
366,
36695,
262,
27223,
1245,
357,
5171,
307,
10058,
416,
4634,
257,
3124,
42501,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
44506,
1298,
14631,
12,
68,
1600,
366,
438,
3201,
8176,
12,
10760,
33116,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
13116,
62,
4906,
1298,
514,
34369,
312,
13,
39,
2389,
62,
2200,
15490,
62,
25216,
62,
2606,
7250,
3843,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
21812,
1298,
685,
15,
87,
1828,
11,
657,
87,
5777,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
8367,
62,
4906,
1298,
366,
23108,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
366,
65,
16296,
62,
5715,
1298,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
13116,
62,
4906,
1298,
514,
34369,
312,
13,
39,
2389,
62,
2200,
15490,
62,
25216,
62,
2606,
7250,
3843,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
21812,
1298,
685,
15,
87,
5892,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
366,
26209,
62,
13664,
1298,
362,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
271,
62,
31498,
1298,
37456,
1366,
25,
20512,
7,
7890,
58,
16,
60,
1222,
4808,
47379,
5781,
56,
62,
38019,
38,
2751,
62,
38948,
828,
198,
220,
220,
220,
220,
220,
220,
220,
366,
5715,
1298,
37456,
1366,
25,
14808,
7890,
58,
16,
60,
1222,
5299,
62,
47379,
5781,
56,
62,
38019,
38,
2751,
62,
38948,
8,
532,
352,
8,
1635,
642,
11,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
366,
21928,
62,
21812,
1298,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
13116,
62,
4906,
1298,
514,
34369,
312,
13,
39,
2389,
62,
2200,
15490,
62,
25216,
62,
2606,
7250,
3843,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
21812,
1298,
685,
15,
87,
1157,
11,
657,
87,
405,
4357,
198,
220,
220,
220,
8964,
198,
92,
198
] | 1.82393 | 3,084 |
from __future__ import unicode_literals
from django.test import TestCase
from wtl.wtlib.models import Library, LibraryVersion
from wtl.wtlib.tests.factories import (LibraryFactory, LibraryVersionFactory,
ProjectFactory)
| [
6738,
11593,
37443,
834,
1330,
28000,
1098,
62,
17201,
874,
198,
198,
6738,
42625,
14208,
13,
9288,
1330,
6208,
20448,
198,
198,
6738,
266,
28781,
13,
46569,
8019,
13,
27530,
1330,
10074,
11,
10074,
14815,
198,
6738,
266,
28781,
13,
46569,
8019,
13,
41989,
13,
22584,
1749,
1330,
357,
23377,
22810,
11,
10074,
14815,
22810,
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,
4935,
22810,
8,
628,
628
] | 2.64 | 100 |
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="esp8266.py",
version="0.0.3",
author="letli",
author_email="[email protected]",
description="ESP8266 python library, a wrapper for AT commands (Hayes command set) using UART serial.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/muchrooms/esp8266.py",
#packages=setuptools.find_packages(),
packages=['esp8266'],
install_requires=[
'pySerial>=3.0'
],
classifiers=(
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
)
| [
11748,
900,
37623,
10141,
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,
198,
2617,
37623,
10141,
13,
40406,
7,
198,
220,
220,
220,
1438,
2625,
9774,
23,
25540,
13,
9078,
1600,
198,
220,
220,
220,
2196,
2625,
15,
13,
15,
13,
18,
1600,
198,
220,
220,
220,
1772,
2625,
1616,
4528,
1600,
198,
220,
220,
220,
1772,
62,
12888,
2625,
1616,
4528,
31,
4524,
7278,
4524,
13,
2398,
1600,
198,
220,
220,
220,
6764,
2625,
1546,
47,
23,
25540,
21015,
5888,
11,
257,
29908,
329,
5161,
9729,
357,
31306,
274,
3141,
900,
8,
1262,
471,
7227,
11389,
33283,
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,
29482,
9649,
14,
9774,
23,
25540,
13,
9078,
1600,
198,
220,
220,
220,
1303,
43789,
28,
2617,
37623,
10141,
13,
19796,
62,
43789,
22784,
198,
220,
220,
220,
10392,
28,
17816,
9774,
23,
25540,
6,
4357,
198,
220,
220,
220,
2721,
62,
47911,
41888,
198,
220,
220,
220,
220,
220,
220,
220,
705,
9078,
32634,
29,
28,
18,
13,
15,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
1398,
13350,
16193,
198,
220,
220,
220,
220,
220,
220,
220,
366,
15167,
2229,
15417,
7904,
11361,
7904,
362,
1600,
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,
10612,
198,
8,
198
] | 2.548077 | 312 |
sal = float ( input ('Saldo médio ? ' ))
if (sal <= 200) :
nsal1= (sal* 0.90)
print ('Valor do crédito 10% > R${}'.format(nsal1))
if (300 >= sal > 200) :
nsal2 = (sal* 0.80)
print ('Valor do crédito 20% > R${}'.format(nsal2))
if ( 400 >= sal > 300) :
nsal3= (sal* 0.85)
print ('Valor do crédito 25% > R${}'.format(nsal3))
if (sal > 400) :
nsal4 = (sal* 0.70)
print ('Valor do crédito 30% > R${}'.format(nsal4)) | [
21680,
796,
12178,
357,
5128,
19203,
50,
41476,
285,
2634,
67,
952,
5633,
705,
15306,
198,
198,
361,
357,
21680,
19841,
939,
8,
1058,
198,
220,
220,
220,
299,
21680,
16,
28,
357,
21680,
9,
657,
13,
3829,
8,
198,
220,
220,
220,
3601,
19203,
7762,
273,
466,
1067,
2634,
5266,
78,
838,
4,
1875,
371,
38892,
92,
4458,
18982,
7,
5907,
282,
16,
4008,
198,
361,
357,
6200,
18189,
3664,
1875,
939,
8,
1058,
198,
220,
220,
220,
299,
21680,
17,
796,
357,
21680,
9,
657,
13,
1795,
8,
198,
220,
220,
220,
3601,
19203,
7762,
273,
466,
1067,
2634,
5266,
78,
1160,
4,
1875,
371,
38892,
92,
4458,
18982,
7,
5907,
282,
17,
4008,
198,
361,
357,
7337,
18189,
3664,
1875,
5867,
8,
1058,
198,
220,
220,
220,
299,
21680,
18,
28,
357,
21680,
9,
657,
13,
5332,
8,
198,
220,
220,
220,
3601,
19203,
7762,
273,
466,
1067,
2634,
5266,
78,
1679,
4,
1875,
371,
38892,
92,
4458,
18982,
7,
5907,
282,
18,
4008,
198,
361,
357,
21680,
1875,
7337,
8,
1058,
198,
220,
220,
220,
299,
21680,
19,
796,
357,
21680,
9,
657,
13,
2154,
8,
198,
220,
220,
220,
3601,
19203,
7762,
273,
466,
1067,
2634,
5266,
78,
1542,
4,
1875,
371,
38892,
92,
4458,
18982,
7,
5907,
282,
19,
4008
] | 2.050926 | 216 |
import os
import numpy as np
from sklearn.feature_extraction.text import TfidfTransformer
from tqdm import tqdm
from utils.file import loadJson, dumpJson
##############################################
# 根据序列数据集(ngram,api),先统计元素的样本内频率,
# 然后计算各个特征的TF-IDF值
##############################################
if __name__ == '__main__':
calTFIDF(dataset_path='/home/asichurter/datasets/JSONs/virushare-10-3gram/all/',
dict_map_path='/home/asichurter/datasets/JSONs/virushare-10-3gram/data/wordMap.json',
is_class_dir=True,
level='item')
| [
11748,
28686,
198,
11748,
299,
32152,
355,
45941,
198,
6738,
1341,
35720,
13,
30053,
62,
2302,
7861,
13,
5239,
1330,
309,
69,
312,
69,
8291,
16354,
198,
6738,
256,
80,
36020,
1330,
256,
80,
36020,
198,
198,
6738,
3384,
4487,
13,
7753,
1330,
3440,
41,
1559,
11,
10285,
41,
1559,
628,
198,
29113,
7804,
4242,
2235,
198,
2,
10545,
254,
117,
162,
235,
106,
41753,
237,
26344,
245,
46763,
108,
162,
235,
106,
37239,
228,
7,
782,
859,
11,
15042,
8,
171,
120,
234,
17739,
230,
163,
119,
253,
164,
106,
94,
17739,
225,
163,
112,
254,
21410,
43718,
115,
17312,
105,
37863,
227,
165,
95,
239,
163,
236,
229,
171,
120,
234,
198,
2,
13328,
226,
114,
28938,
236,
164,
106,
94,
163,
106,
245,
28938,
226,
10310,
103,
31965,
117,
36181,
223,
21410,
10234,
12,
2389,
37,
161,
222,
120,
198,
29113,
7804,
4242,
2235,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
2386,
10234,
2389,
37,
7,
19608,
292,
316,
62,
6978,
11639,
14,
11195,
14,
292,
488,
333,
353,
14,
19608,
292,
1039,
14,
40386,
82,
14,
37040,
1530,
533,
12,
940,
12,
18,
4546,
14,
439,
14,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8633,
62,
8899,
62,
6978,
11639,
14,
11195,
14,
292,
488,
333,
353,
14,
19608,
292,
1039,
14,
40386,
82,
14,
37040,
1530,
533,
12,
940,
12,
18,
4546,
14,
7890,
14,
4775,
13912,
13,
17752,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
62,
4871,
62,
15908,
28,
17821,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1241,
11639,
9186,
11537,
198
] | 1.982759 | 290 |
import datetime
import json
import os
import time
import paho.mqtt.client as mqtt
from pijuice import PiJuice
from balena import Balena
from datetime import datetime, timedelta
from dateutil.tz import tzutc
from time import sleep
from w1thermsensor import W1ThermSensor
WAKEALARM = '/sys/class/rtc/rtc0/wakealarm'
BROKER_ADDRESS = os.environ.get('MQTT_BROKER') or "mqtt"
BROKER_PORT = os.environ.get('MQTT_BROKER_PORT') or 80
SLEEP_INTERVAL = os.environ.get('SLEEP_INTERVAL') or 60
STAY_ALIVE = os.environ.get('STAY_ALIVE') or False
def get_battery_parameters(pj):
"""Get all PiJuice parameters and return as a dictionary"""
juice = {}
charge = pj.status.GetChargeLevel()
juice['charge'] = charge['data'] if charge['error'] == 'NO_ERROR' else charge['error']
# Temperature [C]
temperature = pj.status.GetBatteryTemperature()
juice['temperature'] = temperature['data'] if temperature['error'] == 'NO_ERROR' else temperature['error']
# Battery voltage [V]
vbat = pj.status.GetBatteryVoltage()
juice['vbat'] = vbat['data'] / 1000 if vbat['error'] == 'NO_ERROR' else vbat['error']
# Battery current [A]
ibat = pj.status.GetBatteryCurrent()
juice['ibat'] = ibat['data'] / 1000 if ibat['error'] == 'NO_ERROR' else ibat['error']
# I/O voltage [V]
vio = pj.status.GetIoVoltage()
juice['vio'] = vio['data'] / 1000 if vio['error'] == 'NO_ERROR' else vio['error']
# I/O current [A]
iio = pj.status.GetIoCurrent()
juice['iio'] = iio['data'] / 1000 if iio['error'] == 'NO_ERROR' else iio['error']
# Get power input (if power connected to the PiJuice board)
status = pj.status.GetStatus()
juice['power_input'] = status['data']['powerInput'] if status['error'] == 'NO_ERROR' else status['error']
# Get power input (if power connected to the Raspberry Pi board)
status = pj.status.GetStatus()
juice['power_input_board'] = status['data']['powerInput5vIo'] if status['error'] == 'NO_ERROR' else status['error']
return juice
def update_tag(tag, variable):
"""Set a tag for the Balena device."""
balena.models.tag.device.set(os.environ['BALENA_DEVICE_UUID'], str(tag), str(variable))
def set_alarm(interval):
"""Set upcoming wakealarm."""
wakeup_time = datetime.now() + timedelta(minutes=int(interval))
timestamp = '{0:.0f}\n'.format(wakeup_time.timestamp())
try:
with open(WAKEALARM, 'w') as f:
f.write('0\n')
with open(WAKEALARM, 'w') as f:
f.write(timestamp)
print('Wakealarm set to: %s' % wakeup_time)
update_tag("WAKEUP_TIME", wakeup_time.strftime("%Y-%m-%d %H:%M:%S"))
except OSError as e:
print('Error setting wake alarm: %s' % e)
def record_temperature():
"""Record current temperature and send to MQTT broker."""
sensor = W1ThermSensor()
temperature = sensor.get_temperature()
update_tag("TEMPERATURE", temperature)
client = mqtt.Client(transport="websockets")
client.connect(BROKER_ADDRESS, 80)
json_body = [
{
"time": str('{:%Y-%m-%dT%H:%M:%S}'.format(datetime.now(tzutc()))),
"measurement": "water-temperature",
"fields": {
"temperature": temperature,
"sensor": "DS18B20"
}
}
]
print("JSON body = " + str(json_body))
msg_info = client.publish("sensors", json.dumps(json_body))
if not msg_info.is_published():
msg_info.wait_for_publish()
client.disconnect()
def stay_alive(pj):
"""Enter endless loop recording temperature."""
while True:
record_temperature()
battery_data = get_battery_parameters(pj)
print(battery_data)
for key, value in battery_data.items():
update_tag(key, value)
sleep(60)
def shutdown(pj):
"""Shutdown Pi."""
shutdown_time = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
update_tag("SHUTDOWN_TIME", shutdown_time)
set_alarm(SLEEP_INTERVAL)
pj.power.SetPowerOff(60)
balena.models.supervisor.shutdown(device_uuid=os.environ['BALENA_DEVICE_UUID'],
app_id=os.environ['BALENA_APP_ID'])
# Start the SDK and record start tag
balena = Balena()
balena.auth.login_with_token(os.environ['BALENA_API_KEY'])
update_tag("START_TIME", datetime.now().strftime("%Y-%m-%d %H:%M:%S"))
# Wait for device I2C device to start
while not os.path.exists('/dev/i2c-1'):
print("Waiting to identify PiJuice")
time.sleep(0.1)
# Initiate PiJuice and make sure watchdog is disabled
pi_juice = PiJuice(1, 0x14)
pi_juice.power.SetWatchdog(0)
if STAY_ALIVE == '1':
stay_alive(pi_juice)
record_temperature()
shutdown(pi_juice)
| [
11748,
4818,
8079,
198,
11748,
33918,
198,
11748,
28686,
198,
11748,
640,
198,
198,
11748,
279,
17108,
13,
76,
80,
926,
13,
16366,
355,
285,
80,
926,
198,
198,
6738,
279,
2926,
84,
501,
1330,
13993,
33018,
501,
198,
6738,
3652,
8107,
1330,
8528,
8107,
198,
198,
6738,
4818,
8079,
1330,
4818,
8079,
11,
28805,
12514,
198,
6738,
3128,
22602,
13,
22877,
1330,
256,
89,
315,
66,
198,
6738,
640,
1330,
3993,
198,
6738,
266,
16,
490,
907,
22854,
1330,
370,
16,
35048,
76,
47864,
198,
198,
15543,
7336,
1847,
33456,
796,
31051,
17597,
14,
4871,
14,
17034,
66,
14,
17034,
66,
15,
14,
48530,
282,
1670,
6,
198,
11473,
11380,
1137,
62,
2885,
7707,
7597,
796,
28686,
13,
268,
2268,
13,
1136,
10786,
49215,
15751,
62,
11473,
11380,
1137,
11537,
393,
366,
76,
80,
926,
1,
198,
11473,
11380,
1137,
62,
15490,
796,
28686,
13,
268,
2268,
13,
1136,
10786,
49215,
15751,
62,
11473,
11380,
1137,
62,
15490,
11537,
393,
4019,
198,
50,
2538,
8905,
62,
41358,
23428,
796,
28686,
13,
268,
2268,
13,
1136,
10786,
50,
2538,
8905,
62,
41358,
23428,
11537,
393,
3126,
198,
2257,
4792,
62,
1847,
9306,
796,
28686,
13,
268,
2268,
13,
1136,
10786,
2257,
4792,
62,
1847,
9306,
11537,
393,
10352,
628,
198,
4299,
651,
62,
65,
16296,
62,
17143,
7307,
7,
79,
73,
2599,
198,
220,
220,
220,
37227,
3855,
477,
13993,
33018,
501,
10007,
290,
1441,
355,
257,
22155,
37811,
198,
220,
220,
220,
13135,
796,
23884,
628,
220,
220,
220,
3877,
796,
279,
73,
13,
13376,
13,
3855,
50044,
4971,
3419,
198,
220,
220,
220,
13135,
17816,
10136,
20520,
796,
3877,
17816,
7890,
20520,
611,
3877,
17816,
18224,
20520,
6624,
705,
15285,
62,
24908,
6,
2073,
3877,
17816,
18224,
20520,
628,
220,
220,
220,
1303,
34467,
685,
34,
60,
198,
220,
220,
220,
5951,
796,
279,
73,
13,
13376,
13,
3855,
47006,
42492,
3419,
198,
220,
220,
220,
13135,
17816,
11498,
21069,
20520,
796,
5951,
17816,
7890,
20520,
611,
5951,
17816,
18224,
20520,
6624,
705,
15285,
62,
24908,
6,
2073,
5951,
17816,
18224,
20520,
628,
220,
220,
220,
1303,
23490,
15004,
220,
685,
53,
60,
198,
220,
220,
220,
410,
8664,
796,
279,
73,
13,
13376,
13,
3855,
47006,
53,
5978,
496,
3419,
198,
220,
220,
220,
13135,
17816,
85,
8664,
20520,
796,
410,
8664,
17816,
7890,
20520,
1220,
8576,
611,
410,
8664,
17816,
18224,
20520,
6624,
705,
15285,
62,
24908,
6,
2073,
410,
8664,
17816,
18224,
20520,
628,
220,
220,
220,
1303,
23490,
1459,
685,
32,
60,
198,
220,
220,
220,
24283,
265,
796,
279,
73,
13,
13376,
13,
3855,
47006,
11297,
3419,
198,
220,
220,
220,
13135,
17816,
571,
265,
20520,
796,
24283,
265,
17816,
7890,
20520,
1220,
8576,
611,
24283,
265,
17816,
18224,
20520,
6624,
705,
15285,
62,
24908,
6,
2073,
24283,
265,
17816,
18224,
20520,
628,
220,
220,
220,
1303,
314,
14,
46,
15004,
685,
53,
60,
198,
220,
220,
220,
410,
952,
796,
279,
73,
13,
13376,
13,
3855,
40,
78,
53,
5978,
496,
3419,
198,
220,
220,
220,
13135,
17816,
85,
952,
20520,
796,
410,
952,
17816,
7890,
20520,
1220,
8576,
611,
410,
952,
17816,
18224,
20520,
6624,
705,
15285,
62,
24908,
6,
2073,
410,
952,
17816,
18224,
20520,
628,
220,
220,
220,
1303,
314,
14,
46,
1459,
685,
32,
60,
198,
220,
220,
220,
1312,
952,
796,
279,
73,
13,
13376,
13,
3855,
40,
78,
11297,
3419,
198,
220,
220,
220,
13135,
17816,
72,
952,
20520,
796,
1312,
952,
17816,
7890,
20520,
1220,
8576,
611,
1312,
952,
17816,
18224,
20520,
6624,
705,
15285,
62,
24908,
6,
2073,
1312,
952,
17816,
18224,
20520,
628,
220,
220,
220,
1303,
3497,
1176,
5128,
357,
361,
1176,
5884,
284,
262,
13993,
33018,
501,
3096,
8,
198,
220,
220,
220,
3722,
796,
279,
73,
13,
13376,
13,
3855,
19580,
3419,
198,
220,
220,
220,
13135,
17816,
6477,
62,
15414,
20520,
796,
3722,
17816,
7890,
6,
7131,
6,
6477,
20560,
20520,
611,
3722,
17816,
18224,
20520,
6624,
705,
15285,
62,
24908,
6,
2073,
3722,
17816,
18224,
20520,
628,
220,
220,
220,
1303,
3497,
1176,
5128,
357,
361,
1176,
5884,
284,
262,
24244,
13993,
3096,
8,
198,
220,
220,
220,
3722,
796,
279,
73,
13,
13376,
13,
3855,
19580,
3419,
198,
220,
220,
220,
13135,
17816,
6477,
62,
15414,
62,
3526,
20520,
796,
3722,
17816,
7890,
6,
7131,
6,
6477,
20560,
20,
85,
40,
78,
20520,
611,
3722,
17816,
18224,
20520,
6624,
705,
15285,
62,
24908,
6,
2073,
3722,
17816,
18224,
20520,
628,
220,
220,
220,
1441,
13135,
628,
198,
4299,
4296,
62,
12985,
7,
12985,
11,
7885,
2599,
198,
220,
220,
220,
37227,
7248,
257,
7621,
329,
262,
8528,
8107,
3335,
526,
15931,
198,
220,
220,
220,
3652,
8107,
13,
27530,
13,
12985,
13,
25202,
13,
2617,
7,
418,
13,
268,
2268,
17816,
33,
1847,
45510,
62,
7206,
27389,
62,
52,
27586,
6,
4357,
965,
7,
12985,
828,
965,
7,
45286,
4008,
628,
198,
4299,
900,
62,
282,
1670,
7,
3849,
2100,
2599,
198,
220,
220,
220,
37227,
7248,
7865,
7765,
282,
1670,
526,
15931,
198,
220,
220,
220,
7765,
929,
62,
2435,
796,
4818,
8079,
13,
2197,
3419,
1343,
28805,
12514,
7,
1084,
1769,
28,
600,
7,
3849,
2100,
4008,
198,
220,
220,
220,
41033,
796,
705,
90,
15,
25,
13,
15,
69,
32239,
77,
4458,
18982,
7,
48530,
929,
62,
2435,
13,
16514,
27823,
28955,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
351,
1280,
7,
15543,
7336,
1847,
33456,
11,
705,
86,
11537,
355,
277,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
13,
13564,
10786,
15,
59,
77,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
351,
1280,
7,
15543,
7336,
1847,
33456,
11,
705,
86,
11537,
355,
277,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
13,
13564,
7,
16514,
27823,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
54,
539,
282,
1670,
900,
284,
25,
4064,
82,
6,
4064,
7765,
929,
62,
2435,
8,
198,
220,
220,
220,
220,
220,
220,
220,
4296,
62,
12985,
7203,
15543,
7336,
8577,
62,
34694,
1600,
7765,
929,
62,
2435,
13,
2536,
31387,
7203,
4,
56,
12,
4,
76,
12,
4,
67,
4064,
39,
25,
4,
44,
25,
4,
50,
48774,
198,
220,
220,
220,
2845,
440,
5188,
81,
1472,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
10786,
12331,
4634,
7765,
10436,
25,
4064,
82,
6,
4064,
304,
8,
628,
198,
4299,
1700,
62,
11498,
21069,
33529,
198,
220,
220,
220,
37227,
23739,
1459,
5951,
290,
3758,
284,
337,
48,
15751,
20426,
526,
15931,
198,
220,
220,
220,
12694,
796,
370,
16,
35048,
76,
47864,
3419,
198,
220,
220,
220,
5951,
796,
12694,
13,
1136,
62,
11498,
21069,
3419,
198,
220,
220,
220,
4296,
62,
12985,
7203,
51,
3620,
18973,
40086,
1600,
5951,
8,
198,
220,
220,
220,
5456,
796,
285,
80,
926,
13,
11792,
7,
7645,
634,
2625,
732,
1443,
11603,
4943,
198,
220,
220,
220,
5456,
13,
8443,
7,
11473,
11380,
1137,
62,
2885,
7707,
7597,
11,
4019,
8,
198,
220,
220,
220,
33918,
62,
2618,
796,
685,
198,
220,
220,
220,
220,
220,
220,
220,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2435,
1298,
965,
10786,
90,
25,
4,
56,
12,
4,
76,
12,
4,
67,
51,
4,
39,
25,
4,
44,
25,
4,
50,
92,
4458,
18982,
7,
19608,
8079,
13,
2197,
7,
22877,
315,
66,
3419,
4008,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
1326,
5015,
434,
1298,
366,
7050,
12,
11498,
21069,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
25747,
1298,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
11498,
21069,
1298,
5951,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
82,
22854,
1298,
366,
5258,
1507,
33,
1238,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
2361,
628,
220,
220,
220,
3601,
7203,
40386,
1767,
796,
366,
1343,
965,
7,
17752,
62,
2618,
4008,
198,
220,
220,
220,
31456,
62,
10951,
796,
5456,
13,
12984,
1836,
7203,
82,
641,
669,
1600,
33918,
13,
67,
8142,
7,
17752,
62,
2618,
4008,
198,
220,
220,
220,
611,
407,
31456,
62,
10951,
13,
271,
62,
30271,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
31456,
62,
10951,
13,
17077,
62,
1640,
62,
12984,
1836,
3419,
198,
220,
220,
220,
5456,
13,
6381,
8443,
3419,
628,
198,
4299,
2652,
62,
282,
425,
7,
79,
73,
2599,
198,
220,
220,
220,
37227,
17469,
13079,
9052,
8296,
5951,
526,
15931,
198,
220,
220,
220,
981,
6407,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1700,
62,
11498,
21069,
3419,
628,
220,
220,
220,
220,
220,
220,
220,
6555,
62,
7890,
796,
651,
62,
65,
16296,
62,
17143,
7307,
7,
79,
73,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
65,
16296,
62,
7890,
8,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1994,
11,
1988,
287,
6555,
62,
7890,
13,
23814,
33529,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4296,
62,
12985,
7,
2539,
11,
1988,
8,
628,
220,
220,
220,
220,
220,
220,
220,
3993,
7,
1899,
8,
628,
198,
4299,
18325,
7,
79,
73,
2599,
198,
220,
220,
220,
37227,
39079,
2902,
13993,
526,
15931,
198,
220,
220,
220,
18325,
62,
2435,
796,
4818,
8079,
13,
2197,
22446,
2536,
31387,
7203,
4,
56,
12,
4,
76,
12,
4,
67,
4064,
39,
25,
4,
44,
25,
4,
50,
4943,
198,
220,
220,
220,
4296,
62,
12985,
7203,
9693,
3843,
41925,
62,
34694,
1600,
18325,
62,
2435,
8,
198,
220,
220,
220,
900,
62,
282,
1670,
7,
50,
2538,
8905,
62,
41358,
23428,
8,
198,
220,
220,
220,
279,
73,
13,
6477,
13,
7248,
13434,
9362,
7,
1899,
8,
628,
220,
220,
220,
3652,
8107,
13,
27530,
13,
16668,
13131,
13,
49625,
2902,
7,
25202,
62,
12303,
312,
28,
418,
13,
268,
2268,
17816,
33,
1847,
45510,
62,
7206,
27389,
62,
52,
27586,
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,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
598,
62,
312,
28,
418,
13,
268,
2268,
17816,
33,
1847,
45510,
62,
24805,
62,
2389,
6,
12962,
628,
198,
2,
7253,
262,
26144,
290,
1700,
923,
7621,
198,
6893,
8107,
796,
8528,
8107,
3419,
198,
6893,
8107,
13,
18439,
13,
38235,
62,
4480,
62,
30001,
7,
418,
13,
268,
2268,
17816,
33,
1847,
45510,
62,
17614,
62,
20373,
6,
12962,
198,
19119,
62,
12985,
7203,
2257,
7227,
62,
34694,
1600,
4818,
8079,
13,
2197,
22446,
2536,
31387,
7203,
4,
56,
12,
4,
76,
12,
4,
67,
4064,
39,
25,
4,
44,
25,
4,
50,
48774,
198,
198,
2,
16314,
329,
3335,
314,
17,
34,
3335,
284,
923,
198,
4514,
407,
28686,
13,
6978,
13,
1069,
1023,
10786,
14,
7959,
14,
72,
17,
66,
12,
16,
6,
2599,
198,
220,
220,
220,
3601,
7203,
33484,
1780,
284,
5911,
13993,
33018,
501,
4943,
198,
220,
220,
220,
640,
13,
42832,
7,
15,
13,
16,
8,
198,
198,
2,
16204,
378,
13993,
33018,
501,
290,
787,
1654,
26856,
318,
10058,
198,
14415,
62,
14396,
501,
796,
13993,
33018,
501,
7,
16,
11,
657,
87,
1415,
8,
198,
14415,
62,
14396,
501,
13,
6477,
13,
7248,
10723,
9703,
7,
15,
8,
198,
198,
361,
3563,
4792,
62,
1847,
9306,
6624,
705,
16,
10354,
198,
220,
220,
220,
2652,
62,
282,
425,
7,
14415,
62,
14396,
501,
8,
198,
198,
22105,
62,
11498,
21069,
3419,
198,
49625,
2902,
7,
14415,
62,
14396,
501,
8,
198
] | 2.365731 | 1,996 |
'''
Created on May 9, 2017
@author: yingziwu
'''
import feedparser
import time
import re
import requests
from redis import Redis
from rq import Queue
import json
import os
import logging
from v2ex_spider import topic_spider
from v2ex_base.v2_sql import SQL
import settings
class Rss_spider(object):
'''
A Spider for v2ex's Rss.
Get the latest and hot topic on the index.
Using the rss generate the topic list that need to spider.
'''
def __init__(self):
'''
>>>from v2ex_spider import rss_spider
>>>rss_spider.Rss_spider()
'''
logging.info('start Rss spider')
self.v2ex_rss_url_list=['https://www.v2ex.com/index.xml',
'https://www.v2ex.com/feed/tab/qna.xml',
'https://www.v2ex.com/feed/tab/jobs.xml',
'https://www.v2ex.com/feed/tab/deals.xml',
'https://www.v2ex.com/feed/tab/city.xml',
'https://www.v2ex.com/feed/tab/play.xml',
'https://www.v2ex.com/feed/tab/apple.xml',
'https://www.v2ex.com/feed/tab/creative.xml',
'https://www.v2ex.com/feed/tab/tech.xml']
self.latest_hot_api=['https://www.v2ex.com/api/topics/latest.json','https://www.v2ex.com/api/topics/hot.json']
self.topic_sleep_time=10
logging.debug('open sql database')
self.SQ=SQL()
self.SQ.open_datebase()
self.redis_conn=Redis()
self.load_config()
#run
try:
self.latest_and_hot()
except APIError as e:
pass
self.gen_topic_queue()
#end
self.SQ.close_datebase()
logging.info('end the Rss spider')
if __name__ == '__main__':
Rss_spider()
print('Finish!') | [
7061,
6,
198,
41972,
319,
1737,
860,
11,
2177,
198,
198,
31,
9800,
25,
331,
278,
89,
14246,
84,
198,
7061,
6,
198,
11748,
3745,
48610,
198,
11748,
640,
198,
11748,
302,
198,
11748,
7007,
198,
6738,
2266,
271,
1330,
2297,
271,
198,
6738,
374,
80,
1330,
4670,
518,
198,
11748,
33918,
198,
11748,
28686,
198,
11748,
18931,
198,
198,
6738,
410,
17,
1069,
62,
2777,
1304,
1330,
7243,
62,
2777,
1304,
198,
6738,
410,
17,
1069,
62,
8692,
13,
85,
17,
62,
25410,
1330,
16363,
198,
11748,
6460,
628,
198,
4871,
371,
824,
62,
2777,
1304,
7,
15252,
2599,
198,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
317,
12648,
329,
410,
17,
1069,
338,
371,
824,
13,
198,
220,
220,
220,
3497,
262,
3452,
290,
3024,
7243,
319,
262,
6376,
13,
198,
220,
220,
220,
8554,
262,
374,
824,
7716,
262,
7243,
1351,
326,
761,
284,
19230,
13,
198,
220,
220,
220,
705,
7061,
628,
198,
220,
220,
220,
825,
11593,
15003,
834,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
13163,
6738,
410,
17,
1069,
62,
2777,
1304,
1330,
374,
824,
62,
2777,
1304,
198,
220,
220,
220,
220,
220,
220,
220,
13163,
42216,
62,
2777,
1304,
13,
49,
824,
62,
2777,
1304,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
18931,
13,
10951,
10786,
9688,
371,
824,
19230,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
85,
17,
1069,
62,
42216,
62,
6371,
62,
4868,
28,
17816,
5450,
1378,
2503,
13,
85,
17,
1069,
13,
785,
14,
9630,
13,
19875,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
2503,
13,
85,
17,
1069,
13,
785,
14,
12363,
14,
8658,
14,
80,
2616,
13,
19875,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
2503,
13,
85,
17,
1069,
13,
785,
14,
12363,
14,
8658,
14,
43863,
13,
19875,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
2503,
13,
85,
17,
1069,
13,
785,
14,
12363,
14,
8658,
14,
14302,
13,
19875,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
2503,
13,
85,
17,
1069,
13,
785,
14,
12363,
14,
8658,
14,
19205,
13,
19875,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
2503,
13,
85,
17,
1069,
13,
785,
14,
12363,
14,
8658,
14,
1759,
13,
19875,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
2503,
13,
85,
17,
1069,
13,
785,
14,
12363,
14,
8658,
14,
18040,
13,
19875,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
2503,
13,
85,
17,
1069,
13,
785,
14,
12363,
14,
8658,
14,
20123,
425,
13,
19875,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
5450,
1378,
2503,
13,
85,
17,
1069,
13,
785,
14,
12363,
14,
8658,
14,
13670,
13,
19875,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
42861,
62,
8940,
62,
15042,
28,
17816,
5450,
1378,
2503,
13,
85,
17,
1069,
13,
785,
14,
15042,
14,
4852,
873,
14,
42861,
13,
17752,
41707,
5450,
1378,
2503,
13,
85,
17,
1069,
13,
785,
14,
15042,
14,
4852,
873,
14,
8940,
13,
17752,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
26652,
62,
42832,
62,
2435,
28,
940,
198,
220,
220,
220,
220,
220,
220,
220,
18931,
13,
24442,
10786,
9654,
44161,
6831,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
50,
48,
28,
17861,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
50,
48,
13,
9654,
62,
4475,
8692,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
445,
271,
62,
37043,
28,
7738,
271,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2220,
62,
11250,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
5143,
198,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
42861,
62,
392,
62,
8940,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2845,
7824,
12331,
355,
304,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1208,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
5235,
62,
26652,
62,
36560,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
437,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
50,
48,
13,
19836,
62,
4475,
8692,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
18931,
13,
10951,
10786,
437,
262,
371,
824,
19230,
11537,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
371,
824,
62,
2777,
1304,
3419,
198,
220,
220,
220,
3601,
10786,
48658,
0,
11537
] | 1.98337 | 902 |
from typing import List
from . import langs
__all__: List[str] = [
"langs",
]
| [
6738,
19720,
1330,
7343,
198,
6738,
764,
1330,
300,
27725,
628,
198,
834,
439,
834,
25,
7343,
58,
2536,
60,
796,
685,
198,
220,
220,
220,
366,
17204,
82,
1600,
198,
60,
198
] | 2.545455 | 33 |
from lxmls.sequences.id_feature import IDFeatures
# ----------
# Feature Class
# Extracts features from a labeled corpus (only supported features are extracted
# ----------
| [
6738,
300,
19875,
82,
13,
3107,
3007,
13,
312,
62,
30053,
1330,
4522,
23595,
628,
198,
2,
24200,
438,
198,
2,
27018,
5016,
198,
2,
29677,
82,
3033,
422,
257,
15494,
35789,
357,
8807,
4855,
3033,
389,
21242,
198,
2,
24200,
438,
198
] | 4.069767 | 43 |
import os
import sys
from random import random, sample
import argparse
from tqdm import tqdm
import matplotlib.pyplot as plt
import numpy as np
from PIL import Image, ImageDraw, ImageFile
from imutils import video
import cv2
ImageFile.LOAD_TRUNCATED_IMAGES = True
allowable_actions = ['none', 'quantize', 'trace', 'hed', 'sketch', 'segment', 'simplify', 'face', 'upsample', 'sss']
# input, output
parser = argparse.ArgumentParser()
parser.add_argument("--input_src", help="input: directory of input images or movie file")
parser.add_argument("--max_num_images", type=int, help="maximum number of images to take (omit to use all)", default=None)
parser.add_argument("--shuffle", action="store_true", help="shuffle input images")
parser.add_argument("--min_dim", type=int, help="minimum width/height to allow for images", default=0)
parser.add_argument("--max_dim", type=int, help="maximum width/height to allow for images", default=1e8)
parser.add_argument("--output_dir", help="where to put output images (if \"None\" simply overwrite input)")
parser.add_argument("--pct_test", type=float, help="percentage that goes to test set (default 0)", default=0)
parser.add_argument("--save_mode", help="save output combined (pix2pix-style), split into directories, or just output", choices=['split','combined','output_only'], default='output_only')
parser.add_argument("--save_ext", help="image save extension (jpg/png)", choices=['jpg','png'], default='png')
# augmentation
parser.add_argument("--w", type=int, help="output image width (None means leave unchanged)", default=None)
parser.add_argument("--h", type=int, help="output image height (None means leave unchanged)", default=None)
parser.add_argument("--num_per", type=int, help="how many copies of original, augmented", default=1)
parser.add_argument("--frac", type=float, help="cropping ratio before resizing", default=1.0)
parser.add_argument("--frac_vary", type=float, help="cropping ratio vary", default=0.0)
parser.add_argument("--max_ang_rot", type=float, help="max rotation angle (degrees)", default=0)
parser.add_argument("--max_stretch", type=float, help="maximum stretching factor (0=none)", default=0)
parser.add_argument("--centered", action="store_true", help="to use centered crops instead of random ones")
# actions
parser.add_argument("--action", type=str, help="comma-separated: lis of actions from {%s} to take, e.g. trace,hed" % ','.join(allowable_actions), required=True, default="")
parser.add_argument("--target_face_image", type=str, help="image of target face to extract (if None, extract first found one)", default=None)
parser.add_argument("--face_crop", type=float, help="crop around target face first, with face fitting this fraction of the crop (default None, don't crop)", default=None)
parser.add_argument("--face_crop_lerp", type=float, help="smoothing parameter for shifting around lerp (default 1, no lerp)", default=1.0)
# data files
parser.add_argument("--hed_model_path", type=str, default='../data/HED_reproduced.npz', help="model path for HED")
parser.add_argument("--landmarks_path", type=str, default='../data/shape_predictor_68_face_landmarks.dat', help="path to face landmarks file")
parser.add_argument("--photosketch_path", type=str, default='../tools/PhotoSketch', help="path to PhotoSketch (if using it)")
parser.add_argument("--photosketch_model_path", type=str, default='../tools/PhotoSketch/pretrained', help="path to PhotoSketch checkpoint directory (if using it)")
parser.add_argument("--esrgan_path", type=str, default='../tools/ESRGAN', help="path to ESRGAN (if using it)")
parser.add_argument("--esrgan_model_path", type=str, default='../tools/ESRGAN/models', help="path to ESRGAN checkpoint directory (if using it)")
parser.add_argument("--sss_path", type=str, default='../tools/SIGGRAPH18SSS', help="path to SSS (if using it)")
parser.add_argument("--sss_model_path", type=str, default='../tools/SIGGRAPH18SSS/model', help="path to SSS checkpoint directory (if using it)")
args = parser.parse_args()
# import additional helpers as needed
if 'hed' in args.action.split(',') or 'simplify' in args.action.split(','):
import hed_processing
if 'sketch' in args.action.split(','):
sys.path.append(args.photosketch_path)
import photosketch_processing
if 'upsample' in args.action.split(','):
sys.path.append(args.esrgan_path)
import esrgan_processing
if 'face' in args.action.split(','):
from face_processing import *
if 'sss' in args.action.split(','):
sys.path.append(args.sss_path)
import sss_processing
from processing import *
if __name__ == '__main__':
#args = parser.parse_args()
main(args)
| [
11748,
28686,
198,
11748,
25064,
198,
6738,
4738,
1330,
4738,
11,
6291,
198,
11748,
1822,
29572,
198,
6738,
256,
80,
36020,
1330,
256,
80,
36020,
198,
11748,
2603,
29487,
8019,
13,
9078,
29487,
355,
458,
83,
198,
11748,
299,
32152,
355,
45941,
198,
6738,
350,
4146,
1330,
7412,
11,
7412,
25302,
11,
7412,
8979,
198,
6738,
545,
26791,
1330,
2008,
198,
11748,
269,
85,
17,
198,
5159,
8979,
13,
35613,
62,
5446,
4944,
34,
11617,
62,
3955,
25552,
796,
6407,
198,
198,
12154,
540,
62,
4658,
796,
37250,
23108,
3256,
705,
40972,
1096,
3256,
705,
40546,
3256,
705,
704,
3256,
705,
82,
7126,
354,
3256,
705,
325,
5154,
3256,
705,
14323,
489,
1958,
3256,
705,
2550,
3256,
705,
4739,
1403,
3256,
705,
824,
82,
20520,
628,
198,
2,
5128,
11,
5072,
198,
48610,
796,
1822,
29572,
13,
28100,
1713,
46677,
3419,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
15414,
62,
10677,
1600,
1037,
2625,
15414,
25,
8619,
286,
5128,
4263,
393,
3807,
2393,
4943,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
9806,
62,
22510,
62,
17566,
1600,
2099,
28,
600,
11,
1037,
2625,
47033,
1271,
286,
4263,
284,
1011,
357,
296,
270,
284,
779,
477,
42501,
4277,
28,
14202,
8,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
1477,
18137,
1600,
2223,
2625,
8095,
62,
7942,
1600,
1037,
2625,
1477,
18137,
5128,
4263,
4943,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
1084,
62,
27740,
1600,
2099,
28,
600,
11,
1037,
2625,
39504,
9647,
14,
17015,
284,
1249,
329,
4263,
1600,
4277,
28,
15,
8,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
9806,
62,
27740,
1600,
2099,
28,
600,
11,
1037,
2625,
47033,
9647,
14,
17015,
284,
1249,
329,
4263,
1600,
4277,
28,
16,
68,
23,
8,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
22915,
62,
15908,
1600,
1037,
2625,
3003,
284,
1234,
5072,
4263,
357,
361,
19990,
14202,
7879,
2391,
49312,
5128,
8,
4943,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
79,
310,
62,
9288,
1600,
2099,
28,
22468,
11,
1037,
2625,
25067,
496,
326,
2925,
284,
1332,
900,
357,
12286,
657,
42501,
4277,
28,
15,
8,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
21928,
62,
14171,
1600,
1037,
2625,
21928,
5072,
5929,
357,
79,
844,
17,
79,
844,
12,
7635,
828,
6626,
656,
29196,
11,
393,
655,
5072,
1600,
7747,
28,
17816,
35312,
41707,
24011,
1389,
41707,
22915,
62,
8807,
6,
4357,
4277,
11639,
22915,
62,
8807,
11537,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
21928,
62,
2302,
1600,
1037,
2625,
9060,
3613,
7552,
357,
9479,
14,
11134,
42501,
7747,
28,
17816,
9479,
41707,
11134,
6,
4357,
4277,
11639,
11134,
11537,
198,
198,
2,
16339,
14374,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
86,
1600,
2099,
28,
600,
11,
1037,
2625,
22915,
2939,
9647,
357,
14202,
1724,
2666,
21588,
42501,
4277,
28,
14202,
8,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
71,
1600,
2099,
28,
600,
11,
1037,
2625,
22915,
2939,
6001,
357,
14202,
1724,
2666,
21588,
42501,
4277,
28,
14202,
8,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
22510,
62,
525,
1600,
2099,
28,
600,
11,
1037,
2625,
4919,
867,
9088,
286,
2656,
11,
30259,
1600,
4277,
28,
16,
8,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
31944,
1600,
2099,
28,
22468,
11,
1037,
2625,
19915,
2105,
8064,
878,
581,
2890,
1600,
4277,
28,
16,
13,
15,
8,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
31944,
62,
85,
560,
1600,
2099,
28,
22468,
11,
1037,
2625,
19915,
2105,
8064,
7565,
1600,
4277,
28,
15,
13,
15,
8,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
9806,
62,
648,
62,
10599,
1600,
2099,
28,
22468,
11,
1037,
2625,
9806,
13179,
9848,
357,
13500,
6037,
42501,
4277,
28,
15,
8,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
9806,
62,
301,
22592,
1600,
2099,
28,
22468,
11,
1037,
2625,
47033,
20880,
5766,
357,
15,
28,
23108,
42501,
4277,
28,
15,
8,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
38050,
1600,
2223,
2625,
8095,
62,
7942,
1600,
1037,
2625,
1462,
779,
19254,
14450,
2427,
286,
4738,
3392,
4943,
198,
198,
2,
4028,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
2673,
1600,
2099,
28,
2536,
11,
1037,
2625,
785,
2611,
12,
25512,
515,
25,
300,
271,
286,
4028,
422,
1391,
4,
82,
92,
284,
1011,
11,
304,
13,
70,
13,
12854,
11,
704,
1,
4064,
705,
4032,
13,
22179,
7,
12154,
540,
62,
4658,
828,
2672,
28,
17821,
11,
4277,
2625,
4943,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
16793,
62,
2550,
62,
9060,
1600,
2099,
28,
2536,
11,
1037,
2625,
9060,
286,
2496,
1986,
284,
7925,
357,
361,
6045,
11,
7925,
717,
1043,
530,
42501,
4277,
28,
14202,
8,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
2550,
62,
31476,
1600,
2099,
28,
22468,
11,
1037,
2625,
31476,
1088,
2496,
1986,
717,
11,
351,
1986,
15830,
428,
13390,
286,
262,
13833,
357,
12286,
6045,
11,
836,
470,
13833,
42501,
4277,
28,
14202,
8,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
2550,
62,
31476,
62,
1754,
79,
1600,
2099,
28,
22468,
11,
1037,
2625,
5796,
1025,
722,
11507,
329,
15852,
1088,
300,
263,
79,
357,
12286,
352,
11,
645,
300,
263,
79,
42501,
4277,
28,
16,
13,
15,
8,
198,
198,
2,
1366,
3696,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
704,
62,
19849,
62,
6978,
1600,
2099,
28,
2536,
11,
4277,
11639,
40720,
7890,
14,
39,
1961,
62,
260,
32783,
13,
37659,
89,
3256,
1037,
2625,
19849,
3108,
329,
367,
1961,
4943,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
1044,
14306,
62,
6978,
1600,
2099,
28,
2536,
11,
4277,
11639,
40720,
7890,
14,
43358,
62,
79,
17407,
273,
62,
3104,
62,
2550,
62,
1044,
14306,
13,
19608,
3256,
1037,
2625,
6978,
284,
1986,
41532,
2393,
4943,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
24729,
7126,
354,
62,
6978,
1600,
2099,
28,
2536,
11,
4277,
11639,
40720,
31391,
14,
6191,
50,
7126,
354,
3256,
1037,
2625,
6978,
284,
5555,
50,
7126,
354,
357,
361,
1262,
340,
8,
4943,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
24729,
7126,
354,
62,
19849,
62,
6978,
1600,
2099,
28,
2536,
11,
4277,
11639,
40720,
31391,
14,
6191,
50,
7126,
354,
14,
5310,
13363,
3256,
1037,
2625,
6978,
284,
5555,
50,
7126,
354,
26954,
8619,
357,
361,
1262,
340,
8,
4943,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
274,
81,
1030,
62,
6978,
1600,
2099,
28,
2536,
11,
4277,
11639,
40720,
31391,
14,
1546,
49,
45028,
3256,
1037,
2625,
6978,
284,
412,
12562,
45028,
357,
361,
1262,
340,
8,
4943,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
274,
81,
1030,
62,
19849,
62,
6978,
1600,
2099,
28,
2536,
11,
4277,
11639,
40720,
31391,
14,
1546,
49,
45028,
14,
27530,
3256,
1037,
2625,
6978,
284,
412,
12562,
45028,
26954,
8619,
357,
361,
1262,
340,
8,
4943,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
824,
82,
62,
6978,
1600,
2099,
28,
2536,
11,
4277,
11639,
40720,
31391,
14,
50,
3528,
10761,
31300,
1507,
5432,
50,
3256,
1037,
2625,
6978,
284,
311,
5432,
357,
361,
1262,
340,
8,
4943,
198,
48610,
13,
2860,
62,
49140,
7203,
438,
824,
82,
62,
19849,
62,
6978,
1600,
2099,
28,
2536,
11,
4277,
11639,
40720,
31391,
14,
50,
3528,
10761,
31300,
1507,
5432,
50,
14,
19849,
3256,
1037,
2625,
6978,
284,
311,
5432,
26954,
8619,
357,
361,
1262,
340,
8,
4943,
198,
198,
22046,
796,
30751,
13,
29572,
62,
22046,
3419,
628,
198,
2,
1330,
3224,
49385,
355,
2622,
198,
361,
705,
704,
6,
287,
26498,
13,
2673,
13,
35312,
7,
3256,
11537,
393,
705,
14323,
489,
1958,
6,
287,
26498,
13,
2673,
13,
35312,
7,
41707,
2599,
198,
220,
220,
220,
1330,
16418,
62,
36948,
198,
361,
705,
82,
7126,
354,
6,
287,
26498,
13,
2673,
13,
35312,
7,
41707,
2599,
198,
220,
220,
220,
25064,
13,
6978,
13,
33295,
7,
22046,
13,
24729,
7126,
354,
62,
6978,
8,
198,
220,
220,
220,
1330,
5205,
7126,
354,
62,
36948,
198,
361,
705,
4739,
1403,
6,
287,
26498,
13,
2673,
13,
35312,
7,
41707,
2599,
198,
220,
220,
220,
25064,
13,
6978,
13,
33295,
7,
22046,
13,
274,
81,
1030,
62,
6978,
8,
198,
220,
220,
220,
1330,
1658,
81,
1030,
62,
36948,
198,
361,
705,
2550,
6,
287,
26498,
13,
2673,
13,
35312,
7,
41707,
2599,
198,
220,
220,
220,
422,
1986,
62,
36948,
1330,
1635,
198,
361,
705,
824,
82,
6,
287,
26498,
13,
2673,
13,
35312,
7,
41707,
2599,
198,
220,
220,
220,
25064,
13,
6978,
13,
33295,
7,
22046,
13,
824,
82,
62,
6978,
8,
198,
220,
220,
220,
1330,
264,
824,
62,
36948,
198,
6738,
7587,
1330,
1635,
628,
628,
628,
628,
628,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
1303,
22046,
796,
30751,
13,
29572,
62,
22046,
3419,
198,
220,
220,
220,
1388,
7,
22046,
8,
198
] | 3.144399 | 1,482 |
# to decrypt a msg
msg = input("Enter the encrypted message :")
en_msg = msg.upper()
#print(en_msg)
key = 1
for i in range(27):
str1 = ""
#key = 1
for letter in en_msg:
l = ord(letter) + key
if l > 90:
l = l - 90 + 64
str1 = str1 + chr(l)
key = key + 1
print(str1)
key = 1
'''for i in range(27):
str1 = ""
for letter in en_msg:
l = ord(letter) - key
if l < 65:
l = 91 - (65 - l) #- 65 + 64
str1 = str1 + chr(l)
key = key + 1
print(str1)
'''
| [
2,
284,
42797,
257,
31456,
198,
198,
19662,
796,
5128,
7203,
17469,
262,
19365,
3275,
1058,
4943,
198,
198,
268,
62,
19662,
796,
31456,
13,
45828,
3419,
198,
2,
4798,
7,
268,
62,
19662,
8,
198,
2539,
796,
352,
198,
1640,
1312,
287,
2837,
7,
1983,
2599,
198,
197,
2536,
16,
796,
13538,
198,
197,
2,
2539,
796,
352,
198,
197,
1640,
3850,
287,
551,
62,
19662,
25,
198,
197,
197,
75,
796,
2760,
7,
9291,
8,
1343,
1994,
198,
197,
197,
361,
300,
1875,
4101,
25,
197,
198,
197,
197,
197,
75,
796,
300,
532,
4101,
1343,
5598,
198,
197,
197,
2536,
16,
796,
965,
16,
1343,
442,
81,
7,
75,
8,
198,
197,
2539,
796,
1994,
1343,
352,
198,
197,
4798,
7,
2536,
16,
8,
198,
2539,
796,
352,
198,
7061,
6,
1640,
1312,
287,
2837,
7,
1983,
2599,
198,
197,
2536,
16,
796,
13538,
198,
197,
1640,
3850,
287,
551,
62,
19662,
25,
198,
197,
197,
75,
796,
2760,
7,
9291,
8,
532,
1994,
198,
197,
197,
361,
300,
1279,
6135,
25,
198,
197,
197,
197,
75,
796,
10495,
532,
357,
2996,
532,
300,
8,
220,
197,
2,
12,
6135,
1343,
5598,
198,
197,
197,
2536,
16,
796,
965,
16,
1343,
442,
81,
7,
75,
8,
198,
197,
2539,
796,
1994,
1343,
352,
198,
197,
4798,
7,
2536,
16,
8,
198,
198,
7061,
6,
628,
628,
628,
628
] | 2.077922 | 231 |
from dataclasses import dataclass
from .base_entity import BaseClass
@dataclass
| [
6738,
4818,
330,
28958,
1330,
4818,
330,
31172,
198,
6738,
764,
8692,
62,
26858,
1330,
7308,
9487,
198,
198,
31,
19608,
330,
31172,
198
] | 3.375 | 24 |
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created Jul 2020
@author: TheDrDOS
"""
# # Clear the Spyder console and variables
# try:
# from IPython import get_ipython
# get_ipython().magic('clear')
# get_ipython().magic('reset -f')
# except:
# pass
from bokeh.io import show, save, output_file
from bokeh.util.browser import view
from bokeh.models import ColorBar, ColorMapper, LogColorMapper, LogTicker, LinearColorMapper, NumeralTickFormatter
from bokeh.models import BasicTicker as LinearTicker
from bokeh.models import BasicTickFormatter, LogTicker, FixedTicker, FuncTickFormatter
from bokeh.palettes import Magma11 as palette
from bokeh.palettes import Inferno256, Turbo256
from bokeh.plotting import figure
from bokeh.models import Div
from bokeh.models import ColumnDataSource, DateRangeSlider, Select, Spinner
from bokeh.models.tools import HoverTool, BoxZoomTool # for showing the hover tool
from bokeh_template_external_js import template as template_ext_js
from bokeh import events
from bokeh.models import Label, LabelSet, CustomJS, TapTool, Toggle, Button, Spacer, TextInput, RadioButtonGroup
from bokeh.tile_providers import CARTODBPOSITRON_RETINA, get_provider
import os
import sys
import numpy as np
import datetime
from datetime import date, timedelta
from bokeh.models import NumeralTickFormatter, BasicTickFormatter
# for adding the second axis
from bokeh.models import LogAxis, LinearAxis, Range1d, DataRange1d
# for formatting the dates on the x axis
from bokeh.models import DatetimeTickFormatter
from bokeh.layouts import column, row, gridplot, layout # For show multiple figures
# For adding spans (vertical/horizontal lines without end points)
from bokeh.models import Span
import pandas as pd
import pickle
import progress_bar as pbar
import json
import gzip
import sys
"""
# Assign output file
________________________________________________________________________________
"""
def filename(fullname):
""" Return the name of a file without its path or extension"""
return os.path.splitext(os.path.split(fullname)[1])[0]
this_filename = filename(os.path.basename(os.path.splitext(__file__)[0]))
javascript_path = './' + this_filename + '_js/'
localhost_path = './plots/'
# name the output file/s after the script file
output_filename = "./../site/plots/" + this_filename
output_file(output_filename + ".html",
title="Interactive Custom Map of World COVID19 Data with Time History") # title=filename(output_filename))
"""
# Support functions
________________________________________________________________________________
"""
"""
# Load key_to_filename
________________________________________________________________________________
"""
ext_datafiles = {
'path': "../site/plots/data/",
'rel_path': "./data/",
}
with gzip.GzipFile(ext_datafiles['path'] + 'filename_to_location.json.gz', 'r') as fin:
ext_datafiles['filename_to_location'] = json.loads(
fin.read().decode('utf-8'))
with gzip.GzipFile(ext_datafiles['path'] + 'location_to_filename.json.gz', 'r') as fin:
ext_datafiles['location_to_filename'] = json.loads(
fin.read().decode('utf-8'))
with gzip.GzipFile(ext_datafiles['path'] + 'location_to_mapfilename.json.gz', 'r') as fin:
ext_datafiles['location_to_mapfilename'] = json.loads(
fin.read().decode('utf-8'))
"""
# %% Load json file for initiallization
________________________________________________________________________________
"""
init_location = 'New York, US' # get location
with gzip.GzipFile(ext_datafiles['path'] + ext_datafiles['location_to_filename'][init_location] + '.json.gz', 'r') as fin:
init_datafile = json.loads(fin.read().decode('utf-8'))
init_data = dic_nan_decode(init_datafile['data'], init_datafile['nan_code'])
init_data['date'] = pd.to_datetime(init_data['date'])
latest_data_date = pd.to_datetime('today') #max(init_data['date'])
oldest_date_date = pd.to_datetime('20191101',format='%Y%m%d') #min(init_data['date'])
init_location = 'Earth' # get location
with gzip.GzipFile(ext_datafiles['path'] + ext_datafiles['location_to_filename'][init_location] + '_map.json.gz', 'r') as fin:
init_mapfile = json.loads(fin.read().decode('utf-8'))
init_map = init_mapfile['data']
# Create source data structure and initialize state map
source_graph = ColumnDataSource(init_data)
source_map = ColumnDataSource(init_map)
# Erase the underlying data to reduce the html filesize (will be loaded upon user tap feedback)
source_graph.data = {k: source_graph.data[k][-2:-1] for k in source_graph.data}
"""
# %% Make State graph for COVID data
________________________________________________________________________________
"""
# Set Soft Axis limits
ax_limits = {
'x': (
pd.Timestamp.now() - pd.DateOffset(months=4),
pd.Timestamp.now()
),
}
# Create figure
p_graph = figure(x_axis_type='datetime', y_axis_type="linear",
title='(Tap a state on the map above to show the corresponding COVID data here)',
# plot_width=800, plot_height=600,
tools="ypan,xpan,ywheel_zoom,xwheel_zoom,ybox_zoom,xbox_zoom,box_zoom,reset", active_scroll=None, active_drag='ypan',
toolbar_location='left',
sizing_mode='scale_width',
aspect_ratio=2,
visible=True,
y_axis_location='right',
) # Assign tools and make wheel_zoom default on
# Make the bar and line plots
glyphs = []
graph_init = {
'x': 'date',
'source': source_graph,
'y': [
'positiveIncreaseMAVPerMil',
'positiveActiveIncreaseMAVPerMil',
'deathIncreaseMAV10PerMil'
],
'legend_label': [
'Positive Increase (week avg)',
'Positive Active Increase (week avg)',
'Deaths Increase x10 (week avg)'
],
'line_color': [
'red', # mapper,
'yellowgreen', # color_mapper,
'blue'],
'line_width': [
4, 4, 4
],
'line_dash': [
'solid', 'solid', 'solid'],
'name': ['' for i in range(0, 3)],
}
for n, y in enumerate(graph_init['y']):
graph_init['name'][n] = y
for n, y in enumerate(graph_init['y']):
glyphs.append(
p_graph.line(
source=graph_init['source'],
x=graph_init['x'],
y=graph_init['y'][n],
# legend_label=graph_init['legend_label'][n],
line_color=graph_init['line_color'][n],
color=graph_init['line_color'][n],
line_width=graph_init['line_width'][n],
line_dash=graph_init['line_dash'][n],
name=graph_init['name'][n],
)
)
p_graph.yaxis[0].formatter = NumeralTickFormatter(format="0,0.0")
# Horizontal right axis zero span
zero_span = Span(
location=0, # Span the 0 line of the right y axis
dimension='width', line_color='gray',
line_dash='solid', line_width=3, line_alpha=0.4,
)
p_graph.add_layout(zero_span)
# Weekly span marks
duration = np.timedelta64(4, 'm')
ds = np.arange(ax_limits['x'][0], ax_limits['x'][1], dtype='datetime64[D]')
# use of timezones was depricated, before timezone=None was needed
day = np.timedelta64(1, 'D')
for d in ds:
if ((np.timedelta64(ds.max() - d) / day) % 7) == 0:
ts = (np.datetime64(d) - np.datetime64('1970-01-01T00:00:00')) / \
np.timedelta64(1, 's')
wloc = ts * 1000 # get the week mark location in a format compatible with annotations
p_graph.add_layout(
Span(location=wloc,
dimension='height', line_color='gray',
line_dash='dashed', line_width=2, line_alpha=0.5,
))
span_play_position = Span(location=latest_data_date,
dimension='height', line_color='gray',
line_dash='solid', line_width=2, line_alpha=0.5,
name='span_play_position')
p_graph.add_layout(span_play_position)
# # X axis formatting:
p_graph.x_range = Range1d(ax_limits['x'][0], ax_limits['x'][1])
p_graph.xaxis.major_label_orientation = -np.pi / 3 # slant the labels
dtformat = "%b-%d"
p_graph.xaxis.formatter = formatter = DatetimeTickFormatter( # Always show the same date formatting regardless of zoom
days=dtformat,
months=dtformat,
hours=dtformat,
minutes=dtformat)
# Add legend
#p_graph.legend.location = "top_left"
# Add a hover tool
hover = HoverTool()
hover.tooltips = [
#('Type', "$name"),
('', '$name: @$name{0,0.} on @date{%a-%b-%d}'),
]
# hover.mode = 'vline'
hover.formatters = {
'@date': 'datetime', # use 'datetime' formatter for '@date' field
'$name': 'printf' # use 'printf' formatter for the name of the column
}
hover.renderers = glyphs
p_graph.add_tools(hover)
p_graph_glyphs = glyphs
"""
%% Setup color map
________________________________________________________________________________
"""
palette = Turbo256[128:-1:5]
color_mapper = LinearColorMapper(
palette=palette, low=0, high=20 * len(palette))
color_bar = ColorBar(
color_mapper=color_mapper,
label_standoff=2, border_line_color=None, location=(0, 0),
bar_line_alpha=0.5,
major_label_text_align='left',
)
"""
# Make the map
________________________________________________________________________________
"""
p_map = figure(
title=latest_data_date.strftime('%Y-%m-%d'),
# x_range=minmax(DS_worlds_map.data['xc']), y_range=minmax(DS_worlds_map.data['yc']),
# x_range=(-1.4e7,-7.4e6),
# y_range=(2.88e6,6.28e6),
# sizing_mode='stretch_width',
tools="tap,pan,wheel_zoom,reset,save", active_tap='tap',
toolbar_location='left',
x_axis_location=None, y_axis_location=None,
x_axis_type="mercator", y_axis_type="mercator",
sizing_mode='scale_width',
aspect_ratio=2,
match_aspect=True,
)
p_map.grid.grid_line_color = None
bztool_s = BoxZoomTool(match_aspect=True)
p_map.add_tools(bztool_s)
p_map.toolbar.active_drag = None # bztool_s
# Add the map tiles
tile_provider = get_provider(CARTODBPOSITRON_RETINA)
p_map.add_tile(tile_provider)
# Add the states1
p_map_mpoly = p_map.multi_polygons(
xs='x', ys='y', source=source_map,
fill_color={'field': 'positiveIncreaseMAVPerMil',
'transform': color_mapper},
fill_alpha=0.6,
line_color="white",
line_width=1,
)
p_map.add_layout(color_bar, 'right')
# Add the hover tool to show the state name and number of counties
hoverm = HoverTool()
hoverm.tooltips = [
('Name', "@name"),
("Population", "@population{0,0.}"),
#("Current COVID Statistics","{}".format('-'*15)),
('Positive Cases', "@positive{0,0.}"),
('Recovered Cases', "@recovered{0,0.}"),
('Positive Active Cases', "@positiveActive{0,0.}"),
('Deaths', "@death{0,0.}"),
]
p_map.add_tools(hoverm)
# Add taptool to select from which state to show all the counties
with open(javascript_path + 'callback_map.js', 'r') as f:
callback_world_map = f.read()
callbacktap = CustomJS(args={'ext_datafiles': ext_datafiles,
'p_graph_glyphs': p_graph_glyphs,
'p_graph': p_graph,
},
code=callback_world_map)
taptool = p_map.select(type=TapTool)
taptool.callback = callbacktap
# Explicitly initialize x range
p_map.x_range = DataRange1d()
# %% Make data graphs reset on doubletap
p_graph.js_on_event('doubletap', CustomJS(args={'p': p_graph, }, code="""
p.reset.emit()
"""))
"""
# Map widgets
------------------------------------------------------------------------------------------------
"""
# Get the callback script used for many of the widgets
with open(javascript_path + 'callback_map_widgets.js', 'r') as f:
callback_widgets = f.read()
# Level radio buttons
radio_labels = ["Play \u25B6", "Step \u23ef", "Pause \u23f8"]
radioGroup_play_controls = RadioButtonGroup(
labels=radio_labels, active=2, name='radioGroup_play_controls')
radioGroup_play_controls.js_on_click(CustomJS(args={
'event': 'radioGroup_play_controls',
'ext_datafiles': ext_datafiles,
'mpoly': p_map_mpoly,
'source_map': source_map,
'p_map': p_map,
},
code=callback_widgets))
# %% Make date range slider
date_range_slider = DateRangeSlider(value=((latest_data_date-pd.DateOffset(months=1)), (latest_data_date)),
start=(oldest_date_date), end=(latest_data_date),
name='date_range_slider')
date_range_slider.js_on_change("value", CustomJS(args={
'event': 'date_range_slider',
'ext_datafiles': ext_datafiles,
'mpoly': p_map_mpoly,
'source_map': source_map,
'p_map': p_map,
},
code=callback_widgets
))
# Minumum time between animations on play, Spinner
spinner_minStepTime = Spinner(title="",
low=0, high=5, step=0.25, value=0.25, width=100,format=FuncTickFormatter(code="""
return tick.toString()+" sec"
"""),
name='spinner_minStepTime')
# Respond to taps on the graph
p_graph.js_on_event('tap', CustomJS(args={
'event': 'graph_tap',
'ext_datafiles': ext_datafiles,
'mpoly': p_map_mpoly,
'source_map': source_map,
'p_map': p_map,
'source_graph': source_graph,
'p_graph': p_graph,
},
code=callback_widgets
))
# Level radio buttons
radio_labels = ["World Level", "States Level", "Counties Level"]
radioGroup_level_select = RadioButtonGroup(
labels=radio_labels, active=0, name='radioGroup_level_select')
radioGroup_level_select.js_on_click(CustomJS(args={
'event': 'level_select',
'mpoly': p_map_mpoly,
'ext_datafiles': ext_datafiles,
'source_map': source_map,
'p_map': p_map,
},
code=callback_widgets))
# Choose to only see continental US
continental_states = [
'Alabama, US', 'Arizona, US', 'Arkansas, US', 'California, US', 'Colorado, US', 'Connecticut, US', 'Delaware, US', 'District of Columbia, US', 'Florida, US', 'Georgia, US', 'Idaho, US', 'Illinois, US', 'Indiana, US', 'Iowa, US', 'Kansas, US', 'Kentucky, US', 'Louisiana, US', 'Maine, US', 'Maryland, US', 'Massachusetts, US', 'Michigan, US', 'Minnesota, US', 'Mississippi, US', 'Missouri, US', 'Montana, US', 'Nebraska, US', 'Nevada, US', 'New Hampshire, US', 'New Jersey, US', 'New Mexico, US', 'New York, US', 'North Carolina, US', 'North Dakota, US', 'Ohio, US', 'Oklahoma, US', 'Oregon, US', 'Pennsylvania, US', 'Rhode Island, US', 'South Carolina, US', 'South Dakota, US', 'Tennessee, US', 'Texas, US', 'Utah, US', 'Vermont, US', 'Virginia, US', 'Washington, US', 'West Virginia, US', 'Wisconsin, US', 'Wyoming, US']
button_continental_us_only = Toggle(label="Continental US Only",
visible=True,
button_type='default',
name='button_continental_us_only')
button_continental_us_only.js_on_change('active', CustomJS(args={
'event':'button_continental_us_only',
'mpoly': p_map_mpoly,
'ext_datafiles': ext_datafiles,
'source_map': source_map,
'p_map': p_map,
'continental_states': continental_states,
}, code=callback_widgets))
# Selectors for the map
selectors_map = []
opts = [k for k in init_data.keys() if isinstance(init_data[k][0], int)
or isinstance(init_data[k][0], float)]
opts = sorted(opts)
select = Select(title="Data For Map Coloring:",
value=p_map_mpoly.glyph.fill_color['field'],
options=opts)
select.js_on_change("value", CustomJS(args={
'ext_datafiles': ext_datafiles,
'mpoly': p_map_mpoly,
}, code="""
//console.log('select: value=' + this.value, this.toString())
mpoly.glyph.fill_color.field = this.value
mpoly.data_source.change.emit()
"""))
selectors_map.append(select)
# Range setting for map
map_range_widgets = []
text_input = TextInput(value=str(color_mapper.high), title="High Color")
text_input.js_on_change("value", CustomJS(args={
'ext_datafiles': ext_datafiles,
'color_mapper': color_mapper,
}, code="""
color_mapper.high = Number(this.value)
"""))
map_range_widgets.append(text_input)
text_input = TextInput(value=str(color_mapper.low), title="Low Color")
text_input.js_on_change("value", CustomJS(args={
'ext_datafiles': ext_datafiles,
'color_mapper': color_mapper,
}, code="""
color_mapper.low = Number(this.value)
"""))
map_range_widgets.append(text_input)
"""
# Line graph widgets
------------------------------------------------------------------------------------------------
"""
# Selectors for the line graphs
selectors_graph = []
opts = [k for k in init_data.keys() if isinstance(init_data[k][0], int)
or isinstance(init_data[k][0], float)]
opts = sorted(opts)
for n, g in enumerate(p_graph_glyphs):
select = Select(title=" ", # title="Data For Line "+str(n+1)+":",
value=g.glyph.y,
options=opts,
background=g.glyph.line_color,)
select.js_on_change("value", CustomJS(args={
'ext_datafiles': ext_datafiles,
'line': g,
}, code="""
//console.log('select: value=' + this.value, this.toString())
line.glyph.y.field = this.value
line.data_source.change.emit()
"""))
selectors_graph.append(select)
# %% Make heading for the whole thing
"""
# %% Make heading for the whole thing
"""
heading = Div(text="""
<h1> Wold Map Of COVID Data With Population Normalized Time History </h1>
<p>Shows all the countries colored according to last weeks average number of new COVID-19 cases per day with country population normalization (number of people per million).</p>
<ul>
<li>Higher color number corresponds to faster spread of the virus.</li>
<li>On the left of each graph thera are tools to zoom/pan/reset/save.</li>
<li>On Mobile: Use two finger to scroll the page.</li>
<li>Data last updated on: {data_update} </li>
<li>Graphs generated on: {graph_update} </li>
<li>Recovery data for countries is unavailable. Using estimates of approx 15days to recovery for those that don't die.</li>
</ul>
<h3> Tap on any country to show the COVID19 data time history graph below. </h3>
""".format(
data_update=pd.to_datetime(latest_data_date).strftime('%Y-%m-%d'),
graph_update=pd.Timestamp.now().strftime('%Y-%m-%d'),
))
footer = Div(text="""
<h3> Sources </h3>
<ul>
<li>GitHub repository for this project: <a href="https://github.com/thedrdos/covid-map"> https://github.com/thedrdos/covid-map </a>. </li>
<li>Produced using Python with Bokeh and other modules.</li>
<li>Country geographical Data from <a href="http://www.naturalearthdata.com/">Natural Earth</a>.</li>
<li>COVID-19 Data on Countries from <a href="https://coronavirus.jhu.edu">The John Hopkins University Coronavirus Resource Center</a>
or on <a href="https://github.com/CSSEGISandData/COVID-19">GitHub</a>.</li>
</ul>
""")
data_notes = Div(text="""
<h4> Data Defintions: </h4>
<ul>
<li>Compatible with the <a href="https://covidtracking.com/about-data/data-definitions"> COVID Tracking Project data defintions</a>. </li>
<li>Countries may have `positive`, `death`, `recovered`, and their derivatives available.</li>
<li>USA states have most/all the data available.</li>
<li>USA counties of stats may have `positive`, `death`, `recovered`, and their derivatives available.</li>
<li>`recovered` is estimated where not available as `positive`-`death` after 15 days.</li>
<li>USA counties do not have `recovered` reported data, they are estimates.</li>
<li>`positiveActive` denotes `positive`-`recovered`-`death`.</li>
<li>Suffix of `MAV` denotes a one week moving average.</li>
<li>Suffix of `10` denotes multiplied by 10.</li>
<li>Suffix of `PerMil` denotes population normalization (persons per million).</li>
</ul>
""")
# %% Combine all the graphs
"""
# %% Combine all the graphs
________________________________________________________________________________
"""
# Layout the figures and show them
p_map.sizing_mode = 'scale_width'
p_graph.sizing_mode = 'scale_width'
if len(sys.argv)==1:
print('Making non-mobile output version')
lout = layout([heading,
[selectors_map + map_range_widgets + [radioGroup_level_select] +
[button_continental_us_only]
#+[Spacer(background='black',height=2)]
+[Div(text="<center><i> Time History Animation </i></center>")]
#+[Spacer(background='black',height=2)]
+[[spinner_minStepTime,radioGroup_play_controls] ,date_range_slider], p_map],
[selectors_graph+[data_notes], p_graph],
footer
])
lout.margin = (4, 20, 4, 20) # top, right, bottom, left
lout.sizing_mode = 'scale_width'
save(lout, template=template_ext_js(['jquary', 'pako']))
# view(output_filename+'.html')
# view('http://localhost:7800/'+localhost_path+this_filename+'.html')
elif sys.argv[1]=='mobile':
print('Making mobile output version')
lout_mobile = layout([
heading,
[selectors_map]+map_range_widgets,
[radioGroup_level_select,
button_continental_us_only],
p_map,
[spinner_minStepTime,radioGroup_play_controls ,date_range_slider],
p_graph,
[[[selectors_graph]],data_notes],
footer
])
lout_mobile.margin = (4, 20, 4, 20) # top, right, bottom, left
lout_mobile.sizing_mode = 'scale_width'
save(lout_mobile,filename=output_filename+'_mobile.html',template=template_ext_js(['jquary', 'pako']))
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
18,
198,
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
37811,
198,
41972,
5979,
12131,
198,
198,
31,
9800,
25,
383,
6187,
35178,
198,
37811,
198,
2,
1303,
11459,
262,
23688,
1082,
8624,
290,
9633,
198,
2,
1949,
25,
198,
2,
220,
220,
220,
220,
422,
6101,
7535,
1330,
651,
62,
541,
7535,
198,
2,
220,
220,
220,
220,
651,
62,
541,
7535,
22446,
32707,
10786,
20063,
11537,
198,
2,
220,
220,
220,
220,
651,
62,
541,
7535,
22446,
32707,
10786,
42503,
532,
69,
11537,
198,
2,
2845,
25,
198,
2,
220,
220,
220,
220,
1208,
628,
198,
6738,
1489,
365,
71,
13,
952,
1330,
905,
11,
3613,
11,
5072,
62,
7753,
198,
6738,
1489,
365,
71,
13,
22602,
13,
40259,
1330,
1570,
198,
6738,
1489,
365,
71,
13,
27530,
1330,
5315,
10374,
11,
5315,
44,
11463,
11,
5972,
10258,
44,
11463,
11,
5972,
51,
15799,
11,
44800,
10258,
44,
11463,
11,
31835,
1691,
51,
624,
8479,
1436,
198,
6738,
1489,
365,
71,
13,
27530,
1330,
14392,
51,
15799,
355,
44800,
51,
15799,
198,
6738,
1489,
365,
71,
13,
27530,
1330,
14392,
51,
624,
8479,
1436,
11,
5972,
51,
15799,
11,
10832,
51,
15799,
11,
11138,
66,
51,
624,
8479,
1436,
198,
6738,
1489,
365,
71,
13,
18596,
23014,
1330,
2944,
2611,
1157,
355,
27043,
198,
6738,
1489,
365,
71,
13,
18596,
23014,
1330,
32458,
11645,
11,
22278,
11645,
198,
6738,
1489,
365,
71,
13,
29487,
889,
1330,
3785,
198,
6738,
1489,
365,
71,
13,
27530,
1330,
4777,
198,
6738,
1489,
365,
71,
13,
27530,
1330,
29201,
6601,
7416,
11,
7536,
17257,
11122,
1304,
11,
9683,
11,
1338,
5083,
198,
6738,
1489,
365,
71,
13,
27530,
13,
31391,
1330,
38452,
25391,
11,
8315,
57,
4207,
25391,
220,
1303,
329,
4478,
262,
20599,
2891,
198,
198,
6738,
1489,
365,
71,
62,
28243,
62,
22615,
62,
8457,
1330,
11055,
355,
11055,
62,
2302,
62,
8457,
198,
198,
6738,
1489,
365,
71,
1330,
2995,
198,
6738,
1489,
365,
71,
13,
27530,
1330,
36052,
11,
36052,
7248,
11,
8562,
20120,
11,
16880,
25391,
11,
34098,
11,
20969,
11,
1338,
11736,
11,
8255,
20560,
11,
8829,
21864,
13247,
198,
6738,
1489,
365,
71,
13,
40927,
62,
15234,
4157,
1330,
327,
7227,
3727,
20866,
2640,
2043,
45806,
62,
26087,
28893,
11,
651,
62,
15234,
1304,
198,
11748,
28686,
198,
11748,
25064,
198,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
4818,
8079,
198,
6738,
4818,
8079,
1330,
3128,
11,
28805,
12514,
198,
198,
6738,
1489,
365,
71,
13,
27530,
1330,
31835,
1691,
51,
624,
8479,
1436,
11,
14392,
51,
624,
8479,
1436,
198,
2,
329,
4375,
262,
1218,
16488,
198,
6738,
1489,
365,
71,
13,
27530,
1330,
5972,
31554,
271,
11,
44800,
31554,
271,
11,
13667,
16,
67,
11,
6060,
17257,
16,
67,
198,
2,
329,
33313,
262,
9667,
319,
262,
2124,
16488,
198,
6738,
1489,
365,
71,
13,
27530,
1330,
16092,
8079,
51,
624,
8479,
1436,
198,
198,
6738,
1489,
365,
71,
13,
10724,
5269,
1330,
5721,
11,
5752,
11,
10706,
29487,
11,
12461,
220,
1303,
1114,
905,
3294,
5538,
628,
198,
2,
1114,
4375,
32727,
357,
1851,
605,
14,
17899,
38342,
3951,
1231,
886,
2173,
8,
198,
6738,
1489,
365,
71,
13,
27530,
1330,
49101,
198,
198,
11748,
19798,
292,
355,
279,
67,
198,
198,
11748,
2298,
293,
198,
11748,
4371,
62,
5657,
355,
279,
5657,
198,
198,
11748,
33918,
198,
11748,
308,
13344,
198,
198,
11748,
25064,
198,
198,
37811,
198,
2,
2195,
570,
5072,
2393,
198,
27193,
4841,
198,
37811,
628,
198,
4299,
29472,
7,
12853,
3672,
2599,
198,
220,
220,
220,
37227,
8229,
262,
1438,
286,
257,
2393,
1231,
663,
3108,
393,
7552,
37811,
198,
220,
220,
220,
1441,
28686,
13,
6978,
13,
22018,
578,
742,
7,
418,
13,
6978,
13,
35312,
7,
12853,
3672,
38381,
16,
12962,
58,
15,
60,
628,
198,
5661,
62,
34345,
796,
29472,
7,
418,
13,
6978,
13,
12093,
12453,
7,
418,
13,
6978,
13,
22018,
578,
742,
7,
834,
7753,
834,
38381,
15,
60,
4008,
198,
37495,
62,
6978,
796,
705,
19571,
6,
1343,
428,
62,
34345,
1343,
705,
62,
8457,
14,
6,
198,
36750,
62,
6978,
796,
705,
19571,
489,
1747,
14,
6,
198,
2,
1438,
262,
5072,
2393,
14,
82,
706,
262,
4226,
2393,
198,
22915,
62,
34345,
796,
366,
19571,
40720,
15654,
14,
489,
1747,
30487,
1343,
428,
62,
34345,
198,
22915,
62,
7753,
7,
22915,
62,
34345,
1343,
27071,
6494,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3670,
2625,
9492,
5275,
8562,
9347,
286,
2159,
7375,
11008,
1129,
6060,
351,
3862,
7443,
4943,
220,
1303,
3670,
28,
34345,
7,
22915,
62,
34345,
4008,
198,
198,
37811,
198,
2,
7929,
5499,
198,
27193,
4841,
198,
37811,
628,
628,
198,
37811,
198,
2,
8778,
1994,
62,
1462,
62,
34345,
198,
27193,
4841,
198,
37811,
198,
2302,
62,
7890,
16624,
796,
1391,
198,
220,
220,
220,
705,
6978,
10354,
366,
40720,
15654,
14,
489,
1747,
14,
7890,
14,
1600,
198,
220,
220,
220,
705,
2411,
62,
6978,
10354,
366,
19571,
7890,
14,
1600,
198,
92,
198,
4480,
308,
13344,
13,
38,
13344,
8979,
7,
2302,
62,
7890,
16624,
17816,
6978,
20520,
1343,
705,
34345,
62,
1462,
62,
24886,
13,
17752,
13,
34586,
3256,
705,
81,
11537,
355,
957,
25,
198,
220,
220,
220,
1070,
62,
7890,
16624,
17816,
34345,
62,
1462,
62,
24886,
20520,
796,
33918,
13,
46030,
7,
198,
220,
220,
220,
220,
220,
220,
220,
957,
13,
961,
22446,
12501,
1098,
10786,
40477,
12,
23,
6,
4008,
198,
4480,
308,
13344,
13,
38,
13344,
8979,
7,
2302,
62,
7890,
16624,
17816,
6978,
20520,
1343,
705,
24886,
62,
1462,
62,
34345,
13,
17752,
13,
34586,
3256,
705,
81,
11537,
355,
957,
25,
198,
220,
220,
220,
1070,
62,
7890,
16624,
17816,
24886,
62,
1462,
62,
34345,
20520,
796,
33918,
13,
46030,
7,
198,
220,
220,
220,
220,
220,
220,
220,
957,
13,
961,
22446,
12501,
1098,
10786,
40477,
12,
23,
6,
4008,
198,
4480,
308,
13344,
13,
38,
13344,
8979,
7,
2302,
62,
7890,
16624,
17816,
6978,
20520,
1343,
705,
24886,
62,
1462,
62,
8899,
34345,
13,
17752,
13,
34586,
3256,
705,
81,
11537,
355,
957,
25,
198,
220,
220,
220,
1070,
62,
7890,
16624,
17816,
24886,
62,
1462,
62,
8899,
34345,
20520,
796,
33918,
13,
46030,
7,
198,
220,
220,
220,
220,
220,
220,
220,
957,
13,
961,
22446,
12501,
1098,
10786,
40477,
12,
23,
6,
4008,
628,
198,
37811,
198,
2,
43313,
8778,
33918,
2393,
329,
5383,
439,
1634,
198,
27193,
4841,
198,
37811,
198,
15003,
62,
24886,
796,
705,
3791,
1971,
11,
1294,
6,
220,
1303,
651,
4067,
198,
4480,
308,
13344,
13,
38,
13344,
8979,
7,
2302,
62,
7890,
16624,
17816,
6978,
20520,
1343,
1070,
62,
7890,
16624,
17816,
24886,
62,
1462,
62,
34345,
6,
7131,
15003,
62,
24886,
60,
1343,
45302,
17752,
13,
34586,
3256,
705,
81,
11537,
355,
957,
25,
198,
220,
220,
220,
2315,
62,
7890,
7753,
796,
33918,
13,
46030,
7,
15643,
13,
961,
22446,
12501,
1098,
10786,
40477,
12,
23,
6,
4008,
198,
15003,
62,
7890,
796,
288,
291,
62,
12647,
62,
12501,
1098,
7,
15003,
62,
7890,
7753,
17816,
7890,
6,
4357,
2315,
62,
7890,
7753,
17816,
12647,
62,
8189,
6,
12962,
198,
15003,
62,
7890,
17816,
4475,
20520,
796,
279,
67,
13,
1462,
62,
19608,
8079,
7,
15003,
62,
7890,
17816,
4475,
6,
12962,
198,
42861,
62,
7890,
62,
4475,
796,
279,
67,
13,
1462,
62,
19608,
8079,
10786,
40838,
11537,
1303,
9806,
7,
15003,
62,
7890,
17816,
4475,
6,
12962,
198,
727,
395,
62,
4475,
62,
4475,
796,
279,
67,
13,
1462,
62,
19608,
8079,
10786,
23344,
1157,
486,
3256,
18982,
11639,
4,
56,
4,
76,
4,
67,
11537,
1303,
1084,
7,
15003,
62,
7890,
17816,
4475,
6,
12962,
198,
198,
15003,
62,
24886,
796,
705,
22840,
6,
220,
1303,
651,
4067,
198,
4480,
308,
13344,
13,
38,
13344,
8979,
7,
2302,
62,
7890,
16624,
17816,
6978,
20520,
1343,
1070,
62,
7890,
16624,
17816,
24886,
62,
1462,
62,
34345,
6,
7131,
15003,
62,
24886,
60,
1343,
705,
62,
8899,
13,
17752,
13,
34586,
3256,
705,
81,
11537,
355,
957,
25,
198,
220,
220,
220,
2315,
62,
8899,
7753,
796,
33918,
13,
46030,
7,
15643,
13,
961,
22446,
12501,
1098,
10786,
40477,
12,
23,
6,
4008,
198,
15003,
62,
8899,
796,
2315,
62,
8899,
7753,
17816,
7890,
20520,
198,
198,
2,
13610,
2723,
1366,
4645,
290,
41216,
1181,
3975,
198,
10459,
62,
34960,
796,
29201,
6601,
7416,
7,
15003,
62,
7890,
8,
198,
10459,
62,
8899,
796,
29201,
6601,
7416,
7,
15003,
62,
8899,
8,
198,
2,
5256,
589,
262,
10238,
1366,
284,
4646,
262,
27711,
3696,
1096,
357,
10594,
307,
9639,
2402,
2836,
9814,
7538,
8,
198,
10459,
62,
34960,
13,
7890,
796,
1391,
74,
25,
2723,
62,
34960,
13,
7890,
58,
74,
7131,
12,
17,
21912,
16,
60,
329,
479,
287,
2723,
62,
34960,
13,
7890,
92,
198,
198,
37811,
198,
2,
43313,
6889,
1812,
4823,
329,
7375,
11008,
1366,
198,
27193,
4841,
198,
37811,
198,
2,
5345,
8297,
38349,
7095,
198,
897,
62,
49196,
796,
1391,
198,
220,
220,
220,
705,
87,
10354,
357,
198,
220,
220,
220,
220,
220,
220,
220,
279,
67,
13,
14967,
27823,
13,
2197,
3419,
532,
279,
67,
13,
10430,
34519,
7,
41537,
28,
19,
828,
198,
220,
220,
220,
220,
220,
220,
220,
279,
67,
13,
14967,
27823,
13,
2197,
3419,
198,
220,
220,
220,
10612,
198,
92,
198,
2,
13610,
3785,
198,
79,
62,
34960,
796,
3785,
7,
87,
62,
22704,
62,
4906,
11639,
19608,
8079,
3256,
331,
62,
22704,
62,
4906,
2625,
29127,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3670,
11639,
7,
45081,
257,
1181,
319,
262,
3975,
2029,
284,
905,
262,
11188,
7375,
11008,
1366,
994,
8,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
7110,
62,
10394,
28,
7410,
11,
7110,
62,
17015,
28,
8054,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4899,
2625,
4464,
272,
11,
87,
6839,
11,
88,
22001,
62,
89,
4207,
11,
87,
22001,
62,
89,
4207,
11,
88,
3524,
62,
89,
4207,
11,
87,
3524,
62,
89,
4207,
11,
3524,
62,
89,
4207,
11,
42503,
1600,
4075,
62,
48728,
28,
14202,
11,
4075,
62,
7109,
363,
11639,
4464,
272,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
50149,
62,
24886,
11639,
9464,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
47016,
62,
14171,
11639,
9888,
62,
10394,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4843,
62,
10366,
952,
28,
17,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7424,
28,
17821,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
331,
62,
22704,
62,
24886,
11639,
3506,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
220,
1303,
2195,
570,
4899,
290,
787,
7825,
62,
89,
4207,
4277,
319,
198,
198,
2,
6889,
262,
2318,
290,
1627,
21528,
198,
10853,
746,
82,
796,
17635,
198,
34960,
62,
15003,
796,
1391,
198,
220,
220,
220,
705,
87,
10354,
705,
4475,
3256,
198,
220,
220,
220,
705,
10459,
10354,
220,
220,
2723,
62,
34960,
11,
198,
220,
220,
220,
705,
88,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
24561,
46890,
5673,
53,
5990,
24857,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
24561,
13739,
46890,
5673,
53,
5990,
24857,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
22595,
46890,
5673,
53,
940,
5990,
24857,
6,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
1455,
437,
62,
18242,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
21604,
1800,
25285,
357,
10464,
42781,
8,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
21604,
1800,
14199,
25285,
357,
10464,
42781,
8,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
20148,
82,
25285,
2124,
940,
357,
10464,
42781,
33047,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
1370,
62,
8043,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
445,
3256,
220,
1303,
285,
11463,
11,
198,
220,
220,
220,
220,
220,
220,
220,
705,
36022,
14809,
3256,
220,
1303,
3124,
62,
76,
11463,
11,
198,
220,
220,
220,
220,
220,
220,
220,
705,
17585,
6,
4357,
198,
220,
220,
220,
705,
1370,
62,
10394,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
604,
11,
604,
11,
604,
198,
220,
220,
220,
16589,
198,
220,
220,
220,
705,
1370,
62,
42460,
10354,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
39390,
3256,
705,
39390,
3256,
705,
39390,
6,
4357,
198,
220,
220,
220,
705,
3672,
10354,
685,
7061,
329,
1312,
287,
2837,
7,
15,
11,
513,
8,
4357,
198,
92,
198,
1640,
299,
11,
331,
287,
27056,
378,
7,
34960,
62,
15003,
17816,
88,
20520,
2599,
198,
220,
220,
220,
4823,
62,
15003,
17816,
3672,
6,
7131,
77,
60,
796,
331,
198,
198,
1640,
299,
11,
331,
287,
27056,
378,
7,
34960,
62,
15003,
17816,
88,
20520,
2599,
198,
220,
220,
220,
25874,
82,
13,
33295,
7,
198,
220,
220,
220,
220,
220,
220,
220,
279,
62,
34960,
13,
1370,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2723,
28,
34960,
62,
15003,
17816,
10459,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2124,
28,
34960,
62,
15003,
17816,
87,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
331,
28,
34960,
62,
15003,
17816,
88,
6,
7131,
77,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
8177,
62,
18242,
28,
34960,
62,
15003,
17816,
1455,
437,
62,
18242,
6,
7131,
77,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1627,
62,
8043,
28,
34960,
62,
15003,
17816,
1370,
62,
8043,
6,
7131,
77,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3124,
28,
34960,
62,
15003,
17816,
1370,
62,
8043,
6,
7131,
77,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1627,
62,
10394,
28,
34960,
62,
15003,
17816,
1370,
62,
10394,
6,
7131,
77,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1627,
62,
42460,
28,
34960,
62,
15003,
17816,
1370,
62,
42460,
6,
7131,
77,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1438,
28,
34960,
62,
15003,
17816,
3672,
6,
7131,
77,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
1267,
198,
79,
62,
34960,
13,
88,
22704,
58,
15,
4083,
687,
1436,
796,
31835,
1691,
51,
624,
8479,
1436,
7,
18982,
2625,
15,
11,
15,
13,
15,
4943,
198,
198,
2,
6075,
38342,
826,
16488,
6632,
11506,
198,
22570,
62,
12626,
796,
49101,
7,
198,
220,
220,
220,
4067,
28,
15,
11,
220,
1303,
49101,
262,
657,
1627,
286,
262,
826,
331,
16488,
198,
220,
220,
220,
15793,
11639,
10394,
3256,
1627,
62,
8043,
11639,
44605,
3256,
198,
220,
220,
220,
1627,
62,
42460,
11639,
39390,
3256,
1627,
62,
10394,
28,
18,
11,
1627,
62,
26591,
28,
15,
13,
19,
11,
198,
8,
198,
79,
62,
34960,
13,
2860,
62,
39786,
7,
22570,
62,
12626,
8,
198,
198,
2,
18168,
11506,
8849,
198,
32257,
796,
45941,
13,
16514,
276,
12514,
2414,
7,
19,
11,
705,
76,
11537,
198,
9310,
796,
45941,
13,
283,
858,
7,
897,
62,
49196,
17816,
87,
6,
7131,
15,
4357,
7877,
62,
49196,
17816,
87,
6,
7131,
16,
4357,
288,
4906,
11639,
19608,
8079,
2414,
58,
35,
60,
11537,
198,
2,
779,
286,
640,
89,
1952,
373,
390,
1050,
3474,
11,
878,
640,
11340,
28,
14202,
373,
2622,
198,
820,
796,
45941,
13,
16514,
276,
12514,
2414,
7,
16,
11,
705,
35,
11537,
198,
1640,
288,
287,
288,
82,
25,
198,
220,
220,
220,
611,
14808,
37659,
13,
16514,
276,
12514,
2414,
7,
9310,
13,
9806,
3419,
532,
288,
8,
1220,
1110,
8,
4064,
767,
8,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
40379,
796,
357,
37659,
13,
19608,
8079,
2414,
7,
67,
8,
532,
45941,
13,
19608,
8079,
2414,
10786,
30986,
12,
486,
12,
486,
51,
405,
25,
405,
25,
405,
6,
4008,
1220,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
45941,
13,
16514,
276,
12514,
2414,
7,
16,
11,
705,
82,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
266,
17946,
796,
40379,
1635,
8576,
220,
1303,
651,
262,
1285,
1317,
4067,
287,
257,
5794,
11670,
351,
37647,
198,
220,
220,
220,
220,
220,
220,
220,
279,
62,
34960,
13,
2860,
62,
39786,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
49101,
7,
24886,
28,
86,
17946,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15793,
11639,
17015,
3256,
1627,
62,
8043,
11639,
44605,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1627,
62,
42460,
11639,
67,
5263,
3256,
1627,
62,
10394,
28,
17,
11,
1627,
62,
26591,
28,
15,
13,
20,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15306,
198,
12626,
62,
1759,
62,
9150,
796,
49101,
7,
24886,
28,
42861,
62,
7890,
62,
4475,
11,
198,
220,
220,
220,
220,
15793,
11639,
17015,
3256,
1627,
62,
8043,
11639,
44605,
3256,
198,
220,
220,
220,
220,
1627,
62,
42460,
11639,
39390,
3256,
1627,
62,
10394,
28,
17,
11,
1627,
62,
26591,
28,
15,
13,
20,
11,
198,
220,
220,
220,
220,
1438,
11639,
12626,
62,
1759,
62,
9150,
11537,
198,
79,
62,
34960,
13,
2860,
62,
39786,
7,
12626,
62,
1759,
62,
9150,
8,
628,
198,
2,
1303,
1395,
16488,
33313,
25,
198,
79,
62,
34960,
13,
87,
62,
9521,
796,
13667,
16,
67,
7,
897,
62,
49196,
17816,
87,
6,
7131,
15,
4357,
7877,
62,
49196,
17816,
87,
6,
7131,
16,
12962,
198,
79,
62,
34960,
13,
87,
22704,
13,
22478,
62,
18242,
62,
13989,
341,
796,
532,
37659,
13,
14415,
1220,
513,
220,
1303,
1017,
415,
262,
14722,
198,
28664,
18982,
796,
36521,
65,
12,
4,
67,
1,
198,
79,
62,
34960,
13,
87,
22704,
13,
687,
1436,
796,
1296,
1436,
796,
16092,
8079,
51,
624,
8479,
1436,
7,
220,
1303,
16622,
905,
262,
976,
3128,
33313,
7692,
286,
19792,
198,
220,
220,
220,
1528,
28,
28664,
18982,
11,
198,
220,
220,
220,
1933,
28,
28664,
18982,
11,
198,
220,
220,
220,
2250,
28,
28664,
18982,
11,
198,
220,
220,
220,
2431,
28,
28664,
18982,
8,
198,
198,
2,
3060,
8177,
198,
2,
79,
62,
34960,
13,
1455,
437,
13,
24886,
796,
366,
4852,
62,
9464,
1,
198,
198,
2,
3060,
257,
20599,
2891,
198,
43753,
796,
38452,
25391,
3419,
198,
43753,
13,
25981,
41315,
796,
685,
198,
220,
220,
220,
1303,
10786,
6030,
3256,
17971,
3672,
12340,
198,
220,
220,
220,
19203,
3256,
705,
3,
3672,
25,
2488,
3,
3672,
90,
15,
11,
15,
44587,
319,
2488,
4475,
90,
4,
64,
12,
4,
65,
12,
4,
67,
92,
33809,
198,
60,
198,
2,
20599,
13,
14171,
796,
705,
85,
1370,
6,
198,
43753,
13,
18982,
1010,
796,
1391,
198,
220,
220,
220,
705,
31,
4475,
10354,
705,
19608,
8079,
3256,
220,
1303,
779,
705,
19608,
8079,
6,
1296,
1436,
329,
705,
31,
4475,
6,
2214,
198,
220,
220,
220,
705,
3,
3672,
10354,
705,
37435,
6,
220,
1303,
779,
705,
37435,
6,
1296,
1436,
329,
262,
1438,
286,
262,
5721,
198,
92,
198,
43753,
13,
10920,
19288,
796,
25874,
82,
198,
79,
62,
34960,
13,
2860,
62,
31391,
7,
43753,
8,
198,
198,
79,
62,
34960,
62,
10853,
746,
82,
796,
25874,
82,
198,
198,
37811,
198,
16626,
31122,
3124,
3975,
198,
27193,
4841,
198,
37811,
198,
18596,
5857,
796,
22278,
11645,
58,
12762,
21912,
16,
25,
20,
60,
198,
8043,
62,
76,
11463,
796,
44800,
10258,
44,
11463,
7,
198,
220,
220,
220,
27043,
28,
18596,
5857,
11,
1877,
28,
15,
11,
1029,
28,
1238,
1635,
18896,
7,
18596,
5857,
4008,
198,
198,
8043,
62,
5657,
796,
5315,
10374,
7,
198,
220,
220,
220,
3124,
62,
76,
11463,
28,
8043,
62,
76,
11463,
11,
198,
220,
220,
220,
6167,
62,
1481,
2364,
28,
17,
11,
4865,
62,
1370,
62,
8043,
28,
14202,
11,
4067,
16193,
15,
11,
657,
828,
198,
220,
220,
220,
2318,
62,
1370,
62,
26591,
28,
15,
13,
20,
11,
198,
220,
220,
220,
1688,
62,
18242,
62,
5239,
62,
31494,
11639,
9464,
3256,
198,
8,
198,
198,
37811,
198,
2,
6889,
262,
3975,
198,
27193,
4841,
198,
37811,
198,
79,
62,
8899,
796,
3785,
7,
198,
220,
220,
220,
3670,
28,
42861,
62,
7890,
62,
4475,
13,
2536,
31387,
10786,
4,
56,
12,
4,
76,
12,
4,
67,
33809,
198,
220,
220,
220,
1303,
2124,
62,
9521,
28,
1084,
9806,
7,
5258,
62,
6894,
82,
62,
8899,
13,
7890,
17816,
25306,
20520,
828,
331,
62,
9521,
28,
1084,
9806,
7,
5258,
62,
6894,
82,
62,
8899,
13,
7890,
17816,
88,
66,
20520,
828,
198,
220,
220,
220,
1303,
2124,
62,
9521,
16193,
12,
16,
13,
19,
68,
22,
12095,
22,
13,
19,
68,
21,
828,
198,
220,
220,
220,
1303,
331,
62,
9521,
16193,
17,
13,
3459,
68,
21,
11,
21,
13,
2078,
68,
21,
828,
198,
220,
220,
220,
1303,
47016,
62,
14171,
11639,
301,
22592,
62,
10394,
3256,
198,
220,
220,
220,
4899,
2625,
44335,
11,
6839,
11,
22001,
62,
89,
4207,
11,
42503,
11,
21928,
1600,
4075,
62,
44335,
11639,
44335,
3256,
198,
220,
220,
220,
50149,
62,
24886,
11639,
9464,
3256,
198,
220,
220,
220,
2124,
62,
22704,
62,
24886,
28,
14202,
11,
331,
62,
22704,
62,
24886,
28,
14202,
11,
198,
220,
220,
220,
2124,
62,
22704,
62,
4906,
2625,
647,
66,
1352,
1600,
331,
62,
22704,
62,
4906,
2625,
647,
66,
1352,
1600,
198,
220,
220,
220,
47016,
62,
14171,
11639,
9888,
62,
10394,
3256,
198,
220,
220,
220,
4843,
62,
10366,
952,
28,
17,
11,
198,
220,
220,
220,
2872,
62,
292,
806,
28,
17821,
11,
198,
8,
198,
79,
62,
8899,
13,
25928,
13,
25928,
62,
1370,
62,
8043,
796,
6045,
198,
65,
89,
25981,
62,
82,
796,
8315,
57,
4207,
25391,
7,
15699,
62,
292,
806,
28,
17821,
8,
198,
79,
62,
8899,
13,
2860,
62,
31391,
7,
65,
89,
25981,
62,
82,
8,
198,
79,
62,
8899,
13,
25981,
5657,
13,
5275,
62,
7109,
363,
796,
6045,
220,
1303,
275,
89,
25981,
62,
82,
198,
198,
2,
3060,
262,
3975,
19867,
198,
40927,
62,
15234,
1304,
796,
651,
62,
15234,
1304,
7,
34,
7227,
3727,
20866,
2640,
2043,
45806,
62,
26087,
28893,
8,
198,
79,
62,
8899,
13,
2860,
62,
40927,
7,
40927,
62,
15234,
1304,
8,
198,
198,
2,
3060,
262,
2585,
16,
198,
79,
62,
8899,
62,
3149,
3366,
796,
279,
62,
8899,
13,
41684,
62,
35428,
70,
684,
7,
198,
220,
220,
220,
2124,
82,
11639,
87,
3256,
331,
82,
11639,
88,
3256,
2723,
28,
10459,
62,
8899,
11,
198,
220,
220,
220,
6070,
62,
8043,
34758,
6,
3245,
10354,
705,
24561,
46890,
5673,
53,
5990,
24857,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
35636,
10354,
3124,
62,
76,
11463,
5512,
198,
220,
220,
220,
6070,
62,
26591,
28,
15,
13,
21,
11,
198,
220,
220,
220,
1627,
62,
8043,
2625,
11186,
1600,
198,
220,
220,
220,
1627,
62,
10394,
28,
16,
11,
198,
8,
198,
79,
62,
8899,
13,
2860,
62,
39786,
7,
8043,
62,
5657,
11,
705,
3506,
11537,
198,
2,
3060,
262,
20599,
2891,
284,
905,
262,
1181,
1438,
290,
1271,
286,
14683,
198,
43753,
76,
796,
38452,
25391,
3419,
198,
43753,
76,
13,
25981,
41315,
796,
685,
198,
220,
220,
220,
19203,
5376,
3256,
44212,
3672,
12340,
198,
220,
220,
220,
5855,
45251,
1600,
44212,
39748,
90,
15,
11,
15,
44587,
12340,
198,
220,
220,
220,
1303,
7203,
11297,
7375,
11008,
14370,
2430,
90,
92,
1911,
18982,
10786,
19355,
9,
1314,
36911,
198,
220,
220,
220,
19203,
21604,
1800,
35536,
3256,
44212,
24561,
90,
15,
11,
15,
44587,
12340,
198,
220,
220,
220,
19203,
6690,
2557,
35536,
3256,
44212,
8344,
2557,
90,
15,
11,
15,
44587,
12340,
198,
220,
220,
220,
19203,
21604,
1800,
14199,
35536,
3256,
44212,
24561,
13739,
90,
15,
11,
15,
44587,
12340,
198,
220,
220,
220,
19203,
20148,
82,
3256,
44212,
22595,
90,
15,
11,
15,
44587,
12340,
198,
60,
198,
79,
62,
8899,
13,
2860,
62,
31391,
7,
43753,
76,
8,
198,
198,
2,
3060,
256,
2373,
970,
284,
2922,
422,
543,
1181,
284,
905,
477,
262,
14683,
198,
4480,
1280,
7,
37495,
62,
6978,
1343,
705,
47423,
62,
8899,
13,
8457,
3256,
705,
81,
11537,
355,
277,
25,
198,
220,
220,
220,
23838,
62,
6894,
62,
8899,
796,
277,
13,
961,
3419,
198,
47423,
44335,
796,
8562,
20120,
7,
22046,
34758,
6,
2302,
62,
7890,
16624,
10354,
1070,
62,
7890,
16624,
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,
705,
79,
62,
34960,
62,
10853,
746,
82,
10354,
279,
62,
34960,
62,
10853,
746,
82,
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,
705,
79,
62,
34960,
10354,
279,
62,
34960,
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,
8964,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2438,
28,
47423,
62,
6894,
62,
8899,
8,
198,
83,
2373,
970,
796,
279,
62,
8899,
13,
19738,
7,
4906,
28,
45081,
25391,
8,
198,
83,
2373,
970,
13,
47423,
796,
23838,
44335,
198,
198,
2,
11884,
306,
41216,
2124,
2837,
198,
79,
62,
8899,
13,
87,
62,
9521,
796,
6060,
17257,
16,
67,
3419,
198,
198,
2,
43313,
6889,
1366,
28770,
13259,
319,
4274,
44335,
198,
79,
62,
34960,
13,
8457,
62,
261,
62,
15596,
10786,
23352,
44335,
3256,
8562,
20120,
7,
22046,
34758,
6,
79,
10354,
279,
62,
34960,
11,
8964,
2438,
2625,
15931,
198,
220,
220,
220,
279,
13,
42503,
13,
368,
270,
3419,
198,
220,
220,
220,
37227,
4008,
628,
198,
37811,
198,
2,
9347,
40803,
198,
10097,
3880,
198,
37811,
198,
2,
3497,
262,
23838,
4226,
973,
329,
867,
286,
262,
40803,
198,
4480,
1280,
7,
37495,
62,
6978,
1343,
705,
47423,
62,
8899,
62,
28029,
11407,
13,
8457,
3256,
705,
81,
11537,
355,
277,
25,
198,
220,
220,
220,
23838,
62,
28029,
11407,
796,
277,
13,
961,
3419,
198,
198,
2,
5684,
5243,
12163,
198,
37004,
62,
23912,
1424,
796,
14631,
11002,
3467,
84,
1495,
33,
21,
1600,
366,
8600,
3467,
84,
1954,
891,
1600,
366,
49991,
3467,
84,
1954,
69,
23,
8973,
198,
37004,
13247,
62,
1759,
62,
13716,
82,
796,
8829,
21864,
13247,
7,
198,
220,
220,
220,
14722,
28,
37004,
62,
23912,
1424,
11,
4075,
28,
17,
11,
1438,
11639,
37004,
13247,
62,
1759,
62,
13716,
82,
11537,
198,
37004,
13247,
62,
1759,
62,
13716,
82,
13,
8457,
62,
261,
62,
12976,
7,
15022,
20120,
7,
22046,
34758,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
15596,
10354,
705,
37004,
13247,
62,
1759,
62,
13716,
82,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
2302,
62,
7890,
16624,
10354,
1070,
62,
7890,
16624,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
3149,
3366,
10354,
279,
62,
8899,
62,
3149,
3366,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
10459,
62,
8899,
10354,
2723,
62,
8899,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
79,
62,
8899,
10354,
279,
62,
8899,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8964,
198,
220,
220,
220,
2438,
28,
47423,
62,
28029,
11407,
4008,
198,
198,
2,
43313,
6889,
3128,
2837,
28982,
198,
4475,
62,
9521,
62,
6649,
1304,
796,
7536,
17257,
11122,
1304,
7,
8367,
16193,
7,
42861,
62,
7890,
62,
4475,
12,
30094,
13,
10430,
34519,
7,
41537,
28,
16,
36911,
357,
42861,
62,
7890,
62,
4475,
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,
923,
16193,
727,
395,
62,
4475,
62,
4475,
828,
886,
16193,
42861,
62,
7890,
62,
4475,
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,
1438,
11639,
4475,
62,
9521,
62,
6649,
1304,
11537,
198,
4475,
62,
9521,
62,
6649,
1304,
13,
8457,
62,
261,
62,
3803,
7203,
8367,
1600,
8562,
20120,
7,
22046,
34758,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
15596,
10354,
705,
4475,
62,
9521,
62,
6649,
1304,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
2302,
62,
7890,
16624,
10354,
1070,
62,
7890,
16624,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
3149,
3366,
10354,
279,
62,
8899,
62,
3149,
3366,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
10459,
62,
8899,
10354,
2723,
62,
8899,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
79,
62,
8899,
10354,
279,
62,
8899,
11,
198,
5512,
198,
220,
220,
220,
2438,
28,
47423,
62,
28029,
11407,
198,
4008,
198,
198,
2,
1855,
388,
388,
640,
1022,
22407,
319,
711,
11,
1338,
5083,
198,
2777,
5083,
62,
1084,
8600,
7575,
796,
1338,
5083,
7,
7839,
2625,
1600,
198,
220,
220,
220,
1877,
28,
15,
11,
1029,
28,
20,
11,
2239,
28,
15,
13,
1495,
11,
1988,
28,
15,
13,
1495,
11,
9647,
28,
3064,
11,
18982,
28,
37,
19524,
51,
624,
8479,
1436,
7,
8189,
2625,
15931,
198,
220,
220,
220,
1441,
4378,
13,
1462,
10100,
3419,
10,
1,
792,
1,
198,
15931,
12340,
198,
220,
220,
220,
1438,
11639,
2777,
5083,
62,
1084,
8600,
7575,
11537,
198,
198,
2,
33556,
284,
34531,
319,
262,
4823,
198,
79,
62,
34960,
13,
8457,
62,
261,
62,
15596,
10786,
44335,
3256,
8562,
20120,
7,
22046,
34758,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
15596,
10354,
705,
34960,
62,
44335,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
2302,
62,
7890,
16624,
10354,
1070,
62,
7890,
16624,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
3149,
3366,
10354,
279,
62,
8899,
62,
3149,
3366,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
10459,
62,
8899,
10354,
2723,
62,
8899,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
79,
62,
8899,
10354,
279,
62,
8899,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
10459,
62,
34960,
10354,
2723,
62,
34960,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
79,
62,
34960,
10354,
279,
62,
34960,
11,
198,
5512,
198,
220,
220,
220,
2438,
28,
47423,
62,
28029,
11407,
198,
4008,
628,
198,
2,
5684,
5243,
12163,
198,
37004,
62,
23912,
1424,
796,
14631,
10603,
5684,
1600,
366,
42237,
5684,
1600,
366,
12332,
444,
5684,
8973,
198,
37004,
13247,
62,
5715,
62,
19738,
796,
8829,
21864,
13247,
7,
198,
220,
220,
220,
14722,
28,
37004,
62,
23912,
1424,
11,
4075,
28,
15,
11,
1438,
11639,
37004,
13247,
62,
5715,
62,
19738,
11537,
198,
37004,
13247,
62,
5715,
62,
19738,
13,
8457,
62,
261,
62,
12976,
7,
15022,
20120,
7,
22046,
34758,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
15596,
10354,
705,
5715,
62,
19738,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
3149,
3366,
10354,
279,
62,
8899,
62,
3149,
3366,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
2302,
62,
7890,
16624,
10354,
1070,
62,
7890,
16624,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
10459,
62,
8899,
10354,
2723,
62,
8899,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
79,
62,
8899,
10354,
279,
62,
8899,
11,
198,
5512,
198,
220,
220,
220,
2438,
28,
47423,
62,
28029,
11407,
4008,
198,
198,
2,
17489,
284,
691,
766,
29843,
1294,
198,
35415,
62,
27219,
796,
685,
198,
220,
220,
220,
705,
49177,
11,
1294,
3256,
705,
40732,
11,
1294,
3256,
705,
42007,
6618,
11,
1294,
3256,
705,
25284,
11,
1294,
3256,
705,
41330,
11,
1294,
3256,
705,
13313,
13554,
11,
1294,
3256,
705,
13856,
9685,
11,
1294,
3256,
705,
44857,
286,
9309,
11,
1294,
3256,
705,
31135,
11,
1294,
3256,
705,
41072,
11,
1294,
3256,
705,
7390,
17108,
11,
1294,
3256,
705,
21478,
8981,
11,
1294,
3256,
705,
49153,
11,
1294,
3256,
705,
45186,
11,
1294,
3256,
705,
43451,
11,
1294,
3256,
705,
42265,
5309,
11,
1294,
3256,
705,
32117,
7484,
11,
1294,
3256,
705,
44,
5718,
11,
1294,
3256,
705,
24119,
1044,
11,
1294,
3256,
705,
20273,
9770,
11,
1294,
3256,
705,
40610,
11,
1294,
3256,
705,
45670,
11,
1294,
3256,
705,
17140,
747,
12715,
11,
1294,
3256,
705,
17140,
10300,
11,
1294,
3256,
705,
26031,
2271,
11,
1294,
3256,
705,
8199,
17088,
11,
1294,
3256,
705,
43555,
4763,
11,
1294,
3256,
705,
3791,
13910,
11,
1294,
3256,
705,
3791,
8221,
11,
1294,
3256,
705,
3791,
5828,
11,
1294,
3256,
705,
3791,
1971,
11,
1294,
3256,
705,
14157,
5913,
11,
1294,
3256,
705,
14157,
13336,
11,
1294,
3256,
705,
31274,
11,
1294,
3256,
705,
18690,
9802,
11,
1294,
3256,
705,
41243,
11,
1294,
3256,
705,
39899,
9270,
11,
1294,
3256,
705,
38576,
1098,
5451,
11,
1294,
3256,
705,
14942,
5913,
11,
1294,
3256,
705,
14942,
13336,
11,
1294,
3256,
705,
43139,
10702,
11,
1294,
3256,
705,
21607,
11,
1294,
3256,
705,
44350,
11,
1294,
3256,
705,
53,
7780,
756,
11,
1294,
3256,
705,
41017,
11,
1294,
3256,
705,
17402,
11,
1294,
3256,
705,
15045,
6025,
11,
1294,
3256,
705,
49097,
11,
1294,
3256,
705,
54,
88,
3383,
11,
1294,
20520,
198,
198,
16539,
62,
35415,
62,
385,
62,
8807,
796,
34098,
7,
18242,
2625,
17875,
2470,
1294,
5514,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7424,
28,
17821,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4936,
62,
4906,
11639,
12286,
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,
1438,
11639,
16539,
62,
35415,
62,
385,
62,
8807,
11537,
198,
16539,
62,
35415,
62,
385,
62,
8807,
13,
8457,
62,
261,
62,
3803,
10786,
5275,
3256,
8562,
20120,
7,
22046,
34758,
198,
220,
220,
220,
705,
15596,
10354,
6,
16539,
62,
35415,
62,
385,
62,
8807,
3256,
198,
220,
220,
220,
705,
3149,
3366,
10354,
279,
62,
8899,
62,
3149,
3366,
11,
198,
220,
220,
220,
705,
2302,
62,
7890,
16624,
10354,
1070,
62,
7890,
16624,
11,
198,
220,
220,
220,
705,
10459,
62,
8899,
10354,
2723,
62,
8899,
11,
198,
220,
220,
220,
705,
79,
62,
8899,
10354,
279,
62,
8899,
11,
198,
220,
220,
220,
705,
35415,
62,
27219,
10354,
29843,
62,
27219,
11,
198,
5512,
2438,
28,
47423,
62,
28029,
11407,
4008,
198,
198,
2,
9683,
669,
329,
262,
3975,
198,
19738,
669,
62,
8899,
796,
17635,
198,
404,
912,
796,
685,
74,
329,
479,
287,
2315,
62,
7890,
13,
13083,
3419,
611,
318,
39098,
7,
15003,
62,
7890,
58,
74,
7131,
15,
4357,
493,
8,
198,
220,
220,
220,
220,
220,
220,
220,
393,
318,
39098,
7,
15003,
62,
7890,
58,
74,
7131,
15,
4357,
12178,
15437,
198,
404,
912,
796,
23243,
7,
404,
912,
8,
198,
19738,
796,
9683,
7,
7839,
2625,
6601,
1114,
9347,
1623,
3255,
25,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1988,
28,
79,
62,
8899,
62,
3149,
3366,
13,
10853,
746,
13,
20797,
62,
8043,
17816,
3245,
6,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3689,
28,
404,
912,
8,
198,
19738,
13,
8457,
62,
261,
62,
3803,
7203,
8367,
1600,
8562,
20120,
7,
22046,
34758,
198,
220,
220,
220,
705,
2302,
62,
7890,
16624,
10354,
1070,
62,
7890,
16624,
11,
198,
220,
220,
220,
705,
3149,
3366,
10354,
279,
62,
8899,
62,
3149,
3366,
11,
198,
5512,
2438,
2625,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
3373,
41947,
13,
6404,
10786,
19738,
25,
1988,
11639,
1343,
428,
13,
8367,
11,
428,
13,
1462,
10100,
28955,
198,
220,
220,
220,
220,
220,
220,
220,
29034,
3366,
13,
10853,
746,
13,
20797,
62,
8043,
13,
3245,
796,
428,
13,
8367,
198,
220,
220,
220,
220,
220,
220,
220,
29034,
3366,
13,
7890,
62,
10459,
13,
3803,
13,
368,
270,
3419,
198,
220,
220,
220,
37227,
4008,
198,
19738,
669,
62,
8899,
13,
33295,
7,
19738,
8,
198,
198,
2,
13667,
4634,
329,
3975,
198,
8899,
62,
9521,
62,
28029,
11407,
796,
17635,
198,
5239,
62,
15414,
796,
8255,
20560,
7,
8367,
28,
2536,
7,
8043,
62,
76,
11463,
13,
8929,
828,
3670,
2625,
11922,
5315,
4943,
198,
5239,
62,
15414,
13,
8457,
62,
261,
62,
3803,
7203,
8367,
1600,
8562,
20120,
7,
22046,
34758,
198,
220,
220,
220,
705,
2302,
62,
7890,
16624,
10354,
1070,
62,
7890,
16624,
11,
198,
220,
220,
220,
705,
8043,
62,
76,
11463,
10354,
3124,
62,
76,
11463,
11,
198,
5512,
2438,
2625,
15931,
198,
220,
220,
220,
3124,
62,
76,
11463,
13,
8929,
796,
7913,
7,
5661,
13,
8367,
8,
198,
37811,
4008,
198,
8899,
62,
9521,
62,
28029,
11407,
13,
33295,
7,
5239,
62,
15414,
8,
198,
5239,
62,
15414,
796,
8255,
20560,
7,
8367,
28,
2536,
7,
8043,
62,
76,
11463,
13,
9319,
828,
3670,
2625,
20535,
5315,
4943,
198,
5239,
62,
15414,
13,
8457,
62,
261,
62,
3803,
7203,
8367,
1600,
8562,
20120,
7,
22046,
34758,
198,
220,
220,
220,
705,
2302,
62,
7890,
16624,
10354,
1070,
62,
7890,
16624,
11,
198,
220,
220,
220,
705,
8043,
62,
76,
11463,
10354,
3124,
62,
76,
11463,
11,
198,
5512,
2438,
2625,
15931,
198,
220,
220,
220,
220,
3124,
62,
76,
11463,
13,
9319,
796,
7913,
7,
5661,
13,
8367,
8,
198,
37811,
4008,
198,
8899,
62,
9521,
62,
28029,
11407,
13,
33295,
7,
5239,
62,
15414,
8,
198,
198,
37811,
198,
2,
6910,
4823,
40803,
198,
10097,
3880,
198,
37811,
198,
2,
9683,
669,
329,
262,
1627,
28770,
198,
19738,
669,
62,
34960,
796,
17635,
198,
404,
912,
796,
685,
74,
329,
479,
287,
2315,
62,
7890,
13,
13083,
3419,
611,
318,
39098,
7,
15003,
62,
7890,
58,
74,
7131,
15,
4357,
493,
8,
198,
220,
220,
220,
220,
220,
220,
220,
393,
318,
39098,
7,
15003,
62,
7890,
58,
74,
7131,
15,
4357,
12178,
15437,
198,
404,
912,
796,
23243,
7,
404,
912,
8,
198,
1640,
299,
11,
308,
287,
27056,
378,
7,
79,
62,
34960,
62,
10853,
746,
82,
2599,
198,
220,
220,
220,
2922,
796,
9683,
7,
7839,
2625,
33172,
220,
1303,
3670,
2625,
6601,
1114,
6910,
43825,
2536,
7,
77,
10,
16,
47762,
1298,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1988,
28,
70,
13,
10853,
746,
13,
88,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3689,
28,
404,
912,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4469,
28,
70,
13,
10853,
746,
13,
1370,
62,
8043,
35751,
198,
220,
220,
220,
2922,
13,
8457,
62,
261,
62,
3803,
7203,
8367,
1600,
8562,
20120,
7,
22046,
34758,
198,
220,
220,
220,
220,
220,
220,
220,
705,
2302,
62,
7890,
16624,
10354,
1070,
62,
7890,
16624,
11,
198,
220,
220,
220,
220,
220,
220,
220,
705,
1370,
10354,
308,
11,
198,
220,
220,
220,
8964,
2438,
2625,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
3373,
41947,
13,
6404,
10786,
19738,
25,
1988,
11639,
1343,
428,
13,
8367,
11,
428,
13,
1462,
10100,
28955,
198,
220,
220,
220,
220,
220,
220,
220,
1627,
13,
10853,
746,
13,
88,
13,
3245,
796,
428,
13,
8367,
198,
220,
220,
220,
220,
220,
220,
220,
1627,
13,
7890,
62,
10459,
13,
3803,
13,
368,
270,
3419,
198,
220,
220,
220,
37227,
4008,
198,
220,
220,
220,
2922,
669,
62,
34960,
13,
33295,
7,
19738,
8,
198,
198,
2,
43313,
6889,
9087,
329,
262,
2187,
1517,
198,
37811,
198,
2,
43313,
6889,
9087,
329,
262,
2187,
1517,
198,
37811,
198,
33878,
796,
4777,
7,
5239,
2625,
15931,
198,
27,
71,
16,
29,
370,
727,
9347,
3226,
7375,
11008,
6060,
2080,
20133,
14435,
1143,
3862,
7443,
7359,
71,
16,
29,
198,
27,
79,
29,
2484,
1666,
477,
262,
2678,
16396,
1864,
284,
938,
2745,
2811,
1271,
286,
649,
7375,
11008,
12,
1129,
2663,
583,
1110,
351,
1499,
3265,
3487,
1634,
220,
357,
17618,
286,
661,
583,
1510,
737,
3556,
79,
29,
198,
27,
377,
29,
198,
197,
27,
4528,
29,
48708,
3124,
1271,
24866,
284,
5443,
4104,
286,
262,
9471,
25970,
4528,
29,
198,
220,
220,
220,
1279,
4528,
29,
2202,
262,
1364,
286,
1123,
4823,
262,
430,
389,
4899,
284,
19792,
14,
6839,
14,
42503,
14,
21928,
25970,
4528,
29,
198,
197,
27,
4528,
29,
2202,
12173,
25,
5765,
734,
7660,
284,
10743,
262,
2443,
25970,
4528,
29,
198,
220,
220,
220,
1279,
4528,
29,
6601,
938,
6153,
319,
25,
1391,
7890,
62,
19119,
92,
7359,
4528,
29,
198,
220,
220,
220,
1279,
4528,
29,
37065,
82,
7560,
319,
25,
1391,
34960,
62,
19119,
92,
7359,
4528,
29,
198,
220,
220,
220,
1279,
4528,
29,
6690,
6560,
1366,
329,
2678,
318,
23485,
13,
220,
8554,
7746,
286,
5561,
1315,
12545,
284,
7628,
329,
883,
326,
836,
470,
4656,
25970,
4528,
29,
198,
3556,
377,
29,
198,
198,
27,
71,
18,
29,
16880,
319,
597,
1499,
284,
905,
262,
7375,
11008,
1129,
1366,
640,
2106,
4823,
2174,
13,
7359,
71,
18,
29,
198,
15931,
1911,
18982,
7,
198,
220,
220,
220,
1366,
62,
19119,
28,
30094,
13,
1462,
62,
19608,
8079,
7,
42861,
62,
7890,
62,
4475,
737,
2536,
31387,
10786,
4,
56,
12,
4,
76,
12,
4,
67,
33809,
198,
220,
220,
220,
4823,
62,
19119,
28,
30094,
13,
14967,
27823,
13,
2197,
22446,
2536,
31387,
10786,
4,
56,
12,
4,
76,
12,
4,
67,
33809,
198,
4008,
198,
198,
5898,
263,
796,
4777,
7,
5239,
2625,
15931,
198,
27,
71,
18,
29,
26406,
7359,
71,
18,
29,
198,
27,
377,
29,
198,
220,
220,
220,
1279,
4528,
29,
38,
270,
16066,
16099,
329,
428,
1628,
25,
1279,
64,
13291,
2625,
5450,
1378,
12567,
13,
785,
14,
83,
704,
4372,
418,
14,
66,
709,
312,
12,
8899,
5320,
3740,
1378,
12567,
13,
785,
14,
83,
704,
4372,
418,
14,
66,
709,
312,
12,
8899,
7359,
64,
28401,
7359,
4528,
29,
198,
220,
220,
220,
1279,
4528,
29,
11547,
771,
1262,
11361,
351,
347,
2088,
71,
290,
584,
13103,
25970,
4528,
29,
198,
197,
27,
4528,
29,
33921,
27465,
6060,
422,
1279,
64,
13291,
2625,
4023,
1378,
2503,
13,
11802,
16442,
7890,
13,
785,
14,
5320,
35364,
3668,
3556,
64,
29,
25970,
4528,
29,
198,
197,
27,
4528,
29,
8220,
11008,
12,
1129,
6060,
319,
34906,
422,
1279,
64,
13291,
2625,
5450,
1378,
10215,
261,
615,
19397,
13,
73,
13415,
13,
15532,
5320,
464,
1757,
21183,
2059,
2744,
261,
615,
19397,
20857,
3337,
3556,
64,
29,
198,
220,
220,
220,
220,
393,
319,
1279,
64,
13291,
2625,
5450,
1378,
12567,
13,
785,
14,
7902,
5188,
38,
1797,
392,
6601,
14,
8220,
11008,
12,
1129,
5320,
38,
270,
16066,
3556,
64,
29,
25970,
4528,
29,
198,
3556,
377,
29,
198,
15931,
4943,
198,
198,
7890,
62,
17815,
796,
4777,
7,
5239,
2625,
15931,
198,
27,
71,
19,
29,
6060,
2896,
600,
507,
25,
7359,
71,
19,
29,
198,
27,
377,
29,
198,
220,
220,
220,
1279,
4528,
29,
7293,
16873,
351,
262,
1279,
64,
13291,
2625,
5450,
1378,
66,
709,
312,
36280,
13,
785,
14,
10755,
12,
7890,
14,
7890,
12,
4299,
50101,
5320,
7375,
11008,
37169,
4935,
1366,
825,
600,
507,
3556,
64,
28401,
7359,
4528,
29,
198,
220,
220,
220,
1279,
4528,
29,
12332,
1678,
743,
423,
4600,
24561,
47671,
4600,
22595,
47671,
4600,
8344,
2557,
47671,
290,
511,
28486,
1695,
25970,
4528,
29,
198,
220,
220,
220,
1279,
4528,
29,
14053,
2585,
423,
749,
14,
439,
262,
1366,
1695,
25970,
4528,
29,
198,
220,
220,
220,
1279,
4528,
29,
14053,
14683,
286,
9756,
743,
423,
4600,
24561,
47671,
4600,
22595,
47671,
4600,
8344,
2557,
47671,
290,
511,
28486,
1695,
25970,
4528,
29,
198,
220,
220,
220,
1279,
4528,
29,
63,
8344,
2557,
63,
318,
6108,
810,
407,
1695,
355,
4600,
24561,
63,
12,
63,
22595,
63,
706,
1315,
1528,
25970,
4528,
29,
198,
220,
220,
220,
1279,
4528,
29,
14053,
14683,
466,
407,
423,
4600,
8344,
2557,
63,
2098,
1366,
11,
484,
389,
7746,
25970,
4528,
29,
198,
197,
27,
4528,
29,
63,
24561,
13739,
63,
43397,
4600,
24561,
63,
12,
63,
8344,
2557,
63,
12,
63,
22595,
63,
25970,
4528,
29,
198,
220,
220,
220,
1279,
4528,
29,
50,
1648,
844,
286,
4600,
5673,
53,
63,
43397,
257,
530,
1285,
3867,
2811,
25970,
4528,
29,
198,
220,
220,
220,
1279,
4528,
29,
50,
1648,
844,
286,
4600,
940,
63,
43397,
33096,
416,
838,
25970,
4528,
29,
198,
197,
27,
4528,
29,
50,
1648,
844,
286,
4600,
5990,
24857,
63,
43397,
3265,
3487,
1634,
357,
19276,
684,
583,
1510,
737,
3556,
4528,
29,
198,
3556,
377,
29,
198,
15931,
4943,
198,
198,
2,
43313,
29176,
477,
262,
28770,
198,
37811,
198,
2,
43313,
29176,
477,
262,
28770,
198,
27193,
4841,
198,
37811,
198,
198,
2,
47639,
262,
5538,
290,
905,
606,
198,
79,
62,
8899,
13,
82,
2890,
62,
14171,
796,
705,
9888,
62,
10394,
6,
198,
79,
62,
34960,
13,
82,
2890,
62,
14171,
796,
705,
9888,
62,
10394,
6,
198,
198,
361,
18896,
7,
17597,
13,
853,
85,
8,
855,
16,
25,
198,
220,
220,
220,
3601,
10786,
23874,
1729,
12,
24896,
5072,
2196,
11537,
198,
220,
220,
220,
300,
448,
796,
12461,
26933,
33878,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
19738,
669,
62,
8899,
1343,
3975,
62,
9521,
62,
28029,
11407,
1343,
685,
37004,
13247,
62,
5715,
62,
19738,
60,
1343,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
16539,
62,
35415,
62,
385,
62,
8807,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
10,
58,
4561,
11736,
7,
25249,
11639,
13424,
3256,
17015,
28,
17,
15437,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1343,
58,
24095,
7,
5239,
2625,
27,
16159,
6927,
72,
29,
3862,
7443,
23535,
7359,
72,
12240,
16159,
29,
4943,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
10,
58,
4561,
11736,
7,
25249,
11639,
13424,
3256,
17015,
28,
17,
15437,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1343,
30109,
2777,
5083,
62,
1084,
8600,
7575,
11,
37004,
13247,
62,
1759,
62,
13716,
82,
60,
837,
4475,
62,
9521,
62,
6649,
1304,
4357,
279,
62,
8899,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
19738,
669,
62,
34960,
10,
58,
7890,
62,
17815,
4357,
279,
62,
34960,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2366,
263,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
33761,
198,
220,
220,
220,
300,
448,
13,
36153,
796,
357,
19,
11,
1160,
11,
604,
11,
1160,
8,
220,
1303,
1353,
11,
826,
11,
4220,
11,
1364,
198,
220,
220,
220,
300,
448,
13,
82,
2890,
62,
14171,
796,
705,
9888,
62,
10394,
6,
198,
220,
220,
220,
3613,
7,
75,
448,
11,
11055,
28,
28243,
62,
2302,
62,
8457,
7,
17816,
73,
421,
560,
3256,
705,
79,
25496,
20520,
4008,
198,
220,
220,
220,
1303,
1570,
7,
22915,
62,
34345,
10,
4458,
6494,
11537,
198,
220,
220,
220,
1303,
1570,
10786,
4023,
1378,
36750,
25,
3695,
405,
14,
6,
10,
36750,
62,
6978,
10,
5661,
62,
34345,
10,
4458,
6494,
11537,
198,
198,
417,
361,
25064,
13,
853,
85,
58,
16,
60,
855,
6,
24896,
10354,
198,
220,
220,
220,
3601,
10786,
23874,
5175,
5072,
2196,
11537,
198,
220,
220,
220,
300,
448,
62,
24896,
796,
12461,
26933,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9087,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
19738,
669,
62,
8899,
48688,
8899,
62,
9521,
62,
28029,
11407,
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,
685,
37004,
13247,
62,
5715,
62,
19738,
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,
4936,
62,
35415,
62,
385,
62,
8807,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
279,
62,
8899,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
685,
2777,
5083,
62,
1084,
8600,
7575,
11,
37004,
13247,
62,
1759,
62,
13716,
82,
837,
4475,
62,
9521,
62,
6649,
1304,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
279,
62,
34960,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16410,
58,
19738,
669,
62,
34960,
60,
4357,
7890,
62,
17815,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2366,
263,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
33761,
198,
220,
220,
220,
300,
448,
62,
24896,
13,
36153,
796,
357,
19,
11,
1160,
11,
604,
11,
1160,
8,
220,
1303,
1353,
11,
826,
11,
4220,
11,
1364,
198,
220,
220,
220,
300,
448,
62,
24896,
13,
82,
2890,
62,
14171,
796,
705,
9888,
62,
10394,
6,
198,
220,
220,
220,
3613,
7,
75,
448,
62,
24896,
11,
34345,
28,
22915,
62,
34345,
10,
6,
62,
24896,
13,
6494,
3256,
28243,
28,
28243,
62,
2302,
62,
8457,
7,
17816,
73,
421,
560,
3256,
705,
79,
25496,
20520,
4008,
198
] | 2.476331 | 8,830 |
from django.conf.urls import url
from . import views
app_name = 'blog'
urlpatterns=[
url(r'^$',views.index,name='index'),
url(r'^post/(?P<pk>[0-9]+)/$',views.detail,name='detail'),
]
| [
6738,
42625,
14208,
13,
10414,
13,
6371,
82,
1330,
19016,
198,
198,
6738,
764,
1330,
5009,
198,
198,
1324,
62,
3672,
796,
705,
14036,
6,
198,
6371,
33279,
82,
41888,
198,
220,
220,
220,
19016,
7,
81,
6,
61,
3,
3256,
33571,
13,
9630,
11,
3672,
11639,
9630,
33809,
198,
220,
220,
220,
19016,
7,
81,
6,
61,
7353,
29006,
30,
47,
27,
79,
74,
36937,
15,
12,
24,
48688,
20679,
3,
3256,
33571,
13,
49170,
11,
3672,
11639,
49170,
33809,
198,
60,
198
] | 2.297619 | 84 |
"""Selector
"""
from reversi.strategies.common import AbstractSelector
class Selector(AbstractSelector):
"""Selector
"""
def select_moves(self, color, board, moves, scores, depth):
"""select_moves
"""
return moves
class Selector_W(Selector):
"""Selector_W
ワースト値に基づいて手を絞る
"""
def select_moves(self, color, board, moves, scores, depth):
"""select_moves
"""
moves = super().select_moves(color, board, moves, scores, depth)
if depth >= self.depth: # 一定以上の深さの場合
worst_score = min([score for score in scores.values()])
worst_moves = [key for key in scores.keys() if scores[key] == worst_score]
# 次の手の候補数がリミット以上の間は絞る
if len(moves) - len(worst_moves) >= self.limit:
for worst_move in worst_moves:
moves.remove(worst_move) # 最もスコアの低い手を削除
return moves
| [
37811,
17563,
273,
198,
37811,
198,
198,
6738,
10372,
72,
13,
2536,
2397,
444,
13,
11321,
1330,
27741,
17563,
273,
628,
198,
4871,
9683,
273,
7,
23839,
17563,
273,
2599,
198,
220,
220,
220,
37227,
17563,
273,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
825,
2922,
62,
76,
5241,
7,
944,
11,
3124,
11,
3096,
11,
6100,
11,
8198,
11,
6795,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
19738,
62,
76,
5241,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
6100,
628,
198,
4871,
9683,
273,
62,
54,
7,
17563,
273,
2599,
198,
220,
220,
220,
37227,
17563,
273,
62,
54,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14524,
107,
6312,
43302,
161,
222,
97,
28618,
161,
253,
118,
2515,
98,
18566,
28134,
33699,
233,
31758,
163,
113,
252,
25748,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
825,
2922,
62,
76,
5241,
7,
944,
11,
3124,
11,
3096,
11,
6100,
11,
8198,
11,
6795,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
19738,
62,
76,
5241,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
6100,
796,
2208,
22446,
19738,
62,
76,
5241,
7,
8043,
11,
3096,
11,
6100,
11,
8198,
11,
6795,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
6795,
18189,
2116,
13,
18053,
25,
220,
1303,
220,
31660,
22522,
248,
20015,
98,
41468,
27032,
115,
109,
43357,
15474,
254,
112,
28938,
230,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5290,
62,
26675,
796,
949,
26933,
26675,
329,
4776,
287,
8198,
13,
27160,
3419,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5290,
62,
76,
5241,
796,
685,
2539,
329,
1994,
287,
8198,
13,
13083,
3419,
611,
8198,
58,
2539,
60,
6624,
5290,
62,
26675,
60,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
10545,
105,
94,
27032,
231,
233,
15474,
222,
247,
32518,
250,
46763,
108,
35585,
12675,
27542,
35799,
20015,
98,
41468,
33426,
244,
241,
31676,
163,
113,
252,
25748,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
18896,
7,
76,
5241,
8,
532,
18896,
7,
41430,
62,
76,
5241,
8,
18189,
2116,
13,
32374,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
5290,
62,
21084,
287,
5290,
62,
76,
5241,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6100,
13,
28956,
7,
41430,
62,
21084,
8,
220,
1303,
42164,
222,
43266,
8943,
24679,
11839,
5641,
19526,
236,
18566,
33699,
233,
31758,
30298,
232,
165,
247,
97,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
6100,
198
] | 1.960251 | 478 |
"""Video output tools for turnovertools."""
import ffmpeg
from timecode import Timecode
class VideoFile(object):
"""A videofile which can either be imported or exported from."""
| [
37811,
10798,
5072,
4899,
329,
1210,
78,
1851,
10141,
526,
15931,
198,
198,
11748,
31246,
43913,
198,
6738,
640,
8189,
1330,
3862,
8189,
198,
198,
4871,
7623,
8979,
7,
15252,
2599,
198,
220,
220,
220,
37227,
32,
2008,
7753,
543,
460,
2035,
307,
17392,
393,
29050,
422,
526,
15931,
628
] | 3.7 | 50 |
# Generated by Django 2.2.2 on 2019-06-22 20:32
from django.db import migrations
| [
2,
2980,
515,
416,
37770,
362,
13,
17,
13,
17,
319,
13130,
12,
3312,
12,
1828,
1160,
25,
2624,
198,
198,
6738,
42625,
14208,
13,
9945,
1330,
15720,
602,
628
] | 2.766667 | 30 |
from flask import Blueprint, render_template, request
from webapp.methods import get_news
blueprint = Blueprint('news', __name__, url_prefix='/news')
@blueprint.route('/news', methods=['GET'])
@blueprint.route('/news/<int:id>', methods=['GET'])
| [
6738,
42903,
1330,
39932,
11,
8543,
62,
28243,
11,
2581,
198,
6738,
3992,
1324,
13,
24396,
82,
1330,
651,
62,
10827,
198,
198,
17585,
4798,
796,
39932,
10786,
10827,
3256,
11593,
3672,
834,
11,
19016,
62,
40290,
11639,
14,
10827,
11537,
628,
198,
31,
17585,
4798,
13,
38629,
10786,
14,
10827,
3256,
5050,
28,
17816,
18851,
6,
12962,
198,
31,
17585,
4798,
13,
38629,
10786,
14,
10827,
14,
27,
600,
25,
312,
29,
3256,
5050,
28,
17816,
18851,
6,
12962,
198
] | 3.061728 | 81 |
from typing import Any, Dict, Tuple
from eth_typing.evm import ChecksumAddress
from trezorlib import ethereum # type: ignore
from trezorlib.client import get_default_client # type: ignore
from trezorlib.exceptions import PinException, TrezorFailure # type: ignore
from trezorlib.messages import TransactionType # type: ignore
from trezorlib.tools import parse_path as parse_hdpath # type: ignore
from trezorlib.transport import TransportException # type: ignore
from ape_trezor.exceptions import (
TrezorAccountException,
TrezorClientConnectionError,
TrezorClientError,
)
from ape_trezor.hdpath import HDBasePath, HDPath
class TrezorClient:
"""
This class is a client for the Trezor device.
"""
def extract_signature_vrs_bytes(signature_bytes: bytes) -> Tuple[int, bytes, bytes]:
"""
Breaks `signature_bytes` into 3 chunks vrs, where `v` is 1 byte, `r` is 32
bytes, and `s` is 32 bytes.
"""
if signature_bytes is None:
raise TrezorClientError("No data in signature bytes.")
return signature_bytes[-1], signature_bytes[:32], signature_bytes[32:64]
class TrezorAccountClient:
"""
This class represents an account on the Trezor device when you know the full
account HD path.
"""
@property
def sign_personal_message(self, message: bytes) -> Tuple[int, bytes, bytes]:
"""
Sign an Ethereum message only following the EIP 191 specification and
using your Trezor device. You will need to follow the prompts on the device
to validate the message data.
"""
ethereum_message_signature = ethereum.sign_message(
self.client, parse_hdpath(self._account_hd_path.path), message
)
return extract_signature_vrs_bytes(signature_bytes=ethereum_message_signature.signature)
# TODO: Uncomment when Trezor has released the EIP 712 update
# def sign_typed_data(self, domain_hash: bytes, message_hash: bytes)
# -> Tuple[int, bytes, bytes]:
# """
# Sign an Ethereum message following the EIP 712 specification.
# """
# ethereum_typed_data_signature = ethereum.sign_typed_data_hash(
# self.client, parse_hdpath(self._account_hd_path.path), domain_hash, message_hash
# )
# return extract_signature_vrs_bytes(
# signature_bytes=ethereum_typed_data_signature.signature)
__all__ = [
"TrezorClient",
"TrezorAccountClient",
]
| [
6738,
19720,
1330,
4377,
11,
360,
713,
11,
309,
29291,
198,
198,
6738,
4555,
62,
774,
13886,
13,
1990,
76,
1330,
47719,
388,
20231,
198,
6738,
2054,
89,
273,
8019,
1330,
304,
17733,
220,
1303,
2099,
25,
8856,
198,
6738,
2054,
89,
273,
8019,
13,
16366,
1330,
651,
62,
12286,
62,
16366,
220,
1303,
2099,
25,
8856,
198,
6738,
2054,
89,
273,
8019,
13,
1069,
11755,
1330,
13727,
16922,
11,
4700,
89,
273,
50015,
220,
1303,
2099,
25,
8856,
198,
6738,
2054,
89,
273,
8019,
13,
37348,
1095,
1330,
45389,
6030,
220,
1303,
2099,
25,
8856,
198,
6738,
2054,
89,
273,
8019,
13,
31391,
1330,
21136,
62,
6978,
355,
21136,
62,
31298,
6978,
220,
1303,
2099,
25,
8856,
198,
6738,
2054,
89,
273,
8019,
13,
7645,
634,
1330,
19940,
16922,
220,
1303,
2099,
25,
8856,
198,
198,
6738,
43835,
62,
83,
21107,
273,
13,
1069,
11755,
1330,
357,
198,
220,
220,
220,
4700,
89,
273,
30116,
16922,
11,
198,
220,
220,
220,
4700,
89,
273,
11792,
32048,
12331,
11,
198,
220,
220,
220,
4700,
89,
273,
11792,
12331,
11,
198,
8,
198,
6738,
43835,
62,
83,
21107,
273,
13,
31298,
6978,
1330,
5572,
14881,
15235,
11,
5572,
15235,
628,
198,
4871,
4700,
89,
273,
11792,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
770,
1398,
318,
257,
5456,
329,
262,
4700,
89,
273,
3335,
13,
198,
220,
220,
220,
37227,
628,
198,
4299,
7925,
62,
12683,
1300,
62,
85,
3808,
62,
33661,
7,
12683,
1300,
62,
33661,
25,
9881,
8,
4613,
309,
29291,
58,
600,
11,
9881,
11,
9881,
5974,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
3719,
4730,
4600,
12683,
1300,
62,
33661,
63,
656,
513,
22716,
410,
3808,
11,
810,
4600,
85,
63,
318,
352,
18022,
11,
4600,
81,
63,
318,
3933,
198,
220,
220,
220,
9881,
11,
290,
4600,
82,
63,
318,
3933,
9881,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
9877,
62,
33661,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
4700,
89,
273,
11792,
12331,
7203,
2949,
1366,
287,
9877,
9881,
19570,
628,
220,
220,
220,
1441,
9877,
62,
33661,
58,
12,
16,
4357,
9877,
62,
33661,
58,
25,
2624,
4357,
9877,
62,
33661,
58,
2624,
25,
2414,
60,
628,
198,
4871,
4700,
89,
273,
30116,
11792,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
770,
1398,
6870,
281,
1848,
319,
262,
4700,
89,
273,
3335,
618,
345,
760,
262,
1336,
198,
220,
220,
220,
1848,
5572,
3108,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
825,
1051,
62,
22682,
62,
20500,
7,
944,
11,
3275,
25,
9881,
8,
4613,
309,
29291,
58,
600,
11,
9881,
11,
9881,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
5865,
281,
20313,
3275,
691,
1708,
262,
412,
4061,
31009,
20855,
290,
198,
220,
220,
220,
220,
220,
220,
220,
1262,
534,
4700,
89,
273,
3335,
13,
921,
481,
761,
284,
1061,
262,
36454,
319,
262,
3335,
198,
220,
220,
220,
220,
220,
220,
220,
284,
26571,
262,
3275,
1366,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
304,
17733,
62,
20500,
62,
12683,
1300,
796,
304,
17733,
13,
12683,
62,
20500,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
16366,
11,
21136,
62,
31298,
6978,
7,
944,
13557,
23317,
62,
31298,
62,
6978,
13,
6978,
828,
3275,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
7925,
62,
12683,
1300,
62,
85,
3808,
62,
33661,
7,
12683,
1300,
62,
33661,
28,
316,
1456,
388,
62,
20500,
62,
12683,
1300,
13,
12683,
1300,
8,
628,
220,
220,
220,
1303,
16926,
46,
25,
791,
23893,
618,
4700,
89,
273,
468,
2716,
262,
412,
4061,
767,
1065,
4296,
198,
220,
220,
220,
1303,
825,
1051,
62,
774,
9124,
62,
7890,
7,
944,
11,
7386,
62,
17831,
25,
9881,
11,
3275,
62,
17831,
25,
9881,
8,
198,
220,
220,
220,
1303,
4613,
309,
29291,
58,
600,
11,
9881,
11,
9881,
5974,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
5865,
281,
20313,
3275,
1708,
262,
412,
4061,
767,
1065,
20855,
13,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
304,
17733,
62,
774,
9124,
62,
7890,
62,
12683,
1300,
796,
304,
17733,
13,
12683,
62,
774,
9124,
62,
7890,
62,
17831,
7,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
16366,
11,
21136,
62,
31298,
6978,
7,
944,
13557,
23317,
62,
31298,
62,
6978,
13,
6978,
828,
7386,
62,
17831,
11,
3275,
62,
17831,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
1303,
220,
220,
220,
220,
1441,
7925,
62,
12683,
1300,
62,
85,
3808,
62,
33661,
7,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
9877,
62,
33661,
28,
316,
1456,
388,
62,
774,
9124,
62,
7890,
62,
12683,
1300,
13,
12683,
1300,
8,
628,
198,
834,
439,
834,
796,
685,
198,
220,
220,
220,
366,
51,
21107,
273,
11792,
1600,
198,
220,
220,
220,
366,
51,
21107,
273,
30116,
11792,
1600,
198,
60,
198
] | 2.734444 | 900 |
"""
"""
# Full imports
import json
import pulp
import logging as log
import time
# Imports from environment
from cornflow_client import CornFlowApiError
from cornflow_client.constants import INSTANCE_SCHEMA, SOLUTION_SCHEMA
# Import internal modules
from cornflow.app import create_app
from cornflow.shared.const import (
EXEC_STATE_CORRECT,
EXEC_STATE_STOPPED,
EXEC_STATE_RUNNING,
STATUS_HEALTHY,
)
from cornflow.tests.const import INSTANCE_PATH
from cornflow.tests.custom_liveServer import CustomTestCaseLive
# TODO: user management
# TODO: infeasible execution
# TODO: reactivate test with new version of cornflow client which allows to pass
# optional arguments for the headers of the request
# def test_get_instance__data(self):
# instance = self.create_new_instance("./cornflow/tests/data/test_mps.mps")
# response = self.client.get_api_for_id(
# "instance", instance["id"], "data", encoding="gzip"
# )
# self.assertEqual(response.headers["Content-Encoding"], "gzip")
| [
37811,
198,
198,
37811,
198,
2,
6462,
17944,
198,
11748,
33918,
198,
11748,
38341,
198,
11748,
18931,
355,
2604,
198,
11748,
640,
198,
198,
2,
1846,
3742,
422,
2858,
198,
6738,
11676,
11125,
62,
16366,
1330,
11424,
37535,
32,
14415,
12331,
198,
6738,
11676,
11125,
62,
16366,
13,
9979,
1187,
1330,
40589,
19240,
62,
50,
3398,
27630,
11,
36817,
35354,
62,
50,
3398,
27630,
198,
198,
2,
17267,
5387,
13103,
198,
6738,
11676,
11125,
13,
1324,
1330,
2251,
62,
1324,
198,
6738,
11676,
11125,
13,
28710,
13,
9979,
1330,
357,
198,
220,
220,
220,
7788,
2943,
62,
44724,
62,
44879,
23988,
11,
198,
220,
220,
220,
7788,
2943,
62,
44724,
62,
2257,
3185,
47,
1961,
11,
198,
220,
220,
220,
7788,
2943,
62,
44724,
62,
49,
4944,
15871,
11,
198,
220,
220,
220,
15486,
2937,
62,
13909,
40818,
56,
11,
198,
8,
198,
6738,
11676,
11125,
13,
41989,
13,
9979,
1330,
40589,
19240,
62,
34219,
198,
6738,
11676,
11125,
13,
41989,
13,
23144,
62,
12583,
10697,
1330,
8562,
14402,
20448,
18947,
628,
628,
198,
220,
220,
220,
1303,
16926,
46,
25,
2836,
4542,
198,
220,
220,
220,
1303,
16926,
46,
25,
1167,
30412,
856,
9706,
628,
220,
220,
220,
1303,
16926,
46,
25,
6324,
452,
378,
1332,
351,
649,
2196,
286,
11676,
11125,
5456,
543,
3578,
284,
1208,
198,
220,
220,
220,
1303,
220,
11902,
7159,
329,
262,
24697,
286,
262,
2581,
198,
220,
220,
220,
1303,
825,
1332,
62,
1136,
62,
39098,
834,
7890,
7,
944,
2599,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
4554,
796,
2116,
13,
17953,
62,
3605,
62,
39098,
7,
1911,
14,
20772,
11125,
14,
41989,
14,
7890,
14,
9288,
62,
76,
862,
13,
76,
862,
4943,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
2882,
796,
2116,
13,
16366,
13,
1136,
62,
15042,
62,
1640,
62,
312,
7,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
220,
220,
220,
220,
366,
39098,
1600,
4554,
14692,
312,
33116,
366,
7890,
1600,
21004,
2625,
70,
13344,
1,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
1303,
220,
220,
220,
220,
2116,
13,
30493,
36,
13255,
7,
26209,
13,
50145,
14692,
19746,
12,
27195,
7656,
33116,
366,
70,
13344,
4943,
628,
198
] | 2.84 | 375 |
from torchvision.models import resnet
from .DirectionNet import DirectionNet
from .DiResNet import FCN_Ref
import torch
import torch.nn as nn | [
6738,
28034,
10178,
13,
27530,
1330,
581,
3262,
198,
6738,
764,
35,
4154,
7934,
1330,
41837,
7934,
198,
6738,
764,
18683,
4965,
7934,
1330,
10029,
45,
62,
8134,
198,
11748,
28034,
198,
11748,
28034,
13,
20471,
355,
299,
77
] | 3.615385 | 39 |
import requests
from bs4 import BeautifulSoup
| [
11748,
7007,
198,
6738,
275,
82,
19,
1330,
23762,
50,
10486,
628
] | 3.916667 | 12 |
#
# PySNMP MIB module INTEL-IP-MULTICAST-ROUTER-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/INTEL-IP-MULTICAST-ROUTER-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 19:43:05 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
OctetString, Integer, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "OctetString", "Integer", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueRangeConstraint, ConstraintsIntersection, SingleValueConstraint, ConstraintsUnion, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "ConstraintsIntersection", "SingleValueConstraint", "ConstraintsUnion", "ValueSizeConstraint")
mib2ext, = mibBuilder.importSymbols("INTEL-GEN-MIB", "mib2ext")
NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance")
ObjectIdentity, Bits, Integer32, MibScalar, MibTable, MibTableRow, MibTableColumn, Counter64, ModuleIdentity, IpAddress, Gauge32, Unsigned32, Counter32, TimeTicks, NotificationType, iso, MibIdentifier = mibBuilder.importSymbols("SNMPv2-SMI", "ObjectIdentity", "Bits", "Integer32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Counter64", "ModuleIdentity", "IpAddress", "Gauge32", "Unsigned32", "Counter32", "TimeTicks", "NotificationType", "iso", "MibIdentifier")
DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention")
ipmrouter = MibIdentifier((1, 3, 6, 1, 4, 1, 343, 6, 32))
conf = MibIdentifier((1, 3, 6, 1, 4, 1, 343, 6, 32, 1))
confMaxDvmrpRoutes = MibScalar((1, 3, 6, 1, 4, 1, 343, 6, 32, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 100000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: confMaxDvmrpRoutes.setStatus('mandatory')
confIfTable = MibTable((1, 3, 6, 1, 4, 1, 343, 6, 32, 1, 2), )
if mibBuilder.loadTexts: confIfTable.setStatus('mandatory')
confIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 343, 6, 32, 1, 2, 1), ).setIndexNames((0, "INTEL-IP-MULTICAST-ROUTER-MIB", "confIfIndex"))
if mibBuilder.loadTexts: confIfEntry.setStatus('mandatory')
confIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 343, 6, 32, 1, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: confIfIndex.setStatus('mandatory')
confIfMCRouteProto = MibTableColumn((1, 3, 6, 1, 4, 1, 343, 6, 32, 1, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("disabled", 1), ("enabled", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: confIfMCRouteProto.setStatus('mandatory')
confIfIgmpQueryInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 343, 6, 32, 1, 2, 1, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: confIfIgmpQueryInterval.setStatus('mandatory')
confIfIgmpRobustness = MibTableColumn((1, 3, 6, 1, 4, 1, 343, 6, 32, 1, 2, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: confIfIgmpRobustness.setStatus('mandatory')
confIfDvmrpMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 343, 6, 32, 1, 2, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: confIfDvmrpMetric.setStatus('mandatory')
confIfDvmrpUnreachableMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 343, 6, 32, 1, 2, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: confIfDvmrpUnreachableMetric.setStatus('mandatory')
confIfCreateObj = MibTableColumn((1, 3, 6, 1, 4, 1, 343, 6, 32, 1, 2, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(11, 11)).setFixedLength(11)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: confIfCreateObj.setStatus('mandatory')
confIfDeleteObj = MibTableColumn((1, 3, 6, 1, 4, 1, 343, 6, 32, 1, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1))).clone(namedValues=NamedValues(("delete", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: confIfDeleteObj.setStatus('mandatory')
mibBuilder.exportSymbols("INTEL-IP-MULTICAST-ROUTER-MIB", confIfDvmrpUnreachableMetric=confIfDvmrpUnreachableMetric, confIfCreateObj=confIfCreateObj, confIfMCRouteProto=confIfMCRouteProto, confIfDeleteObj=confIfDeleteObj, ipmrouter=ipmrouter, confIfTable=confIfTable, confMaxDvmrpRoutes=confMaxDvmrpRoutes, conf=conf, confIfEntry=confIfEntry, confIfIgmpQueryInterval=confIfIgmpQueryInterval, confIfIgmpRobustness=confIfIgmpRobustness, confIfDvmrpMetric=confIfDvmrpMetric, confIfIndex=confIfIndex)
| [
2,
198,
2,
9485,
15571,
7378,
337,
9865,
8265,
17828,
3698,
12,
4061,
12,
44,
16724,
2149,
11262,
12,
49,
2606,
5781,
12,
8895,
33,
357,
4023,
1378,
16184,
76,
489,
8937,
13,
785,
14,
79,
893,
11632,
8,
198,
2,
7054,
45,
13,
16,
2723,
2393,
1378,
14,
14490,
14,
67,
615,
47562,
19,
14,
13603,
14,
76,
571,
82,
13,
16184,
76,
489,
8937,
13,
785,
14,
292,
77,
16,
14,
12394,
3698,
12,
4061,
12,
44,
16724,
2149,
11262,
12,
49,
2606,
5781,
12,
8895,
33,
198,
2,
21522,
771,
416,
279,
893,
11632,
12,
15,
13,
18,
13,
19,
379,
2892,
2758,
2808,
678,
25,
3559,
25,
2713,
13130,
198,
2,
1550,
2583,
42274,
54,
15567,
19,
12,
44,
12,
1415,
2425,
3859,
21450,
2196,
1248,
13,
20,
13,
15,
416,
2836,
288,
615,
47562,
19,
198,
2,
8554,
11361,
2196,
513,
13,
22,
13,
18,
357,
12286,
11,
1526,
2681,
13130,
11,
7769,
25,
1954,
25,
1314,
8,
220,
198,
2,
198,
12349,
316,
10100,
11,
34142,
11,
9515,
33234,
7483,
796,
285,
571,
32875,
13,
11748,
13940,
2022,
10220,
7203,
1921,
45,
16,
1600,
366,
12349,
316,
10100,
1600,
366,
46541,
1600,
366,
10267,
33234,
7483,
4943,
198,
45,
2434,
40161,
11,
796,
285,
571,
32875,
13,
11748,
13940,
2022,
10220,
7203,
1921,
45,
16,
12,
1677,
5883,
1137,
6234,
1600,
366,
45,
2434,
40161,
4943,
198,
11395,
17257,
3103,
2536,
2913,
11,
1482,
2536,
6003,
9492,
5458,
11,
14206,
11395,
3103,
2536,
2913,
11,
1482,
2536,
6003,
38176,
11,
11052,
10699,
3103,
2536,
2913,
796,
285,
571,
32875,
13,
11748,
13940,
2022,
10220,
7203,
1921,
45,
16,
12,
2200,
20032,
12529,
1600,
366,
11395,
17257,
3103,
2536,
2913,
1600,
366,
3103,
2536,
6003,
9492,
5458,
1600,
366,
28008,
11395,
3103,
2536,
2913,
1600,
366,
3103,
2536,
6003,
38176,
1600,
366,
11395,
10699,
3103,
2536,
2913,
4943,
198,
76,
571,
17,
2302,
11,
796,
285,
571,
32875,
13,
11748,
13940,
2022,
10220,
7203,
12394,
3698,
12,
35353,
12,
8895,
33,
1600,
366,
76,
571,
17,
2302,
4943,
198,
3673,
2649,
13247,
11,
19937,
38143,
3610,
796,
285,
571,
32875,
13,
11748,
13940,
2022,
10220,
7203,
15571,
7378,
85,
17,
12,
10943,
37,
1600,
366,
3673,
2649,
13247,
1600,
366,
26796,
38143,
3610,
4943,
198,
10267,
7390,
26858,
11,
44733,
11,
34142,
2624,
11,
337,
571,
3351,
282,
283,
11,
337,
571,
10962,
11,
337,
571,
10962,
25166,
11,
337,
571,
10962,
39470,
11,
15034,
2414,
11,
19937,
7390,
26858,
11,
314,
79,
20231,
11,
35094,
469,
2624,
11,
791,
32696,
2624,
11,
15034,
2624,
11,
3862,
51,
3378,
11,
42808,
6030,
11,
47279,
11,
337,
571,
33234,
7483,
796,
285,
571,
32875,
13,
11748,
13940,
2022,
10220,
7203,
15571,
7378,
85,
17,
12,
50,
8895,
1600,
366,
10267,
7390,
26858,
1600,
366,
33,
896,
1600,
366,
46541,
2624,
1600,
366,
44,
571,
3351,
282,
283,
1600,
366,
44,
571,
10962,
1600,
366,
44,
571,
10962,
25166,
1600,
366,
44,
571,
10962,
39470,
1600,
366,
31694,
2414,
1600,
366,
26796,
7390,
26858,
1600,
366,
40,
79,
20231,
1600,
366,
38,
559,
469,
2624,
1600,
366,
3118,
32696,
2624,
1600,
366,
31694,
2624,
1600,
366,
7575,
51,
3378,
1600,
366,
3673,
2649,
6030,
1600,
366,
26786,
1600,
366,
44,
571,
33234,
7483,
4943,
198,
23114,
10100,
11,
8255,
723,
3103,
4018,
796,
285,
571,
32875,
13,
11748,
13940,
2022,
10220,
7203,
15571,
7378,
85,
17,
12,
4825,
1600,
366,
23114,
10100,
1600,
366,
8206,
723,
3103,
4018,
4943,
198,
541,
76,
472,
353,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
37290,
11,
718,
11,
3933,
4008,
198,
10414,
796,
337,
571,
33234,
7483,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
37290,
11,
718,
11,
3933,
11,
352,
4008,
198,
10414,
11518,
35,
14761,
81,
79,
49,
448,
274,
796,
337,
571,
3351,
282,
283,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
37290,
11,
718,
11,
3933,
11,
352,
11,
352,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
16,
11,
1802,
830,
4008,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1013,
11518,
35,
14761,
81,
79,
49,
448,
274,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
10414,
1532,
10962,
796,
337,
571,
10962,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
37290,
11,
718,
11,
3933,
11,
352,
11,
362,
828,
1267,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1013,
1532,
10962,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
10414,
1532,
30150,
796,
337,
571,
10962,
25166,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
37290,
11,
718,
11,
3933,
11,
352,
11,
362,
11,
352,
828,
6739,
2617,
15732,
36690,
19510,
15,
11,
366,
12394,
3698,
12,
4061,
12,
44,
16724,
2149,
11262,
12,
49,
2606,
5781,
12,
8895,
33,
1600,
366,
10414,
1532,
15732,
48774,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1013,
1532,
30150,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
10414,
1532,
15732,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
37290,
11,
718,
11,
3933,
11,
352,
11,
362,
11,
352,
11,
352,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
8807,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1013,
1532,
15732,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
10414,
1532,
44,
9419,
13192,
2964,
1462,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
37290,
11,
718,
11,
3933,
11,
352,
11,
362,
11,
352,
11,
362,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
11,
362,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
47730,
1600,
352,
828,
5855,
25616,
1600,
362,
22305,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1013,
1532,
44,
9419,
13192,
2964,
1462,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
10414,
1532,
40,
70,
3149,
20746,
9492,
2100,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
37290,
11,
718,
11,
3933,
11,
352,
11,
362,
11,
352,
11,
513,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1013,
1532,
40,
70,
3149,
20746,
9492,
2100,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
10414,
1532,
40,
70,
3149,
14350,
436,
1108,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
37290,
11,
718,
11,
3933,
11,
352,
11,
362,
11,
352,
11,
604,
828,
34142,
2624,
3419,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1013,
1532,
40,
70,
3149,
14350,
436,
1108,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
10414,
1532,
35,
14761,
81,
79,
9171,
1173,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
37290,
11,
718,
11,
3933,
11,
352,
11,
362,
11,
352,
11,
642,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
16,
11,
3261,
4008,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1013,
1532,
35,
14761,
81,
79,
9171,
1173,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
10414,
1532,
35,
14761,
81,
79,
3118,
16250,
540,
9171,
1173,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
37290,
11,
718,
11,
3933,
11,
352,
11,
362,
11,
352,
11,
718,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
17257,
3103,
2536,
2913,
7,
16,
11,
3261,
4008,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1013,
1532,
35,
14761,
81,
79,
3118,
16250,
540,
9171,
1173,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
10414,
1532,
16447,
49201,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
37290,
11,
718,
11,
3933,
11,
352,
11,
362,
11,
352,
11,
767,
828,
2556,
316,
10100,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
11395,
10699,
3103,
2536,
2913,
7,
1157,
11,
1367,
29720,
2617,
13715,
24539,
7,
1157,
29720,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1013,
1532,
16447,
49201,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
10414,
1532,
38727,
49201,
796,
337,
571,
10962,
39470,
19510,
16,
11,
513,
11,
718,
11,
352,
11,
604,
11,
352,
11,
37290,
11,
718,
11,
3933,
11,
352,
11,
362,
11,
352,
11,
807,
828,
34142,
2624,
22446,
7266,
4906,
7,
7266,
4906,
22882,
28,
3103,
2536,
6003,
38176,
7,
28008,
11395,
3103,
2536,
2913,
7,
16,
4008,
737,
21018,
7,
13190,
40161,
28,
45,
2434,
40161,
7,
7203,
33678,
1600,
352,
22305,
737,
2617,
11518,
15457,
7203,
961,
13564,
4943,
198,
361,
285,
571,
32875,
13,
2220,
8206,
82,
25,
1013,
1532,
38727,
49201,
13,
2617,
19580,
10786,
22249,
2870,
11537,
198,
76,
571,
32875,
13,
39344,
13940,
2022,
10220,
7203,
12394,
3698,
12,
4061,
12,
44,
16724,
2149,
11262,
12,
49,
2606,
5781,
12,
8895,
33,
1600,
1013,
1532,
35,
14761,
81,
79,
3118,
16250,
540,
9171,
1173,
28,
10414,
1532,
35,
14761,
81,
79,
3118,
16250,
540,
9171,
1173,
11,
1013,
1532,
16447,
49201,
28,
10414,
1532,
16447,
49201,
11,
1013,
1532,
44,
9419,
13192,
2964,
1462,
28,
10414,
1532,
44,
9419,
13192,
2964,
1462,
11,
1013,
1532,
38727,
49201,
28,
10414,
1532,
38727,
49201,
11,
20966,
76,
472,
353,
28,
541,
76,
472,
353,
11,
1013,
1532,
10962,
28,
10414,
1532,
10962,
11,
1013,
11518,
35,
14761,
81,
79,
49,
448,
274,
28,
10414,
11518,
35,
14761,
81,
79,
49,
448,
274,
11,
1013,
28,
10414,
11,
1013,
1532,
30150,
28,
10414,
1532,
30150,
11,
1013,
1532,
40,
70,
3149,
20746,
9492,
2100,
28,
10414,
1532,
40,
70,
3149,
20746,
9492,
2100,
11,
1013,
1532,
40,
70,
3149,
14350,
436,
1108,
28,
10414,
1532,
40,
70,
3149,
14350,
436,
1108,
11,
1013,
1532,
35,
14761,
81,
79,
9171,
1173,
28,
10414,
1532,
35,
14761,
81,
79,
9171,
1173,
11,
1013,
1532,
15732,
28,
10414,
1532,
15732,
8,
198
] | 2.597663 | 1,797 |
import io
from collections.abc import Iterable
from typing import Optional
EXAMPLE = """7,4,9,5,11,17,23,2,0,14,21,24,10,16,13,6,15,25,12,22,18,20,8,19,3,26,1
22 13 17 11 0
8 2 23 4 24
21 9 14 16 7
6 10 3 18 5
1 12 20 15 19
3 15 0 2 22
9 18 13 17 5
19 8 7 25 23
20 11 10 24 4
14 21 16 12 6
14 21 17 24 4
10 16 15 9 19
18 8 23 26 20
22 11 13 6 5
2 0 12 3 7"""
Board = list[list[Optional[int]]]
assert solve(io.StringIO(EXAMPLE)) == 4512
if __name__ == "__main__":
main()
| [
11748,
33245,
198,
6738,
17268,
13,
39305,
1330,
40806,
540,
198,
6738,
19720,
1330,
32233,
198,
198,
6369,
2390,
16437,
796,
37227,
22,
11,
19,
11,
24,
11,
20,
11,
1157,
11,
1558,
11,
1954,
11,
17,
11,
15,
11,
1415,
11,
2481,
11,
1731,
11,
940,
11,
1433,
11,
1485,
11,
21,
11,
1314,
11,
1495,
11,
1065,
11,
1828,
11,
1507,
11,
1238,
11,
23,
11,
1129,
11,
18,
11,
2075,
11,
16,
198,
198,
1828,
1511,
1596,
1367,
220,
657,
198,
807,
220,
362,
2242,
220,
604,
1987,
198,
2481,
220,
860,
1478,
1467,
220,
767,
198,
718,
838,
220,
513,
1248,
220,
642,
198,
352,
1105,
1160,
1315,
678,
628,
513,
1315,
220,
657,
220,
362,
2534,
198,
860,
1248,
1511,
1596,
220,
642,
198,
1129,
220,
807,
220,
767,
1679,
2242,
198,
1238,
1367,
838,
1987,
220,
604,
198,
1415,
2310,
1467,
1105,
220,
718,
198,
198,
1415,
2310,
1596,
1987,
220,
604,
198,
940,
1467,
1315,
220,
860,
678,
198,
1507,
220,
807,
2242,
2608,
1160,
198,
1828,
1367,
1511,
220,
718,
220,
642,
198,
362,
220,
657,
1105,
220,
513,
220,
767,
37811,
628,
198,
29828,
796,
1351,
58,
4868,
58,
30719,
58,
600,
11907,
60,
628,
628,
628,
198,
30493,
8494,
7,
952,
13,
10100,
9399,
7,
6369,
2390,
16437,
4008,
6624,
4153,
1065,
628,
198,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
1388,
3419,
198
] | 2.136364 | 242 |
"""
Copyright (c) 2020 VMware, Inc.
This product is licensed to you under the Apache License, Version 2.0 (the "License").
You may not use this product except in compliance with the License.
This product may include a number of subcomponents with separate copyright notices
and license terms. Your use of these subcomponents is subject to the terms and
conditions of the subcomponent's license, as noted in the LICENSE file.
"""
import requests
from vra_ipam_utils.ipam import IPAM
from vra_ipam_utils.exceptions import InvalidCertificateException
import logging
import pymysql
'''
Example payload:
"inputs": {
"authCredentialsLink": "/core/auth/credentials/13c9cbade08950755898c4b89c4a0",
"endpointProperties": {
"hostName": "sampleipam.sof-mbu.eng.vmware.com"
}
}
'''
| [
37811,
198,
15269,
357,
66,
8,
12131,
37754,
11,
3457,
13,
198,
198,
1212,
1720,
318,
11971,
284,
345,
739,
262,
24843,
13789,
11,
10628,
362,
13,
15,
357,
1169,
366,
34156,
11074,
198,
1639,
743,
407,
779,
428,
1720,
2845,
287,
11846,
351,
262,
13789,
13,
198,
198,
1212,
1720,
743,
2291,
257,
1271,
286,
850,
5589,
3906,
351,
4553,
6634,
19748,
198,
392,
5964,
2846,
13,
3406,
779,
286,
777,
850,
5589,
3906,
318,
2426,
284,
262,
2846,
290,
198,
17561,
1756,
286,
262,
850,
42895,
338,
5964,
11,
355,
4367,
287,
262,
38559,
24290,
2393,
13,
198,
37811,
198,
198,
11748,
7007,
198,
6738,
410,
430,
62,
541,
321,
62,
26791,
13,
541,
321,
1330,
6101,
2390,
198,
6738,
410,
430,
62,
541,
321,
62,
26791,
13,
1069,
11755,
1330,
17665,
37608,
22460,
16922,
198,
11748,
18931,
198,
11748,
279,
4948,
893,
13976,
628,
198,
7061,
6,
198,
16281,
21437,
25,
198,
198,
1,
15414,
82,
1298,
1391,
198,
220,
220,
220,
366,
18439,
34,
445,
14817,
11280,
1298,
12813,
7295,
14,
18439,
14,
66,
445,
14817,
14,
1485,
66,
24,
21101,
671,
2919,
31027,
2425,
3365,
4089,
66,
19,
65,
4531,
66,
19,
64,
15,
1600,
198,
220,
220,
220,
366,
437,
4122,
2964,
18200,
1298,
1391,
198,
220,
220,
220,
220,
220,
366,
4774,
5376,
1298,
366,
39873,
541,
321,
13,
568,
69,
12,
2022,
84,
13,
1516,
13,
14761,
1574,
13,
785,
1,
198,
220,
220,
220,
1782,
198,
220,
1782,
198,
7061,
6,
198
] | 3.171315 | 251 |
import django_filters
from rest_framework import filters
from app.finance.models import Transaction
| [
11748,
42625,
14208,
62,
10379,
1010,
198,
6738,
1334,
62,
30604,
1330,
16628,
198,
198,
6738,
598,
13,
69,
14149,
13,
27530,
1330,
45389,
198
] | 4.04 | 25 |
"""
"""
from RPi._SPI import *
VERSION = '0.6.2'
| [
37811,
198,
37811,
198,
198,
6738,
25812,
72,
13557,
4303,
40,
1330,
1635,
198,
198,
43717,
796,
705,
15,
13,
21,
13,
17,
6,
198
] | 2.04 | 25 |
import datetime
import json
import pytest
from django.contrib.auth import get_user_model
from django.contrib.auth.models import AnonymousUser
from django.contrib.sessions.middleware import SessionMiddleware
from django.core.exceptions import ValidationError
from django.test import TestCase, RequestFactory
from django.utils import timezone
from wagtail_personalisation.adapters import get_segment_adapter
from molo.core.models import ArticlePage, ArticlePageTags, SectionPage, Tag
from molo.core.tests.base import MoloTestCaseMixin
from molo.forms.models import FormsIndexPage
from .utils import skip_logic_data
from ..models import (
PersonalisableFormField,
PersonalisableForm,
FormsSegmentUserGroup,
MoloFormPage,
MoloFormField,
)
from ..rules import (
FormsArticleTagRule,
FormGroupMembershipRule,
FormSubmissionDataRule,
FormResponseRule
)
@pytest.mark.django_db
| [
11748,
4818,
8079,
198,
11748,
33918,
198,
11748,
12972,
9288,
198,
198,
6738,
42625,
14208,
13,
3642,
822,
13,
18439,
1330,
651,
62,
7220,
62,
19849,
198,
6738,
42625,
14208,
13,
3642,
822,
13,
18439,
13,
27530,
1330,
19200,
12982,
198,
6738,
42625,
14208,
13,
3642,
822,
13,
82,
6202,
13,
27171,
1574,
1330,
23575,
34621,
1574,
198,
6738,
42625,
14208,
13,
7295,
13,
1069,
11755,
1330,
3254,
24765,
12331,
198,
6738,
42625,
14208,
13,
9288,
1330,
6208,
20448,
11,
19390,
22810,
198,
6738,
42625,
14208,
13,
26791,
1330,
640,
11340,
198,
6738,
266,
363,
13199,
62,
22682,
5612,
13,
324,
12126,
1330,
651,
62,
325,
5154,
62,
324,
3429,
198,
198,
6738,
285,
14057,
13,
7295,
13,
27530,
1330,
10172,
9876,
11,
10172,
9876,
36142,
11,
7275,
9876,
11,
17467,
198,
6738,
285,
14057,
13,
7295,
13,
41989,
13,
8692,
1330,
337,
14057,
14402,
20448,
35608,
259,
198,
6738,
285,
14057,
13,
23914,
13,
27530,
1330,
39196,
15732,
9876,
628,
198,
6738,
764,
26791,
1330,
14267,
62,
6404,
291,
62,
7890,
198,
6738,
11485,
27530,
1330,
357,
198,
220,
220,
220,
15644,
43942,
8479,
15878,
11,
198,
220,
220,
220,
15644,
43942,
8479,
11,
198,
220,
220,
220,
39196,
41030,
434,
12982,
13247,
11,
198,
220,
220,
220,
337,
14057,
8479,
9876,
11,
198,
220,
220,
220,
337,
14057,
8479,
15878,
11,
198,
8,
198,
6738,
11485,
38785,
1330,
357,
198,
220,
220,
220,
39196,
14906,
24835,
31929,
11,
198,
220,
220,
220,
5178,
13247,
25341,
1056,
31929,
11,
198,
220,
220,
220,
5178,
7004,
3411,
6601,
31929,
11,
198,
220,
220,
220,
5178,
31077,
31929,
198,
8,
628,
198,
31,
9078,
9288,
13,
4102,
13,
28241,
14208,
62,
9945,
628,
628
] | 3.229682 | 283 |
# ======================================================================
# Copyright CERFACS (October 2018)
# Contributor: Adrien Suau ([email protected])
#
# This software is governed by the CeCILL-B license under French law and
# abiding by the rules of distribution of free software. You can use,
# modify and/or redistribute the software under the terms of the
# CeCILL-B license as circulated by CEA, CNRS and INRIA at the following
# URL "http://www.cecill.info".
#
# As a counterpart to the access to the source code and rights to copy,
# modify and redistribute granted by the license, users are provided
# only with a limited warranty and the software's author, the holder of
# the economic rights, and the successive licensors have only limited
# liability.
#
# In this respect, the user's attention is drawn to the risks associated
# with loading, using, modifying and/or developing or reproducing the
# software by the user in light of its specific status of free software,
# that may mean that it is complicated to manipulate, and that also
# therefore means that it is reserved for developers and experienced
# professionals having in-depth computer knowledge. Users are therefore
# encouraged to load and test the software's suitability as regards
# their requirements in conditions enabling the security of their
# systems and/or data to be ensured and, more generally, to use and
# operate it in the same conditions as regards security.
#
# The fact that you are presently reading this means that you have had
# knowledge of the CeCILL-B license and that you accept its terms.
# ======================================================================
"""Implementation of the :py:class:`~.QuantumCircuit` class.
The :py:class:`~.QuantumCircuit` class represents a general quantum circuit as a
Directed Acyclic Graph with possibly some multi-edges (2 edges can share the
same source **and** the same target).
"""
import copy
import typing
import networkx as nx
import numpy
import qtoolkit.data_structures.quantum_circuit.gate_hierarchy as qgate
import qtoolkit.data_structures.quantum_circuit.quantum_operation as qop
CircuitCostFunction = typing.Callable[[QuantumCircuit], float]
| [
2,
38093,
1421,
28,
198,
2,
15069,
327,
1137,
37,
2246,
50,
357,
18517,
2864,
8,
198,
2,
25767,
273,
25,
1215,
15355,
1778,
559,
357,
324,
15355,
13,
2385,
559,
31,
2189,
69,
16436,
13,
8310,
8,
198,
2,
198,
2,
770,
3788,
318,
21825,
416,
262,
20101,
34,
8267,
12,
33,
5964,
739,
4141,
1099,
290,
198,
2,
48637,
220,
416,
262,
220,
3173,
286,
220,
6082,
286,
1479,
3788,
13,
921,
460,
779,
11,
198,
2,
13096,
220,
290,
14,
273,
220,
17678,
4163,
220,
262,
220,
3788,
220,
739,
220,
262,
220,
2846,
220,
286,
262,
198,
2,
20101,
34,
8267,
12,
33,
5964,
355,
26772,
416,
327,
16412,
11,
31171,
6998,
290,
3268,
49,
3539,
379,
262,
1708,
198,
2,
10289,
366,
4023,
1378,
2503,
13,
344,
20346,
13,
10951,
1911,
198,
2,
198,
2,
1081,
257,
11283,
284,
262,
1895,
284,
220,
262,
2723,
2438,
290,
2489,
284,
4866,
11,
198,
2,
13096,
290,
220,
17678,
4163,
7520,
220,
416,
262,
220,
5964,
11,
2985,
220,
389,
2810,
198,
2,
691,
351,
257,
3614,
18215,
290,
220,
262,
3788,
338,
1772,
11,
262,
15762,
286,
198,
2,
262,
3034,
2489,
11,
220,
290,
262,
220,
25175,
8240,
669,
220,
423,
691,
3614,
198,
2,
12247,
13,
198,
2,
198,
2,
554,
428,
2461,
11,
262,
2836,
338,
3241,
318,
7428,
284,
262,
7476,
3917,
198,
2,
351,
11046,
11,
220,
1262,
11,
30620,
290,
14,
273,
220,
5922,
393,
8186,
2259,
220,
262,
198,
2,
3788,
416,
262,
2836,
287,
1657,
286,
663,
2176,
3722,
286,
1479,
3788,
11,
198,
2,
326,
220,
743,
1612,
220,
326,
340,
220,
318,
8253,
220,
284,
18510,
11,
220,
290,
326,
635,
198,
2,
4361,
220,
1724,
326,
220,
340,
318,
10395,
329,
220,
6505,
290,
220,
5924,
198,
2,
11153,
1719,
287,
12,
18053,
220,
3644,
3725,
13,
18987,
389,
4361,
198,
2,
10085,
220,
284,
3440,
290,
220,
1332,
220,
262,
3788,
338,
220,
6050,
1799,
355,
220,
13957,
198,
2,
511,
220,
5359,
220,
287,
220,
3403,
220,
15882,
220,
262,
220,
2324,
220,
286,
511,
198,
2,
3341,
220,
290,
14,
273,
220,
1366,
284,
307,
220,
30169,
290,
11,
220,
517,
4143,
11,
220,
284,
779,
290,
198,
2,
8076,
340,
287,
262,
976,
3403,
355,
13957,
2324,
13,
198,
2,
198,
2,
383,
1109,
326,
345,
220,
389,
27606,
3555,
428,
220,
1724,
326,
345,
423,
550,
198,
2,
3725,
286,
262,
20101,
34,
8267,
12,
33,
5964,
290,
326,
345,
2453,
663,
2846,
13,
198,
2,
38093,
1421,
28,
198,
198,
37811,
3546,
32851,
286,
262,
1058,
9078,
25,
4871,
25,
63,
93,
13,
24915,
388,
31560,
5013,
63,
1398,
13,
198,
198,
464,
1058,
9078,
25,
4871,
25,
63,
93,
13,
24915,
388,
31560,
5013,
63,
1398,
6870,
257,
2276,
14821,
10349,
355,
257,
198,
13470,
276,
317,
15539,
291,
29681,
351,
5457,
617,
5021,
12,
276,
3212,
357,
17,
13015,
460,
2648,
262,
198,
31642,
2723,
12429,
392,
1174,
262,
976,
2496,
737,
198,
37811,
198,
198,
11748,
4866,
198,
11748,
19720,
198,
198,
11748,
3127,
87,
355,
299,
87,
198,
11748,
299,
32152,
198,
198,
11748,
10662,
25981,
15813,
13,
7890,
62,
7249,
942,
13,
40972,
388,
62,
21170,
5013,
13,
10494,
62,
71,
959,
9282,
355,
10662,
10494,
198,
11748,
10662,
25981,
15813,
13,
7890,
62,
7249,
942,
13,
40972,
388,
62,
21170,
5013,
13,
40972,
388,
62,
27184,
355,
10662,
404,
628,
628,
198,
31560,
5013,
13729,
22203,
796,
19720,
13,
14134,
540,
30109,
24915,
388,
31560,
5013,
4357,
12178,
60,
198
] | 3.79062 | 597 |
import PIL
from PIL import Image, ImageFont, ImageDraw
import math, sys
#This script converts 1bit image to special byte file and code for using in your projects.
png = "pinkie_pie_by_cellularsp-d4j7sj2.gif" #Image file
out_f = png[:-4] + ".img"
print(out_f)
max_ll = 8
im = Image.open(png)
if im.width > 255 or im.height > 255:
print("Image max width and heigh must be less then 256")
sys.exit()
s = ""
bits = list()
frame = 0
bits_len = 0
try:
while 1:
frame+=1
ouu = im.convert("L")
ouu = ouu.point(lambda x: 0 if x<128 else 255, '1')
#ouu.save("out_gif" + str(frame) + ".png")
sn, ln = frame_to_code(ouu, bits)
s += "\n//Frame: " + str(frame - 1)
s += sn
bits_len = ln
im.seek(im.tell()+1)
except EOFError:
pass
s = "uint8_t png[] = { " + str(im.width) + ", " + str(im.height) + ", " + str(frame) + ", " + str(bits_len & 0xFF) + ", " + str((bits_len >> 8) & 0xFF) + ", //Width, height, frame_count, frame_size_low_byte, frame_size_high_byte" + s + "\n};"
#print(frame)
with open(out_f, "wb") as fl:
fl.write(bytes([im.width, im.height, frame, bits_len & 0xFF, (bits_len >> 8) & 0xFF]))
fl.write(bytes(int(b[::-1], 2) for b in bits))
print(s) | [
11748,
350,
4146,
198,
6738,
350,
4146,
1330,
7412,
11,
7412,
23252,
11,
7412,
25302,
198,
11748,
10688,
11,
25064,
198,
198,
2,
1212,
4226,
26161,
352,
2545,
2939,
284,
2041,
18022,
2393,
290,
2438,
329,
1262,
287,
534,
4493,
13,
198,
11134,
796,
366,
79,
676,
494,
62,
21749,
62,
1525,
62,
3846,
934,
2777,
12,
67,
19,
73,
22,
82,
73,
17,
13,
27908,
1,
1303,
5159,
2393,
628,
198,
448,
62,
69,
796,
279,
782,
58,
21912,
19,
60,
1343,
27071,
9600,
1,
198,
4798,
7,
448,
62,
69,
8,
198,
198,
9806,
62,
297,
796,
807,
198,
198,
320,
796,
7412,
13,
9654,
7,
11134,
8,
198,
198,
361,
545,
13,
10394,
1875,
14280,
393,
545,
13,
17015,
1875,
14280,
25,
198,
197,
4798,
7203,
5159,
3509,
9647,
290,
339,
394,
1276,
307,
1342,
788,
17759,
4943,
198,
197,
17597,
13,
37023,
3419,
198,
198,
82,
796,
13538,
198,
9895,
796,
1351,
3419,
198,
198,
14535,
796,
657,
198,
9895,
62,
11925,
796,
657,
198,
198,
28311,
25,
198,
197,
4514,
352,
25,
198,
197,
197,
14535,
47932,
16,
198,
197,
197,
280,
84,
796,
545,
13,
1102,
1851,
7203,
43,
4943,
198,
197,
197,
280,
84,
796,
267,
12303,
13,
4122,
7,
50033,
2124,
25,
657,
611,
2124,
27,
12762,
2073,
14280,
11,
705,
16,
11537,
198,
197,
197,
2,
280,
84,
13,
21928,
7203,
448,
62,
27908,
1,
1343,
965,
7,
14535,
8,
1343,
27071,
11134,
4943,
198,
197,
197,
16184,
11,
300,
77,
796,
5739,
62,
1462,
62,
8189,
7,
280,
84,
11,
10340,
8,
198,
197,
197,
82,
15853,
37082,
77,
1003,
19778,
25,
366,
1343,
965,
7,
14535,
532,
352,
8,
198,
197,
197,
82,
15853,
3013,
198,
197,
197,
9895,
62,
11925,
796,
300,
77,
198,
197,
197,
320,
13,
36163,
7,
320,
13,
33331,
3419,
10,
16,
8,
198,
16341,
412,
19238,
12331,
25,
198,
197,
6603,
198,
198,
82,
796,
220,
366,
28611,
23,
62,
83,
279,
782,
21737,
796,
1391,
366,
1343,
965,
7,
320,
13,
10394,
8,
1343,
33172,
366,
1343,
965,
7,
320,
13,
17015,
8,
1343,
33172,
366,
1343,
965,
7,
14535,
8,
1343,
33172,
366,
1343,
965,
7,
9895,
62,
11925,
1222,
657,
87,
5777,
8,
1343,
33172,
366,
1343,
965,
19510,
9895,
62,
11925,
9609,
807,
8,
1222,
657,
87,
5777,
8,
1343,
33172,
3373,
30916,
11,
6001,
11,
5739,
62,
9127,
11,
5739,
62,
7857,
62,
9319,
62,
26327,
11,
5739,
62,
7857,
62,
8929,
62,
26327,
1,
1343,
264,
1343,
37082,
77,
19629,
1,
198,
2,
4798,
7,
14535,
8,
198,
4480,
1280,
7,
448,
62,
69,
11,
366,
39346,
4943,
355,
781,
25,
198,
197,
2704,
13,
13564,
7,
33661,
26933,
320,
13,
10394,
11,
545,
13,
17015,
11,
5739,
11,
10340,
62,
11925,
1222,
657,
87,
5777,
11,
357,
9895,
62,
11925,
9609,
807,
8,
1222,
657,
87,
5777,
60,
4008,
198,
197,
2704,
13,
13564,
7,
33661,
7,
600,
7,
65,
58,
3712,
12,
16,
4357,
362,
8,
329,
275,
287,
10340,
4008,
198,
198,
4798,
7,
82,
8
] | 2.306641 | 512 |
base_dir = './resultsMCM/prompted/gpt2mcm-k50-keepmin5-t00'
base_path = base_dir+'/{}-{}/generations.jsonl'
outfile = base_dir+'/all/generations.jsonl'
batch_size = 4000
filenames = [(i*batch_size, i*batch_size+batch_size) for i in range(25)]
print(filenames)
cnt = 0
with open(outfile, 'w') as outfile:
for i, fname_ in enumerate(filenames):
start = fname_[0]
end = fname_[1]
if i + 1 == len(filenames):
end = 'end'
fname = base_path.format(start, end)
with open(fname) as infile:
for line in infile:
outfile.write(line)
cnt += 1
print("Finished merging generations: #{}".format(cnt)) | [
198,
8692,
62,
15908,
796,
705,
19571,
43420,
9655,
44,
14,
16963,
457,
276,
14,
70,
457,
17,
76,
11215,
12,
74,
1120,
12,
14894,
1084,
20,
12,
83,
405,
6,
198,
8692,
62,
6978,
796,
2779,
62,
15908,
10,
26488,
90,
92,
12,
90,
92,
14,
8612,
602,
13,
17752,
75,
6,
198,
448,
7753,
796,
2779,
62,
15908,
10,
26488,
439,
14,
8612,
602,
13,
17752,
75,
6,
198,
43501,
62,
7857,
796,
30123,
198,
10379,
268,
1047,
796,
47527,
72,
9,
43501,
62,
7857,
11,
1312,
9,
43501,
62,
7857,
10,
43501,
62,
7857,
8,
329,
1312,
287,
2837,
7,
1495,
15437,
198,
4798,
7,
10379,
268,
1047,
8,
198,
66,
429,
796,
657,
198,
198,
4480,
1280,
7,
448,
7753,
11,
705,
86,
11537,
355,
503,
7753,
25,
198,
220,
220,
220,
329,
1312,
11,
277,
3672,
62,
287,
27056,
378,
7,
10379,
268,
1047,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
923,
796,
277,
3672,
62,
58,
15,
60,
198,
220,
220,
220,
220,
220,
220,
220,
886,
796,
277,
3672,
62,
58,
16,
60,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1312,
1343,
352,
6624,
18896,
7,
10379,
268,
1047,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
886,
796,
705,
437,
6,
628,
220,
220,
220,
220,
220,
220,
220,
277,
3672,
796,
2779,
62,
6978,
13,
18982,
7,
9688,
11,
886,
8,
198,
220,
220,
220,
220,
220,
220,
220,
351,
1280,
7,
69,
3672,
8,
355,
1167,
576,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1627,
287,
1167,
576,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
503,
7753,
13,
13564,
7,
1370,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
269,
429,
15853,
352,
198,
4798,
7203,
18467,
1348,
35981,
10439,
25,
1303,
90,
92,
1911,
18982,
7,
66,
429,
4008
] | 2.053731 | 335 |
import numpy
from dexp.utils.backends import Backend
def get_array_for_cairo_surface(surface: "ImageSurface"): # noqa: F821
"""
Returns an array given a ImageSurface from PyCairo.
Parameters
----------
surface : surface
Returns
-------
RGBA numpy array of shape: (...,4)
"""
from cairocffi import ImageSurface
surface: ImageSurface
xp = Backend.get_xp_module()
width = surface.get_width()
height = surface.get_height()
# Get pycairo surface buffer:
buffer = surface.get_data()
# Reshape array to get an extra uint8 axis:
surface_array = numpy.ndarray(shape=(height, width, 4), dtype=xp.uint8, buffer=buffer)
# Move to backend:
surface_array = Backend.to_backend(surface_array)
# We have now: BGRA, we need to flip color axis because of endianness to ARGB:
surface_array = xp.flip(surface_array, axis=surface_array.ndim - 1)
# Convert ARGB to RGBA:
surface_array = xp.roll(surface_array, shift=-1, axis=surface_array.ndim - 1)
return surface_array
| [
11748,
299,
32152,
198,
198,
6738,
36017,
79,
13,
26791,
13,
1891,
2412,
1330,
5157,
437,
628,
198,
4299,
651,
62,
18747,
62,
1640,
62,
66,
18131,
62,
42029,
7,
42029,
25,
366,
5159,
14214,
2550,
1,
2599,
220,
1303,
645,
20402,
25,
376,
23,
2481,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
16409,
281,
7177,
1813,
257,
7412,
14214,
2550,
422,
9485,
34,
18131,
13,
628,
220,
220,
220,
40117,
198,
220,
220,
220,
24200,
438,
198,
220,
220,
220,
4417,
1058,
4417,
628,
220,
220,
220,
16409,
198,
220,
220,
220,
35656,
198,
220,
220,
220,
34359,
4339,
299,
32152,
7177,
286,
5485,
25,
357,
986,
11,
19,
8,
628,
220,
220,
220,
37227,
628,
220,
220,
220,
422,
1275,
7058,
66,
487,
72,
1330,
7412,
14214,
2550,
628,
220,
220,
220,
4417,
25,
7412,
14214,
2550,
628,
220,
220,
220,
36470,
796,
5157,
437,
13,
1136,
62,
42372,
62,
21412,
3419,
628,
220,
220,
220,
9647,
796,
4417,
13,
1136,
62,
10394,
3419,
198,
220,
220,
220,
6001,
796,
4417,
13,
1136,
62,
17015,
3419,
628,
220,
220,
220,
1303,
3497,
12972,
66,
18131,
4417,
11876,
25,
198,
220,
220,
220,
11876,
796,
4417,
13,
1136,
62,
7890,
3419,
628,
220,
220,
220,
1303,
1874,
71,
1758,
7177,
284,
651,
281,
3131,
20398,
23,
16488,
25,
198,
220,
220,
220,
4417,
62,
18747,
796,
299,
32152,
13,
358,
18747,
7,
43358,
16193,
17015,
11,
9647,
11,
604,
828,
288,
4906,
28,
42372,
13,
28611,
23,
11,
11876,
28,
22252,
8,
628,
220,
220,
220,
1303,
10028,
284,
30203,
25,
198,
220,
220,
220,
4417,
62,
18747,
796,
5157,
437,
13,
1462,
62,
1891,
437,
7,
42029,
62,
18747,
8,
628,
220,
220,
220,
1303,
775,
423,
783,
25,
34839,
3861,
11,
356,
761,
284,
14283,
3124,
16488,
780,
286,
886,
666,
1108,
284,
5923,
4579,
25,
198,
220,
220,
220,
4417,
62,
18747,
796,
36470,
13,
2704,
541,
7,
42029,
62,
18747,
11,
16488,
28,
42029,
62,
18747,
13,
358,
320,
532,
352,
8,
628,
220,
220,
220,
1303,
38240,
5923,
4579,
284,
34359,
4339,
25,
198,
220,
220,
220,
4417,
62,
18747,
796,
36470,
13,
2487,
7,
42029,
62,
18747,
11,
6482,
10779,
16,
11,
16488,
28,
42029,
62,
18747,
13,
358,
320,
532,
352,
8,
628,
220,
220,
220,
1441,
4417,
62,
18747,
198
] | 2.721228 | 391 |
#!/usr/bin/env python3
import numpy as np
import h5py
import matplotlib as mp
import matplotlib.pyplot as plt
import matplotlib.animation as animation
from mpl_toolkits import mplot3d
from mpl_toolkits.axes_grid1 import make_axes_locatable
import argparse
import os
# import plotly.graph_objects as go
#========= Configuration ===========
parser = argparse.ArgumentParser(description='Grid Data Animator PICSP')
parser.add_argument('-p', default="phi", type=str, help='Name of the parameter (phi/den.e/den.i)')
parser.add_argument('-a', default=True, type=bool, help='Show Animation (True/False)')
parser.add_argument('-s', default=False, type=bool, help='Save Animation (True/False)')
parser.add_argument('-d', default=False, type=bool, help='3D Animation (True/False)')
args = parser.parse_args()
param = args.p
show_anim = args.a
save_anim = args.s
Vis3D = args.d
interval = 100 #in mseconds
DIR ="../output/"
file_name = "data"#"rhoNeutral" #"P"
#========== Figure Directory Setup =============
figPath = "figures" # DO NOT CHANGE THE PATH
if os.path.exists(figPath):
print("figure directory exists. Existing figures will be replaced.")
else:
os.mkdir(figPath)
h5 = h5py.File(DIR+file_name+'.h5','r')
Lx = h5.attrs["Lx"]
Ly = h5.attrs["Ly"]
Nx = int(h5.attrs["Nx"])
Ny = int(h5.attrs["Ny"])
dp = int(h5.attrs["dp"])
Nt = int(h5.attrs["Nt"])
x = np.linspace(0,Lx,Nx)
y = np.linspace(0,Ly,Ny)
X, Y = np.meshgrid(x, y)
# dataset index
data_num = np.arange(start=0, stop=Nt, step=dp, dtype=int)
maxP = np.max(h5[param+"/%d"%Nt]);
minP = np.min(h5[param+"/%d"%Nt]);
if (show_anim == True):
##### FIG SIZE CALC ############
figsize = np.array([150,150/1.618]) #Figure size in mm
dpi = 300 #Print resolution
ppi = np.sqrt(1920**2+1200**2)/24 #Screen resolution
mp.rc('text', usetex=True)
mp.rc('font', family='sans-serif', size=10, serif='Computer Modern Roman')
mp.rc('axes', titlesize=10)
mp.rc('axes', labelsize=10)
mp.rc('xtick', labelsize=10)
mp.rc('ytick', labelsize=10)
mp.rc('legend', fontsize=10)
if (show_anim == True):
fig,ax1 = plt.subplots(figsize=figsize/25.4,constrained_layout=False,dpi=ppi)
div = make_axes_locatable(ax1)
cax = div.append_axes('right', '4%', '4%')
data = h5[param+"/%d"%data_num[0]]
if Vis3D == True:
fig = plt.figure(figsize=figsize/25.4,constrained_layout=True,dpi=ppi)
ax1 = plt.axes(projection ="3d")
img1 = ax1.plot_surface(X,Y,data)
else:
img1 = ax1.contourf(X,Y,data)
cbar = fig.colorbar(img1,cax=cax)
ani = animation.FuncAnimation(fig,animate,frames=len(data_num),interval=interval,blit=False)
# ani.save('phase_space.gif',writer='imagemagick')
plt.show()
if(save_anim == True):
try:
Writer = animation.writers['ffmpeg']
writer = Writer(fps=(1/interval), metadata=dict(artist='Me'), bitrate=1800)
except RuntimeError:
print("ffmpeg not available trying ImageMagickWriter")
writer = animation.ImageMagickWriter(fps=(1/interval))
print("Saving movie to "+figPath+"/. Please wait .....")
ani.save(figPath+"/"+param+'_animation_PICSP.mp4')
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
18,
198,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
289,
20,
9078,
198,
11748,
2603,
29487,
8019,
355,
29034,
198,
11748,
2603,
29487,
8019,
13,
9078,
29487,
355,
458,
83,
198,
11748,
2603,
29487,
8019,
13,
11227,
341,
355,
11034,
198,
6738,
285,
489,
62,
25981,
74,
896,
1330,
285,
29487,
18,
67,
198,
6738,
285,
489,
62,
25981,
74,
896,
13,
897,
274,
62,
25928,
16,
1330,
787,
62,
897,
274,
62,
17946,
21156,
198,
11748,
1822,
29572,
198,
11748,
28686,
198,
2,
1330,
7110,
306,
13,
34960,
62,
48205,
355,
467,
198,
2,
2559,
28,
28373,
796,
2559,
855,
198,
48610,
796,
1822,
29572,
13,
28100,
1713,
46677,
7,
11213,
11639,
41339,
6060,
11586,
1352,
350,
2149,
4303,
11537,
198,
48610,
13,
2860,
62,
49140,
10786,
12,
79,
3256,
4277,
2625,
34846,
1600,
2099,
28,
2536,
11,
1037,
11639,
5376,
286,
262,
11507,
357,
34846,
14,
6559,
13,
68,
14,
6559,
13,
72,
8,
11537,
198,
48610,
13,
2860,
62,
49140,
10786,
12,
64,
3256,
4277,
28,
17821,
11,
2099,
28,
30388,
11,
1037,
11639,
15307,
23535,
357,
17821,
14,
25101,
8,
11537,
198,
48610,
13,
2860,
62,
49140,
10786,
12,
82,
3256,
4277,
28,
25101,
11,
2099,
28,
30388,
11,
1037,
11639,
16928,
23535,
357,
17821,
14,
25101,
8,
11537,
198,
48610,
13,
2860,
62,
49140,
10786,
12,
67,
3256,
4277,
28,
25101,
11,
2099,
28,
30388,
11,
1037,
11639,
18,
35,
23535,
357,
17821,
14,
25101,
8,
11537,
198,
22046,
796,
30751,
13,
29572,
62,
22046,
3419,
198,
198,
17143,
796,
26498,
13,
79,
198,
12860,
62,
11227,
796,
26498,
13,
64,
198,
21928,
62,
11227,
796,
26498,
13,
82,
198,
15854,
18,
35,
796,
26498,
13,
67,
198,
3849,
2100,
796,
1802,
1303,
259,
285,
43012,
198,
198,
34720,
796,
1,
40720,
22915,
30487,
198,
198,
7753,
62,
3672,
796,
366,
7890,
1,
2,
1,
81,
8873,
8199,
6815,
1,
1303,
1,
47,
1,
628,
198,
2,
2559,
855,
11291,
27387,
31122,
796,
25609,
198,
5647,
15235,
220,
796,
366,
5647,
942,
1,
220,
1303,
8410,
5626,
5870,
27746,
3336,
46490,
198,
361,
28686,
13,
6978,
13,
1069,
1023,
7,
5647,
15235,
2599,
198,
220,
220,
220,
3601,
7203,
26875,
8619,
7160,
13,
1475,
9665,
5538,
481,
307,
6928,
19570,
198,
17772,
25,
198,
220,
220,
220,
28686,
13,
28015,
15908,
7,
5647,
15235,
8,
198,
198,
71,
20,
796,
289,
20,
9078,
13,
8979,
7,
34720,
10,
7753,
62,
3672,
10,
4458,
71,
20,
41707,
81,
11537,
198,
198,
43,
87,
796,
289,
20,
13,
1078,
3808,
14692,
43,
87,
8973,
198,
31633,
796,
289,
20,
13,
1078,
3808,
14692,
31633,
8973,
198,
198,
45,
87,
796,
493,
7,
71,
20,
13,
1078,
3808,
14692,
45,
87,
8973,
8,
198,
45,
88,
796,
493,
7,
71,
20,
13,
1078,
3808,
14692,
45,
88,
8973,
8,
198,
198,
26059,
220,
220,
796,
220,
493,
7,
71,
20,
13,
1078,
3808,
14692,
26059,
8973,
8,
198,
45,
83,
220,
220,
796,
220,
493,
7,
71,
20,
13,
1078,
3808,
14692,
45,
83,
8973,
8,
198,
198,
87,
796,
45941,
13,
21602,
10223,
7,
15,
11,
43,
87,
11,
45,
87,
8,
198,
88,
796,
45941,
13,
21602,
10223,
7,
15,
11,
31633,
11,
45,
88,
8,
198,
55,
11,
575,
796,
45941,
13,
76,
5069,
25928,
7,
87,
11,
331,
8,
198,
198,
2,
27039,
6376,
198,
7890,
62,
22510,
796,
45941,
13,
283,
858,
7,
9688,
28,
15,
11,
2245,
28,
45,
83,
11,
2239,
28,
26059,
11,
288,
4906,
28,
600,
8,
198,
198,
9806,
47,
796,
45941,
13,
9806,
7,
71,
20,
58,
17143,
10,
1,
14,
4,
67,
1,
4,
45,
83,
36563,
198,
1084,
47,
796,
45941,
13,
1084,
7,
71,
20,
58,
17143,
10,
1,
14,
4,
67,
1,
4,
45,
83,
36563,
198,
198,
361,
357,
12860,
62,
11227,
6624,
6407,
2599,
628,
198,
4242,
2,
19697,
311,
35400,
33290,
34,
1303,
7804,
21017,
198,
5647,
7857,
796,
45941,
13,
18747,
26933,
8628,
11,
8628,
14,
16,
13,
47448,
12962,
1303,
11337,
2546,
287,
8085,
198,
67,
14415,
796,
5867,
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,
18557,
6323,
198,
381,
72,
796,
45941,
13,
31166,
17034,
7,
40454,
1174,
17,
10,
27550,
1174,
17,
20679,
1731,
1303,
23901,
6323,
198,
198,
3149,
13,
6015,
10786,
5239,
3256,
514,
316,
1069,
28,
17821,
8,
198,
3149,
13,
6015,
10786,
10331,
3256,
1641,
11639,
82,
504,
12,
2655,
361,
3256,
2546,
28,
940,
11,
1055,
361,
11639,
34556,
12495,
7993,
11537,
198,
3149,
13,
6015,
10786,
897,
274,
3256,
8714,
1096,
28,
940,
8,
198,
3149,
13,
6015,
10786,
897,
274,
3256,
14722,
1096,
28,
940,
8,
198,
3149,
13,
6015,
10786,
742,
624,
3256,
14722,
1096,
28,
940,
8,
198,
3149,
13,
6015,
10786,
20760,
624,
3256,
14722,
1096,
28,
940,
8,
198,
3149,
13,
6015,
10786,
1455,
437,
3256,
10369,
7857,
28,
940,
8,
198,
198,
361,
357,
12860,
62,
11227,
6624,
6407,
2599,
198,
220,
220,
220,
2336,
11,
897,
16,
796,
458,
83,
13,
7266,
489,
1747,
7,
5647,
7857,
28,
5647,
7857,
14,
1495,
13,
19,
11,
1102,
2536,
1328,
62,
39786,
28,
25101,
11,
67,
14415,
28,
381,
72,
8,
198,
220,
220,
220,
2659,
796,
787,
62,
897,
274,
62,
17946,
21156,
7,
897,
16,
8,
198,
220,
220,
220,
269,
897,
796,
2659,
13,
33295,
62,
897,
274,
10786,
3506,
3256,
705,
19,
4,
3256,
705,
19,
4,
11537,
198,
220,
220,
220,
1366,
796,
289,
20,
58,
17143,
10,
1,
14,
4,
67,
1,
4,
7890,
62,
22510,
58,
15,
11907,
198,
220,
220,
220,
611,
6911,
18,
35,
6624,
6407,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2336,
796,
458,
83,
13,
26875,
7,
5647,
7857,
28,
5647,
7857,
14,
1495,
13,
19,
11,
1102,
2536,
1328,
62,
39786,
28,
17821,
11,
67,
14415,
28,
381,
72,
8,
198,
220,
220,
220,
220,
220,
220,
220,
7877,
16,
796,
458,
83,
13,
897,
274,
7,
16302,
295,
796,
1,
18,
67,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
33705,
16,
796,
7877,
16,
13,
29487,
62,
42029,
7,
55,
11,
56,
11,
7890,
8,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
33705,
16,
796,
7877,
16,
13,
3642,
454,
69,
7,
55,
11,
56,
11,
7890,
8,
198,
220,
220,
220,
269,
5657,
796,
2336,
13,
8043,
5657,
7,
9600,
16,
11,
66,
897,
28,
66,
897,
8,
198,
220,
220,
220,
281,
72,
796,
11034,
13,
37,
19524,
39520,
7,
5647,
11,
45685,
11,
37805,
28,
11925,
7,
7890,
62,
22510,
828,
3849,
2100,
28,
3849,
2100,
11,
2436,
270,
28,
25101,
8,
198,
220,
220,
220,
1303,
281,
72,
13,
21928,
10786,
40715,
62,
13200,
13,
27908,
3256,
16002,
11639,
48466,
368,
363,
624,
11537,
198,
220,
220,
220,
458,
83,
13,
12860,
3419,
198,
220,
220,
220,
611,
7,
21928,
62,
11227,
6624,
6407,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
26606,
796,
11034,
13,
34422,
17816,
487,
43913,
20520,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6260,
796,
26606,
7,
29647,
16193,
16,
14,
3849,
2100,
828,
20150,
28,
11600,
7,
49016,
11639,
5308,
33809,
1643,
4873,
28,
39188,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2845,
43160,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
487,
43913,
407,
1695,
2111,
7412,
13436,
624,
34379,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6260,
796,
11034,
13,
5159,
13436,
624,
34379,
7,
29647,
16193,
16,
14,
3849,
2100,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
50,
2703,
3807,
284,
43825,
5647,
15235,
10,
1,
11757,
4222,
4043,
19424,
19570,
198,
220,
220,
220,
220,
220,
220,
220,
281,
72,
13,
21928,
7,
5647,
15235,
10,
1,
30487,
10,
17143,
10,
6,
62,
11227,
341,
62,
47,
2149,
4303,
13,
3149,
19,
11537,
198
] | 2.319273 | 1,375 |
# coding=utf-8
# Copyright 2021 The Google Research Authors.
#
# 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.
# pylint: skip-file
import numpy as np
from aloe.common.synthetic.toy_data_gen import inf_train_gen
| [
2,
19617,
28,
40477,
12,
23,
198,
2,
15069,
33448,
383,
3012,
4992,
46665,
13,
198,
2,
198,
2,
49962,
739,
262,
24843,
13789,
11,
10628,
362,
13,
15,
357,
1169,
366,
34156,
15341,
198,
2,
345,
743,
407,
779,
428,
2393,
2845,
287,
11846,
351,
262,
13789,
13,
198,
2,
921,
743,
7330,
257,
4866,
286,
262,
13789,
379,
198,
2,
198,
2,
220,
220,
220,
220,
2638,
1378,
2503,
13,
43073,
13,
2398,
14,
677,
4541,
14,
43,
2149,
24290,
12,
17,
13,
15,
198,
2,
198,
2,
17486,
2672,
416,
9723,
1099,
393,
4987,
284,
287,
3597,
11,
3788,
198,
2,
9387,
739,
262,
13789,
318,
9387,
319,
281,
366,
1921,
3180,
1,
29809,
1797,
11,
198,
2,
42881,
34764,
11015,
6375,
7102,
49828,
11053,
3963,
15529,
509,
12115,
11,
2035,
4911,
393,
17142,
13,
198,
2,
4091,
262,
13789,
329,
262,
2176,
3303,
15030,
21627,
290,
198,
2,
11247,
739,
262,
13789,
13,
198,
198,
2,
279,
2645,
600,
25,
14267,
12,
7753,
198,
198,
11748,
299,
32152,
355,
45941,
198,
6738,
435,
2577,
13,
11321,
13,
1837,
429,
6587,
13,
83,
726,
62,
7890,
62,
5235,
1330,
1167,
62,
27432,
62,
5235,
628,
198
] | 3.572864 | 199 |
#!/usr/bin/env python3
"""
This files has the NGram class.
"""
import pickle
from os.path import join
import numpy as np
import re
from tqdm import tqdm
if __name__ == '__main__':
with open(join('corpus', 'poems.pkl'), 'rb') as handle:
poems = pickle.load(handle)
unigram = NGram(poems, n=1)
#bigram = NGram(poems, n=2)
#trigram = NGram(poems, n=3)
#fourthgram = NGram(poems, n=4)
# save to pkl file
with open('unigram.pkl', 'wb') as handle:
pickle.dump(unigram, handle)
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
18,
198,
198,
37811,
198,
1212,
3696,
468,
262,
39058,
859,
1398,
13,
198,
37811,
198,
198,
11748,
2298,
293,
198,
6738,
28686,
13,
6978,
1330,
4654,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
302,
198,
6738,
256,
80,
36020,
1330,
256,
80,
36020,
628,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
351,
1280,
7,
22179,
10786,
10215,
79,
385,
3256,
705,
7501,
5232,
13,
79,
41582,
33809,
705,
26145,
11537,
355,
5412,
25,
198,
220,
220,
220,
220,
220,
220,
220,
31888,
796,
2298,
293,
13,
2220,
7,
28144,
8,
628,
220,
220,
220,
555,
328,
859,
796,
39058,
859,
7,
7501,
5232,
11,
299,
28,
16,
8,
198,
220,
220,
220,
1303,
14261,
859,
796,
39058,
859,
7,
7501,
5232,
11,
299,
28,
17,
8,
198,
220,
220,
220,
1303,
2213,
328,
859,
796,
39058,
859,
7,
7501,
5232,
11,
299,
28,
18,
8,
198,
220,
220,
220,
1303,
49393,
4546,
796,
39058,
859,
7,
7501,
5232,
11,
299,
28,
19,
8,
628,
220,
220,
220,
1303,
3613,
284,
279,
41582,
2393,
198,
220,
220,
220,
351,
1280,
10786,
403,
328,
859,
13,
79,
41582,
3256,
705,
39346,
11537,
355,
5412,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2298,
293,
13,
39455,
7,
403,
328,
859,
11,
5412,
8,
198
] | 2.25 | 232 |
"""
Generate each script with customs variables by client
"""
import os
import glob
import json
import argparse
from pathlib import Path
# paths
path_cloud = str(Path(__file__).absolute().parent.parent)
# path: scripts powershell
path_ori_runbooks = '/scripts/runbooks/'
path_dest_runbooks = '/azure_automatiom_account/runbooks/'
path_automation_account = ''.join(path_cloud + path_dest_runbooks)
path_create_db_as = ''.join(path_cloud + path_ori_runbooks + 'PRODUCT_NAME-CLIENT_NAME-create_db-as-runbook.ps1')
path_apply_roles_as = ''.join(path_cloud + path_ori_runbooks + 'PRODUCT_NAME-CLIENT_NAME-apply-roles-as-runbook.ps1')
path_restore_bkp_as = ''.join(path_cloud + path_ori_runbooks + 'PRODUCT_NAME-CLIENT_NAME-restore-bkp-as-runbook.ps1')
path_send_email = ''.join(path_cloud + path_ori_runbooks + 'PRODUCT_NAME-CLIENT_NAME-send-email-runbook.ps1')
path_start_stop_as = ''.join(path_cloud + path_ori_runbooks + 'PRODUCT_NAME-CLIENT_NAME-start-stop-as-runbook.ps1')
path_update_bkp_as = ''.join(path_cloud + path_ori_runbooks + 'PRODUCT_NAME-CLIENT_NAME-update-bkp-as-runbook.ps1')
path_process_large_volume_tables_as = ''.join(path_cloud + path_ori_runbooks + 'PRODUCT_NAME-CLIENT_NAME-process-large-volume-tables-as-runbook.ps1')
path_process_partitions_as = ''.join(path_cloud + path_ori_runbooks + 'PRODUCT_NAME-CLIENT_NAME-daily-process-partitions-as-runbook.ps1')
path_process_partitions_monthly_as = ''.join(path_cloud + path_ori_runbooks + 'PRODUCT_NAME-CLIENT_NAME-monthly-process-partitions-as-runbook.ps1')
path_update_modules = ''.join(path_cloud + path_ori_runbooks + 'update-modules-runbook.ps1')
path_update_certicate = ''.join(path_cloud + path_ori_runbooks + 'update-certificate-runbook.ps1')
# path: scripts tmsl
path_ori_tmsl = '/scripts/tmsl_mp/'
path_dest_tmsl = '/azure_analysis_services/tmsl/'
path_analysis_services = ''.join(path_cloud + path_dest_tmsl)
path_ori_role_admins = ''.join(path_cloud + path_ori_tmsl + 'role_admins.json')
path_ori_role_readers = ''.join(path_cloud + path_ori_tmsl + 'role_readers.json')
path_dest_role_admins = ''.join(path_cloud + path_dest_tmsl + 'role_admins.json')
path_dest_role_readers = ''.join(path_cloud + path_dest_tmsl + 'role_readers.json')
# path: partitions
path_partitions = ''.join(path_cloud + '/azure_analysis_services/partitions/')
def get_partitions_name(path_partitions: str, partition_to_exclude: str) -> str:
""" Read all files in path_partitions and create a list
:return: string in format of tuple because powershell need this ()
special caraters.
"""
partitions_files = []
for file in glob.glob(path_partitions + '*.sql'):
partition = os.path.splitext(os.path.basename(file))[0]
partitions_files.append(partition)
partitions_files.remove(partition_to_exclude) # Remove large volumne table
partition_tuple = tuple(i for i in partitions_files)
return str(partition_tuple)
def prepare_tmsl(tmsl: str, local: str) -> str:
"""Prepare the path from local
:return:
Path of file tmsl
"""
if local == 'origin':
return ''.join(path_cloud + path_ori_tmsl + 'create_db_'+tmsl+'.json')
else:
return ''.join(path_cloud + path_dest_tmsl + 'create_db_'+tmsl+'.json')
def write_script(path_dest: str, file_name: str, script_content: str):
"""Create script powershell to use in runbooks
:return:
file *.ps1
"""
try:
return open(''.join(path_dest + file_name), mode='w+', encoding="utf-8") \
.write(script_content)
except IOError:
raise Exception('Request Error in ', file_name)
if __name__ == '__main__':
parser = argparse.ArgumentParser(
description='Generate each script with customs variables by client')
parser.add_argument('--subscritpion_id',
type=str,
required=False,
help='Number subscritpion_id with 4 fileds')
parser.add_argument('--data_source',
type=str,
default='oracle',
required=False,
help='oracle or postgresql')
parser.add_argument('--product_name',
type=str,
default='PRODUCT_NAME',
required=False,
help='Name in lower case')
parser.add_argument('--client_name',
type=str,
default='mp',
required=False,
help='Name in Upper case')
parser.add_argument('--location',
type=str,
default='brazilsouth',
required=False,
help='Localization to create resources in Azure')
parser.add_argument('--list_admins',
type=str,
default='[[email protected]]',
required=False,
help='Users to role admins in analysis services')
parser.add_argument('--list_readers',
type=str,
default='[[email protected]]',
required=False,
help='Users to role readers in analysis services')
parser.add_argument('--large_volume_table',
type=str,
default='fInfoProcessoMensal',
required=False,
help='Table`s name with need split partitions')
parser.add_argument('--column_to_split',
type=str,
default='idanomesreferencia',
required=False,
help='Column`s name with need split partitions')
parser.add_argument('--total_month',
type=str,
default='12',
required=False,
help='Range of month to storage in Analysis Services')
parser.add_argument('--email_from',
type=str,
default='[email protected]',
required=False,
help='Sender email when runbook fail')
parser.add_argument('--email_to',
type=str,
default='[email protected]',
required=False,
help='Receiver email when runbooks fail.')
parser.add_argument('--smtp_server',
type=str,
default='[email protected]',
required=False,
help='Receiver email when runbooks fail.')
parser.add_argument('--smtp_port',
type=str,
default='[email protected]',
required=False,
help='Receiver email when runbooks fail.')
args = parser.parse_args() # <class 'argparse.ArgumentParser'>
subscritpion_id = args.subscritpion_id
data_source = args.data_source
product_name = args.product_name
client_name = args.client_name
location = args.location
list_admins = args.list_admins
list_readers = args.list_readers
large_volume_table = args.large_volume_table
column_to_split = args.column_to_split
total_month = args.total_month
email_from = args.email_from
email_to = args.email_to
smtp_server = args.smtp_server
smtp_port = args.smtp_port
main(subscritpion_id,
data_source,
product_name,
client_name,
location,
list_admins,
list_readers,
large_volume_table,
column_to_split,
total_month,
email_from,
email_to,
smtp_server,
smtp_port)
| [
37811,
198,
8645,
378,
1123,
4226,
351,
17112,
9633,
416,
5456,
198,
37811,
198,
11748,
28686,
198,
11748,
15095,
198,
11748,
33918,
198,
11748,
1822,
29572,
198,
6738,
3108,
8019,
1330,
10644,
198,
198,
2,
13532,
198,
6978,
62,
17721,
796,
965,
7,
15235,
7,
834,
7753,
834,
737,
48546,
22446,
8000,
13,
8000,
8,
198,
198,
2,
3108,
25,
14750,
5635,
12758,
198,
6978,
62,
10145,
62,
5143,
12106,
796,
31051,
46521,
14,
5143,
12106,
14,
6,
198,
6978,
62,
16520,
62,
5143,
12106,
796,
31051,
1031,
495,
62,
2306,
296,
7246,
296,
62,
23317,
14,
5143,
12106,
14,
6,
198,
6978,
62,
2306,
296,
341,
62,
23317,
796,
705,
4458,
22179,
7,
6978,
62,
17721,
1343,
3108,
62,
16520,
62,
5143,
12106,
8,
198,
198,
6978,
62,
17953,
62,
9945,
62,
292,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
796,
705,
4458,
22179,
7,
6978,
62,
17721,
1343,
3108,
62,
10145,
62,
5143,
12106,
1343,
705,
4805,
28644,
62,
20608,
12,
5097,
28495,
62,
20608,
12,
17953,
62,
9945,
12,
292,
12,
5143,
2070,
13,
862,
16,
11537,
198,
6978,
62,
39014,
62,
305,
829,
62,
292,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
796,
705,
4458,
22179,
7,
6978,
62,
17721,
1343,
3108,
62,
10145,
62,
5143,
12106,
1343,
705,
4805,
28644,
62,
20608,
12,
5097,
28495,
62,
20608,
12,
39014,
12,
305,
829,
12,
292,
12,
5143,
2070,
13,
862,
16,
11537,
198,
6978,
62,
2118,
382,
62,
65,
74,
79,
62,
292,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
796,
705,
4458,
22179,
7,
6978,
62,
17721,
1343,
3108,
62,
10145,
62,
5143,
12106,
1343,
705,
4805,
28644,
62,
20608,
12,
5097,
28495,
62,
20608,
12,
2118,
382,
12,
65,
74,
79,
12,
292,
12,
5143,
2070,
13,
862,
16,
11537,
198,
6978,
62,
21280,
62,
12888,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
796,
705,
4458,
22179,
7,
6978,
62,
17721,
1343,
3108,
62,
10145,
62,
5143,
12106,
1343,
705,
4805,
28644,
62,
20608,
12,
5097,
28495,
62,
20608,
12,
21280,
12,
12888,
12,
5143,
2070,
13,
862,
16,
11537,
198,
6978,
62,
9688,
62,
11338,
62,
292,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
796,
705,
4458,
22179,
7,
6978,
62,
17721,
1343,
3108,
62,
10145,
62,
5143,
12106,
1343,
705,
4805,
28644,
62,
20608,
12,
5097,
28495,
62,
20608,
12,
9688,
12,
11338,
12,
292,
12,
5143,
2070,
13,
862,
16,
11537,
198,
6978,
62,
19119,
62,
65,
74,
79,
62,
292,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
796,
705,
4458,
22179,
7,
6978,
62,
17721,
1343,
3108,
62,
10145,
62,
5143,
12106,
1343,
705,
4805,
28644,
62,
20608,
12,
5097,
28495,
62,
20608,
12,
19119,
12,
65,
74,
79,
12,
292,
12,
5143,
2070,
13,
862,
16,
11537,
198,
6978,
62,
14681,
62,
11664,
62,
29048,
62,
83,
2977,
62,
292,
220,
220,
220,
220,
796,
705,
4458,
22179,
7,
6978,
62,
17721,
1343,
3108,
62,
10145,
62,
5143,
12106,
1343,
705,
4805,
28644,
62,
20608,
12,
5097,
28495,
62,
20608,
12,
14681,
12,
11664,
12,
29048,
12,
83,
2977,
12,
292,
12,
5143,
2070,
13,
862,
16,
11537,
198,
6978,
62,
14681,
62,
3911,
1756,
62,
292,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
796,
705,
4458,
22179,
7,
6978,
62,
17721,
1343,
3108,
62,
10145,
62,
5143,
12106,
1343,
705,
4805,
28644,
62,
20608,
12,
5097,
28495,
62,
20608,
12,
29468,
12,
14681,
12,
3911,
1756,
12,
292,
12,
5143,
2070,
13,
862,
16,
11537,
198,
6978,
62,
14681,
62,
3911,
1756,
62,
8424,
306,
62,
292,
220,
220,
220,
220,
220,
796,
705,
4458,
22179,
7,
6978,
62,
17721,
1343,
3108,
62,
10145,
62,
5143,
12106,
1343,
705,
4805,
28644,
62,
20608,
12,
5097,
28495,
62,
20608,
12,
8424,
306,
12,
14681,
12,
3911,
1756,
12,
292,
12,
5143,
2070,
13,
862,
16,
11537,
198,
6978,
62,
19119,
62,
18170,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
796,
705,
4458,
22179,
7,
6978,
62,
17721,
1343,
3108,
62,
10145,
62,
5143,
12106,
1343,
705,
19119,
12,
18170,
12,
5143,
2070,
13,
862,
16,
11537,
198,
6978,
62,
19119,
62,
22583,
5344,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
796,
705,
4458,
22179,
7,
6978,
62,
17721,
1343,
3108,
62,
10145,
62,
5143,
12106,
1343,
705,
19119,
12,
22583,
22460,
12,
5143,
2070,
13,
862,
16,
11537,
198,
198,
2,
3108,
25,
14750,
256,
907,
75,
198,
6978,
62,
10145,
62,
83,
907,
75,
796,
31051,
46521,
14,
83,
907,
75,
62,
3149,
14,
6,
198,
6978,
62,
16520,
62,
83,
907,
75,
796,
31051,
1031,
495,
62,
20930,
62,
30416,
14,
83,
907,
75,
14,
6,
198,
6978,
62,
20930,
62,
30416,
796,
705,
4458,
22179,
7,
6978,
62,
17721,
1343,
3108,
62,
16520,
62,
83,
907,
75,
8,
198,
198,
6978,
62,
10145,
62,
18090,
62,
324,
42951,
796,
705,
4458,
22179,
7,
6978,
62,
17721,
1343,
3108,
62,
10145,
62,
83,
907,
75,
1343,
705,
18090,
62,
324,
42951,
13,
17752,
11537,
198,
6978,
62,
10145,
62,
18090,
62,
961,
364,
796,
705,
4458,
22179,
7,
6978,
62,
17721,
1343,
3108,
62,
10145,
62,
83,
907,
75,
1343,
705,
18090,
62,
961,
364,
13,
17752,
11537,
198,
198,
6978,
62,
16520,
62,
18090,
62,
324,
42951,
796,
705,
4458,
22179,
7,
6978,
62,
17721,
1343,
3108,
62,
16520,
62,
83,
907,
75,
1343,
705,
18090,
62,
324,
42951,
13,
17752,
11537,
198,
6978,
62,
16520,
62,
18090,
62,
961,
364,
796,
705,
4458,
22179,
7,
6978,
62,
17721,
1343,
3108,
62,
16520,
62,
83,
907,
75,
1343,
705,
18090,
62,
961,
364,
13,
17752,
11537,
198,
198,
2,
3108,
25,
43869,
198,
6978,
62,
3911,
1756,
796,
705,
4458,
22179,
7,
6978,
62,
17721,
1343,
31051,
1031,
495,
62,
20930,
62,
30416,
14,
3911,
1756,
14,
11537,
628,
198,
4299,
651,
62,
3911,
1756,
62,
3672,
7,
6978,
62,
3911,
1756,
25,
965,
11,
18398,
62,
1462,
62,
1069,
9152,
25,
965,
8,
4613,
965,
25,
198,
220,
220,
220,
37227,
4149,
477,
3696,
287,
3108,
62,
3911,
1756,
290,
2251,
257,
1351,
198,
220,
220,
220,
1058,
7783,
25,
4731,
287,
5794,
286,
46545,
780,
5635,
12758,
761,
428,
7499,
198,
220,
220,
220,
2041,
1097,
8605,
13,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
43869,
62,
16624,
796,
17635,
628,
220,
220,
220,
329,
2393,
287,
15095,
13,
4743,
672,
7,
6978,
62,
3911,
1756,
1343,
705,
24620,
25410,
6,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
18398,
796,
28686,
13,
6978,
13,
22018,
578,
742,
7,
418,
13,
6978,
13,
12093,
12453,
7,
7753,
4008,
58,
15,
60,
198,
220,
220,
220,
220,
220,
220,
220,
43869,
62,
16624,
13,
33295,
7,
3911,
653,
8,
628,
220,
220,
220,
43869,
62,
16624,
13,
28956,
7,
3911,
653,
62,
1462,
62,
1069,
9152,
8,
1303,
17220,
1588,
2322,
388,
710,
3084,
198,
220,
220,
220,
18398,
62,
83,
29291,
796,
46545,
7,
72,
329,
1312,
287,
43869,
62,
16624,
8,
628,
220,
220,
220,
1441,
965,
7,
3911,
653,
62,
83,
29291,
8,
628,
198,
198,
4299,
8335,
62,
83,
907,
75,
7,
83,
907,
75,
25,
965,
11,
1957,
25,
965,
8,
4613,
965,
25,
198,
220,
220,
220,
37227,
37534,
533,
262,
3108,
422,
1957,
198,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
220,
220,
220,
220,
10644,
286,
2393,
256,
907,
75,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
1957,
6624,
705,
47103,
10354,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
705,
4458,
22179,
7,
6978,
62,
17721,
1343,
3108,
62,
10145,
62,
83,
907,
75,
1343,
705,
17953,
62,
9945,
62,
6,
10,
83,
907,
75,
10,
4458,
17752,
11537,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
705,
4458,
22179,
7,
6978,
62,
17721,
1343,
3108,
62,
16520,
62,
83,
907,
75,
1343,
705,
17953,
62,
9945,
62,
6,
10,
83,
907,
75,
10,
4458,
17752,
11537,
628,
198,
198,
4299,
3551,
62,
12048,
7,
6978,
62,
16520,
25,
965,
11,
2393,
62,
3672,
25,
965,
11,
4226,
62,
11299,
25,
965,
2599,
198,
220,
220,
220,
37227,
16447,
220,
4226,
5635,
12758,
284,
779,
287,
1057,
12106,
198,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2393,
46866,
862,
16,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
1280,
10786,
4458,
22179,
7,
6978,
62,
16520,
1343,
2393,
62,
3672,
828,
4235,
11639,
86,
10,
3256,
21004,
2625,
40477,
12,
23,
4943,
3467,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
764,
13564,
7,
12048,
62,
11299,
8,
198,
220,
220,
220,
2845,
24418,
12331,
25,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
35528,
10786,
18453,
13047,
287,
46083,
2393,
62,
3672,
8,
628,
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,
198,
220,
220,
220,
220,
220,
220,
220,
6764,
11639,
8645,
378,
1123,
4226,
351,
17112,
9633,
416,
5456,
11537,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
7266,
1416,
799,
79,
295,
62,
312,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2099,
28,
2536,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2672,
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,
1037,
11639,
15057,
5294,
799,
79,
295,
62,
312,
351,
604,
1226,
5379,
11537,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
7890,
62,
10459,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2099,
28,
2536,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4277,
11639,
273,
6008,
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,
2672,
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,
1037,
11639,
273,
6008,
393,
1281,
34239,
13976,
11537,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
11167,
62,
3672,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2099,
28,
2536,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4277,
11639,
4805,
28644,
62,
20608,
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,
2672,
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,
1037,
11639,
5376,
287,
2793,
1339,
11537,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
16366,
62,
3672,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2099,
28,
2536,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4277,
11639,
3149,
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,
2672,
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,
1037,
11639,
5376,
287,
20390,
1339,
11537,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
24886,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2099,
28,
2536,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4277,
11639,
65,
3247,
4487,
1536,
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,
2672,
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,
1037,
11639,
14565,
1634,
284,
2251,
4133,
287,
22134,
11537,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
4868,
62,
324,
42951,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2099,
28,
2536,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4277,
11639,
58,
29460,
31,
324,
13,
785,
60,
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,
2672,
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,
1037,
11639,
14490,
284,
2597,
44563,
287,
3781,
2594,
11537,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
4868,
62,
961,
364,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2099,
28,
2536,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4277,
11639,
58,
29460,
31,
324,
13,
785,
60,
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,
2672,
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,
1037,
11639,
14490,
284,
2597,
7183,
287,
3781,
2594,
11537,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
11664,
62,
29048,
62,
11487,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2099,
28,
2536,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4277,
11639,
69,
12360,
18709,
78,
44,
641,
282,
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,
2672,
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,
1037,
11639,
10962,
63,
82,
1438,
351,
761,
6626,
43869,
11537,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
28665,
62,
1462,
62,
35312,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2099,
28,
2536,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4277,
11639,
27610,
2586,
5420,
567,
10782,
544,
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,
2672,
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,
1037,
11639,
39470,
63,
82,
1438,
351,
761,
6626,
43869,
11537,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
23350,
62,
8424,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2099,
28,
2536,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4277,
11639,
1065,
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,
2672,
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,
1037,
11639,
17257,
286,
1227,
284,
6143,
287,
14691,
6168,
11537,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
12888,
62,
6738,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2099,
28,
2536,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4277,
11639,
5796,
34788,
31,
39722,
13,
785,
13,
1671,
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,
2672,
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,
1037,
11639,
50,
2194,
3053,
618,
1057,
2070,
2038,
11537,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
12888,
62,
1462,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2099,
28,
2536,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4277,
11639,
1671,
36909,
13,
76,
280,
430,
31,
39722,
13,
785,
13,
1671,
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,
2672,
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,
1037,
11639,
3041,
39729,
3053,
618,
1057,
12106,
2038,
2637,
8,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
5796,
34788,
62,
15388,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2099,
28,
2536,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4277,
11639,
1671,
36909,
13,
76,
280,
430,
31,
39722,
13,
785,
13,
1671,
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,
2672,
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,
1037,
11639,
3041,
39729,
3053,
618,
1057,
12106,
2038,
2637,
8,
198,
220,
220,
220,
30751,
13,
2860,
62,
49140,
10786,
438,
5796,
34788,
62,
634,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2099,
28,
2536,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4277,
11639,
1671,
36909,
13,
76,
280,
430,
31,
39722,
13,
785,
13,
1671,
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,
2672,
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,
1037,
11639,
3041,
39729,
3053,
618,
1057,
12106,
2038,
2637,
8,
628,
220,
220,
220,
26498,
796,
30751,
13,
29572,
62,
22046,
3419,
220,
1303,
1279,
4871,
705,
853,
29572,
13,
28100,
1713,
46677,
44167,
198,
220,
220,
220,
5294,
799,
79,
295,
62,
312,
796,
26498,
13,
7266,
1416,
799,
79,
295,
62,
312,
198,
220,
220,
220,
1366,
62,
10459,
796,
26498,
13,
7890,
62,
10459,
198,
220,
220,
220,
1720,
62,
3672,
796,
26498,
13,
11167,
62,
3672,
198,
220,
220,
220,
5456,
62,
3672,
796,
26498,
13,
16366,
62,
3672,
198,
220,
220,
220,
4067,
796,
26498,
13,
24886,
198,
220,
220,
220,
1351,
62,
324,
42951,
796,
26498,
13,
4868,
62,
324,
42951,
198,
220,
220,
220,
1351,
62,
961,
364,
796,
26498,
13,
4868,
62,
961,
364,
198,
220,
220,
220,
1588,
62,
29048,
62,
11487,
796,
26498,
13,
11664,
62,
29048,
62,
11487,
198,
220,
220,
220,
5721,
62,
1462,
62,
35312,
796,
26498,
13,
28665,
62,
1462,
62,
35312,
198,
220,
220,
220,
2472,
62,
8424,
796,
26498,
13,
23350,
62,
8424,
198,
220,
220,
220,
3053,
62,
6738,
796,
26498,
13,
12888,
62,
6738,
198,
220,
220,
220,
3053,
62,
1462,
796,
26498,
13,
12888,
62,
1462,
198,
220,
220,
220,
895,
34788,
62,
15388,
796,
26498,
13,
5796,
34788,
62,
15388,
198,
220,
220,
220,
895,
34788,
62,
634,
796,
26498,
13,
5796,
34788,
62,
634,
628,
220,
220,
220,
1388,
7,
7266,
1416,
799,
79,
295,
62,
312,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
1366,
62,
10459,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
1720,
62,
3672,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
5456,
62,
3672,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
4067,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
1351,
62,
324,
42951,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
1351,
62,
961,
364,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
1588,
62,
29048,
62,
11487,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
5721,
62,
1462,
62,
35312,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
2472,
62,
8424,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
3053,
62,
6738,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
3053,
62,
1462,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
895,
34788,
62,
15388,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
895,
34788,
62,
634,
8,
198
] | 2.029952 | 3,973 |
from tensorflow.keras.preprocessing.image import ImageDataGenerator
from ...dataloading import SequenceWrapper
| [
6738,
11192,
273,
11125,
13,
6122,
292,
13,
3866,
36948,
13,
9060,
1330,
7412,
6601,
8645,
1352,
198,
198,
6738,
2644,
67,
10254,
1170,
278,
1330,
45835,
36918,
2848,
628
] | 3.766667 | 30 |
#!/usr/bin/env python
import re
from pathlib import Path
import luigi
from .core import FtarcTask
if __name__ == '__main__':
luigi.run()
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
198,
11748,
302,
198,
6738,
3108,
8019,
1330,
10644,
198,
198,
11748,
300,
84,
25754,
198,
198,
6738,
764,
7295,
1330,
45231,
5605,
25714,
628,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
300,
84,
25754,
13,
5143,
3419,
198
] | 2.578947 | 57 |
#!/usr/bin/env python3
# date: 2020.01.17
# https://stackoverflow.com/questions/59780007/ajax-with-flask-for-real-time-esque-updates-of-sensor-data-on-webpage/
from flask import Flask, request, render_template_string, jsonify
import datetime
import time
import threading
app = Flask(__name__)
running = False # to control loop in thread
value = 0
@app.route('/')
@app.route('/<device>/<action>')
@app.route('/update', methods=['POST'])
app.run(debug=True)
| [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
18,
198,
198,
2,
3128,
25,
12131,
13,
486,
13,
1558,
198,
2,
3740,
1378,
25558,
2502,
11125,
13,
785,
14,
6138,
507,
14,
3270,
3695,
830,
22,
14,
1228,
897,
12,
4480,
12,
2704,
2093,
12,
1640,
12,
5305,
12,
2435,
12,
28939,
12,
929,
19581,
12,
1659,
12,
82,
22854,
12,
7890,
12,
261,
12,
12384,
7700,
14,
198,
198,
6738,
42903,
1330,
46947,
11,
2581,
11,
8543,
62,
28243,
62,
8841,
11,
33918,
1958,
198,
11748,
4818,
8079,
198,
11748,
640,
198,
11748,
4704,
278,
198,
198,
1324,
796,
46947,
7,
834,
3672,
834,
8,
198,
198,
20270,
796,
10352,
1303,
284,
1630,
9052,
287,
4704,
198,
8367,
796,
657,
220,
220,
220,
220,
220,
220,
220,
198,
220,
220,
220,
220,
198,
220,
220,
220,
220,
198,
31,
1324,
13,
38629,
10786,
14,
11537,
198,
31,
1324,
13,
38629,
10786,
14,
27,
25202,
29,
14,
27,
2673,
29,
11537,
198,
198,
31,
1324,
13,
38629,
10786,
14,
19119,
3256,
5050,
28,
17816,
32782,
6,
12962,
198,
198,
1324,
13,
5143,
7,
24442,
28,
17821,
8,
628,
198
] | 2.544974 | 189 |
def test_constructed_account_added_to_database(db_session):
"""Test adding a complete stock entry."""
from ..models import Account
assert len(db_session.query(Account).all()) == 0
account = Account(
username='TEST',
password='1234',
email='[email protected]',
)
db_session.add(account)
assert len(db_session.query(Account).all()) == 1
def test_account_with_no_email_throws_error(db_session):
"""Test adding stock with required field empty."""
from ..models import Account
import pytest
from sqlalchemy.exc import IntegrityError
assert len(db_session.query(Account).all()) == 0
account = Account(
username='Test2',
password='1234',
email=None
)
with pytest.raises(IntegrityError):
db_session.add(account)
assert db_session.query(Account).one_or_none() is None
| [
4299,
1332,
62,
1102,
16242,
62,
23317,
62,
29373,
62,
1462,
62,
48806,
7,
9945,
62,
29891,
2599,
198,
220,
220,
220,
37227,
14402,
4375,
257,
1844,
4283,
5726,
526,
15931,
198,
220,
220,
220,
422,
11485,
27530,
1330,
10781,
628,
220,
220,
220,
6818,
18896,
7,
9945,
62,
29891,
13,
22766,
7,
30116,
737,
439,
28955,
6624,
657,
198,
220,
220,
220,
1848,
796,
10781,
7,
198,
220,
220,
220,
220,
220,
220,
220,
20579,
11639,
51,
6465,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
9206,
11639,
1065,
2682,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
3053,
11639,
11246,
31,
12888,
13,
785,
3256,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
20613,
62,
29891,
13,
2860,
7,
23317,
8,
198,
220,
220,
220,
6818,
18896,
7,
9945,
62,
29891,
13,
22766,
7,
30116,
737,
439,
28955,
6624,
352,
628,
198,
4299,
1332,
62,
23317,
62,
4480,
62,
3919,
62,
12888,
62,
400,
8516,
62,
18224,
7,
9945,
62,
29891,
2599,
198,
220,
220,
220,
37227,
14402,
4375,
4283,
351,
2672,
2214,
6565,
526,
15931,
198,
220,
220,
220,
422,
11485,
27530,
1330,
10781,
198,
220,
220,
220,
1330,
12972,
9288,
198,
220,
220,
220,
422,
44161,
282,
26599,
13,
41194,
1330,
39348,
12331,
628,
220,
220,
220,
6818,
18896,
7,
9945,
62,
29891,
13,
22766,
7,
30116,
737,
439,
28955,
6624,
657,
198,
220,
220,
220,
1848,
796,
10781,
7,
198,
220,
220,
220,
220,
220,
220,
220,
20579,
11639,
14402,
17,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
9206,
11639,
1065,
2682,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
3053,
28,
14202,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
351,
12972,
9288,
13,
430,
2696,
7,
34500,
10138,
12331,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
20613,
62,
29891,
13,
2860,
7,
23317,
8,
198,
220,
220,
220,
220,
220,
220,
220,
6818,
20613,
62,
29891,
13,
22766,
7,
30116,
737,
505,
62,
273,
62,
23108,
3419,
318,
6045,
198
] | 2.630952 | 336 |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
pathlib_mate provide extensive methods, attributes for pathlib.
"""
__version__ = "0.0.6"
__short_description__ = "An extended and more powerful pathlib."
__license__ = "MIT"
__author__ = "Sanhe Hu"
from .pathlib import Path | [
2,
48443,
14629,
14,
8800,
14,
24330,
21015,
198,
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
198,
37811,
198,
6978,
8019,
62,
9830,
2148,
7667,
5050,
11,
12608,
329,
3108,
8019,
13,
198,
37811,
198,
198,
834,
9641,
834,
796,
366,
15,
13,
15,
13,
21,
1,
198,
834,
19509,
62,
11213,
834,
796,
366,
2025,
7083,
290,
517,
3665,
3108,
8019,
526,
198,
834,
43085,
834,
796,
366,
36393,
1,
198,
834,
9800,
834,
796,
366,
15017,
258,
11256,
1,
628,
198,
6738,
764,
6978,
8019,
1330,
10644,
220,
220,
220,
220
] | 2.82 | 100 |
import numpy as np
import torch.nn as nn
import torch
upsampler = nn.Upsample(scale_factor=4, mode='bilinear')
| [
11748,
299,
32152,
355,
45941,
198,
11748,
28034,
13,
20471,
355,
299,
77,
198,
11748,
28034,
198,
198,
4739,
321,
20053,
796,
299,
77,
13,
52,
862,
1403,
7,
9888,
62,
31412,
28,
19,
11,
4235,
11639,
33473,
259,
451,
11537,
628
] | 2.690476 | 42 |
if __name__ == '__main__':
p = Pessoa()
print(Pessoa.comprimentar(p))
print(id(p))
print(p.comprimentar()) | [
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
279,
796,
350,
408,
12162,
3419,
198,
220,
220,
220,
3601,
7,
47,
408,
12162,
13,
785,
1050,
3681,
283,
7,
79,
4008,
198,
220,
220,
220,
3601,
7,
312,
7,
79,
4008,
198,
220,
220,
220,
3601,
7,
79,
13,
785,
1050,
3681,
283,
28955
] | 2 | 62 |
# The MIT License
#
# Copyright (c) 2008 James Piechota
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
# Later this can be made into a class to support progress windows
# on different platforms (e.g. Max vs. Maya, or Win vs. Linux)
#
import sys
from maya.OpenMayaUI import MProgressWindow
from maya.OpenMaya import MGlobal
import ns.py as npy
import ns.py.Errors
_progressing = False
_uiProgress = False
| [
2,
383,
17168,
13789,
201,
198,
2,
197,
201,
198,
2,
15069,
357,
66,
8,
3648,
3700,
21690,
354,
4265,
201,
198,
2,
197,
201,
198,
2,
2448,
3411,
318,
29376,
7520,
11,
1479,
286,
3877,
11,
284,
597,
1048,
16727,
257,
4866,
201,
198,
2,
286,
428,
3788,
290,
3917,
10314,
3696,
357,
1169,
366,
25423,
12340,
284,
1730,
201,
198,
2,
287,
262,
10442,
1231,
17504,
11,
1390,
1231,
17385,
262,
2489,
201,
198,
2,
284,
779,
11,
4866,
11,
13096,
11,
20121,
11,
7715,
11,
14983,
11,
850,
43085,
11,
290,
14,
273,
3677,
201,
198,
2,
9088,
286,
262,
10442,
11,
290,
284,
8749,
6506,
284,
4150,
262,
10442,
318,
201,
198,
2,
30760,
284,
466,
523,
11,
2426,
284,
262,
1708,
3403,
25,
201,
198,
2,
201,
198,
2,
383,
2029,
6634,
4003,
290,
428,
7170,
4003,
2236,
307,
3017,
287,
201,
198,
2,
477,
9088,
393,
8904,
16690,
286,
262,
10442,
13,
201,
198,
2,
201,
198,
2,
3336,
47466,
3180,
36592,
2389,
1961,
366,
1921,
3180,
1600,
42881,
34764,
56,
3963,
15529,
509,
12115,
11,
7788,
32761,
6375,
201,
198,
2,
8959,
49094,
11,
47783,
2751,
21728,
5626,
40880,
5390,
3336,
34764,
11015,
3963,
34482,
3398,
1565,
5603,
25382,
11,
201,
198,
2,
376,
46144,
7473,
317,
16652,
2149,
37232,
33079,
48933,
5357,
44521,
1268,
10913,
2751,
12529,
13,
3268,
8005,
49261,
50163,
3336,
201,
198,
2,
37195,
20673,
6375,
27975,
38162,
9947,
367,
15173,
4877,
9348,
43031,
19146,
7473,
15529,
47666,
3955,
11,
29506,
25552,
6375,
25401,
201,
198,
2,
43031,
25382,
11,
7655,
2767,
16879,
3268,
3537,
40282,
3963,
27342,
10659,
11,
309,
9863,
6375,
25401,
54,
24352,
11,
5923,
1797,
2751,
16034,
11,
201,
198,
2,
16289,
3963,
6375,
3268,
7102,
45,
24565,
13315,
3336,
47466,
6375,
3336,
23210,
6375,
25401,
5550,
1847,
20754,
3268,
201,
198,
2,
3336,
47466,
13,
201,
198,
201,
198,
2,
11450,
428,
460,
307,
925,
656,
257,
1398,
284,
1104,
4371,
9168,
201,
198,
2,
319,
1180,
9554,
357,
68,
13,
70,
13,
5436,
3691,
13,
26041,
11,
393,
7178,
3691,
13,
7020,
8,
201,
198,
2,
201,
198,
201,
198,
11748,
25064,
201,
198,
201,
198,
6738,
743,
64,
13,
11505,
6747,
64,
10080,
1330,
337,
32577,
27703,
201,
198,
6738,
743,
64,
13,
11505,
6747,
64,
1330,
337,
22289,
201,
198,
201,
198,
11748,
36545,
13,
9078,
355,
299,
9078,
201,
198,
11748,
36545,
13,
9078,
13,
9139,
5965,
201,
198,
201,
198,
62,
33723,
278,
796,
10352,
201,
198,
62,
9019,
32577,
796,
10352,
201,
198,
201,
198,
201,
198
] | 3.405594 | 429 |
import json
import logging
import socket
import falcon
from . import db
"""
Server:
uwsgi --module "microWsgi.uwsgiTestApp:assemble()" --http :5050 --stats stats.socket
Client:
curl -s 'http://localhost:5050?test=potatoes' | python -m 'json.tool'
Stats:
nc -U stats.socket | python -m 'json.tool'
"""
logging.basicConfig(level=logging.DEBUG)
def ready(req, resp):
""" Proof of life """
return "yes"
def params(req, resp):
""" Params from the URL string """
return req.params
def stats(req, resp):
""" uwsgi's stats """
stats_socket = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
stats_socket.connect('stats.socket')
diag = b''
part = b''
while part or not diag:
diag += part
part = stats_socket.recv(16)
return json.loads(diag)
class Tester(object):
""" Sandbox """
tests = {
'db': db.diag,
'stats': stats,
'params': params,
'ready': ready,
}
| [
11748,
33918,
198,
11748,
18931,
198,
11748,
17802,
198,
11748,
24215,
1102,
198,
6738,
764,
1330,
20613,
198,
198,
37811,
198,
10697,
25,
198,
84,
18504,
12397,
1377,
21412,
366,
24055,
46456,
12397,
13,
84,
18504,
12397,
14402,
4677,
25,
292,
15140,
3419,
1,
1377,
4023,
1058,
1120,
1120,
1377,
34242,
9756,
13,
44971,
220,
198,
198,
11792,
25,
198,
66,
6371,
532,
82,
705,
4023,
1378,
36750,
25,
1120,
1120,
30,
9288,
28,
13059,
15048,
6,
930,
21015,
532,
76,
705,
17752,
13,
25981,
6,
198,
198,
29668,
25,
198,
10782,
532,
52,
9756,
13,
44971,
930,
21015,
532,
76,
705,
17752,
13,
25981,
6,
198,
37811,
198,
6404,
2667,
13,
35487,
16934,
7,
5715,
28,
6404,
2667,
13,
30531,
8,
628,
198,
4299,
3492,
7,
42180,
11,
1217,
2599,
198,
220,
220,
220,
37227,
29999,
286,
1204,
37227,
198,
220,
220,
220,
1441,
366,
8505,
1,
628,
198,
4299,
42287,
7,
42180,
11,
1217,
2599,
198,
220,
220,
220,
37227,
2547,
4105,
422,
262,
10289,
4731,
37227,
198,
220,
220,
220,
1441,
43089,
13,
37266,
628,
198,
4299,
9756,
7,
42180,
11,
1217,
2599,
198,
220,
220,
220,
37227,
334,
18504,
12397,
338,
9756,
37227,
198,
220,
220,
220,
9756,
62,
44971,
796,
17802,
13,
44971,
7,
44971,
13,
8579,
62,
4944,
10426,
11,
17802,
13,
50,
11290,
62,
2257,
32235,
8,
198,
220,
220,
220,
9756,
62,
44971,
13,
8443,
10786,
34242,
13,
44971,
11537,
198,
220,
220,
220,
2566,
363,
796,
275,
7061,
198,
220,
220,
220,
636,
796,
275,
7061,
198,
220,
220,
220,
981,
636,
393,
407,
2566,
363,
25,
198,
220,
220,
220,
220,
220,
220,
220,
2566,
363,
15853,
636,
198,
220,
220,
220,
220,
220,
220,
220,
636,
796,
9756,
62,
44971,
13,
8344,
85,
7,
1433,
8,
198,
220,
220,
220,
1441,
33918,
13,
46030,
7,
10989,
363,
8,
628,
198,
4871,
309,
7834,
7,
15252,
2599,
198,
220,
220,
220,
37227,
3837,
3524,
37227,
628,
220,
220,
220,
5254,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
705,
9945,
10354,
20613,
13,
10989,
363,
11,
198,
220,
220,
220,
220,
220,
220,
220,
705,
34242,
10354,
9756,
11,
198,
220,
220,
220,
220,
220,
220,
220,
705,
37266,
10354,
42287,
11,
198,
220,
220,
220,
220,
220,
220,
220,
705,
1493,
10354,
3492,
11,
198,
220,
220,
220,
1782,
628
] | 2.458015 | 393 |
# -*- coding: utf-8 -*-
"""Mixins to be implemented by user."""
import pyecore.ecore as ecore
from pyecore.ecore import EDerivedCollection
from pyecore.valuecontainer import EcoreUtils, BadValueError
from pyecore.innerutils import ignored
class ActivityContentMixin(object):
"""User defined mixin class for ActivityContent."""
class ElementMixin(object):
"""User defined mixin class for Element."""
@property
def has_owner(self, diagnostics=None, context=None):
"""Elements that must be owned must have an owner.
mustBeOwned() implies owner->notEmpty()"""
return self.owner is not None
def not_own_self(self, diagnostics=None, context=None):
"""An element may not directly or indirectly own itself.
not allOwnedElements()->includes(self)"""
return self not in self.all_owned_elements()
def add_keyword(self, keyword=None):
"""Adds the specified keyword to this element."""
raise NotImplementedError("operation add_keyword(...) not yet implemented")
def apply_stereotype(self, stereotype):
"""Applies the specified stereotype to this element."""
from .profile_utils import get_definition_reference_matching
gdrm = get_definition_reference_matching
definition, base_reference = gdrm(stereotype, self)
if definition is None:
return
application = definition()
setattr(application, base_reference.name, self)
self.eResource.append(application)
def create_EAnnotation(self, source=None):
"""Creates an annotation with the specified source and this element
as its model element."""
annotation = ecore.EAnnotation(source=source)
self.eAnnotations.append(annotation)
return annotation
def destroy(self):
"""Destroys this element by removing all cross references to/from it and
removing it from its containing resource or object."""
self.delete()
def get_keywords(self):
"""Retrieves the keywords for this element."""
raise NotImplementedError("operation get_keywords(...) not yet implemented")
def get_applicable_stereotype(self, qualifiedName=None):
"""Retrieves the stereotype with the specified qualified name that is
applicable to this element, or null if no such stereotype is applicable."""
raise NotImplementedError(
"operation get_applicable_stereotype(...) not yet implemented"
)
def get_applicable_stereotypes(self):
"""Retrieves the stereotypes that are applicable to this element,
including those that are required and/or may already be applied."""
raise NotImplementedError(
"operation get_applicable_stereotypes(...) not yet implemented"
)
def get_applied_stereotype(self, qualifiedName):
"""Retrieves the stereotype with the specified qualified name that is
applied to this element, or null if no such stereotype is applied."""
from .profile_utils import get_stereotype_from_application
for o, r in self._inverse_rels:
if r.name.startswith("base_"):
stereotype = get_stereotype_from_application(o)
with ignored(Exception):
if stereotype.qualifiedName == qualifiedName:
return stereotype
return None
def get_applied_stereotypes(self):
"""Retrieves the stereotypes that are applied to this element."""
from .profile_utils import get_stereotype_from_application
result = set()
for o, r in self._inverse_rels:
if r.name.startswith("base_"):
stereotype = get_stereotype_from_application(o)
if stereotype:
result.add(stereotype)
return tuple(result)
def get_applied_substereotype(self, stereotype=None, qualifiedName=None):
"""Retrieves the substereotype of the specified stereotype with the
specified qualified name that is applied to this element, or null if
no such stereotype is applied."""
raise NotImplementedError(
"operation get_applied_substereotype(...) not yet implemented"
)
def get_applied_substereotypes(self, stereotype=None):
"""Retrieves the substereotypes of the specified stereotype that are
applied to this element."""
raise NotImplementedError(
"operation get_applied_substereotypes(...) not yet implemented"
)
def get_model(self):
"""Retrieves the model that owns (either directly or indirectly) this
element."""
from .uml import Model
parent = self.eContainer()
while parent is not None and not isinstance(parent, Model):
parent = parent.eContainer()
return parent
def get_nearest_package(self):
"""Retrieves the nearest package that owns (either directly or indirectly)
this element, or the element itself (if it is a package)."""
from .uml import Package
parent = self.eContainer()
while parent is not None and not isinstance(parent, Package):
parent = parent.eContainer()
return parent
def get_relationships(self):
"""Retrieves the relationships in which this element is involved."""
raise NotImplementedError(
"operation get_relationships(...) not yet implemented"
)
def get_relationships(self, eClass=None):
"""Retrieves the relationships of the specified type in which this element
is involved."""
raise NotImplementedError(
"operation get_relationships(...) not yet implemented"
)
def get_required_stereotype(self, qualifiedName=None):
"""Retrieves the stereotype with the specified qualified name that is
required for this element, or null if no such stereotype is required."""
raise NotImplementedError(
"operation get_required_stereotype(...) not yet implemented"
)
def get_required_stereotypes(self):
"""Retrieves the stereotypes that are required for this element."""
raise NotImplementedError(
"operation get_required_stereotypes(...) not yet implemented"
)
def get_source_directed_relationships(self):
"""Retrieves the directed relationships for which this element is a source."""
raise NotImplementedError(
"operation get_source_directed_relationships(...) not yet implemented"
)
def get_source_directed_relationships(self, eClass=None):
"""Retrieves the directed relationships of the specified type for which
this element is a source."""
raise NotImplementedError(
"operation get_source_directed_relationships(...) not yet implemented"
)
def get_stereotype_application(self, stereotype=None):
"""Retrieves the application of the specified stereotype for this element,
or null if no such stereotype application exists."""
raise NotImplementedError(
"operation get_stereotype_application(...) not yet implemented"
)
def get_stereotype_applications(self):
"""Retrieves the stereotype applications for this element."""
from .profile_utils import get_stereotype_from_application
return tuple(
o
for o, r in self._inverse_rels
if r.name.startswith("base_") and get_stereotype_from_application(o)
)
def get_target_directed_relationships(self):
"""Retrieves the directed relationships for which this element is a target."""
raise NotImplementedError(
"operation get_target_directed_relationships(...) not yet implemented"
)
def get_target_directed_relationships(self, eClass=None):
"""Retrieves the directed relationships of the specified type for which
this element is a target."""
raise NotImplementedError(
"operation get_target_directed_relationships(...) not yet implemented"
)
def get_value(self, stereotype=None, propertyName=None):
"""Retrieves the value of the property with the specified name in the
specified stereotype for this element."""
raise NotImplementedError("operation get_value(...) not yet implemented")
def has_keyword(self, keyword=None):
"""Determines whether this element has the specified keyword."""
raise NotImplementedError("operation has_keyword(...) not yet implemented")
def has_value(self, stereotype=None, propertyName=None):
"""Determines whether this element has a (non-default) value for the
property with the specified name in the specified stereotype."""
raise NotImplementedError("operation has_value(...) not yet implemented")
def is_stereotype_applicable(self, stereotype=None):
"""Determines whether the specified stereotype is applicable to this element."""
raise NotImplementedError(
"operation is_stereotype_applicable(...) not yet implemented"
)
def is_stereotype_applied(self, stereotype=None):
"""Determines whether the specified stereotype is applied to this element."""
stereotype = self.get_applied_stereotype(stereotype.qualifiedName)
return stereotype is not None
def is_stereotype_required(self, stereotype=None):
"""Determines whether the specified stereotype is required for this element."""
raise NotImplementedError(
"operation is_stereotype_required(...) not yet implemented"
)
def remove_keyword(self, keyword=None):
"""Removes the specified keyword from this element."""
raise NotImplementedError("operation remove_keyword(...) not yet implemented")
def set_value(self, stereotype=None, propertyName=None, newValue=None):
"""Sets the value of the property with the specified name in the specified
stereotype for this element."""
raise NotImplementedError("operation set_value(...) not yet implemented")
def unapply_stereotype(self, stereotype=None):
"""Unapplies the specified stereotype from this element."""
raise NotImplementedError(
"operation unapply_stereotype(...) not yet implemented"
)
def all_owned_elements(self):
"""The query allOwnedElements() gives all of the direct and indirect
ownedElements of an Element.
result = (ownedElement->union(ownedElement->collect(
e | e.allOwnedElements()))->asSet())
<p>From package UML::CommonStructure.</p>"""
return self.eAllContents()
def must_be_owned(self):
"""
The query mustBeOwned() indicates whether Elements of this type must have
an owner. Subclasses of Element that do not require an owner must override
this operation.
result = (true)
<p>From package UML::CommonStructure.</p>
"""
return True
class NamedElementMixin(object):
"""User defined mixin class for NamedElement."""
@property
@property
def visibility_needs_ownership(self, diagnostics=None, context=None):
"""
If a NamedElement is owned by something other than a Namespace,
it does not have a visibility. One that is not owned by anything
(and hence must be a Package, as this is the only kind of
NamedElement that overrides mustBeOwned()) may have a visibility.
(namespace = null and owner <> null) implies visibility = null
"""
raise NotImplementedError(
"operation visibility_needs_ownership(...) not yet implemented"
)
def has_qualified_name(self, diagnostics=None, context=None):
"""When there is a name, and all of the containing Namespaces have a name,
the qualifiedName is constructed from the name of the NamedElement and the
names of the containing Namespaces.
(name <> null and allNamespaces()->select(ns | ns.name = null)->isEmpty()) implies
qualifiedName = allNamespaces()->iterate( ns : Namespace; agg: String =
name | ns.name.concat(self.separator()).concat(agg))"""
raise NotImplementedError(
"operation has_qualified_name(...) not yet implemented"
)
def has_no_qualified_name(self, diagnostics=None, context=None):
"""If there is no name, or one of the containing Namespaces has no name,
there is no qualifiedName.
name=null or allNamespaces()->select( ns | ns.name=null )->notEmpty() implies
qualifiedName = null"""
raise NotImplementedError(
"operation has_no_qualified_name(...) not yet implemented"
)
def create_dependency(self, supplier=None):
"""Creates a dependency between this named element and the specified
supplier, owned by this named element's nearest package."""
raise NotImplementedError(
"operation create_dependency(...) not yet implemented"
)
def create_usage(self, supplier=None):
"""Creates a usage between this named element and the specified supplier,
owned by this named element's nearest package."""
raise NotImplementedError("operation create_usage(...) not yet implemented")
def get_label(self):
"""Retrieves a localized label for this named element."""
raise NotImplementedError("operation get_label(...) not yet implemented")
def get_label(self, localize=None):
"""Retrieves a label for this named element, localized if indicated."""
raise NotImplementedError("operation get_label(...) not yet implemented")
def all_namespaces(self):
"""The query allNamespaces() gives the sequence of Namespaces in which the
NamedElement is nested, working outwards.
result = (
if owner = null
then OrderedSet{}
else
let enclosingNamespace : Namespace =
if owner.oclIsKindOf(TemplateParameter) and owner.oclAsType(
TemplateParameter).signature.template.oclIsKindOf(Namespace)
then owner.oclAsType(TemplateParameter).signature.template.oclAsType(Namespace)
else
namespace
endif
in enclosingNamespace.allNamespaces()->prepend(enclosingNamespace)
endif)
<p>From package UML::CommonStructure.</p>"""
raise NotImplementedError("operation all_namespaces(...) not yet implemented")
def all_owning_packages(self):
"""The query allOwningPackages() returns the set of all the enclosing
Namespaces of this NamedElement, working outwards, that are Packages,
up to but not including the first such Namespace that is not a Package.
result = (if namespace.oclIsKindOf(Package)
then
let owningPackage : Package = namespace.oclAsType(Package) in
owningPackage->union(owningPackage.allOwningPackages())
else
null
endif)
<p>From package UML::CommonStructure.</p>"""
raise NotImplementedError(
"operation all_owning_packages(...) not yet implemented"
)
def is_distinguishable_from(self, n=None, ns=None):
"""The query isDistinguishableFrom() determines whether two NamedElements
may logically co-exist within a Namespace. By default, two named elements
are distinguishable if (a) they have types neither of which is a kind of
the other or (b) they have different names.
result = ((self.oclIsKindOf(n.oclType()) or n.oclIsKindOf(self.oclType())) implies
ns.getNamesOfMember(self)->intersection(ns.getNamesOfMember(n))->isEmpty()
)
<p>From package UML::CommonStructure.</p>"""
raise NotImplementedError(
"operation is_distinguishable_from(...) not yet implemented"
)
def get_qualified_name(self):
"""When a NamedElement has a name, and all of its containing Namespaces
have a name, the qualifiedName is constructed from the name of the
NamedElement and the names of the containing Namespaces.
result = (if self.name <> null and self.allNamespaces()->select(
ns | ns.name=null )->isEmpty()
then
self.allNamespaces()->iterate( ns : Namespace; agg: String =
self.name | ns.name.concat(self.separator()).concat(agg))
else
null
endif)
<p>From package UML::CommonStructure.</p>"""
raise NotImplementedError(
"operation get_qualified_name(...) not yet implemented"
)
def separator(self):
"""The query separator() gives the string that is used to separate names
when constructing a qualifiedName.
result = ('::')
<p>From package UML::CommonStructure.</p>"""
return "::"
def get_client_dependencies(self):
"""result = (Dependency.allInstances()->select(d | d.client->includes(self)))
<p>From package UML::CommonStructure.</p>"""
raise NotImplementedError(
"operation get_client_dependencies(...) not yet implemented"
)
class CommentMixin(object):
"""User defined mixin class for Comment."""
class ImageMixin(object):
"""User defined mixin class for Image."""
class ParameterableElementMixin(object):
"""User defined mixin class for ParameterableElement."""
def is_compatible_with(self, p=None):
"""The query isCompatibleWith() determines if this ParameterableElement
is compatible with the specified ParameterableElement. By default,
this ParameterableElement is compatible with another ParameterableElement
p if the kind of this ParameterableElement is the same as or a subtype
of the kind of p. Subclasses of ParameterableElement should override
this operation to specify different compatibility constraints.
result = (self.oclIsKindOf(p.oclType()))
<p>From package UML::CommonStructure.</p>"""
raise NotImplementedError(
"operation is_compatible_with(...) not yet implemented"
)
def is_template_parameter(self):
"""The query isTemplateParameter() determines if this ParameterableElement
is exposed as a formal TemplateParameter.
result = (templateParameter->notEmpty())
<p>From package UML::CommonStructure.</p>"""
raise NotImplementedError(
"operation is_template_parameter(...) not yet implemented"
)
class TemplateParameterMixin(object):
"""User defined mixin class for TemplateParameter."""
def must_be_compatible(self, diagnostics=None, context=None):
"""The default must be compatible with the formal TemplateParameter.
default <> null implies default.isCompatibleWith(parameteredElement)"""
raise NotImplementedError(
"operation must_be_compatible(...) not yet implemented"
)
class TemplateSignatureMixin(object):
"""User defined mixin class for TemplateSignature."""
def own_elements(self, diagnostics=None, context=None):
"""Parameters must own the ParameterableElements they parameter or
those ParameterableElements must be owned by the TemplateableElement
being templated.
template.ownedElement->includesAll(parameter.parameteredElement->asSet() -
parameter.ownedParameteredElement->asSet())"""
raise NotImplementedError("operation own_elements(...) not yet implemented")
def unique_parameters(self, diagnostics=None, context=None):
"""The names of the parameters of a TemplateSignature are unique.
parameter->forAll( p1, p2 | (p1 <> p2 and p1.parameteredElement.oclIsKindOf(
NamedElement) and p2.parameteredElement.oclIsKindOf(NamedElement) ) implies
p1.parameteredElement.oclAsType(NamedElement).name <>
p2.parameteredElement.oclAsType(NamedElement).name)"""
raise NotImplementedError(
"operation unique_parameters(...) not yet implemented"
)
class TemplateableElementMixin(object):
"""User defined mixin class for TemplateableElement."""
def is_template(self):
"""The query isTemplate() returns whether this TemplateableElement is actually
a template.
result = (ownedTemplateSignature <> null)
<p>From package UML::CommonStructure.</p>"""
raise NotImplementedError("operation is_template(...) not yet implemented")
def parameterable_elements(self):
"""The query parameterableElements() returns the set of ParameterableElements
that may be used as the parameteredElements for a TemplateParameter of this
TemplateableElement. By default, this set includes all the ownedElements.
Subclasses may override this operation if they choose to restrict the set
of ParameterableElements.
result = (self.allOwnedElements()->select(oclIsKindOf(
ParameterableElement)).oclAsType(ParameterableElement)->asSet())
<p>From package UML::CommonStructure.</p>"""
raise NotImplementedError(
"operation parameterable_elements(...) not yet implemented"
)
class RelationshipMixin(object):
"""User defined mixin class for Relationship."""
class TemplateParameterSubstitutionMixin(object):
"""User defined mixin class for TemplateParameterSubstitution."""
def must_be_compatible(self, diagnostics=None, context=None):
"""The actual ParameterableElement must be compatible with the formal
TemplateParameter, e.g., the actual ParameterableElement for a Class
TemplateParameter must be a Class.
actual->forAll(a | a.isCompatibleWith(formal.parameteredElement))"""
raise NotImplementedError(
"operation must_be_compatible(...) not yet implemented"
)
class MultiplicityElementMixin(object):
"""User defined mixin class for MultiplicityElement."""
@property
@lower.setter
@property
@upper.setter
def upper_ge_lower(self, diagnostics=None, context=None):
"""The upper bound must be greater than or equal to the lower bound.
upperBound() >= lowerBound()"""
raise NotImplementedError("operation upper_ge_lower(...) not yet implemented")
def lower_ge_0(self, diagnostics=None, context=None):
"""The lower bound must be a non-negative integer literal.
lowerBound() >= 0"""
raise NotImplementedError("operation lower_ge_0(...) not yet implemented")
def value_specification_no_side_effects(self, diagnostics=None, context=None):
"""If a non-literal ValueSpecification is used for lowerValue or upperValue,
then evaluating that specification must not have side effects."""
raise NotImplementedError(
"operation value_specification_no_side_effects(...) not yet implemented"
)
def value_specification_constant(self, diagnostics=None, context=None):
"""If a non-literal ValueSpecification is used for lowerValue or upperValue,
then that specification must be a constant expression."""
raise NotImplementedError(
"operation value_specification_constant(...) not yet implemented"
)
def lower_is_integer(self, diagnostics=None, context=None):
"""If it is not empty, then lowerValue must have an Integer value.
lowerValue <> null implies lowerValue.integerValue() <> null"""
raise NotImplementedError("operation lower_is_integer(...) not yet implemented")
def upper_is_unlimited_natural(self, diagnostics=None, context=None):
"""If it is not empty, then upperValue must have an UnlimitedNatural value.
upperValue <> null implies upperValue.unlimitedValue() <> null"""
raise NotImplementedError(
"operation upper_is_unlimited_natural(...) not yet implemented"
)
def compatible_with(self, other=None):
"""The operation compatibleWith takes another multiplicity as input. It
returns true if the other multiplicity is wider than, or the same as, self.
result = ((other.lowerBound() <= self.lowerBound()) and ((other.upperBound() = *)
or (self.upperBound() <= other.upperBound())))
<p>From package UML::CommonStructure.</p>"""
raise NotImplementedError("operation compatible_with(...) not yet implemented")
def includes_multiplicity(self, M=None):
"""The query includesMultiplicity() checks whether this multiplicity includes
all the cardinalities allowed by the specified multiplicity.
self.upperBound()->notEmpty() and self.lowerBound()->notEmpty() and
M.upperBound()->notEmpty() and M.lowerBound()->notEmpty()
result = ((self.lowerBound() <= M.lowerBound()) and (self.upperBound() >=
M.upperBound()))
<p>From package UML::CommonStructure.</p>"""
raise NotImplementedError(
"operation includes_multiplicity(...) not yet implemented"
)
def is_(self, lowerbound=None, upperbound=None):
"""The operation is determines if the upper and lower bound of the
ranges are the ones given.
result = (lowerbound = self.lowerBound() and upperbound = self.upperBound())
<p>From package UML::CommonStructure.</p>"""
raise NotImplementedError("operation is_(...) not yet implemented")
def is_multivalued(self):
"""The query isMultivalued() checks whether this multiplicity has an
upper bound greater than one.
upperBound()->notEmpty()
result = (upperBound() > 1)
<p>From package UML::CommonStructure.</p>"""
raise NotImplementedError("operation is_multivalued(...) not yet implemented")
def get_lower(self):
"""The derived lower attribute must equal the lowerBound.
result = (lowerBound())
<p>From package UML::CommonStructure.</p>"""
raise NotImplementedError("operation get_lower(...) not yet implemented")
def lower_bound(self):
"""The query lowerBound() returns the lower bound of the multiplicity as
an integer, which is the integerValue of lowerValue, if this is given,
and 1 otherwise.
result = (if (lowerValue=null or lowerValue.integerValue()=null) then 1 else
lowerValue.integerValue() endif)
<p>From package UML::CommonStructure.</p>"""
raise NotImplementedError("operation lower_bound(...) not yet implemented")
def get_upper(self):
"""The derived upper attribute must equal the upperBound.
result = (upperBound())
<p>From package UML::CommonStructure.</p>"""
raise NotImplementedError("operation get_upper(...) not yet implemented")
def upper_bound(self):
"""The query upperBound() returns the upper bound of the multiplicity for
a bounded multiplicity as an unlimited natural, which is the
unlimitedNaturalValue of upperValue, if given, and 1, otherwise.
result = (if (upperValue=null or upperValue.unlimitedValue()=null) then 1 else
upperValue.unlimitedValue() endif)
<p>From package UML::CommonStructure.</p>"""
raise NotImplementedError("operation upper_bound(...) not yet implemented")
class SlotMixin(object):
"""User defined mixin class for Slot."""
class ExceptionHandlerMixin(object):
"""User defined mixin class for ExceptionHandler."""
def handler_body_edges(self, diagnostics=None, context=None):
"""The handlerBody has no incoming or outgoing ActivityEdges and the
exceptionInput has no incoming ActivityEdges.
handlerBody.incoming->isEmpty() and handlerBody.outgoing->isEmpty() and
exceptionInput.incoming->isEmpty()"""
raise NotImplementedError(
"operation handler_body_edges(...) not yet implemented"
)
def output_pins(self, diagnostics=None, context=None):
"""If the protectedNode is an Action with OutputPins, then the
handlerBody must also be an Action with the same number of OutputPins,
which are compatible in type, ordering, and multiplicity to those of
the protectedNode.
(protectedNode.oclIsKindOf(Action) and protectedNode.oclAsType(
Action).output->notEmpty()) implies
(handlerBody.oclIsKindOf(Action) and let protectedNodeOutput :
OrderedSet(OutputPin) = protectedNode.oclAsType(
Action).output,handlerBodyOutput : OrderedSet(OutputPin) =
handlerBody.oclAsType(Action).output in
protectedNodeOutput->size() = handlerBodyOutput->size() and
Sequence{1..protectedNodeOutput->size()}->forAll(i |
handlerBodyOutput->at(i).type.conformsTo(protectedNodeOutput->at(i).type) and
handlerBodyOutput->at(i).isOrdered=protectedNodeOutput->at(i).isOrdered and
handlerBodyOutput->at(i).compatibleWith(protectedNodeOutput->at(i)))
)"""
raise NotImplementedError("operation output_pins(...) not yet implemented")
def one_input(self, diagnostics=None, context=None):
"""The handlerBody is an Action with one InputPin, and that InputPin is the
same as the exceptionInput.
handlerBody.oclIsKindOf(Action) and
let inputs: OrderedSet(InputPin) = handlerBody.oclAsType(Action).input in
inputs->size()=1 and inputs->first()=exceptionInput"""
raise NotImplementedError("operation one_input(...) not yet implemented")
def edge_source_target(self, diagnostics=None, context=None):
"""An ActivityEdge that has a source within the handlerBody of an
ExceptionHandler must have its target in the handlerBody also, and vice versa.
let nodes:Set(ActivityNode) = handlerBody.oclAsType(Action).allOwnedNodes() in
nodes.outgoing->forAll(nodes->includes(target)) and
nodes.incoming->forAll(nodes->includes(source))"""
raise NotImplementedError(
"operation edge_source_target(...) not yet implemented"
)
def handler_body_owner(self, diagnostics=None, context=None):
"""The handlerBody must have the same owner as the protectedNode.
handlerBody.owner=protectedNode.owner"""
raise NotImplementedError(
"operation handler_body_owner(...) not yet implemented"
)
def exception_input_type(self, diagnostics=None, context=None):
"""The exceptionInput must either have no type or every exceptionType must
conform to the exceptionInput type.
exceptionInput.type=null or
exceptionType->forAll(conformsTo(exceptionInput.type.oclAsType(Classifier)))
"""
raise NotImplementedError(
"operation exception_input_type(...) not yet implemented"
)
class LinkEndDataMixin(object):
"""User defined mixin class for LinkEndData."""
def same_type(self, diagnostics=None, context=None):
"""The type of the value InputPin conforms to the type of the Association end.
value<>null implies value.type.conformsTo(end.type)"""
raise NotImplementedError("operation same_type(...) not yet implemented")
def multiplicity(self, diagnostics=None, context=None):
"""The multiplicity of the value InputPin must be 1..1.
value<>null implies value.is(1,1)"""
raise NotImplementedError("operation multiplicity(...) not yet implemented")
def end_object_input_pin(self, diagnostics=None, context=None):
"""The value InputPin is not also the qualifier value InputPin.
value->excludesAll(qualifier.value)"""
raise NotImplementedError(
"operation end_object_input_pin(...) not yet implemented"
)
def property_is_association_end(self, diagnostics=None, context=None):
"""The Property must be an Association memberEnd.
end.association <> null"""
raise NotImplementedError(
"operation property_is_association_end(...) not yet implemented"
)
def qualifiers(self, diagnostics=None, context=None):
"""The qualifiers must be qualifiers of the Association end.
end.qualifier->includesAll(qualifier.qualifier)"""
raise NotImplementedError("operation qualifiers(...) not yet implemented")
def all_pins(self):
"""Returns all the InputPins referenced by this LinkEndData. By default
this includes the value and qualifier InputPins, but subclasses may
override the operation to add other InputPins.
result = (value->asBag()->union(qualifier.value))
<p>From package UML::Actions.</p>"""
raise NotImplementedError("operation all_pins(...) not yet implemented")
class QualifierValueMixin(object):
"""User defined mixin class for QualifierValue."""
def multiplicity_of_qualifier(self, diagnostics=None, context=None):
"""The multiplicity of the value InputPin is 1..1.
value.is(1,1)"""
raise NotImplementedError(
"operation multiplicity_of_qualifier(...) not yet implemented"
)
def type_of_qualifier(self, diagnostics=None, context=None):
"""The type of the value InputPin conforms to the type of the qualifier
Property.value.type.conformsTo(qualifier.type)"""
raise NotImplementedError(
"operation type_of_qualifier(...) not yet implemented"
)
def qualifier_attribute(self, diagnostics=None, context=None):
"""The qualifier must be a qualifier of the Association end of the
linkEndData that owns this QualifierValue.
linkEndData.end.qualifier->includes(qualifier)"""
raise NotImplementedError(
"operation qualifier_attribute(...) not yet implemented"
)
class ClauseMixin(object):
"""User defined mixin class for Clause."""
def body_output_pins(self, diagnostics=None, context=None):
"""The bodyOutput Pins are OutputPins on Actions in the body of the Clause.
_'body'.oclAsType(Action).allActions().output->includesAll(bodyOutput)"""
raise NotImplementedError("operation body_output_pins(...) not yet implemented")
def decider_output(self, diagnostics=None, context=None):
"""The decider Pin must be on an Action in the test section of the Clause and
must be of type Boolean with multiplicity 1..1.
test.oclAsType(Action).allActions().output->includes(decider) and
decider.type = Boolean and
decider.is(1,1)"""
raise NotImplementedError("operation decider_output(...) not yet implemented")
def test_and_body(self, diagnostics=None, context=None):
"""The test and body parts of a ConditionalNode must be disjoint with each
other.
test->intersection(_'body')->isEmpty()"""
raise NotImplementedError("operation test_and_body(...) not yet implemented")
class NamespaceMixin(object):
"""User defined mixin class for Namespace."""
def members_distinguishable(self, diagnostics=None, context=None):
"""All the members of a Namespace are distinguishable within it.
membersAreDistinguishable()"""
raise NotImplementedError(
"operation members_distinguishable(...) not yet implemented"
)
def cannot_import_self(self, diagnostics=None, context=None):
"""A Namespace cannot have a PackageImport to itself.
packageImport.importedPackage.oclAsType(Namespace)->excludes(self)"""
raise NotImplementedError(
"operation cannot_import_self(...) not yet implemented"
)
def cannot_import_owned_members(self, diagnostics=None, context=None):
"""A Namespace cannot have an ElementImport to one of its ownedMembers.
elementImport.importedElement.oclAsType(Element)->excludesAll(ownedMember)"""
raise NotImplementedError(
"operation cannot_import_owned_members(...) not yet implemented"
)
def create_element_import(self, element=None, visibility=None):
"""Creates an import of the specified element into this namespace with the
specified visibility."""
raise NotImplementedError(
"operation create_element_import(...) not yet implemented"
)
def create_package_import(self, package_=None, visibility=None):
"""Creates an import of the specified package into this namespace with the
specified visibility."""
raise NotImplementedError(
"operation create_package_import(...) not yet implemented"
)
def get_imported_elements(self):
"""Retrieves the elements imported by this namespace."""
raise NotImplementedError(
"operation get_imported_elements(...) not yet implemented"
)
def get_imported_packages(self):
"""Retrieves the packages imported by this namespace."""
raise NotImplementedError(
"operation get_imported_packages(...) not yet implemented"
)
def exclude_collisions(self, imps=None):
"""The query excludeCollisions() excludes from a set of PackageableElements
any that would not be distinguishable from each other in this Namespace.
result = (imps->reject(imp1 | imps->exists(imp2 | not imp1.isDistinguishableFrom(
imp2, self)))) <p>From package UML::CommonStructure.</p>"""
raise NotImplementedError(
"operation exclude_collisions(...) not yet implemented"
)
def get_names_of_member(self, element=None):
"""The query getNamesOfMember() gives a set of all of the names that a
member would have in a Namespace, taking importing into account. In general
a member can have multiple names in a Namespace if it is imported more than
once with different aliases.
result = (if self.ownedMember ->includes(element)
then Set{element.name}
else let elementImports : Set(ElementImport) = self.elementImport->select(
ei | ei.importedElement = element) in
if elementImports->notEmpty()
then
elementImports->collect(el | el.getName())->asSet()
else
self.packageImport->select(
pi | pi.importedPackage.visibleMembers().oclAsType(NamedElement)->
includes(element))->
collect(pi | pi.importedPackage.getNamesOfMember(element))->asSet()
endif
endif)
<p>From package UML::CommonStructure.</p>"""
raise NotImplementedError(
"operation get_names_of_member(...) not yet implemented"
)
def import_members(self, imps=None):
"""The query importMembers() defines which of a set of PackageableElements
are actually imported into the Namespace. This excludes hidden ones,
i.e., those which have names that conflict with names of ownedMembers,
and it also excludes PackageableElements that would have the
indistinguishable names when imported.
result = (self.excludeCollisions(imps)->select(
imp | self.ownedMember->forAll(mem | imp.isDistinguishableFrom(mem, self))))
<p>From package UML::CommonStructure.</p>"""
raise NotImplementedError("operation import_members(...) not yet implemented")
def get_imported_members(self):
"""The importedMember property is derived as the PackageableElements
that are members of this Namespace as a result of either PackageImports
or ElementImports.
result = (self.importMembers(elementImport.importedElement->asSet()->union(
packageImport.importedPackage->collect(p | p.visibleMembers()))->asSet()))
<p>From package UML::CommonStructure.</p>"""
raise NotImplementedError(
"operation get_imported_members(...) not yet implemented"
)
def members_are_distinguishable(self):
"""The Boolean query membersAreDistinguishable() determines whether all
of the Namespace's members are distinguishable within it.
result = (member->forAll( memb |
member->excluding(memb)->forAll(other |
memb.isDistinguishableFrom(other, self))))
<p>From package UML::CommonStructure.</p>"""
raise NotImplementedError(
"operation members_are_distinguishable(...) not yet implemented"
)
class DirectedRelationshipMixin(object):
"""User defined mixin class for DirectedRelationship."""
class TypedElementMixin(object):
"""User defined mixin class for TypedElement."""
class ConnectorEndMixin(object):
"""User defined mixin class for ConnectorEnd."""
@property
def role_and_part_with_port(self, diagnostics=None, context=None):
"""If a ConnectorEnd references a partWithPort, then the role must be a
Port that is defined or inherited by the type of the partWithPort.
partWithPort->notEmpty() implies
(role.oclIsKindOf(Port) and partWithPort.type.oclAsType(
Namespace).member->includes(role))"""
raise NotImplementedError(
"operation role_and_part_with_port(...) not yet implemented"
)
def part_with_port_empty(self, diagnostics=None, context=None):
"""If a ConnectorEnd is attached to a Port of the containing Classifier,
partWithPort will be empty.(role.oclIsKindOf(Port) and
role.owner = connector.owner) implies partWithPort->isEmpty()"""
raise NotImplementedError(
"operation part_with_port_empty(...) not yet implemented"
)
def multiplicity(self, diagnostics=None, context=None):
"""The multiplicity of the ConnectorEnd may not be more general than
the multiplicity of the corresponding end of the Association typing
the owning Connector, if any.self.compatibleWith(definingEnd)"""
raise NotImplementedError("operation multiplicity(...) not yet implemented")
def self_part_with_port(self, diagnostics=None, context=None):
"""The Property held in self.partWithPort must not be a Port.
partWithPort->notEmpty() implies not partWithPort.oclIsKindOf(Port)"""
raise NotImplementedError(
"operation self_part_with_port(...) not yet implemented"
)
def get_defining_end(self):
"""Derivation for ConnectorEnd::/definingEnd : Property
result = (if connector.type = null
then
null
else
let index : Integer = connector.end->indexOf(self) in
connector.type.memberEnd->at(index)
endif)
<p>From package UML::StructuredClassifiers.</p>"""
raise NotImplementedError("operation get_defining_end(...) not yet implemented")
class ConnectableElementTemplateParameterMixin(object):
"""User defined mixin class for ConnectableElementTemplateParameter."""
class DeploymentTargetMixin(object):
"""User defined mixin class for DeploymentTarget."""
def get_deployed_elements(self):
"""Derivation for DeploymentTarget::/deployedElement
result = (deployment.deployedArtifact->select(oclIsKindOf(Artifact))->collect(
oclAsType(Artifact).manifestation)->collect(utilizedElement)->asSet())
<p>From package UML::Deployments.</p>"""
raise NotImplementedError(
"operation get_deployed_elements(...) not yet implemented"
)
class DeployedArtifactMixin(object):
"""User defined mixin class for DeployedArtifact."""
class RedefinableElementMixin(object):
"""User defined mixin class for RedefinableElement."""
def redefinition_consistent(self, diagnostics=None, context=None):
"""A redefining element must be consistent with each redefined element.
redefinedElement->forAll(re | re.isConsistentWith(self))"""
raise NotImplementedError(
"operation redefinition_consistent(...) not yet implemented"
)
def non_leaf_redefinition(self, diagnostics=None, context=None):
"""A RedefinableElement can only redefine non-leaf RedefinableElements.
redefinedElement->forAll(re | not re.isLeaf)"""
raise NotImplementedError(
"operation non_leaf_redefinition(...) not yet implemented"
)
def redefinition_context_valid(self, diagnostics=None, context=None):
"""At least one of the redefinition contexts of the redefining element
must be a specialization of at least one of the redefinition contexts for
each redefined element.
redefinedElement->forAll(re | self.isRedefinitionContextValid(re))"""
raise NotImplementedError(
"operation redefinition_context_valid(...) not yet implemented"
)
def is_consistent_with(self, redefiningElement=None):
"""The query isConsistentWith() specifies, for any two RedefinableElements
in a context in which redefinition is possible, whether redefinition
would be logically consistent. By default, this is false; this operation
must be overridden for subclasses of RedefinableElement to define the
consistency conditions.
redefiningElement.isRedefinitionContextValid(self)
result = (false)
<p>From package UML::Classification.</p>"""
raise NotImplementedError(
"operation is_consistent_with(...) not yet implemented"
)
def is_redefinition_context_valid(self, redefinedElement=None):
"""The query isRedefinitionContextValid() specifies whether the redefinition
contexts of this RedefinableElement are properly related to the redefinition
contexts of the specified RedefinableElement to allow this element to redefine
the other. By default at least one of the redefinition contexts of this
element must be a specialization of at least one of the redefinition contexts
of the specified element.
result = (redefinitionContext->exists(c | c.allParents()->includesAll(
redefinedElement.redefinitionContext)))
<p>From package UML::Classification.</p>"""
raise NotImplementedError(
"operation is_redefinition_context_valid(...) not yet implemented"
)
class ParameterSetMixin(object):
"""User defined mixin class for ParameterSet."""
def same_parameterized_entity(self, diagnostics=None, context=None):
"""The Parameters in a ParameterSet must all be inputs or all be outputs
of the same parameterized entity, and the ParameterSet is owned by that entity.
parameter->forAll(p1, p2 | self.owner = p1.owner and self.owner = p2.owner and
p1.direction = p2.direction)"""
raise NotImplementedError(
"operation same_parameterized_entity(...) not yet implemented"
)
def input(self, diagnostics=None, context=None):
"""If a parameterized entity has input Parameters that are in a ParameterSet,
then any inputs that are not in a ParameterSet must be streaming. Same for
output Parameters.
((parameter->exists(direction = ParameterDirectionKind::_'in')) implies
behavioralFeature.ownedParameter->select(p | p.direction =
ParameterDirectionKind::_'in' and p.parameterSet->isEmpty())->forAll(isStream))
and
((parameter->exists(direction = ParameterDirectionKind::out)) implies
behavioralFeature.ownedParameter->select(p | p.direction =
ParameterDirectionKind::out and p.parameterSet->isEmpty())->forAll(isStream))
"""
raise NotImplementedError("operation input(...) not yet implemented")
def two_parameter_sets(self, diagnostics=None, context=None):
"""Two ParameterSets cannot have exactly the same set of Parameters.
parameter->forAll(parameterSet->forAll(s1, s2 | s1->size() = s2->size() implies
s1.parameter->exists(p | not s2.parameter->includes(p))))"""
raise NotImplementedError(
"operation two_parameter_sets(...) not yet implemented"
)
class VertexMixin(object):
"""User defined mixin class for Vertex."""
def containing_state_machine(self):
"""The operation containingStateMachine() returns the StateMachine in which
this Vertex is defined.
result = (if container <> null
then
-- the container is a region
container.containingStateMachine()
else
if (self.oclIsKindOf(Pseudostate)) and ((self.oclAsType(Pseudostate).kind =
PseudostateKind::entryPoint) or (self.oclAsType(Pseudostate).kind =
PseudostateKind::exitPoint)) then
self.oclAsType(Pseudostate).stateMachine
else
if (self.oclIsKindOf(ConnectionPointReference)) then
self.oclAsType(
ConnectionPointReference).state.containingStateMachine() --
no other valid cases possible
else
null
endif
endif
endif
)
<p>From package UML::StateMachines.</p>"""
raise NotImplementedError(
"operation containing_state_machine(...) not yet implemented"
)
def get_incomings(self):
"""Derivation for Vertex::/incoming.
result = (Transition.allInstances()->select(target=self))
<p>From package UML::StateMachines.</p>"""
raise NotImplementedError("operation get_incomings(...) not yet implemented")
def get_outgoings(self):
"""Derivation for Vertex::/outgoing
result = (Transition.allInstances()->select(source=self))
<p>From package UML::StateMachines.</p>"""
raise NotImplementedError("operation get_outgoings(...) not yet implemented")
def is_contained_in_state(self, s=None):
"""This utility operation returns true if the Vertex is contained in the
State s (input argument).
result = (if not s.isComposite() or container->isEmpty() then
false
else
if container.state = s then
true
else
container.state.isContainedInState(s)
endif
endif)
<p>From package UML::StateMachines.</p>"""
raise NotImplementedError(
"operation is_contained_in_state(...) not yet implemented"
)
def is_contained_in_region(self, r=None):
"""This utility query returns true if the Vertex is contained in the Region r (input argument).
result = (if (container = r) then
true
else
if (r.state->isEmpty()) then
false
else
container.state.isContainedInRegion(r)
endif
endif)
<p>From package UML::StateMachines.</p>"""
raise NotImplementedError(
"operation is_contained_in_region(...) not yet implemented"
)
class TriggerMixin(object):
"""User defined mixin class for Trigger."""
def trigger_with_ports(self, diagnostics=None, context=None):
"""If a Trigger specifies one or more ports, the event of the Trigger must be
a MessageEvent.
port->notEmpty() implies event.oclIsKindOf(MessageEvent)"""
raise NotImplementedError(
"operation trigger_with_ports(...) not yet implemented"
)
class OperationTemplateParameterMixin(object):
"""User defined mixin class for OperationTemplateParameter."""
def match_default_signature(self, diagnostics=None, context=None):
"""default->notEmpty() implies (default.oclIsKindOf(Operation) and (
let defaultOp : Operation = default.oclAsType(Operation) in
defaultOp.ownedParameter->size() = parameteredElement.ownedParameter->size() and
Sequence{1.. defaultOp.ownedParameter->size()}->forAll( ix |
let p1: Parameter = defaultOp.ownedParameter->at(ix), p2 : Parameter =
parameteredElement.ownedParameter->at(ix) in
p1.type = p2.type and p1.upper = p2.upper and p1.lower = p2.lower and
p1.direction = p2.direction and p1.isOrdered = p2.isOrdered and p1.isUnique =
p2.isUnique)))"""
raise NotImplementedError(
"operation match_default_signature(...) not yet implemented"
)
class CollaborationUseMixin(object):
"""User defined mixin class for CollaborationUse."""
def client_elements(self, diagnostics=None, context=None):
"""All the client elements of a roleBinding are in one Classifier and all
supplier elements of a roleBinding are in one Collaboration.
roleBinding->collect(client)->forAll(ne1, ne2 |
ne1.oclIsKindOf(ConnectableElement) and ne2.oclIsKindOf(ConnectableElement) and
let ce1 : ConnectableElement = ne1.oclAsType(ConnectableElement), ce2 :
ConnectableElement = ne2.oclAsType(ConnectableElement) in
ce1.structuredClassifier = ce2.structuredClassifier)
and
roleBinding->collect(supplier)->forAll(ne1, ne2 |
ne1.oclIsKindOf(ConnectableElement) and ne2.oclIsKindOf(ConnectableElement) and
let ce1 : ConnectableElement = ne1.oclAsType(ConnectableElement), ce2 :
ConnectableElement = ne2.oclAsType(ConnectableElement) in
ce1.collaboration = ce2.collaboration)"""
raise NotImplementedError("operation client_elements(...) not yet implemented")
def every_role(self, diagnostics=None, context=None):
"""Every collaborationRole in the Collaboration is bound within the CollaborationUse.
type.collaborationRole->forAll(role | roleBinding->exists(rb | rb.supplier->includes(role)))"""
raise NotImplementedError("operation every_role(...) not yet implemented")
def connectors(self, diagnostics=None, context=None):
"""Connectors in a Collaboration typing a CollaborationUse must have
corresponding Connectors between elements bound in the context Classifier,
and these corresponding Connectors must have the same or more general type
than the Collaboration Connectors.
type.ownedConnector->forAll(connector |
let rolesConnectedInCollab : Set(ConnectableElement) = connector.end.role->asSet(),
relevantBindings : Set(Dependency) = roleBinding->select(rb | rb.supplier->intersection(rolesConnectedInCollab)->notEmpty()),
boundRoles : Set(ConnectableElement) = relevantBindings->collect(client.oclAsType(ConnectableElement))->asSet(),
contextClassifier : StructuredClassifier = boundRoles->any(true).structuredClassifier->any(true) in
contextClassifier.ownedConnector->exists( correspondingConnector |
correspondingConnector.end.role->forAll( role | boundRoles->includes(role) )
and (connector.type->notEmpty() and correspondingConnector.type->notEmpty())
implies connector.type->forAll(conformsTo(correspondingConnector.type)) )
)"""
raise NotImplementedError("operation connectors(...) not yet implemented")
class ClassifierTemplateParameterMixin(object):
"""User defined mixin class for ClassifierTemplateParameter."""
def has_constraining_classifier(self, diagnostics=None, context=None):
"""If allowSubstitutable is true, then there must be a constrainingClassifier.
allowSubstitutable implies constrainingClassifier->notEmpty()"""
raise NotImplementedError(
"operation has_constraining_classifier(...) not yet implemented"
)
def parametered_element_no_features(self, diagnostics=None, context=None):
"""The parameteredElement has no direct features, and if constrainedElement is
empty it has no generalizations.
parameteredElement.feature->isEmpty() and (constrainingClassifier->isEmpty() implies
parameteredElement.allParents()->isEmpty())"""
raise NotImplementedError(
"operation parametered_element_no_features(...) not yet implemented"
)
def matching_abstract(self, diagnostics=None, context=None):
"""If the parameteredElement is not abstract, then the Classifier used as an
argument shall not be abstract.
(not parameteredElement.isAbstract) implies
templateParameterSubstitution.actual->forAll(a | not a.oclAsType(Classifier).isAbstract)"""
raise NotImplementedError(
"operation matching_abstract(...) not yet implemented"
)
def actual_is_classifier(self, diagnostics=None, context=None):
"""The argument to a ClassifierTemplateParameter is a Classifier.
templateParameterSubstitution.actual->forAll(a | a.oclIsKindOf(Classifier))"""
raise NotImplementedError(
"operation actual_is_classifier(...) not yet implemented"
)
def constraining_classifiers_constrain_args(self, diagnostics=None, context=None):
"""If there are any constrainingClassifiers, then every argument must be the
same as or a specialization of them, or if allowSubstitutable is true,
then it can also be substitutable.
templateParameterSubstitution.actual->forAll( a |
let arg : Classifier = a.oclAsType(Classifier) in
constrainingClassifier->forAll(
cc |
arg = cc or arg.conformsTo(cc) or (allowSubstitutable and arg.isSubstitutableFor(cc))
)
)"""
raise NotImplementedError(
"operation constraining_classifiers_constrain_args(...) not yet implemented"
)
def constraining_classifiers_constrain_parametered_element(
self, diagnostics=None, context=None
):
"""If there are any constrainingClassifiers, then the parameteredElement
must be the same as or a specialization of them, or if allowSubstitutable is true, then it can also be substitutable.
constrainingClassifier->forAll(
cc | parameteredElement = cc or parameteredElement.conformsTo(cc) or
(allowSubstitutable and parameteredElement.isSubstitutableFor(cc))
)"""
raise NotImplementedError(
"operation constraining_classifiers_constrain_parametered_element(...) not yet implemented"
)
class LinkEndCreationDataMixin(object):
"""User defined mixin class for LinkEndCreationData."""
def insert_at_pin(self, diagnostics=None, context=None):
"""LinkEndCreationData for ordered Association ends must have a single
insertAt InputPin for the insertion point with type UnlimitedNatural and multiplicity of 1..1, if isReplaceAll=false, and must have no InputPin for the insertion point when the association ends are unordered.
if not end.isOrdered
then insertAt = null
else
not isReplaceAll=false implies
insertAt <> null and insertAt->forAll(type=UnlimitedNatural and is(1,1))
endif"""
raise NotImplementedError("operation insert_at_pin(...) not yet implemented")
class LinkEndDestructionDataMixin(object):
"""User defined mixin class for LinkEndDestructionData."""
def destroy_at_pin(self, diagnostics=None, context=None):
"""LinkEndDestructionData for ordered, nonunique Association ends must have a single destroyAt InputPin if isDestroyDuplicates is false, which must be of type UnlimitedNatural and have a multiplicity of 1..1. Otherwise, the action has no destroyAt input pin.
if not end.isOrdered or end.isUnique or isDestroyDuplicates
then destroyAt = null
else
destroyAt <> null and
destroyAt->forAll(type=UnlimitedNatural and is(1,1))
endif"""
raise NotImplementedError("operation destroy_at_pin(...) not yet implemented")
class MessageMixin(object):
"""User defined mixin class for Message."""
@property
def sending_receiving_message_event(self, diagnostics=None, context=None):
"""If the sendEvent and the receiveEvent of the same Message are on the same Lifeline, the sendEvent must be ordered before the receiveEvent.
receiveEvent.oclIsKindOf(MessageOccurrenceSpecification)
implies
let f : Lifeline = sendEvent->select(oclIsKindOf(MessageOccurrenceSpecification)).oclAsType(MessageOccurrenceSpecification)->asOrderedSet()->first().covered in
f = receiveEvent->select(oclIsKindOf(MessageOccurrenceSpecification)).oclAsType(MessageOccurrenceSpecification)->asOrderedSet()->first().covered implies
f.events->indexOf(sendEvent.oclAsType(MessageOccurrenceSpecification)->asOrderedSet()->first() ) <
f.events->indexOf(receiveEvent.oclAsType(MessageOccurrenceSpecification)->asOrderedSet()->first() )"""
raise NotImplementedError(
"operation sending_receiving_message_event(...) not yet implemented"
)
def arguments(self, diagnostics=None, context=None):
"""Arguments of a Message must only be: i) attributes of the sending lifeline, ii) constants, iii) symbolic values (which are wildcard values representing any legal value), iv) explicit parameters of the enclosing Interaction, v) attributes of the class owning the Interaction."""
raise NotImplementedError("operation arguments(...) not yet implemented")
def cannot_cross_boundaries(self, diagnostics=None, context=None):
"""Messages cannot cross boundaries of CombinedFragments or their operands. This is true if and only if both MessageEnds are enclosed within the same InteractionFragment (i.e., an InteractionOperand or an Interaction).
sendEvent->notEmpty() and receiveEvent->notEmpty() implies
let sendEnclosingFrag : Set(InteractionFragment) =
sendEvent->asOrderedSet()->first().enclosingFragment()
in
let receiveEnclosingFrag : Set(InteractionFragment) =
receiveEvent->asOrderedSet()->first().enclosingFragment()
in sendEnclosingFrag = receiveEnclosingFrag"""
raise NotImplementedError(
"operation cannot_cross_boundaries(...) not yet implemented"
)
def signature_is_signal(self, diagnostics=None, context=None):
"""In the case when the Message signature is a Signal, the arguments of the Message must correspond to the attributes of the Signal. A Message Argument corresponds to a Signal Attribute if the Argument is of the same Class or a specialization of that of the Attribute.
(messageSort = MessageSort::asynchSignal ) and signature.oclIsKindOf(Signal) implies
let signalAttributes : OrderedSet(Property) = signature.oclAsType(Signal).inheritedMember()->
select(n:NamedElement | n.oclIsTypeOf(Property))->collect(oclAsType(Property))->asOrderedSet()
in signalAttributes->size() = self.argument->size()
and self.argument->forAll( o: ValueSpecification |
not (o.oclIsKindOf(Expression)
and o.oclAsType(Expression).symbol->size()=0
and o.oclAsType(Expression).operand->isEmpty() ) implies
let p : Property = signalAttributes->at(self.argument->indexOf(o))
in o.type.oclAsType(Classifier).conformsTo(p.type.oclAsType(Classifier)))"""
raise NotImplementedError(
"operation signature_is_signal(...) not yet implemented"
)
def occurrence_specifications(self, diagnostics=None, context=None):
"""If the MessageEnds are both OccurrenceSpecifications, then the connector must go between the Parts represented by the Lifelines of the two MessageEnds."""
raise NotImplementedError(
"operation occurrence_specifications(...) not yet implemented"
)
def signature_refer_to(self, diagnostics=None, context=None):
"""The signature must either refer an Operation (in which case messageSort is either synchCall or asynchCall or reply) or a Signal (in which case messageSort is asynchSignal). The name of the NamedElement referenced by signature must be the same as that of the Message.
signature->notEmpty() implies
((signature.oclIsKindOf(Operation) and
(messageSort = MessageSort::asynchCall or messageSort = MessageSort::synchCall or messageSort = MessageSort::reply)
) or (signature.oclIsKindOf(Signal) and messageSort = MessageSort::asynchSignal )
) and name = signature.name"""
raise NotImplementedError(
"operation signature_refer_to(...) not yet implemented"
)
def signature_is_operation_request(self, diagnostics=None, context=None):
"""In the case when a Message with messageSort synchCall or asynchCall has a non empty Operation signature, the arguments of the Message must correspond to the in and inout parameters of the Operation. A Parameter corresponds to an Argument if the Argument is of the same Class or a specialization of that of the Parameter.
(messageSort = MessageSort::asynchCall or messageSort = MessageSort::synchCall) and signature.oclIsKindOf(Operation) implies
let requestParms : OrderedSet(Parameter) = signature.oclAsType(Operation).ownedParameter->
select(direction = ParameterDirectionKind::inout or direction = ParameterDirectionKind::_'in' )
in requestParms->size() = self.argument->size() and
self.argument->forAll( o: ValueSpecification |
not (o.oclIsKindOf(Expression) and o.oclAsType(Expression).symbol->size()=0 and o.oclAsType(Expression).operand->isEmpty() ) implies
let p : Parameter = requestParms->at(self.argument->indexOf(o)) in
o.type.oclAsType(Classifier).conformsTo(p.type.oclAsType(Classifier))
)"""
raise NotImplementedError(
"operation signature_is_operation_request(...) not yet implemented"
)
def signature_is_operation_reply(self, diagnostics=None, context=None):
"""In the case when a Message with messageSort reply has a non empty Operation signature, the arguments of the Message must correspond to the out, inout, and return parameters of the Operation. A Parameter corresponds to an Argument if the Argument is of the same Class or a specialization of that of the Parameter.
(messageSort = MessageSort::reply) and signature.oclIsKindOf(Operation) implies
let replyParms : OrderedSet(Parameter) = signature.oclAsType(Operation).ownedParameter->
select(direction = ParameterDirectionKind::inout or direction = ParameterDirectionKind::out or direction = ParameterDirectionKind::return)
in replyParms->size() = self.argument->size() and
self.argument->forAll( o: ValueSpecification | o.oclIsKindOf(Expression) and let e : Expression = o.oclAsType(Expression) in
e.operand->notEmpty() implies
let p : Parameter = replyParms->at(self.argument->indexOf(o)) in
e.operand->asSequence()->first().type.oclAsType(Classifier).conformsTo(p.type.oclAsType(Classifier))
)"""
raise NotImplementedError(
"operation signature_is_operation_reply(...) not yet implemented"
)
def get_message_kind(self):
"""This query returns the MessageKind value for this Message.
result = (messageKind)
<p>From package UML::Interactions.</p>"""
raise NotImplementedError("operation get_message_kind(...) not yet implemented")
class InteractionFragmentMixin(object):
"""User defined mixin class for InteractionFragment."""
class LifelineMixin(object):
"""User defined mixin class for Lifeline."""
def selector_specified(self, diagnostics=None, context=None):
"""The selector for a Lifeline must only be specified if the referenced Part is multivalued.
self.selector->notEmpty() = (self.represents.oclIsKindOf(MultiplicityElement) and self.represents.oclAsType(MultiplicityElement).isMultivalued())"""
raise NotImplementedError(
"operation selector_specified(...) not yet implemented"
)
def interaction_uses_share_lifeline(self, diagnostics=None, context=None):
"""If a lifeline is in an Interaction referred to by an InteractionUse in an enclosing Interaction, and that lifeline is common with another lifeline in an Interaction referred to by another InteractonUse within that same enclosing Interaction, it must be common to a lifeline within that enclosing Interaction. By common Lifelines we mean Lifelines with the same selector and represents associations.
let intUses : Set(InteractionUse) = interaction.interactionUse in
intUses->forAll
( iuse : InteractionUse |
let usingInteraction : Set(Interaction) = iuse.enclosingInteraction->asSet()
->union(
iuse.enclosingOperand.combinedFragment->asSet()->closure(enclosingOperand.combinedFragment).enclosingInteraction->asSet()
)
in
let peerUses : Set(InteractionUse) = usingInteraction.fragment->select(oclIsKindOf(InteractionUse)).oclAsType(InteractionUse)->asSet()
->union(
usingInteraction.fragment->select(oclIsKindOf(CombinedFragment)).oclAsType(CombinedFragment)->asSet()
->closure(operand.fragment->select(oclIsKindOf(CombinedFragment)).oclAsType(CombinedFragment)).operand.fragment->
select(oclIsKindOf(InteractionUse)).oclAsType(InteractionUse)->asSet()
)->excluding(iuse)
in
peerUses->forAll( peerUse : InteractionUse |
peerUse.refersTo.lifeline->forAll( l : Lifeline | (l.represents = self.represents and
( self.selector.oclIsKindOf(LiteralString) implies
l.selector.oclIsKindOf(LiteralString) and
self.selector.oclAsType(LiteralString).value = l.selector.oclAsType(LiteralString).value )
and
( self.selector.oclIsKindOf(LiteralInteger) implies
l.selector.oclIsKindOf(LiteralInteger) and
self.selector.oclAsType(LiteralInteger).value = l.selector.oclAsType(LiteralInteger).value )
)
implies
usingInteraction.lifeline->exists(represents = self.represents and
( self.selector.oclIsKindOf(LiteralString) implies
l.selector.oclIsKindOf(LiteralString) and
self.selector.oclAsType(LiteralString).value = l.selector.oclAsType(LiteralString).value )
and
( self.selector.oclIsKindOf(LiteralInteger) implies
l.selector.oclIsKindOf(LiteralInteger) and
self.selector.oclAsType(LiteralInteger).value = l.selector.oclAsType(LiteralInteger).value )
)
)
)
)"""
raise NotImplementedError(
"operation interaction_uses_share_lifeline(...) not yet implemented"
)
def same_classifier(self, diagnostics=None, context=None):
"""The classifier containing the referenced ConnectableElement must be the same classifier, or an ancestor, of the classifier that contains the interaction enclosing this lifeline.
represents.namespace->closure(namespace)->includes(interaction._'context')"""
raise NotImplementedError("operation same_classifier(...) not yet implemented")
def selector_int_or_string(self, diagnostics=None, context=None):
"""The selector value, if present, must be a LiteralString or a LiteralInteger
self.selector->notEmpty() implies
self.selector.oclIsKindOf(LiteralInteger) or
self.selector.oclIsKindOf(LiteralString)"""
raise NotImplementedError(
"operation selector_int_or_string(...) not yet implemented"
)
class MessageEndMixin(object):
"""User defined mixin class for MessageEnd."""
def opposite_end(self):
"""This query returns a set including the MessageEnd (if exists) at the opposite end of the Message for this MessageEnd.
message->notEmpty()
result = (message->asSet().messageEnd->asSet()->excluding(self))
<p>From package UML::Interactions.</p>"""
raise NotImplementedError("operation opposite_end(...) not yet implemented")
def is_send(self):
"""This query returns value true if this MessageEnd is a sendEvent.
message->notEmpty()
result = (message.sendEvent->asSet()->includes(self))
<p>From package UML::Interactions.</p>"""
raise NotImplementedError("operation is_send(...) not yet implemented")
def is_receive(self):
"""This query returns value true if this MessageEnd is a receiveEvent.
message->notEmpty()
result = (message.receiveEvent->asSet()->includes(self))
<p>From package UML::Interactions.</p>"""
raise NotImplementedError("operation is_receive(...) not yet implemented")
def enclosing_fragment(self):
"""This query returns a set including the enclosing InteractionFragment this MessageEnd is enclosed within.
result = (if self->select(oclIsKindOf(Gate))->notEmpty()
then -- it is a Gate
let endGate : Gate =
self->select(oclIsKindOf(Gate)).oclAsType(Gate)->asOrderedSet()->first()
in
if endGate.isOutsideCF()
then endGate.combinedFragment.enclosingInteraction.oclAsType(InteractionFragment)->asSet()->
union(endGate.combinedFragment.enclosingOperand.oclAsType(InteractionFragment)->asSet())
else if endGate.isInsideCF()
then endGate.combinedFragment.oclAsType(InteractionFragment)->asSet()
else if endGate.isFormal()
then endGate.interaction.oclAsType(InteractionFragment)->asSet()
else if endGate.isActual()
then endGate.interactionUse.enclosingInteraction.oclAsType(InteractionFragment)->asSet()->
union(endGate.interactionUse.enclosingOperand.oclAsType(InteractionFragment)->asSet())
else null
endif
endif
endif
endif
else -- it is a MessageOccurrenceSpecification
let endMOS : MessageOccurrenceSpecification =
self->select(oclIsKindOf(MessageOccurrenceSpecification)).oclAsType(MessageOccurrenceSpecification)->asOrderedSet()->first()
in
if endMOS.enclosingInteraction->notEmpty()
then endMOS.enclosingInteraction.oclAsType(InteractionFragment)->asSet()
else endMOS.enclosingOperand.oclAsType(InteractionFragment)->asSet()
endif
endif)
<p>From package UML::Interactions.</p>"""
raise NotImplementedError(
"operation enclosing_fragment(...) not yet implemented"
)
class GeneralOrderingMixin(object):
"""User defined mixin class for GeneralOrdering."""
def irreflexive_transitive_closure(self, diagnostics=None, context=None):
"""An occurrence specification must not be ordered relative to itself through a series of general orderings. (In other words, the transitive closure of the general orderings is irreflexive.)
after->closure(toAfter.after)->excludes(before)"""
raise NotImplementedError(
"operation irreflexive_transitive_closure(...) not yet implemented"
)
class PackageableElementMixin(object):
"""User defined mixin class for PackageableElement."""
def namespace_needs_visibility(self, diagnostics=None, context=None):
"""A PackageableElement owned by a Namespace must have a visibility.
visibility = null implies namespace = null"""
raise NotImplementedError(
"operation namespace_needs_visibility(...) not yet implemented"
)
class TemplateBindingMixin(object):
"""User defined mixin class for TemplateBinding."""
def parameter_substitution_formal(self, diagnostics=None, context=None):
"""Each parameterSubstitution must refer to a formal TemplateParameter of the target TemplateSignature.
parameterSubstitution->forAll(b | signature.parameter->includes(b.formal))"""
raise NotImplementedError(
"operation parameter_substitution_formal(...) not yet implemented"
)
def one_parameter_substitution(self, diagnostics=None, context=None):
"""A TemplateBiinding contains at most one TemplateParameterSubstitution for each formal TemplateParameter of the target TemplateSignature.
signature.parameter->forAll(p | parameterSubstitution->select(b | b.formal = p)->size() <= 1)"""
raise NotImplementedError(
"operation one_parameter_substitution(...) not yet implemented"
)
class FeatureMixin(object):
"""User defined mixin class for Feature."""
class PseudostateMixin(object):
"""User defined mixin class for Pseudostate."""
def transitions_outgoing(self, diagnostics=None, context=None):
"""All transitions outgoing a fork vertex must target states in different regions of an orthogonal state.
(kind = PseudostateKind::fork) implies
-- for any pair of outgoing transitions there exists an orthogonal state which contains the targets of these transitions
-- such that these targets belong to different regions of that orthogonal state
outgoing->forAll(t1:Transition, t2:Transition | let contState:State = containingStateMachine().LCAState(t1.target, t2.target) in
((contState <> null) and (contState.region
->exists(r1:Region, r2: Region | (r1 <> r2) and t1.target.isContainedInRegion(r1) and t2.target.isContainedInRegion(r2)))))"""
raise NotImplementedError(
"operation transitions_outgoing(...) not yet implemented"
)
def choice_vertex(self, diagnostics=None, context=None):
"""In a complete statemachine, a choice Vertex must have at least one incoming and one outgoing Transition.
(kind = PseudostateKind::choice) implies (incoming->size() >= 1 and outgoing->size() >= 1)"""
raise NotImplementedError("operation choice_vertex(...) not yet implemented")
def outgoing_from_initial(self, diagnostics=None, context=None):
"""The outgoing Transition from an initial vertex may have a behavior, but not a trigger or a guard.
(kind = PseudostateKind::initial) implies (outgoing.guard = null and outgoing.trigger->isEmpty())"""
raise NotImplementedError(
"operation outgoing_from_initial(...) not yet implemented"
)
def join_vertex(self, diagnostics=None, context=None):
"""In a complete StateMachine, a join Vertex must have at least two incoming Transitions and exactly one outgoing Transition.
(kind = PseudostateKind::join) implies (outgoing->size() = 1 and incoming->size() >= 2)"""
raise NotImplementedError("operation join_vertex(...) not yet implemented")
def junction_vertex(self, diagnostics=None, context=None):
"""In a complete StateMachine, a junction Vertex must have at least one incoming and one outgoing Transition.
(kind = PseudostateKind::junction) implies (incoming->size() >= 1 and outgoing->size() >= 1)"""
raise NotImplementedError("operation junction_vertex(...) not yet implemented")
def history_vertices(self, diagnostics=None, context=None):
"""History Vertices can have at most one outgoing Transition.
((kind = PseudostateKind::deepHistory) or (kind = PseudostateKind::shallowHistory)) implies (outgoing->size() <= 1)"""
raise NotImplementedError("operation history_vertices(...) not yet implemented")
def initial_vertex(self, diagnostics=None, context=None):
"""An initial Vertex can have at most one outgoing Transition.
(kind = PseudostateKind::initial) implies (outgoing->size() <= 1)"""
raise NotImplementedError("operation initial_vertex(...) not yet implemented")
def fork_vertex(self, diagnostics=None, context=None):
"""In a complete StateMachine, a fork Vertex must have at least two outgoing Transitions and exactly one incoming Transition.
(kind = PseudostateKind::fork) implies (incoming->size() = 1 and outgoing->size() >= 2)"""
raise NotImplementedError("operation fork_vertex(...) not yet implemented")
def transitions_incoming(self, diagnostics=None, context=None):
"""All Transitions incoming a join Vertex must originate in different Regions of an orthogonal State.
(kind = PseudostateKind::join) implies
-- for any pair of incoming transitions there exists an orthogonal state which contains the source vetices of these transitions
-- such that these source vertices belong to different regions of that orthogonal state
incoming->forAll(t1:Transition, t2:Transition | let contState:State = containingStateMachine().LCAState(t1.source, t2.source) in
((contState <> null) and (contState.region
->exists(r1:Region, r2: Region | (r1 <> r2) and t1.source.isContainedInRegion(r1) and t2.source.isContainedInRegion(r2)))))"""
raise NotImplementedError(
"operation transitions_incoming(...) not yet implemented"
)
class ConnectionPointReferenceMixin(object):
"""User defined mixin class for ConnectionPointReference."""
def exit_pseudostates(self, diagnostics=None, context=None):
"""The exit Pseudostates must be Pseudostates with kind exitPoint.
exit->forAll(kind = PseudostateKind::exitPoint)"""
raise NotImplementedError(
"operation exit_pseudostates(...) not yet implemented"
)
def entry_pseudostates(self, diagnostics=None, context=None):
"""The entry Pseudostates must be Pseudostates with kind entryPoint.
entry->forAll(kind = PseudostateKind::entryPoint)"""
raise NotImplementedError(
"operation entry_pseudostates(...) not yet implemented"
)
class ProtocolConformanceMixin(object):
"""User defined mixin class for ProtocolConformance."""
class PackageMergeMixin(object):
"""User defined mixin class for PackageMerge."""
class ProfileApplicationMixin(object):
"""User defined mixin class for ProfileApplication."""
def get_applied_definition(self):
"""Retrieves the definition (Ecore representation) of the profile associated with this profile application."""
raise NotImplementedError(
"operation get_applied_definition(...) not yet implemented"
)
def get_applied_definition(self, namedElement=None):
"""Retrieves the definition (Ecore representation) of the specified named element in the profile associated with this profile application."""
raise NotImplementedError(
"operation get_applied_definition(...) not yet implemented"
)
class ElementImportMixin(object):
"""User defined mixin class for ElementImport."""
def imported_element_is_public(self, diagnostics=None, context=None):
"""An importedElement has either public visibility or no visibility at all.
importedElement.visibility <> null implies importedElement.visibility = VisibilityKind::public"""
raise NotImplementedError(
"operation imported_element_is_public(...) not yet implemented"
)
def visibility_public_or_private(self, diagnostics=None, context=None):
"""The visibility of an ElementImport is either public or private.
visibility = VisibilityKind::public or visibility = VisibilityKind::private"""
raise NotImplementedError(
"operation visibility_public_or_private(...) not yet implemented"
)
def get_name(self):
"""The query getName() returns the name under which the imported PackageableElement will be known in the importing namespace.
result = (if alias->notEmpty() then
alias
else
importedElement.name
endif)
<p>From package UML::CommonStructure.</p>"""
raise NotImplementedError("operation get_name(...) not yet implemented")
class PackageImportMixin(object):
"""User defined mixin class for PackageImport."""
def public_or_private(self, diagnostics=None, context=None):
"""The visibility of a PackageImport is either public or private.
visibility = VisibilityKind::public or visibility = VisibilityKind::private"""
raise NotImplementedError(
"operation public_or_private(...) not yet implemented"
)
class GeneralizationMixin(object):
"""User defined mixin class for Generalization."""
class ExtensionPointMixin(object):
"""User defined mixin class for ExtensionPoint."""
def must_have_name(self, diagnostics=None, context=None):
"""An ExtensionPoint must have a name.
name->notEmpty ()"""
raise NotImplementedError("operation must_have_name(...) not yet implemented")
class ActivityGroupMixin(object):
"""User defined mixin class for ActivityGroup."""
@property
@inActivity.setter
@property
def nodes_and_edges(self, diagnostics=None, context=None):
"""All containedNodes and containeEdges of an ActivityGroup must be in the same Activity as the group.
containedNode->forAll(activity = self.containingActivity()) and
containedEdge->forAll(activity = self.containingActivity())"""
raise NotImplementedError("operation nodes_and_edges(...) not yet implemented")
def not_contained(self, diagnostics=None, context=None):
"""No containedNode or containedEdge of an ActivityGroup may be contained by its subgroups or its superGroups, transitively.
subgroup->closure(subgroup).containedNode->excludesAll(containedNode) and
superGroup->closure(superGroup).containedNode->excludesAll(containedNode) and
subgroup->closure(subgroup).containedEdge->excludesAll(containedEdge) and
superGroup->closure(superGroup).containedEdge->excludesAll(containedEdge)"""
raise NotImplementedError("operation not_contained(...) not yet implemented")
class ActivityEdgeMixin(object):
"""User defined mixin class for ActivityEdge."""
def source_and_target(self, diagnostics=None, context=None):
"""If an ActivityEdge is directly owned by an Activity, then its source and target must be directly or indirectly contained in the same Activity.
activity<>null implies source.containingActivity() = activity and target.containingActivity() = activity"""
raise NotImplementedError(
"operation source_and_target(...) not yet implemented"
)
class InteractionUseMixin(object):
"""User defined mixin class for InteractionUse."""
def gates_match(self, diagnostics=None, context=None):
"""Actual Gates of the InteractionUse must match Formal Gates of the referred Interaction. Gates match when their names are equal and their messages correspond.
actualGate->notEmpty() implies
refersTo.formalGate->forAll( fg : Gate | self.actualGate->select(matches(fg))->size()=1) and
self.actualGate->forAll(ag : Gate | refersTo.formalGate->select(matches(ag))->size()=1)"""
raise NotImplementedError("operation gates_match(...) not yet implemented")
def arguments_are_constants(self, diagnostics=None, context=None):
"""The arguments must only be constants, parameters of the enclosing Interaction or attributes of the classifier owning the enclosing Interaction."""
raise NotImplementedError(
"operation arguments_are_constants(...) not yet implemented"
)
def return_value_recipient_coverage(self, diagnostics=None, context=None):
"""The returnValueRecipient must be a Property of a ConnectableElement that is represented by a Lifeline covered by this InteractionUse.
returnValueRecipient->asSet()->notEmpty() implies
let covCE : Set(ConnectableElement) = covered.represents->asSet() in
covCE->notEmpty() and let classes:Set(Classifier) = covCE.type.oclIsKindOf(Classifier).oclAsType(Classifier)->asSet() in
let allProps : Set(Property) = classes.attribute->union(classes.allParents().attribute)->asSet() in
allProps->includes(returnValueRecipient)"""
raise NotImplementedError(
"operation return_value_recipient_coverage(...) not yet implemented"
)
def arguments_correspond_to_parameters(self, diagnostics=None, context=None):
"""The arguments of the InteractionUse must correspond to parameters of the referred Interaction."""
raise NotImplementedError(
"operation arguments_correspond_to_parameters(...) not yet implemented"
)
def return_value_type_recipient_correspondence(
self, diagnostics=None, context=None
):
"""The type of the returnValue must correspond to the type of the returnValueRecipient.
returnValue.type->asSequence()->notEmpty() implies returnValue.type->asSequence()->first() = returnValueRecipient.type->asSequence()->first()"""
raise NotImplementedError(
"operation return_value_type_recipient_correspondence(...) not yet implemented"
)
def all_lifelines(self, diagnostics=None, context=None):
"""The InteractionUse must cover all Lifelines of the enclosing Interaction that are common with the lifelines covered by the referred Interaction. Lifelines are common if they have the same selector and represents associationEnd values.
let parentInteraction : Set(Interaction) = enclosingInteraction->asSet()->
union(enclosingOperand.combinedFragment->closure(enclosingOperand.combinedFragment)->
collect(enclosingInteraction).oclAsType(Interaction)->asSet()) in
parentInteraction->size()=1 and let refInteraction : Interaction = refersTo in
parentInteraction.covered-> forAll(intLifeline : Lifeline | refInteraction.covered->
forAll( refLifeline : Lifeline | refLifeline.represents = intLifeline.represents and
(
( refLifeline.selector.oclIsKindOf(LiteralString) implies
intLifeline.selector.oclIsKindOf(LiteralString) and
refLifeline.selector.oclAsType(LiteralString).value = intLifeline.selector.oclAsType(LiteralString).value ) and
( refLifeline.selector.oclIsKindOf(LiteralInteger) implies
intLifeline.selector.oclIsKindOf(LiteralInteger) and
refLifeline.selector.oclAsType(LiteralInteger).value = intLifeline.selector.oclAsType(LiteralInteger).value )
)
implies self.covered->asSet()->includes(intLifeline)))"""
raise NotImplementedError("operation all_lifelines(...) not yet implemented")
class GateMixin(object):
"""User defined mixin class for Gate."""
def actual_gate_matched(self, diagnostics=None, context=None):
"""If this Gate is an actualGate, it must have exactly one matching formalGate within the referred Interaction.
interactionUse->notEmpty() implies interactionUse.refersTo.formalGate->select(matches(self))->size()=1"""
raise NotImplementedError(
"operation actual_gate_matched(...) not yet implemented"
)
def inside_cf_matched(self, diagnostics=None, context=None):
"""If this Gate is inside a CombinedFragment, it must have exactly one matching Gate which is outside of that CombinedFragment.
isInsideCF() implies combinedFragment.cfragmentGate->select(isOutsideCF() and matches(self))->size()=1"""
raise NotImplementedError(
"operation inside_cf_matched(...) not yet implemented"
)
def outside_cf_matched(self, diagnostics=None, context=None):
"""If this Gate is outside an 'alt' CombinedFragment, for every InteractionOperator inside that CombinedFragment there must be exactly one matching Gate inside the CombindedFragment with its opposing end enclosed by that InteractionOperator. If this Gate is outside CombinedFragment with operator other than 'alt', there must be exactly one matching Gate inside that CombinedFragment.
isOutsideCF() implies
if self.combinedFragment.interactionOperator->asOrderedSet()->first() = InteractionOperatorKind::alt
then self.combinedFragment.operand->forAll(op : InteractionOperand |
self.combinedFragment.cfragmentGate->select(isInsideCF() and
oppositeEnd().enclosingFragment()->includes(self.combinedFragment) and matches(self))->size()=1)
else self.combinedFragment.cfragmentGate->select(isInsideCF() and matches(self))->size()=1
endif"""
raise NotImplementedError(
"operation outside_cf_matched(...) not yet implemented"
)
def formal_gate_distinguishable(self, diagnostics=None, context=None):
"""isFormal() implies that no other formalGate of the parent Interaction returns the same getName() as returned for self
isFormal() implies interaction.formalGate->select(getName() = self.getName())->size()=1"""
raise NotImplementedError(
"operation formal_gate_distinguishable(...) not yet implemented"
)
def actual_gate_distinguishable(self, diagnostics=None, context=None):
"""isActual() implies that no other actualGate of the parent InteractionUse returns the same getName() as returned for self
isActual() implies interactionUse.actualGate->select(getName() = self.getName())->size()=1"""
raise NotImplementedError(
"operation actual_gate_distinguishable(...) not yet implemented"
)
def outside_cf_gate_distinguishable(self, diagnostics=None, context=None):
"""isOutsideCF() implies that no other outside cfragmentGate of the parent CombinedFragment returns the same getName() as returned for self
isOutsideCF() implies combinedFragment.cfragmentGate->select(getName() = self.getName())->size()=1"""
raise NotImplementedError(
"operation outside_cf_gate_distinguishable(...) not yet implemented"
)
def inside_cf_gate_distinguishable(self, diagnostics=None, context=None):
"""isInsideCF() implies that no other inside cfragmentGate attached to a message with its other end in the same InteractionOperator as self, returns the same getName() as returned for self
isInsideCF() implies
let selfOperand : InteractionOperand = self.getOperand() in
combinedFragment.cfragmentGate->select(isInsideCF() and getName() = self.getName())->select(getOperand() = selfOperand)->size()=1"""
raise NotImplementedError(
"operation inside_cf_gate_distinguishable(...) not yet implemented"
)
def is_outside_cf(self):
"""This query returns true if this Gate is attached to the boundary of a CombinedFragment, and its other end (if present) is outside of the same CombinedFragment.
result = (self.oppositeEnd()-> notEmpty() and combinedFragment->notEmpty() implies
let oppEnd : MessageEnd = self.oppositeEnd()->asOrderedSet()->first() in
if oppEnd.oclIsKindOf(MessageOccurrenceSpecification)
then let oppMOS : MessageOccurrenceSpecification = oppEnd.oclAsType(MessageOccurrenceSpecification)
in self.combinedFragment.enclosingInteraction.oclAsType(InteractionFragment)->asSet()->
union(self.combinedFragment.enclosingOperand.oclAsType(InteractionFragment)->asSet()) =
oppMOS.enclosingInteraction.oclAsType(InteractionFragment)->asSet()->
union(oppMOS.enclosingOperand.oclAsType(InteractionFragment)->asSet())
else let oppGate : Gate = oppEnd.oclAsType(Gate)
in self.combinedFragment.enclosingInteraction.oclAsType(InteractionFragment)->asSet()->
union(self.combinedFragment.enclosingOperand.oclAsType(InteractionFragment)->asSet()) =
oppGate.combinedFragment.enclosingInteraction.oclAsType(InteractionFragment)->asSet()->
union(oppGate.combinedFragment.enclosingOperand.oclAsType(InteractionFragment)->asSet())
endif)
<p>From package UML::Interactions.</p>"""
raise NotImplementedError("operation is_outside_cf(...) not yet implemented")
def is_inside_cf(self):
"""This query returns true if this Gate is attached to the boundary of a CombinedFragment, and its other end (if present) is inside of an InteractionOperator of the same CombinedFragment.
result = (self.oppositeEnd()-> notEmpty() and combinedFragment->notEmpty() implies
let oppEnd : MessageEnd = self.oppositeEnd()->asOrderedSet()->first() in
if oppEnd.oclIsKindOf(MessageOccurrenceSpecification)
then let oppMOS : MessageOccurrenceSpecification
= oppEnd.oclAsType(MessageOccurrenceSpecification)
in combinedFragment = oppMOS.enclosingOperand.combinedFragment
else let oppGate : Gate = oppEnd.oclAsType(Gate)
in combinedFragment = oppGate.combinedFragment.enclosingOperand.combinedFragment
endif)
<p>From package UML::Interactions.</p>"""
raise NotImplementedError("operation is_inside_cf(...) not yet implemented")
def is_actual(self):
"""This query returns true value if this Gate is an actualGate of an InteractionUse.
result = (interactionUse->notEmpty())
<p>From package UML::Interactions.</p>"""
raise NotImplementedError("operation is_actual(...) not yet implemented")
def is_formal(self):
"""This query returns true if this Gate is a formalGate of an Interaction.
result = (interaction->notEmpty())
<p>From package UML::Interactions.</p>"""
raise NotImplementedError("operation is_formal(...) not yet implemented")
def get_name(self):
"""This query returns the name of the gate, either the explicit name (.name) or the constructed name ('out_" or 'in_' concatenated in front of .message.name) if the explicit name is not present.
result = (if name->notEmpty() then name->asOrderedSet()->first()
else if isActual() or isOutsideCF()
then if isSend()
then 'out_'.concat(self.message.name->asOrderedSet()->first())
else 'in_'.concat(self.message.name->asOrderedSet()->first())
endif
else if isSend()
then 'in_'.concat(self.message.name->asOrderedSet()->first())
else 'out_'.concat(self.message.name->asOrderedSet()->first())
endif
endif
endif)
<p>From package UML::Interactions.</p>"""
raise NotImplementedError("operation get_name(...) not yet implemented")
def matches(self, gateToMatch=None):
"""This query returns true if the name of this Gate matches the name of the in parameter Gate, and the messages for the two Gates correspond. The Message for one Gate (say A) corresponds to the Message for another Gate (say B) if (A and B have the same name value) and (if A is a sendEvent then B is a receiveEvent) and (if A is a receiveEvent then B is a sendEvent) and (A and B have the same messageSort value) and (A and B have the same signature value).
result = (self.getName() = gateToMatch.getName() and
self.message.messageSort = gateToMatch.message.messageSort and
self.message.name = gateToMatch.message.name and
self.message.sendEvent->includes(self) implies gateToMatch.message.receiveEvent->includes(gateToMatch) and
self.message.receiveEvent->includes(self) implies gateToMatch.message.sendEvent->includes(gateToMatch) and
self.message.signature = gateToMatch.message.signature)
<p>From package UML::Interactions.</p>"""
raise NotImplementedError("operation matches(...) not yet implemented")
def get_operand(self):
"""If the Gate is an inside Combined Fragment Gate, this operation returns the InteractionOperand that the opposite end of this Gate is included within.
result = (if isInsideCF() then
let oppEnd : MessageEnd = self.oppositeEnd()->asOrderedSet()->first() in
if oppEnd.oclIsKindOf(MessageOccurrenceSpecification)
then let oppMOS : MessageOccurrenceSpecification = oppEnd.oclAsType(MessageOccurrenceSpecification)
in oppMOS.enclosingOperand->asOrderedSet()->first()
else let oppGate : Gate = oppEnd.oclAsType(Gate)
in oppGate.combinedFragment.enclosingOperand->asOrderedSet()->first()
endif
else null
endif)
<p>From package UML::Interactions.</p>"""
raise NotImplementedError("operation get_operand(...) not yet implemented")
class OccurrenceSpecificationMixin(object):
"""User defined mixin class for OccurrenceSpecification."""
def get_covered(self):
"""Returns the Lifeline on which the OccurrenceSpecification appears."""
raise NotImplementedError("operation get_covered(...) not yet implemented")
def set_covered(self, value=None):
"""Sets the Lifeline on which the OccurrenceSpecification appears."""
raise NotImplementedError("operation set_covered(...) not yet implemented")
class ExecutionSpecificationMixin(object):
"""User defined mixin class for ExecutionSpecification."""
def same_lifeline(self, diagnostics=None, context=None):
"""The startEvent and the finishEvent must be on the same Lifeline.
start.covered = finish.covered"""
raise NotImplementedError("operation same_lifeline(...) not yet implemented")
class CombinedFragmentMixin(object):
"""User defined mixin class for CombinedFragment."""
def break_(self, diagnostics=None, context=None):
"""If the interactionOperator is break, the corresponding InteractionOperand must cover all Lifelines covered by the enclosing InteractionFragment.
interactionOperator=InteractionOperatorKind::break implies
enclosingInteraction.oclAsType(InteractionFragment)->asSet()->union(
enclosingOperand.oclAsType(InteractionFragment)->asSet()).covered->asSet() = self.covered->asSet()"""
raise NotImplementedError("operation break_(...) not yet implemented")
def consider_and_ignore(self, diagnostics=None, context=None):
"""The interaction operators 'consider' and 'ignore' can only be used for the ConsiderIgnoreFragment subtype of CombinedFragment
((interactionOperator = InteractionOperatorKind::consider) or (interactionOperator = InteractionOperatorKind::ignore)) implies oclIsKindOf(ConsiderIgnoreFragment)"""
raise NotImplementedError(
"operation consider_and_ignore(...) not yet implemented"
)
def opt_loop_break_neg(self, diagnostics=None, context=None):
"""If the interactionOperator is opt, loop, break, assert or neg, there must be exactly one operand.
(interactionOperator = InteractionOperatorKind::opt or interactionOperator = InteractionOperatorKind::loop or
interactionOperator = InteractionOperatorKind::break or interactionOperator = InteractionOperatorKind::assert or
interactionOperator = InteractionOperatorKind::neg)
implies operand->size()=1"""
raise NotImplementedError(
"operation opt_loop_break_neg(...) not yet implemented"
)
class ContinuationMixin(object):
"""User defined mixin class for Continuation."""
def first_or_last_interaction_fragment(self, diagnostics=None, context=None):
"""Continuations always occur as the very first InteractionFragment or the very last InteractionFragment of the enclosing InteractionOperand.
enclosingOperand->notEmpty() and
let peerFragments : OrderedSet(InteractionFragment) = enclosingOperand.fragment in
( peerFragments->notEmpty() and
((peerFragments->first() = self) or (peerFragments->last() = self)))"""
raise NotImplementedError(
"operation first_or_last_interaction_fragment(...) not yet implemented"
)
def same_name(self, diagnostics=None, context=None):
"""Across all Interaction instances having the same context value, every Lifeline instance covered by a Continuation (self) must be common with one covered Lifeline instance of all other Continuation instances with the same name as self, and every Lifeline instance covered by a Continuation instance with the same name as self must be common with one covered Lifeline instance of self. Lifeline instances are common if they have the same selector and represents associationEnd values.
enclosingOperand.combinedFragment->notEmpty() and
let parentInteraction : Set(Interaction) =
enclosingOperand.combinedFragment->closure(enclosingOperand.combinedFragment)->
collect(enclosingInteraction).oclAsType(Interaction)->asSet()
in
(parentInteraction->size() = 1)
and let peerInteractions : Set(Interaction) =
(parentInteraction->union(parentInteraction->collect(_'context')->collect(behavior)->
select(oclIsKindOf(Interaction)).oclAsType(Interaction)->asSet())->asSet()) in
(peerInteractions->notEmpty()) and
let combinedFragments1 : Set(CombinedFragment) = peerInteractions.fragment->
select(oclIsKindOf(CombinedFragment)).oclAsType(CombinedFragment)->asSet() in
combinedFragments1->notEmpty() and combinedFragments1->closure(operand.fragment->
select(oclIsKindOf(CombinedFragment)).oclAsType(CombinedFragment))->asSet().operand.fragment->
select(oclIsKindOf(Continuation)).oclAsType(Continuation)->asSet()->
forAll(c : Continuation | (c.name = self.name) implies
(c.covered->asSet()->forAll(cl : Lifeline | -- cl must be common to one lifeline covered by self
self.covered->asSet()->
select(represents = cl.represents and selector = cl.selector)->asSet()->size()=1))
and
(self.covered->asSet()->forAll(cl : Lifeline | -- cl must be common to one lifeline covered by c
c.covered->asSet()->
select(represents = cl.represents and selector = cl.selector)->asSet()->size()=1))
)"""
raise NotImplementedError("operation same_name(...) not yet implemented")
def global_(self, diagnostics=None, context=None):
"""Continuations are always global in the enclosing InteractionFragment e.g., it always covers all Lifelines covered by the enclosing InteractionOperator.
enclosingOperand->notEmpty() and
let operandLifelines : Set(Lifeline) = enclosingOperand.covered in
(operandLifelines->notEmpty() and
operandLifelines->forAll(ol :Lifeline |self.covered->includes(ol)))"""
raise NotImplementedError("operation global_(...) not yet implemented")
class StateInvariantMixin(object):
"""User defined mixin class for StateInvariant."""
class TypeMixin(object):
"""User defined mixin class for Type."""
@property
@package.setter
def create_association(
self,
end1IsNavigable=None,
end1Aggregation=None,
end1Name=None,
end1Lower=None,
end1Upper=None,
end1Type=None,
end2IsNavigable=None,
end2Aggregation=None,
end2Name=None,
end2Lower=None,
end2Upper=None,
):
"""Creates a(n) (binary) association between this type and the specified other type, with the specified navigabilities, aggregations, names, lower bounds, and upper bounds, and owned by this type's nearest package."""
raise NotImplementedError(
"operation create_association(...) not yet implemented"
)
def get_associations(self):
"""Retrieves the associations in which this type is involved."""
raise NotImplementedError("operation get_associations(...) not yet implemented")
def conforms_to(self, other=None):
"""The query conformsTo() gives true for a Type that conforms to another. By default, two Types do not conform to each other. This query is intended to be redefined for specific conformance situations.
result = (false)
<p>From package UML::CommonStructure.</p>"""
raise NotImplementedError("operation conforms_to(...) not yet implemented")
class ConnectableElementMixin(object):
"""User defined mixin class for ConnectableElement."""
def get_ends(self):
"""Derivation for ConnectableElement::/end : ConnectorEnd
result = (ConnectorEnd.allInstances()->select(role = self))
<p>From package UML::StructuredClassifiers.</p>"""
raise NotImplementedError("operation get_ends(...) not yet implemented")
class ConstraintMixin(object):
"""User defined mixin class for Constraint."""
def boolean_value(self, diagnostics=None, context=None):
"""The ValueSpecification for a Constraint must evaluate to a Boolean value."""
raise NotImplementedError("operation boolean_value(...) not yet implemented")
def no_side_effects(self, diagnostics=None, context=None):
"""Evaluating the ValueSpecification for a Constraint must not have side effects."""
raise NotImplementedError("operation no_side_effects(...) not yet implemented")
def not_apply_to_self(self, diagnostics=None, context=None):
"""A Constraint cannot be applied to itself.
not constrainedElement->includes(self)"""
raise NotImplementedError(
"operation not_apply_to_self(...) not yet implemented"
)
class RegionMixin(object):
"""User defined mixin class for Region."""
def deep_history_vertex(self, diagnostics=None, context=None):
"""A Region can have at most one deep history Vertex.
self.subvertex->select (oclIsKindOf(Pseudostate))->collect(oclAsType(Pseudostate))->
select(kind = PseudostateKind::deepHistory)->size() <= 1"""
raise NotImplementedError(
"operation deep_history_vertex(...) not yet implemented"
)
def shallow_history_vertex(self, diagnostics=None, context=None):
"""A Region can have at most one shallow history Vertex.
subvertex->select(oclIsKindOf(Pseudostate))->collect(oclAsType(Pseudostate))->
select(kind = PseudostateKind::shallowHistory)->size() <= 1"""
raise NotImplementedError(
"operation shallow_history_vertex(...) not yet implemented"
)
def owned(self, diagnostics=None, context=None):
"""If a Region is owned by a StateMachine, then it cannot also be owned by a State and vice versa.
(stateMachine <> null implies state = null) and (state <> null implies stateMachine = null)"""
raise NotImplementedError("operation owned(...) not yet implemented")
def initial_vertex(self, diagnostics=None, context=None):
"""A Region can have at most one initial Vertex.
self.subvertex->select (oclIsKindOf(Pseudostate))->collect(oclAsType(Pseudostate))->
select(kind = PseudostateKind::initial)->size() <= 1"""
raise NotImplementedError("operation initial_vertex(...) not yet implemented")
def belongs_to_psm(self):
"""The operation belongsToPSM () checks if the Region belongs to a ProtocolStateMachine.
result = (if stateMachine <> null
then
stateMachine.oclIsKindOf(ProtocolStateMachine)
else
state <> null implies state.container.belongsToPSM()
endif )
<p>From package UML::StateMachines.</p>"""
raise NotImplementedError("operation belongs_to_psm(...) not yet implemented")
def containing_state_machine(self):
"""The operation containingStateMachine() returns the StateMachine in which this Region is defined.
result = (if stateMachine = null
then
state.containingStateMachine()
else
stateMachine
endif)
<p>From package UML::StateMachines.</p>"""
raise NotImplementedError(
"operation containing_state_machine(...) not yet implemented"
)
def redefinition_context(self):
"""The redefinition context of a Region is the nearest containing StateMachine.
result = (let sm : StateMachine = containingStateMachine() in
if sm._'context' = null or sm.general->notEmpty() then
sm
else
sm._'context'
endif)
<p>From package UML::StateMachines.</p>"""
raise NotImplementedError(
"operation redefinition_context(...) not yet implemented"
)
class EventMixin(object):
"""User defined mixin class for Event."""
class TransitionMixin(object):
"""User defined mixin class for Transition."""
def state_is_external(self, diagnostics=None, context=None):
"""A Transition with kind external can source any Vertex except entry points.
(kind = TransitionKind::external) implies
not (source.oclIsKindOf(Pseudostate) and source.oclAsType(Pseudostate).kind = PseudostateKind::entryPoint)"""
raise NotImplementedError(
"operation state_is_external(...) not yet implemented"
)
def join_segment_guards(self, diagnostics=None, context=None):
"""A join segment must not have Guards or Triggers.
(target.oclIsKindOf(Pseudostate) and target.oclAsType(Pseudostate).kind = PseudostateKind::join) implies (guard = null and trigger->isEmpty())"""
raise NotImplementedError(
"operation join_segment_guards(...) not yet implemented"
)
def state_is_internal(self, diagnostics=None, context=None):
"""A Transition with kind internal must have a State as its source, and its source and target must be equal.
(kind = TransitionKind::internal) implies
(source.oclIsKindOf (State) and source = target)"""
raise NotImplementedError(
"operation state_is_internal(...) not yet implemented"
)
def outgoing_pseudostates(self, diagnostics=None, context=None):
"""Transitions outgoing Pseudostates may not have a Trigger.
source.oclIsKindOf(Pseudostate) and (source.oclAsType(Pseudostate).kind <> PseudostateKind::initial) implies trigger->isEmpty()"""
raise NotImplementedError(
"operation outgoing_pseudostates(...) not yet implemented"
)
def join_segment_state(self, diagnostics=None, context=None):
"""A join segment must always originate from a State.
(target.oclIsKindOf(Pseudostate) and target.oclAsType(Pseudostate).kind = PseudostateKind::join) implies (source.oclIsKindOf(State))"""
raise NotImplementedError(
"operation join_segment_state(...) not yet implemented"
)
def fork_segment_state(self, diagnostics=None, context=None):
"""A fork segment must always target a State.
(source.oclIsKindOf(Pseudostate) and source.oclAsType(Pseudostate).kind = PseudostateKind::fork) implies (target.oclIsKindOf(State))"""
raise NotImplementedError(
"operation fork_segment_state(...) not yet implemented"
)
def state_is_local(self, diagnostics=None, context=None):
"""A Transition with kind local must have a composite State or an entry point as its source.
(kind = TransitionKind::local) implies
((source.oclIsKindOf (State) and source.oclAsType(State).isComposite) or
(source.oclIsKindOf (Pseudostate) and source.oclAsType(Pseudostate).kind = PseudostateKind::entryPoint))"""
raise NotImplementedError("operation state_is_local(...) not yet implemented")
def initial_transition(self, diagnostics=None, context=None):
"""An initial Transition at the topmost level Region of a StateMachine that has no Trigger.
(source.oclIsKindOf(Pseudostate) and container.stateMachine->notEmpty()) implies
trigger->isEmpty()"""
raise NotImplementedError(
"operation initial_transition(...) not yet implemented"
)
def fork_segment_guards(self, diagnostics=None, context=None):
"""A fork segment must not have Guards or Triggers.
(source.oclIsKindOf(Pseudostate) and source.oclAsType(Pseudostate).kind = PseudostateKind::fork) implies (guard = null and trigger->isEmpty())"""
raise NotImplementedError(
"operation fork_segment_guards(...) not yet implemented"
)
def containing_state_machine(self):
"""The query containingStateMachine() returns the StateMachine that contains the Transition either directly or transitively.
result = (container.containingStateMachine())
<p>From package UML::StateMachines.</p>"""
raise NotImplementedError(
"operation containing_state_machine(...) not yet implemented"
)
def redefinition_context(self):
"""The redefinition context of a Transition is the nearest containing StateMachine.
result = (let sm : StateMachine = containingStateMachine() in
if sm._'context' = null or sm.general->notEmpty() then
sm
else
sm._'context'
endif)
<p>From package UML::StateMachines.</p>"""
raise NotImplementedError(
"operation redefinition_context(...) not yet implemented"
)
class ConnectorMixin(object):
"""User defined mixin class for Connector."""
@property
def types(self, diagnostics=None, context=None):
"""The types of the ConnectableElements that the ends of a Connector are attached to must conform to the types of the ends of the Association that types the Connector, if any.
type<>null implies
let noOfEnds : Integer = end->size() in
(type.memberEnd->size() = noOfEnds) and Sequence{1..noOfEnds}->forAll(i | end->at(i).role.type.conformsTo(type.memberEnd->at(i).type))"""
raise NotImplementedError("operation types(...) not yet implemented")
def roles(self, diagnostics=None, context=None):
"""The ConnectableElements attached as roles to each ConnectorEnd owned by a Connector must be owned or inherited roles of the Classifier that owned the Connector, or they must be Ports of such roles.
structuredClassifier <> null
and
end->forAll( e | structuredClassifier.allRoles()->includes(e.role)
or
e.role.oclIsKindOf(Port) and structuredClassifier.allRoles()->includes(e.partWithPort))"""
raise NotImplementedError("operation roles(...) not yet implemented")
def get_kind(self):
"""Derivation for Connector::/kind : ConnectorKind
result = (if end->exists(
role.oclIsKindOf(Port)
and partWithPort->isEmpty()
and not role.oclAsType(Port).isBehavior)
then ConnectorKind::delegation
else ConnectorKind::assembly
endif)
<p>From package UML::StructuredClassifiers.</p>"""
raise NotImplementedError("operation get_kind(...) not yet implemented")
class GeneralizationSetMixin(object):
"""User defined mixin class for GeneralizationSet."""
def generalization_same_classifier(self, diagnostics=None, context=None):
"""Every Generalization associated with a particular GeneralizationSet must have the same general Classifier.
generalization->collect(general)->asSet()->size() <= 1"""
raise NotImplementedError(
"operation generalization_same_classifier(...) not yet implemented"
)
def maps_to_generalization_set(self, diagnostics=None, context=None):
"""The Classifier that maps to a GeneralizationSet may neither be a specific nor a general Classifier in any of the Generalization relationships defined for that GeneralizationSet. In other words, a power type may not be an instance of itself nor may its instances be its subclasses.
powertype <> null implies generalization->forAll( gen |
not (gen.general = powertype) and not gen.general.allParents()->includes(powertype) and not (gen.specific = powertype) and not powertype.allParents()->includes(gen.specific)
)"""
raise NotImplementedError(
"operation maps_to_generalization_set(...) not yet implemented"
)
class RedefinableTemplateSignatureMixin(object):
"""User defined mixin class for RedefinableTemplateSignature."""
def redefines_parents(self, diagnostics=None, context=None):
"""If any of the parent Classifiers are a template, then the extendedSignature must include the signature of that Classifier.
classifier.allParents()->forAll(c | c.ownedTemplateSignature->notEmpty() implies self->closure(extendedSignature)->includes(c.ownedTemplateSignature))"""
raise NotImplementedError(
"operation redefines_parents(...) not yet implemented"
)
def get_inherited_parameters(self):
"""Derivation for RedefinableTemplateSignature::/inheritedParameter
result = (if extendedSignature->isEmpty() then Set{} else extendedSignature.parameter->asSet() endif)
<p>From package UML::Classification.</p>"""
raise NotImplementedError(
"operation get_inherited_parameters(...) not yet implemented"
)
class ExtendMixin(object):
"""User defined mixin class for Extend."""
def extension_points(self, diagnostics=None, context=None):
"""The ExtensionPoints referenced by the Extend relationship must belong to the UseCase that is being extended.
extensionLocation->forAll (xp | extendedCase.extensionPoint->includes(xp))"""
raise NotImplementedError("operation extension_points(...) not yet implemented")
class IncludeMixin(object):
"""User defined mixin class for Include."""
class ActivityPartitionMixin(object):
"""User defined mixin class for ActivityPartition."""
def represents_classifier(self, diagnostics=None, context=None):
"""If a non-external ActivityPartition represents a Classifier and has a superPartition, then the superPartition must represent a Classifier, and the Classifier of the subpartition must be nested (nestedClassifier or ownedBehavior) in the Classifier represented by the superPartition, or be at the contained end of a composition Association with the Classifier represented by the superPartition.
(not isExternal and represents.oclIsKindOf(Classifier) and superPartition->notEmpty()) implies
(
let representedClassifier : Classifier = represents.oclAsType(Classifier) in
superPartition.represents.oclIsKindOf(Classifier) and
let representedSuperClassifier : Classifier = superPartition.represents.oclAsType(Classifier) in
(representedSuperClassifier.oclIsKindOf(BehavioredClassifier) and representedClassifier.oclIsKindOf(Behavior) and
representedSuperClassifier.oclAsType(BehavioredClassifier).ownedBehavior->includes(representedClassifier.oclAsType(Behavior)))
or
(representedSuperClassifier.oclIsKindOf(Class) and representedSuperClassifier.oclAsType(Class).nestedClassifier->includes(representedClassifier))
or
(Association.allInstances()->exists(a | a.memberEnd->exists(end1 | end1.isComposite and end1.type = representedClassifier and
a.memberEnd->exists(end2 | end1<>end2 and end2.type = representedSuperClassifier))))
)"""
raise NotImplementedError(
"operation represents_classifier(...) not yet implemented"
)
def represents_property_and_is_contained(self, diagnostics=None, context=None):
"""If an ActivityPartition represents a Property and has a superPartition, then the Property must be of a Classifier represented by the superPartition, or of a Classifier that is the type of a Property represented by the superPartition.
(represents.oclIsKindOf(Property) and superPartition->notEmpty()) implies
(
(superPartition.represents.oclIsKindOf(Classifier) and represents.owner = superPartition.represents) or
(superPartition.represents.oclIsKindOf(Property) and represents.owner = superPartition.represents.oclAsType(Property).type)
)"""
raise NotImplementedError(
"operation represents_property_and_is_contained(...) not yet implemented"
)
def represents_property(self, diagnostics=None, context=None):
"""If an ActivityPartition represents a Property and has a superPartition representing a Classifier, then all the other non-external subpartitions of the superPartition must represent Properties directly owned by the same Classifier.
(represents.oclIsKindOf(Property) and superPartition->notEmpty() and superPartition.represents.oclIsKindOf(Classifier)) implies
(
let representedClassifier : Classifier = superPartition.represents.oclAsType(Classifier)
in
superPartition.subpartition->reject(isExternal)->forAll(p |
p.represents.oclIsKindOf(Property) and p.owner=representedClassifier)
)"""
raise NotImplementedError(
"operation represents_property(...) not yet implemented"
)
def dimension_not_contained(self, diagnostics=None, context=None):
"""An ActvivityPartition with isDimension = true may not be contained by another ActivityPartition.
isDimension implies superPartition->isEmpty()"""
raise NotImplementedError(
"operation dimension_not_contained(...) not yet implemented"
)
class ActivityNodeMixin(object):
"""User defined mixin class for ActivityNode."""
@property
@activity.setter
class InterruptibleActivityRegionMixin(object):
"""User defined mixin class for InterruptibleActivityRegion."""
def interrupting_edges(self, diagnostics=None, context=None):
"""The interruptingEdges of an InterruptibleActivityRegion must have their source in the region and their target outside the region, but within the same Activity containing the region.
interruptingEdge->forAll(edge |
node->includes(edge.source) and node->excludes(edge.target) and edge.target.containingActivity() = inActivity)"""
raise NotImplementedError(
"operation interrupting_edges(...) not yet implemented"
)
class ControlFlowMixin(object):
"""User defined mixin class for ControlFlow."""
def object_nodes(self, diagnostics=None, context=None):
"""ControlFlows may not have ObjectNodes at either end, except for ObjectNodes with control type.
(source.oclIsKindOf(ObjectNode) implies source.oclAsType(ObjectNode).isControlType) and
(target.oclIsKindOf(ObjectNode) implies target.oclAsType(ObjectNode).isControlType)"""
raise NotImplementedError("operation object_nodes(...) not yet implemented")
class ObjectFlowMixin(object):
"""User defined mixin class for ObjectFlow."""
def input_and_output_parameter(self, diagnostics=None, context=None):
"""A selection Behavior has one input Parameter and one output Parameter. The input Parameter must have the same as or a supertype of the type of the source ObjectNode, be non-unique and have multiplicity 0..*. The output Parameter must be the same or a subtype of the type of source ObjectNode. The Behavior cannot have side effects.
selection<>null implies
selection.inputParameters()->size()=1 and
selection.inputParameters()->forAll(not isUnique and is(0,*)) and
selection.outputParameters()->size()=1"""
raise NotImplementedError(
"operation input_and_output_parameter(...) not yet implemented"
)
def no_executable_nodes(self, diagnostics=None, context=None):
"""ObjectFlows may not have ExecutableNodes at either end.
not (source.oclIsKindOf(ExecutableNode) or target.oclIsKindOf(ExecutableNode))"""
raise NotImplementedError(
"operation no_executable_nodes(...) not yet implemented"
)
def transformation_behavior(self, diagnostics=None, context=None):
"""A transformation Behavior has one input Parameter and one output Parameter. The input Parameter must be the same as or a supertype of the type of object token coming from the source end. The output Parameter must be the same or a subtype of the type of object token expected downstream. The Behavior cannot have side effects.
transformation<>null implies
transformation.inputParameters()->size()=1 and
transformation.outputParameters()->size()=1"""
raise NotImplementedError(
"operation transformation_behavior(...) not yet implemented"
)
def selection_behavior(self, diagnostics=None, context=None):
"""An ObjectFlow may have a selection Behavior only if it has an ObjectNode as its source.
selection<>null implies source.oclIsKindOf(ObjectNode)"""
raise NotImplementedError(
"operation selection_behavior(...) not yet implemented"
)
def compatible_types(self, diagnostics=None, context=None):
"""ObjectNodes connected by an ObjectFlow, with optionally intervening ControlNodes, must have compatible types. In particular, the downstream ObjectNode type must be the same or a supertype of the upstream ObjectNode type."""
raise NotImplementedError("operation compatible_types(...) not yet implemented")
def same_upper_bounds(self, diagnostics=None, context=None):
"""ObjectNodes connected by an ObjectFlow, with optionally intervening ControlNodes, must have the same upperBounds."""
raise NotImplementedError(
"operation same_upper_bounds(...) not yet implemented"
)
def target(self, diagnostics=None, context=None):
"""An ObjectFlow with a constant weight may not target an ObjectNode, with optionally intervening ControlNodes, that has an upper bound less than the weight."""
raise NotImplementedError("operation target(...) not yet implemented")
def is_multicast_or_is_multireceive(self, diagnostics=None, context=None):
"""isMulticast and isMultireceive cannot both be true.
not (isMulticast and isMultireceive)"""
raise NotImplementedError(
"operation is_multicast_or_is_multireceive(...) not yet implemented"
)
class ObservationMixin(object):
"""User defined mixin class for Observation."""
class PartDecompositionMixin(object):
"""User defined mixin class for PartDecomposition."""
def commutativity_of_decomposition(self, diagnostics=None, context=None):
"""Assume that within Interaction X, Lifeline L is of class C and decomposed to D. Assume also that there is within X an InteractionUse (say) U that covers L. According to the constraint above U will have a counterpart CU within D. Within the Interaction referenced by U, L should also be decomposed, and the decomposition should reference CU. (This rule is called commutativity of decomposition.)"""
raise NotImplementedError(
"operation commutativity_of_decomposition(...) not yet implemented"
)
def assume(self, diagnostics=None, context=None):
"""Assume that within Interaction X, Lifeline L is of class C and decomposed to D. Within X there is a sequence of constructs along L (such constructs are CombinedFragments, InteractionUse and (plain) OccurrenceSpecifications). Then a corresponding sequence of constructs must appear within D, matched one-to-one in the same order. i) CombinedFragment covering L are matched with an extra-global CombinedFragment in D. ii) An InteractionUse covering L is matched with a global (i.e., covering all Lifelines) InteractionUse in D. iii) A plain OccurrenceSpecification on L is considered an actualGate that must be matched by a formalGate of D."""
raise NotImplementedError("operation assume(...) not yet implemented")
def parts_of_internal_structures(self, diagnostics=None, context=None):
"""PartDecompositions apply only to Parts that are Parts of Internal Structures not to Parts of Collaborations."""
raise NotImplementedError(
"operation parts_of_internal_structures(...) not yet implemented"
)
class InteractionOperandMixin(object):
"""User defined mixin class for InteractionOperand."""
def guard_contain_references(self, diagnostics=None, context=None):
"""The guard must contain only references to values local to the Lifeline on which it resides, or values global to the whole Interaction."""
raise NotImplementedError(
"operation guard_contain_references(...) not yet implemented"
)
def guard_directly_prior(self, diagnostics=None, context=None):
"""The guard must be placed directly prior to (above) the OccurrenceSpecification that will become the first OccurrenceSpecification within this InteractionOperand."""
raise NotImplementedError(
"operation guard_directly_prior(...) not yet implemented"
)
class ActionExecutionSpecificationMixin(object):
"""User defined mixin class for ActionExecutionSpecification."""
def action_referenced(self, diagnostics=None, context=None):
"""The Action referenced by the ActionExecutionSpecification must be owned by the Interaction owning that ActionExecutionSpecification.
(enclosingInteraction->notEmpty() or enclosingOperand.combinedFragment->notEmpty()) and
let parentInteraction : Set(Interaction) = enclosingInteraction.oclAsType(Interaction)->asSet()->union(
enclosingOperand.combinedFragment->closure(enclosingOperand.combinedFragment)->
collect(enclosingInteraction).oclAsType(Interaction)->asSet()) in
(parentInteraction->size() = 1) and self.action.interaction->asSet() = parentInteraction"""
raise NotImplementedError(
"operation action_referenced(...) not yet implemented"
)
class BehaviorExecutionSpecificationMixin(object):
"""User defined mixin class for BehaviorExecutionSpecification."""
class ConsiderIgnoreFragmentMixin(object):
"""User defined mixin class for ConsiderIgnoreFragment."""
def consider_or_ignore(self, diagnostics=None, context=None):
"""The interaction operator of a ConsiderIgnoreFragment must be either 'consider' or 'ignore'.
(interactionOperator = InteractionOperatorKind::consider) or (interactionOperator = InteractionOperatorKind::ignore)"""
raise NotImplementedError(
"operation consider_or_ignore(...) not yet implemented"
)
def type(self, diagnostics=None, context=None):
"""The NamedElements must be of a type of element that can be a signature for a message (i.e.., an Operation, or a Signal).
message->forAll(m | m.oclIsKindOf(Operation) or m.oclIsKindOf(Signal))"""
raise NotImplementedError("operation type(...) not yet implemented")
class ExecutionOccurrenceSpecificationMixin(object):
"""User defined mixin class for ExecutionOccurrenceSpecification."""
class ValueSpecificationMixin(object):
"""User defined mixin class for ValueSpecification."""
def boolean_value(self):
"""The query booleanValue() gives a single Boolean value when one can be computed.
result = (null)
<p>From package UML::Values.</p>"""
raise NotImplementedError("operation boolean_value(...) not yet implemented")
def integer_value(self):
"""The query integerValue() gives a single Integer value when one can be computed.
result = (null)
<p>From package UML::Values.</p>"""
raise NotImplementedError("operation integer_value(...) not yet implemented")
def is_computable(self):
"""The query isComputable() determines whether a value specification can be computed in a model. This operation cannot be fully defined in OCL. A conforming implementation is expected to deliver true for this operation for all ValueSpecifications that it can compute, and to compute all of those for which the operation is true. A conforming implementation is expected to be able to compute at least the value of all LiteralSpecifications.
result = (false)
<p>From package UML::Values.</p>"""
raise NotImplementedError("operation is_computable(...) not yet implemented")
def is_null(self):
"""The query isNull() returns true when it can be computed that the value is null.
result = (false)
<p>From package UML::Values.</p>"""
raise NotImplementedError("operation is_null(...) not yet implemented")
def real_value(self):
"""The query realValue() gives a single Real value when one can be computed.
result = (null)
<p>From package UML::Values.</p>"""
raise NotImplementedError("operation real_value(...) not yet implemented")
def string_value(self):
"""The query stringValue() gives a single String value when one can be computed.
result = (null)
<p>From package UML::Values.</p>"""
raise NotImplementedError("operation string_value(...) not yet implemented")
def unlimited_value(self):
"""The query unlimitedValue() gives a single UnlimitedNatural value when one can be computed.
result = (null)
<p>From package UML::Values.</p>"""
raise NotImplementedError("operation unlimited_value(...) not yet implemented")
class BehavioralFeatureMixin(object):
"""User defined mixin class for BehavioralFeature."""
def abstract_no_method(self, diagnostics=None, context=None):
"""When isAbstract is true there are no methods.
isAbstract implies method->isEmpty()"""
raise NotImplementedError(
"operation abstract_no_method(...) not yet implemented"
)
def create_return_result(self, name=None, type=None):
"""Creates a return result parameter with the specified name and type."""
raise NotImplementedError(
"operation create_return_result(...) not yet implemented"
)
def input_parameters(self):
"""The ownedParameters with direction in and inout.
result = (ownedParameter->select(direction=ParameterDirectionKind::_'in' or direction=ParameterDirectionKind::inout))
<p>From package UML::Classification.</p>"""
raise NotImplementedError("operation input_parameters(...) not yet implemented")
def output_parameters(self):
"""The ownedParameters with direction out, inout, or return.
result = (ownedParameter->select(direction=ParameterDirectionKind::out or direction=ParameterDirectionKind::inout or direction=ParameterDirectionKind::return))
<p>From package UML::Classification.</p>"""
raise NotImplementedError(
"operation output_parameters(...) not yet implemented"
)
class StateMixin(object):
"""User defined mixin class for State."""
@property
@property
@property
@property
def entry_or_exit(self, diagnostics=None, context=None):
"""Only entry or exit Pseudostates can serve as connection points.
connectionPoint->forAll(kind = PseudostateKind::entryPoint or kind = PseudostateKind::exitPoint)"""
raise NotImplementedError("operation entry_or_exit(...) not yet implemented")
def submachine_states(self, diagnostics=None, context=None):
"""Only submachine States can have connection point references.
isSubmachineState implies connection->notEmpty( )"""
raise NotImplementedError(
"operation submachine_states(...) not yet implemented"
)
def composite_states(self, diagnostics=None, context=None):
"""Only composite States can have entry or exit Pseudostates defined.
connectionPoint->notEmpty() implies isComposite"""
raise NotImplementedError("operation composite_states(...) not yet implemented")
def destinations_or_sources_of_transitions(self, diagnostics=None, context=None):
"""The connection point references used as destinations/sources of Transitions associated with a submachine State must be defined as entry/exit points in the submachine StateMachine.
self.isSubmachineState implies (self.connection->forAll (cp |
cp.entry->forAll (ps | ps.stateMachine = self.submachine) and
cp.exit->forAll (ps | ps.stateMachine = self.submachine)))"""
raise NotImplementedError(
"operation destinations_or_sources_of_transitions(...) not yet implemented"
)
def submachine_or_regions(self, diagnostics=None, context=None):
"""A State is not allowed to have both a submachine and Regions.
isComposite implies not isSubmachineState"""
raise NotImplementedError(
"operation submachine_or_regions(...) not yet implemented"
)
def is_composite(self):
"""A composite State is a State with at least one Region.
result = (region->notEmpty())
<p>From package UML::StateMachines.</p>"""
raise NotImplementedError("operation is_composite(...) not yet implemented")
def is_orthogonal(self):
"""An orthogonal State is a composite state with at least 2 regions.
result = (region->size () > 1)
<p>From package UML::StateMachines.</p>"""
raise NotImplementedError("operation is_orthogonal(...) not yet implemented")
def is_simple(self):
"""A simple State is a State without any regions.
result = ((region->isEmpty()) and not isSubmachineState())
<p>From package UML::StateMachines.</p>"""
raise NotImplementedError("operation is_simple(...) not yet implemented")
def is_submachine_state(self):
"""Only submachine State references another StateMachine.
result = (submachine <> null)
<p>From package UML::StateMachines.</p>"""
raise NotImplementedError(
"operation is_submachine_state(...) not yet implemented"
)
def redefinition_context(self):
"""The redefinition context of a State is the nearest containing StateMachine.
result = (let sm : StateMachine = containingStateMachine() in
if sm._'context' = null or sm.general->notEmpty() then
sm
else
sm._'context'
endif)
<p>From package UML::StateMachines.</p>"""
raise NotImplementedError(
"operation redefinition_context(...) not yet implemented"
)
class ExecutableNodeMixin(object):
"""User defined mixin class for ExecutableNode."""
class ControlNodeMixin(object):
"""User defined mixin class for ControlNode."""
class MessageEventMixin(object):
"""User defined mixin class for MessageEvent."""
class ChangeEventMixin(object):
"""User defined mixin class for ChangeEvent."""
class TimeEventMixin(object):
"""User defined mixin class for TimeEvent."""
def when_non_negative(self, diagnostics=None, context=None):
"""The ValueSpecification when must return a non-negative Integer.
when.integerValue() >= 0"""
raise NotImplementedError(
"operation when_non_negative(...) not yet implemented"
)
class InteractionConstraintMixin(object):
"""User defined mixin class for InteractionConstraint."""
def minint_maxint(self, diagnostics=None, context=None):
"""Minint/maxint can only be present if the InteractionConstraint is associated with the operand of a loop CombinedFragment.
maxint->notEmpty() or minint->notEmpty() implies
interactionOperand.combinedFragment.interactionOperator =
InteractionOperatorKind::loop"""
raise NotImplementedError("operation minint_maxint(...) not yet implemented")
def minint_non_negative(self, diagnostics=None, context=None):
"""If minint is specified, then the expression must evaluate to a non-negative integer.
minint->notEmpty() implies
minint->asSequence()->first().integerValue() >= 0"""
raise NotImplementedError(
"operation minint_non_negative(...) not yet implemented"
)
def maxint_positive(self, diagnostics=None, context=None):
"""If maxint is specified, then the expression must evaluate to a positive integer.
maxint->notEmpty() implies
maxint->asSequence()->first().integerValue() > 0"""
raise NotImplementedError("operation maxint_positive(...) not yet implemented")
def dynamic_variables(self, diagnostics=None, context=None):
"""The dynamic variables that take part in the constraint must be owned by the ConnectableElement corresponding to the covered Lifeline."""
raise NotImplementedError(
"operation dynamic_variables(...) not yet implemented"
)
def global_data(self, diagnostics=None, context=None):
"""The constraint may contain references to global data or write-once data."""
raise NotImplementedError("operation global_data(...) not yet implemented")
def maxint_greater_equal_minint(self, diagnostics=None, context=None):
"""If maxint is specified, then minint must be specified and the evaluation of maxint must be >= the evaluation of minint.
maxint->notEmpty() implies (minint->notEmpty() and
maxint->asSequence()->first().integerValue() >=
minint->asSequence()->first().integerValue() )"""
raise NotImplementedError(
"operation maxint_greater_equal_minint(...) not yet implemented"
)
class MessageOccurrenceSpecificationMixin(object):
"""User defined mixin class for MessageOccurrenceSpecification."""
class ProtocolTransitionMixin(object):
"""User defined mixin class for ProtocolTransition."""
def refers_to_operation(self, diagnostics=None, context=None):
"""If a ProtocolTransition refers to an Operation (i.e., has a CallEvent trigger corresponding to an Operation), then that Operation should apply to the context Classifier of the StateMachine of the ProtocolTransition.
if (referred()->notEmpty() and containingStateMachine()._'context'->notEmpty()) then
containingStateMachine()._'context'.oclAsType(BehavioredClassifier).allFeatures()->includesAll(referred())
else true endif"""
raise NotImplementedError(
"operation refers_to_operation(...) not yet implemented"
)
def associated_actions(self, diagnostics=None, context=None):
"""A ProtocolTransition never has associated Behaviors.
effect = null"""
raise NotImplementedError(
"operation associated_actions(...) not yet implemented"
)
def belongs_to_psm(self, diagnostics=None, context=None):
"""A ProtocolTransition always belongs to a ProtocolStateMachine.
container.belongsToPSM()"""
raise NotImplementedError("operation belongs_to_psm(...) not yet implemented")
def get_referreds(self):
"""Derivation for ProtocolTransition::/referred
result = (trigger->collect(event)->select(oclIsKindOf(CallEvent))->collect(oclAsType(CallEvent).operation)->asSet())
<p>From package UML::StateMachines.</p>"""
raise NotImplementedError("operation get_referreds(...) not yet implemented")
class IntervalConstraintMixin(object):
"""User defined mixin class for IntervalConstraint."""
class DurationObservationMixin(object):
"""User defined mixin class for DurationObservation."""
def first_event_multiplicity(self, diagnostics=None, context=None):
"""The multiplicity of firstEvent must be 2 if the multiplicity of event is 2. Otherwise the multiplicity of firstEvent is 0.
if (event->size() = 2)
then (firstEvent->size() = 2) else (firstEvent->size() = 0)
endif"""
raise NotImplementedError(
"operation first_event_multiplicity(...) not yet implemented"
)
class TimeObservationMixin(object):
"""User defined mixin class for TimeObservation."""
class PackageMixin(object):
"""User defined mixin class for Package."""
@property
@nestingPackage.setter
def elements_public_or_private(self, diagnostics=None, context=None):
"""If an element that is owned by a package has visibility, it is public or private.
packagedElement->forAll(e | e.visibility<> null implies e.visibility = VisibilityKind::public or e.visibility = VisibilityKind::private)"""
raise NotImplementedError(
"operation elements_public_or_private(...) not yet implemented"
)
def apply_profile(self, profile=None):
"""Applies the current definition of the specified profile to this package and automatically applies required stereotypes in the profile to elements within this package's namespace hieararchy. If a different definition is already applied, automatically migrates any associated stereotype values on a "best effort" basis (matching classifiers and structural features by name)."""
raise NotImplementedError("operation apply_profile(...) not yet implemented")
def create_owned_class(self, name=None, isAbstract=None):
"""Creates a(n) (abstract) class with the specified name as an owned type of this package."""
raise NotImplementedError(
"operation create_owned_class(...) not yet implemented"
)
def create_owned_enumeration(self, name=None):
"""Creates a enumeration with the specified name as an owned type of this package."""
raise NotImplementedError(
"operation create_owned_enumeration(...) not yet implemented"
)
def create_owned_interface(self, name=None):
"""Creates an interface with the specified name as an owned type of this package."""
raise NotImplementedError(
"operation create_owned_interface(...) not yet implemented"
)
def create_owned_primitive_type(self, name=None):
"""Creates a primitive type with the specified name as an owned type of this package."""
raise NotImplementedError(
"operation create_owned_primitive_type(...) not yet implemented"
)
def create_owned_stereotype(self, name=None, isAbstract=None):
"""Creates a(n) (abstract) stereotype with the specified name as an owned stereotype of this profile."""
raise NotImplementedError(
"operation create_owned_stereotype(...) not yet implemented"
)
def get_all_applied_profiles(self):
"""Retrieves all the profiles that are applied to this package, including profiles applied to its nesting package(s)."""
raise NotImplementedError(
"operation get_all_applied_profiles(...) not yet implemented"
)
def get_all_profile_applications(self):
"""Retrieves all the profile applications for this package, including profile applications for its nesting package(s)."""
raise NotImplementedError(
"operation get_all_profile_applications(...) not yet implemented"
)
def get_applied_profile(self, qualifiedName=None):
"""Retrieves the profile with the specified qualified name that is applied to this package, or null if no such profile is applied."""
raise NotImplementedError(
"operation get_applied_profile(...) not yet implemented"
)
def get_applied_profile(self, qualifiedName=None, recurse=None):
"""Retrieves the profile with the specified qualified name that is applied to this package or any of its nesting packages (if indicated), or null if no such profile is applied."""
raise NotImplementedError(
"operation get_applied_profile(...) not yet implemented"
)
def get_applied_profiles(self):
"""Retrieves the profiles that are applied to this package."""
raise NotImplementedError(
"operation get_applied_profiles(...) not yet implemented"
)
def get_profile_application(self, profile=None):
"""Retrieves the application of the specified profile to this package, or null if no such profile is applied."""
raise NotImplementedError(
"operation get_profile_application(...) not yet implemented"
)
def get_profile_application(self, profile=None, recurse=None):
"""Retrieves the application of the specified profile to this package or any of its nesting packages (if indicated), or null if no such profile is applied."""
raise NotImplementedError(
"operation get_profile_application(...) not yet implemented"
)
def is_model_library(self):
"""Determines whether this package is a model library."""
raise NotImplementedError("operation is_model_library(...) not yet implemented")
def is_profile_applied(self, profile=None):
"""Determines whether the specified profile is applied to this package."""
raise NotImplementedError(
"operation is_profile_applied(...) not yet implemented"
)
def unapply_profile(self, profile=None):
"""Unapplies the specified profile from this package and automatically unapplies stereotypes in the profile from elements within this package's namespace hieararchy."""
raise NotImplementedError("operation unapply_profile(...) not yet implemented")
def apply_profiles(self, profiles=None):
"""Applies the current definitions of the specified profiles to this package and automatically applies required stereotypes in the profiles to elements within this package's namespace hieararchy. If different definitions are already applied, automatically migrates any associated stereotype values on a "best effort" basis (matching classifiers and structural features by name)."""
raise NotImplementedError("operation apply_profiles(...) not yet implemented")
def all_applicable_stereotypes(self):
"""The query allApplicableStereotypes() returns all the directly or indirectly owned stereotypes, including stereotypes contained in sub-profiles.
result = (let ownedPackages : Bag(Package) = ownedMember->select(oclIsKindOf(Package))->collect(oclAsType(Package)) in
ownedStereotype->union(ownedPackages.allApplicableStereotypes())->flatten()->asSet()
)
<p>From package UML::Packages.</p>"""
raise NotImplementedError(
"operation all_applicable_stereotypes(...) not yet implemented"
)
def containing_profile(self):
"""The query containingProfile() returns the closest profile directly or indirectly containing this package (or this package itself, if it is a profile).
result = (if self.oclIsKindOf(Profile) then
self.oclAsType(Profile)
else
self.namespace.oclAsType(Package).containingProfile()
endif)
<p>From package UML::Packages.</p>"""
raise NotImplementedError(
"operation containing_profile(...) not yet implemented"
)
def makes_visible(self, el=None):
"""The query makesVisible() defines whether a Package makes an element visible outside itself. Elements with no visibility and elements with public visibility are made visible.
member->includes(el)
result = (ownedMember->includes(el) or
(elementImport->select(ei|ei.importedElement = VisibilityKind::public)->collect(importedElement.oclAsType(NamedElement))->includes(el)) or
(packageImport->select(visibility = VisibilityKind::public)->collect(importedPackage.member->includes(el))->notEmpty()))
<p>From package UML::Packages.</p>"""
raise NotImplementedError("operation makes_visible(...) not yet implemented")
def get_nested_packages(self):
"""Derivation for Package::/nestedPackage
result = (packagedElement->select(oclIsKindOf(Package))->collect(oclAsType(Package))->asSet())
<p>From package UML::Packages.</p>"""
return self.nestedPackage
def get_owned_stereotypes(self):
"""Derivation for Package::/ownedStereotype
result = (packagedElement->select(oclIsKindOf(Stereotype))->collect(oclAsType(Stereotype))->asSet())
<p>From package UML::Packages.</p>"""
return self.ownedStereotype
def get_owned_types(self):
"""Derivation for Package::/ownedType
result = (packagedElement->select(oclIsKindOf(Type))->collect(oclAsType(Type))->asSet())
<p>From package UML::Packages.</p>"""
raise NotImplementedError("operation get_owned_types(...) not yet implemented")
def visible_members(self):
"""The query visibleMembers() defines which members of a Package can be accessed outside it.
result = (member->select( m | m.oclIsKindOf(PackageableElement) and self.makesVisible(m))->collect(oclAsType(PackageableElement))->asSet())
<p>From package UML::Packages.</p>"""
raise NotImplementedError("operation visible_members(...) not yet implemented")
class DependencyMixin(object):
"""User defined mixin class for Dependency."""
class OpaqueExpressionMixin(object):
"""User defined mixin class for OpaqueExpression."""
@property
def language_body_size(self, diagnostics=None, context=None):
"""If the language attribute is not empty, then the size of the body and language arrays must be the same.
language->notEmpty() implies (_'body'->size() = language->size())"""
raise NotImplementedError(
"operation language_body_size(...) not yet implemented"
)
def one_return_result_parameter(self, diagnostics=None, context=None):
"""The behavior must have exactly one return result parameter.
behavior <> null implies
behavior.ownedParameter->select(direction=ParameterDirectionKind::return)->size() = 1"""
raise NotImplementedError(
"operation one_return_result_parameter(...) not yet implemented"
)
def only_return_result_parameters(self, diagnostics=None, context=None):
"""The behavior may only have return result parameters.
behavior <> null implies behavior.ownedParameter->select(direction<>ParameterDirectionKind::return)->isEmpty()"""
raise NotImplementedError(
"operation only_return_result_parameters(...) not yet implemented"
)
def is_integral(self):
"""The query isIntegral() tells whether an expression is intended to produce an Integer.
result = (false)
<p>From package UML::Values.</p>"""
raise NotImplementedError("operation is_integral(...) not yet implemented")
def is_non_negative(self):
"""The query isNonNegative() tells whether an integer expression has a non-negative value.
self.isIntegral()
result = (false)
<p>From package UML::Values.</p>"""
raise NotImplementedError("operation is_non_negative(...) not yet implemented")
def is_positive(self):
"""The query isPositive() tells whether an integer expression has a positive value.
self.isIntegral()
result = (false)
<p>From package UML::Values.</p>"""
raise NotImplementedError("operation is_positive(...) not yet implemented")
def get_result(self):
"""Derivation for OpaqueExpression::/result
result = (if behavior = null then
null
else
behavior.ownedParameter->first()
endif)
<p>From package UML::Values.</p>"""
raise NotImplementedError("operation get_result(...) not yet implemented")
def value(self):
"""The query value() gives an integer value for an expression intended to produce one.
self.isIntegral()
result = (0)
<p>From package UML::Values.</p>"""
raise NotImplementedError("operation value(...) not yet implemented")
class ParameterMixin(object):
"""User defined mixin class for Parameter."""
@property
@default.setter
def in_and_out(self, diagnostics=None, context=None):
"""Only in and inout Parameters may have a delete effect. Only out, inout, and return Parameters may have a create effect.
(effect = ParameterEffectKind::delete implies (direction = ParameterDirectionKind::_'in' or direction = ParameterDirectionKind::inout))
and
(effect = ParameterEffectKind::create implies (direction = ParameterDirectionKind::out or direction = ParameterDirectionKind::inout or direction = ParameterDirectionKind::return))"""
raise NotImplementedError("operation in_and_out(...) not yet implemented")
def not_exception(self, diagnostics=None, context=None):
"""An input Parameter cannot be an exception.
isException implies (direction <> ParameterDirectionKind::_'in' and direction <> ParameterDirectionKind::inout)"""
raise NotImplementedError("operation not_exception(...) not yet implemented")
def connector_end(self, diagnostics=None, context=None):
"""A Parameter may only be associated with a Connector end within the context of a Collaboration.
end->notEmpty() implies collaboration->notEmpty()"""
raise NotImplementedError("operation connector_end(...) not yet implemented")
def reentrant_behaviors(self, diagnostics=None, context=None):
"""Reentrant behaviors cannot have stream Parameters.
(isStream and behavior <> null) implies not behavior.isReentrant"""
raise NotImplementedError(
"operation reentrant_behaviors(...) not yet implemented"
)
def stream_and_exception(self, diagnostics=None, context=None):
"""A Parameter cannot be a stream and exception at the same time.
not (isException and isStream)"""
raise NotImplementedError(
"operation stream_and_exception(...) not yet implemented"
)
def object_effect(self, diagnostics=None, context=None):
"""Parameters typed by DataTypes cannot have an effect.
(type.oclIsKindOf(DataType)) implies (effect = null)"""
raise NotImplementedError("operation object_effect(...) not yet implemented")
def set_boolean_default_value(self, value=None):
"""Sets the default value for this parameter to the specified Boolean value."""
raise NotImplementedError(
"operation set_boolean_default_value(...) not yet implemented"
)
def set_integer_default_value(self, value=None):
"""Sets the default value for this parameter to the specified integer value."""
raise NotImplementedError(
"operation set_integer_default_value(...) not yet implemented"
)
def set_null_default_value(self):
"""Sets the default value for this parameter to the null value."""
raise NotImplementedError(
"operation set_null_default_value(...) not yet implemented"
)
def set_real_default_value(self, value=None):
"""Sets the default value for this parameter to the specified real value."""
raise NotImplementedError(
"operation set_real_default_value(...) not yet implemented"
)
def set_string_default_value(self, value=None):
"""Sets the default value for this parameter to the specified string value."""
raise NotImplementedError(
"operation set_string_default_value(...) not yet implemented"
)
def set_unlimited_natural_default_value(self, value=None):
"""Sets the default value for this parameter to the specified unlimited natural value."""
raise NotImplementedError(
"operation set_unlimited_natural_default_value(...) not yet implemented"
)
def get_default(self):
"""Derivation for Parameter::/default
result = (if self.type = String then defaultValue.stringValue() else null endif)
<p>From package UML::Classification.</p>"""
raise NotImplementedError("operation get_default(...) not yet implemented")
class ReceptionMixin(object):
"""User defined mixin class for Reception."""
def same_name_as_signal(self, diagnostics=None, context=None):
"""A Reception has the same name as its signal
name = signal.name"""
raise NotImplementedError(
"operation same_name_as_signal(...) not yet implemented"
)
def same_structure_as_signal(self, diagnostics=None, context=None):
"""A Reception's parameters match the ownedAttributes of its signal by name, type, and multiplicity
signal.ownedAttribute->size() = ownedParameter->size() and
Sequence{1..signal.ownedAttribute->size()}->forAll( i |
ownedParameter->at(i).direction = ParameterDirectionKind::_'in' and
ownedParameter->at(i).name = signal.ownedAttribute->at(i).name and
ownedParameter->at(i).type = signal.ownedAttribute->at(i).type and
ownedParameter->at(i).lowerBound() = signal.ownedAttribute->at(i).lowerBound() and
ownedParameter->at(i).upperBound() = signal.ownedAttribute->at(i).upperBound()
)"""
raise NotImplementedError(
"operation same_structure_as_signal(...) not yet implemented"
)
class StructuralFeatureMixin(object):
"""User defined mixin class for StructuralFeature."""
class InstanceSpecificationMixin(object):
"""User defined mixin class for InstanceSpecification."""
def deployment_artifact(self, diagnostics=None, context=None):
"""An InstanceSpecification can act as a DeployedArtifact if it represents an instance of an Artifact.
deploymentForArtifact->notEmpty() implies classifier->exists(oclIsKindOf(Artifact))"""
raise NotImplementedError(
"operation deployment_artifact(...) not yet implemented"
)
def structural_feature(self, diagnostics=None, context=None):
"""No more than one slot in an InstanceSpecification may have the same definingFeature.
classifier->forAll(c | (c.allSlottableFeatures()->forAll(f | slot->select(s | s.definingFeature = f)->size() <= 1)))"""
raise NotImplementedError(
"operation structural_feature(...) not yet implemented"
)
def defining_feature(self, diagnostics=None, context=None):
"""The definingFeature of each slot is a StructuralFeature related to a classifier of the InstanceSpecification, including direct attributes, inherited attributes, private attributes in generalizations, and memberEnds of Associations, but excluding redefined StructuralFeatures.
slot->forAll(s | classifier->exists (c | c.allSlottableFeatures()->includes (s.definingFeature)))"""
raise NotImplementedError("operation defining_feature(...) not yet implemented")
def deployment_target(self, diagnostics=None, context=None):
"""An InstanceSpecification can act as a DeploymentTarget if it represents an instance of a Node and functions as a part in the internal structure of an encompassing Node.
deployment->notEmpty() implies classifier->exists(node | node.oclIsKindOf(Node) and Node.allInstances()->exists(n | n.part->exists(p | p.type = node)))"""
raise NotImplementedError(
"operation deployment_target(...) not yet implemented"
)
class ExpressionMixin(object):
"""User defined mixin class for Expression."""
class ActionMixin(object):
"""User defined mixin class for Action."""
@property
def get_context(self):
"""The derivation for the context property.
result = (let behavior: Behavior = self.containingBehavior() in
if behavior=null then null
else if behavior._'context' = null then behavior
else behavior._'context'
endif
endif)
<p>From package UML::Actions.</p>"""
raise NotImplementedError("operation get_context(...) not yet implemented")
def all_actions(self):
"""Return this Action and all Actions contained directly or indirectly in it. By default only the Action itself is returned, but the operation is overridden for StructuredActivityNodes.
result = (self->asSet())
<p>From package UML::Actions.</p>"""
raise NotImplementedError("operation all_actions(...) not yet implemented")
def all_owned_nodes(self):
"""Returns all the ActivityNodes directly or indirectly owned by this Action. This includes at least all the Pins of the Action.
result = (input.oclAsType(Pin)->asSet()->union(output->asSet()))
<p>From package UML::Actions.</p>"""
raise NotImplementedError("operation all_owned_nodes(...) not yet implemented")
def containing_behavior(self):
"""result = (if inStructuredNode<>null then inStructuredNode.containingBehavior()
else if activity<>null then activity
else interaction
endif
endif
)
<p>From package UML::Actions.</p>"""
raise NotImplementedError(
"operation containing_behavior(...) not yet implemented"
)
class ObjectNodeMixin(object):
"""User defined mixin class for ObjectNode."""
def input_output_parameter(self, diagnostics=None, context=None):
"""A selection Behavior has one input Parameter and one output Parameter. The input Parameter must have the same type as or a supertype of the type of ObjectNode, be non-unique, and have multiplicity 0..*. The output Parameter must be the same or a subtype of the type of ObjectNode. The Behavior cannot have side effects.
selection<>null implies
selection.inputParameters()->size()=1 and
selection.inputParameters()->forAll(p | not p.isUnique and p.is(0,*) and self.type.conformsTo(p.type)) and
selection.outputParameters()->size()=1 and
selection.inputParameters()->forAll(p | self.type.conformsTo(p.type))"""
raise NotImplementedError(
"operation input_output_parameter(...) not yet implemented"
)
def selection_behavior(self, diagnostics=None, context=None):
"""If an ObjectNode has a selection Behavior, then the ordering of the object node is ordered, and vice versa.
(selection<>null) = (ordering=ObjectNodeOrderingKind::ordered)"""
raise NotImplementedError(
"operation selection_behavior(...) not yet implemented"
)
def object_flow_edges(self, diagnostics=None, context=None):
"""If isControlType=false, the ActivityEdges incoming to or outgoing from an ObjectNode must all be ObjectFlows.
(not isControlType) implies incoming->union(outgoing)->forAll(oclIsKindOf(ObjectFlow))"""
raise NotImplementedError(
"operation object_flow_edges(...) not yet implemented"
)
class VariableMixin(object):
"""User defined mixin class for Variable."""
def is_accessible_by(self, a=None):
"""A Variable is accessible by Actions within its scope (the Activity or StructuredActivityNode that owns it).
result = (if scope<>null then scope.allOwnedNodes()->includes(a)
else a.containingActivity()=activityScope
endif)
<p>From package UML::Activities.</p>"""
raise NotImplementedError("operation is_accessible_by(...) not yet implemented")
class FinalNodeMixin(object):
"""User defined mixin class for FinalNode."""
def no_outgoing_edges(self, diagnostics=None, context=None):
"""A FinalNode has no outgoing ActivityEdges.
outgoing->isEmpty()"""
raise NotImplementedError(
"operation no_outgoing_edges(...) not yet implemented"
)
class DecisionNodeMixin(object):
"""User defined mixin class for DecisionNode."""
def zero_input_parameters(self, diagnostics=None, context=None):
"""If the DecisionNode has no decisionInputFlow and an incoming ControlFlow, then any decisionInput Behavior has no in parameters.
(decisionInput<>null and decisionInputFlow=null and incoming->exists(oclIsKindOf(ControlFlow))) implies
decisionInput.inputParameters()->isEmpty()"""
raise NotImplementedError(
"operation zero_input_parameters(...) not yet implemented"
)
def edges(self, diagnostics=None, context=None):
"""The ActivityEdges incoming to and outgoing from a DecisionNode, other than the decisionInputFlow (if any), must be either all ObjectFlows or all ControlFlows.
let allEdges: Set(ActivityEdge) = incoming->union(outgoing) in
let allRelevantEdges: Set(ActivityEdge) = if decisionInputFlow->notEmpty() then allEdges->excluding(decisionInputFlow) else allEdges endif in
allRelevantEdges->forAll(oclIsKindOf(ControlFlow)) or allRelevantEdges->forAll(oclIsKindOf(ObjectFlow))
"""
raise NotImplementedError("operation edges(...) not yet implemented")
def decision_input_flow_incoming(self, diagnostics=None, context=None):
"""The decisionInputFlow of a DecisionNode must be an incoming ActivityEdge of the DecisionNode.
incoming->includes(decisionInputFlow)"""
raise NotImplementedError(
"operation decision_input_flow_incoming(...) not yet implemented"
)
def two_input_parameters(self, diagnostics=None, context=None):
"""If the DecisionNode has a decisionInputFlow and an second incoming ObjectFlow, then any decisionInput has two in Parameters, the first of which has a type that is the same as or a supertype of the type of object tokens offered on the non-decisionInputFlow and the second of which has a type that is the same as or a supertype of the type of object tokens offered on the decisionInputFlow.
(decisionInput<>null and decisionInputFlow<>null and incoming->forAll(oclIsKindOf(ObjectFlow))) implies
decisionInput.inputParameters()->size()=2"""
raise NotImplementedError(
"operation two_input_parameters(...) not yet implemented"
)
def incoming_outgoing_edges(self, diagnostics=None, context=None):
"""A DecisionNode has one or two incoming ActivityEdges and at least one outgoing ActivityEdge.
(incoming->size() = 1 or incoming->size() = 2) and outgoing->size() > 0"""
raise NotImplementedError(
"operation incoming_outgoing_edges(...) not yet implemented"
)
def incoming_control_one_input_parameter(self, diagnostics=None, context=None):
"""If the DecisionNode has a decisionInputFlow and an incoming ControlFlow, then any decisionInput Behavior has one in Parameter whose type is the same as or a supertype of the type of object tokens offered on the decisionInputFlow.
(decisionInput<>null and decisionInputFlow<>null and incoming->exists(oclIsKindOf(ControlFlow))) implies
decisionInput.inputParameters()->size()=1"""
raise NotImplementedError(
"operation incoming_control_one_input_parameter(...) not yet implemented"
)
def parameters(self, diagnostics=None, context=None):
"""A decisionInput Behavior has no out parameters, no inout parameters, and one return parameter.
decisionInput<>null implies
(decisionInput.ownedParameter->forAll(par |
par.direction <> ParameterDirectionKind::out and
par.direction <> ParameterDirectionKind::inout ) and
decisionInput.ownedParameter->one(par |
par.direction <> ParameterDirectionKind::return))"""
raise NotImplementedError("operation parameters(...) not yet implemented")
def incoming_object_one_input_parameter(self, diagnostics=None, context=None):
"""If the DecisionNode has no decisionInputFlow and an incoming ObjectFlow, then any decisionInput Behavior has one in Parameter whose type is the same as or a supertype of the type of object tokens offered on the incoming ObjectFlow.
(decisionInput<>null and decisionInputFlow=null and incoming->forAll(oclIsKindOf(ObjectFlow))) implies
decisionInput.inputParameters()->size()=1"""
raise NotImplementedError(
"operation incoming_object_one_input_parameter(...) not yet implemented"
)
class ForkNodeMixin(object):
"""User defined mixin class for ForkNode."""
def edges(self, diagnostics=None, context=None):
"""The ActivityEdges incoming to and outgoing from a ForkNode must be either all ObjectFlows or all ControlFlows.
let allEdges : Set(ActivityEdge) = incoming->union(outgoing) in
allEdges->forAll(oclIsKindOf(ControlFlow)) or allEdges->forAll(oclIsKindOf(ObjectFlow))"""
raise NotImplementedError("operation edges(...) not yet implemented")
def one_incoming_edge(self, diagnostics=None, context=None):
"""A ForkNode has one incoming ActivityEdge.
incoming->size()=1"""
raise NotImplementedError(
"operation one_incoming_edge(...) not yet implemented"
)
class InitialNodeMixin(object):
"""User defined mixin class for InitialNode."""
def no_incoming_edges(self, diagnostics=None, context=None):
"""An InitialNode has no incoming ActivityEdges.
incoming->isEmpty()"""
raise NotImplementedError(
"operation no_incoming_edges(...) not yet implemented"
)
def control_edges(self, diagnostics=None, context=None):
"""All the outgoing ActivityEdges from an InitialNode must be ControlFlows.
outgoing->forAll(oclIsKindOf(ControlFlow))"""
raise NotImplementedError("operation control_edges(...) not yet implemented")
class JoinNodeMixin(object):
"""User defined mixin class for JoinNode."""
def one_outgoing_edge(self, diagnostics=None, context=None):
"""A JoinNode has one outgoing ActivityEdge.
outgoing->size() = 1"""
raise NotImplementedError(
"operation one_outgoing_edge(...) not yet implemented"
)
def incoming_object_flow(self, diagnostics=None, context=None):
"""If one of the incoming ActivityEdges of a JoinNode is an ObjectFlow, then its outgoing ActivityEdge must be an ObjectFlow. Otherwise its outgoing ActivityEdge must be a ControlFlow.
if incoming->exists(oclIsKindOf(ObjectFlow)) then outgoing->forAll(oclIsKindOf(ObjectFlow))
else outgoing->forAll(oclIsKindOf(ControlFlow))
endif"""
raise NotImplementedError(
"operation incoming_object_flow(...) not yet implemented"
)
class MergeNodeMixin(object):
"""User defined mixin class for MergeNode."""
def one_outgoing_edge(self, diagnostics=None, context=None):
"""A MergeNode has one outgoing ActivityEdge.
outgoing->size()=1"""
raise NotImplementedError(
"operation one_outgoing_edge(...) not yet implemented"
)
def edges(self, diagnostics=None, context=None):
"""The ActivityEdges incoming to and outgoing from a MergeNode must be either all ObjectFlows or all ControlFlows.
let allEdges : Set(ActivityEdge) = incoming->union(outgoing) in
allEdges->forAll(oclIsKindOf(ControlFlow)) or allEdges->forAll(oclIsKindOf(ObjectFlow))"""
raise NotImplementedError("operation edges(...) not yet implemented")
class InstanceValueMixin(object):
"""User defined mixin class for InstanceValue."""
class AnyReceiveEventMixin(object):
"""User defined mixin class for AnyReceiveEvent."""
class CallEventMixin(object):
"""User defined mixin class for CallEvent."""
class SignalEventMixin(object):
"""User defined mixin class for SignalEvent."""
class TimeExpressionMixin(object):
"""User defined mixin class for TimeExpression."""
def no_expr_requires_observation(self, diagnostics=None, context=None):
"""If a TimeExpression has no expr, then it must have a single observation that is a TimeObservation.
expr = null implies (observation->size() = 1 and observation->forAll(oclIsKindOf(TimeObservation)))"""
raise NotImplementedError(
"operation no_expr_requires_observation(...) not yet implemented"
)
class InformationFlowMixin(object):
"""User defined mixin class for InformationFlow."""
def must_conform(self, diagnostics=None, context=None):
"""The sources and targets of the information flow must conform to the sources and targets or conversely the targets and sources of the realization relationships."""
raise NotImplementedError("operation must_conform(...) not yet implemented")
def sources_and_targets_kind(self, diagnostics=None, context=None):
"""The sources and targets of the information flow can only be one of the following kind: Actor, Node, UseCase, Artifact, Class, Component, Port, Property, Interface, Package, ActivityNode, ActivityPartition,
Behavior and InstanceSpecification except when its classifier is a relationship (i.e. it represents a link).
(self.informationSource->forAll( sis |
oclIsKindOf(Actor) or oclIsKindOf(Node) or oclIsKindOf(UseCase) or oclIsKindOf(Artifact) or
oclIsKindOf(Class) or oclIsKindOf(Component) or oclIsKindOf(Port) or oclIsKindOf(Property) or
oclIsKindOf(Interface) or oclIsKindOf(Package) or oclIsKindOf(ActivityNode) or oclIsKindOf(ActivityPartition) or
(oclIsKindOf(InstanceSpecification) and not sis.oclAsType(InstanceSpecification).classifier->exists(oclIsKindOf(Relationship)))))
and
(self.informationTarget->forAll( sit |
oclIsKindOf(Actor) or oclIsKindOf(Node) or oclIsKindOf(UseCase) or oclIsKindOf(Artifact) or
oclIsKindOf(Class) or oclIsKindOf(Component) or oclIsKindOf(Port) or oclIsKindOf(Property) or
oclIsKindOf(Interface) or oclIsKindOf(Package) or oclIsKindOf(ActivityNode) or oclIsKindOf(ActivityPartition) or
(oclIsKindOf(InstanceSpecification) and not sit.oclAsType(InstanceSpecification).classifier->exists(oclIsKindOf(Relationship)))))"""
raise NotImplementedError(
"operation sources_and_targets_kind(...) not yet implemented"
)
def convey_classifiers(self, diagnostics=None, context=None):
"""An information flow can only convey classifiers that are allowed to represent an information item.
self.conveyed->forAll(oclIsKindOf(Class) or oclIsKindOf(Interface)
or oclIsKindOf(InformationItem) or oclIsKindOf(Signal) or oclIsKindOf(Component))"""
raise NotImplementedError(
"operation convey_classifiers(...) not yet implemented"
)
class DestructionOccurrenceSpecificationMixin(object):
"""User defined mixin class for DestructionOccurrenceSpecification."""
def no_occurrence_specifications_below(self, diagnostics=None, context=None):
"""No other OccurrenceSpecifications on a given Lifeline in an InteractionOperand may appear below a DestructionOccurrenceSpecification.
let o : InteractionOperand = enclosingOperand in o->notEmpty() and
let peerEvents : OrderedSet(OccurrenceSpecification) = covered.events->select(enclosingOperand = o)
in peerEvents->last() = self"""
raise NotImplementedError(
"operation no_occurrence_specifications_below(...) not yet implemented"
)
class FinalStateMixin(object):
"""User defined mixin class for FinalState."""
def no_exit_behavior(self, diagnostics=None, context=None):
"""A FinalState has no exit Behavior.
exit->isEmpty()"""
raise NotImplementedError("operation no_exit_behavior(...) not yet implemented")
def no_outgoing_transitions(self, diagnostics=None, context=None):
"""A FinalState cannot have any outgoing Transitions.
outgoing->size() = 0"""
raise NotImplementedError(
"operation no_outgoing_transitions(...) not yet implemented"
)
def no_regions(self, diagnostics=None, context=None):
"""A FinalState cannot have Regions.
region->size() = 0"""
raise NotImplementedError("operation no_regions(...) not yet implemented")
def cannot_reference_submachine(self, diagnostics=None, context=None):
"""A FinalState cannot reference a submachine.
submachine->isEmpty()"""
raise NotImplementedError(
"operation cannot_reference_submachine(...) not yet implemented"
)
def no_entry_behavior(self, diagnostics=None, context=None):
"""A FinalState has no entry Behavior.
entry->isEmpty()"""
raise NotImplementedError(
"operation no_entry_behavior(...) not yet implemented"
)
def no_state_behavior(self, diagnostics=None, context=None):
"""A FinalState has no state (doActivity) Behavior.
doActivity->isEmpty()"""
raise NotImplementedError(
"operation no_state_behavior(...) not yet implemented"
)
class DurationMixin(object):
"""User defined mixin class for Duration."""
def no_expr_requires_observation(self, diagnostics=None, context=None):
"""If a Duration has no expr, then it must have a single observation that is a DurationObservation.
expr = null implies (observation->size() = 1 and observation->forAll(oclIsKindOf(DurationObservation)))"""
raise NotImplementedError(
"operation no_expr_requires_observation(...) not yet implemented"
)
class DurationConstraintMixin(object):
"""User defined mixin class for DurationConstraint."""
def first_event_multiplicity(self, diagnostics=None, context=None):
"""The multiplicity of firstEvent must be 2 if the multiplicity of constrainedElement is 2. Otherwise the multiplicity of firstEvent is 0.
if (constrainedElement->size() = 2)
then (firstEvent->size() = 2) else (firstEvent->size() = 0)
endif"""
raise NotImplementedError(
"operation first_event_multiplicity(...) not yet implemented"
)
def has_one_or_two_constrained_elements(self, diagnostics=None, context=None):
"""A DurationConstraint has either one or two constrainedElements.
constrainedElement->size() = 1 or constrainedElement->size()=2"""
raise NotImplementedError(
"operation has_one_or_two_constrained_elements(...) not yet implemented"
)
class IntervalMixin(object):
"""User defined mixin class for Interval."""
class LiteralSpecificationMixin(object):
"""User defined mixin class for LiteralSpecification."""
class TimeConstraintMixin(object):
"""User defined mixin class for TimeConstraint."""
def has_one_constrained_element(self, diagnostics=None, context=None):
"""A TimeConstraint has one constrainedElement.
constrainedElement->size() = 1"""
raise NotImplementedError(
"operation has_one_constrained_element(...) not yet implemented"
)
class ProfileMixin(object):
"""User defined mixin class for Profile."""
def metaclass_reference_not_specialized(self, diagnostics=None, context=None):
"""An element imported as a metaclassReference is not specialized or generalized in a Profile.
metaclassReference.importedElement->
select(c | c.oclIsKindOf(Classifier) and
(c.oclAsType(Classifier).allParents()->collect(namespace)->includes(self)))->isEmpty()
and
packagedElement->
select(oclIsKindOf(Classifier))->collect(oclAsType(Classifier).allParents())->
intersection(metaclassReference.importedElement->select(oclIsKindOf(Classifier))->collect(oclAsType(Classifier)))->isEmpty()"""
raise NotImplementedError(
"operation metaclass_reference_not_specialized(...) not yet implemented"
)
def references_same_metamodel(self, diagnostics=None, context=None):
"""All elements imported either as metaclassReferences or through metamodelReferences are members of the same base reference metamodel.
metamodelReference.importedPackage.elementImport.importedElement.allOwningPackages()->
union(metaclassReference.importedElement.allOwningPackages() )->notEmpty()"""
raise NotImplementedError(
"operation references_same_metamodel(...) not yet implemented"
)
def create(self, classifier=None):
"""Creates and returns an instance of (the Ecore representation of) the specified classifier defined in this profile."""
raise NotImplementedError("operation create(...) not yet implemented")
def define(self, options=None, diagnostics=None, context=None):
"""Defines this profile by (re)creating Ecore representations of its current contents, using the specified options, diagnostics, and context."""
from .profile_utils import UML_20_URI, define_profile
eannotation = self.getEAnnotation(UML_20_URI)
if not eannotation:
eannotation = ecore.EAnnotation(source=UML_20_URI)
eannotation.contents.append(define_profile(self))
self.eAnnotations.append(eannotation)
def get_definition(self):
"""Retrieves the current definition (Ecore representation) of this profile."""
raise NotImplementedError("operation get_definition(...) not yet implemented")
def get_definition(self, namedElement=None):
"""Retrieves the current definition (Ecore representation) of the specified named element in this profile."""
raise NotImplementedError("operation get_definition(...) not yet implemented")
def get_owned_extensions(self, requiredOnly=None):
"""Retrieves the extensions owned by this profile, excluding non-required extensions if indicated."""
raise NotImplementedError(
"operation get_owned_extensions(...) not yet implemented"
)
def get_referenced_metaclasses(self):
"""Retrieves the metaclasses referenced by this profile."""
raise NotImplementedError(
"operation get_referenced_metaclasses(...) not yet implemented"
)
def get_referenced_metamodels(self):
"""Retrieves the metamodels referenced by this profile."""
raise NotImplementedError(
"operation get_referenced_metamodels(...) not yet implemented"
)
def is_defined(self):
"""Determines whether this profile is defined."""
raise NotImplementedError("operation is_defined(...) not yet implemented")
class DeploymentMixin(object):
"""User defined mixin class for Deployment."""
class AbstractionMixin(object):
"""User defined mixin class for Abstraction."""
class EnumerationLiteralMixin(object):
"""User defined mixin class for EnumerationLiteral."""
def get_classifier(self):
"""Derivation of Enumeration::/classifier
result = (enumeration)
<p>From package UML::SimpleClassifiers.</p>"""
raise NotImplementedError("operation get_classifier(...) not yet implemented")
class ModelMixin(object):
"""User defined mixin class for Model."""
def is_metamodel(self):
"""Determines whether this model is a metamodel."""
raise NotImplementedError("operation is_metamodel(...) not yet implemented")
class UsageMixin(object):
"""User defined mixin class for Usage."""
class ValueSpecificationActionMixin(object):
"""User defined mixin class for ValueSpecificationAction."""
def multiplicity(self, diagnostics=None, context=None):
"""The multiplicity of the result OutputPin is 1..1
result.is(1,1)"""
raise NotImplementedError("operation multiplicity(...) not yet implemented")
def compatible_type(self, diagnostics=None, context=None):
"""The type of the value ValueSpecification must conform to the type of the result OutputPin.
value.type.conformsTo(result.type)"""
raise NotImplementedError("operation compatible_type(...) not yet implemented")
class VariableActionMixin(object):
"""User defined mixin class for VariableAction."""
def scope_of_variable(self, diagnostics=None, context=None):
"""The VariableAction must be in the scope of the variable.
variable.isAccessibleBy(self)"""
raise NotImplementedError(
"operation scope_of_variable(...) not yet implemented"
)
class LinkActionMixin(object):
"""User defined mixin class for LinkAction."""
def same_pins(self, diagnostics=None, context=None):
"""The inputValue InputPins is the same as the union of all the InputPins referenced by the endData.
inputValue->asBag()=endData.allPins()"""
raise NotImplementedError("operation same_pins(...) not yet implemented")
def same_association(self, diagnostics=None, context=None):
"""The ends of the endData must all be from the same Association and include all and only the memberEnds of that association.
endData.end = self.association().memberEnd->asBag()"""
raise NotImplementedError("operation same_association(...) not yet implemented")
def not_static(self, diagnostics=None, context=None):
"""The ends of the endData must not be static.
endData->forAll(not end.isStatic)"""
raise NotImplementedError("operation not_static(...) not yet implemented")
def association(self):
"""Returns the Association acted on by this LinkAction.
result = (endData->asSequence()->first().end.association)
<p>From package UML::Actions.</p>"""
raise NotImplementedError("operation association(...) not yet implemented")
class StructuralFeatureActionMixin(object):
"""User defined mixin class for StructuralFeatureAction."""
def multiplicity(self, diagnostics=None, context=None):
"""The multiplicity of the object InputPin must be 1..1.
object.is(1,1)"""
raise NotImplementedError("operation multiplicity(...) not yet implemented")
def object_type(self, diagnostics=None, context=None):
"""The structuralFeature must either be an owned or inherited feature of the type of the object InputPin, or it must be an owned end of a binary Association whose opposite end had as a type to which the type of the object InputPin conforms.
object.type.oclAsType(Classifier).allFeatures()->includes(structuralFeature) or
object.type.conformsTo(structuralFeature.oclAsType(Property).opposite.type)"""
raise NotImplementedError("operation object_type(...) not yet implemented")
def visibility(self, diagnostics=None, context=None):
"""The visibility of the structuralFeature must allow access from the object performing the ReadStructuralFeatureAction.
structuralFeature.visibility = VisibilityKind::public or
_'context'.allFeatures()->includes(structuralFeature) or
structuralFeature.visibility=VisibilityKind::protected and
_'context'.conformsTo(structuralFeature.oclAsType(Property).opposite.type.oclAsType(Classifier))"""
raise NotImplementedError("operation visibility(...) not yet implemented")
def not_static(self, diagnostics=None, context=None):
"""The structuralFeature must not be static.
not structuralFeature.isStatic"""
raise NotImplementedError("operation not_static(...) not yet implemented")
def one_featuring_classifier(self, diagnostics=None, context=None):
"""The structuralFeature must have exactly one featuringClassifier.
structuralFeature.featuringClassifier->size() = 1"""
raise NotImplementedError(
"operation one_featuring_classifier(...) not yet implemented"
)
class AcceptEventActionMixin(object):
"""User defined mixin class for AcceptEventAction."""
def one_output_pin(self, diagnostics=None, context=None):
"""If isUnmarshall=false and any of the triggers are for SignalEvents or TimeEvents, there must be exactly one result OutputPin with multiplicity 1..1.
not isUnmarshall and trigger->exists(event.oclIsKindOf(SignalEvent) or event.oclIsKindOf(TimeEvent)) implies
output->size() = 1 and output->first().is(1,1)"""
raise NotImplementedError("operation one_output_pin(...) not yet implemented")
def no_input_pins(self, diagnostics=None, context=None):
"""AcceptEventActions may have no input pins.
input->size() = 0"""
raise NotImplementedError("operation no_input_pins(...) not yet implemented")
def no_output_pins(self, diagnostics=None, context=None):
"""There are no OutputPins if the trigger events are only ChangeEvents and/or CallEvents when this action is an instance of AcceptEventAction and not an instance of a descendant of AcceptEventAction (such as AcceptCallAction).
(self.oclIsTypeOf(AcceptEventAction) and
(trigger->forAll(event.oclIsKindOf(ChangeEvent) or
event.oclIsKindOf(CallEvent))))
implies output->size() = 0"""
raise NotImplementedError("operation no_output_pins(...) not yet implemented")
def unmarshall_signal_events(self, diagnostics=None, context=None):
"""If isUnmarshall is true (and this is not an AcceptCallAction), there must be exactly one trigger, which is for a SignalEvent. The number of result output pins must be the same as the number of attributes of the signal. The type and ordering of each result output pin must be the same as the corresponding attribute of the signal. The multiplicity of each result output pin must be compatible with the multiplicity of the corresponding attribute.
isUnmarshall and self.oclIsTypeOf(AcceptEventAction) implies
trigger->size()=1 and
trigger->asSequence()->first().event.oclIsKindOf(SignalEvent) and
let attribute: OrderedSet(Property) = trigger->asSequence()->first().event.oclAsType(SignalEvent).signal.allAttributes() in
attribute->size()>0 and result->size() = attribute->size() and
Sequence{1..result->size()}->forAll(i |
result->at(i).type = attribute->at(i).type and
result->at(i).isOrdered = attribute->at(i).isOrdered and
result->at(i).includesMultiplicity(attribute->at(i)))"""
raise NotImplementedError(
"operation unmarshall_signal_events(...) not yet implemented"
)
def conforming_type(self, diagnostics=None, context=None):
"""If isUnmarshall=false and all the triggers are for SignalEvents, then the type of the single result OutputPin must either be null or all the signals must conform to it.
not isUnmarshall implies
result->isEmpty() or
let type: Type = result->first().type in
type=null or
(trigger->forAll(event.oclIsKindOf(SignalEvent)) and
trigger.event.oclAsType(SignalEvent).signal->forAll(s | s.conformsTo(type)))"""
raise NotImplementedError("operation conforming_type(...) not yet implemented")
class InvocationActionMixin(object):
"""User defined mixin class for InvocationAction."""
class ClearAssociationActionMixin(object):
"""User defined mixin class for ClearAssociationAction."""
def multiplicity(self, diagnostics=None, context=None):
"""The multiplicity of the object InputPin is 1..1.
object.is(1,1)"""
raise NotImplementedError("operation multiplicity(...) not yet implemented")
def same_type(self, diagnostics=None, context=None):
"""The type of the InputPin must conform to the type of at least one of the memberEnds of the association.
association.memberEnd->exists(self.object.type.conformsTo(type))"""
raise NotImplementedError("operation same_type(...) not yet implemented")
class CreateObjectActionMixin(object):
"""User defined mixin class for CreateObjectAction."""
def classifier_not_abstract(self, diagnostics=None, context=None):
"""The classifier cannot be abstract.
not classifier.isAbstract"""
raise NotImplementedError(
"operation classifier_not_abstract(...) not yet implemented"
)
def multiplicity(self, diagnostics=None, context=None):
"""The multiplicity of the result OutputPin is 1..1.
result.is(1,1)"""
raise NotImplementedError("operation multiplicity(...) not yet implemented")
def classifier_not_association_class(self, diagnostics=None, context=None):
"""The classifier cannot be an AssociationClass.
not classifier.oclIsKindOf(AssociationClass)"""
raise NotImplementedError(
"operation classifier_not_association_class(...) not yet implemented"
)
def same_type(self, diagnostics=None, context=None):
"""The type of the result OutputPin must be the same as the classifier of the CreateObjectAction.
result.type = classifier"""
raise NotImplementedError("operation same_type(...) not yet implemented")
class DestroyObjectActionMixin(object):
"""User defined mixin class for DestroyObjectAction."""
def multiplicity(self, diagnostics=None, context=None):
"""The multiplicity of the targe IinputPin is 1..1.
target.is(1,1)"""
raise NotImplementedError("operation multiplicity(...) not yet implemented")
def no_type(self, diagnostics=None, context=None):
"""The target InputPin has no type.
target.type= null"""
raise NotImplementedError("operation no_type(...) not yet implemented")
class ExpansionNodeMixin(object):
"""User defined mixin class for ExpansionNode."""
def region_as_input_or_output(self, diagnostics=None, context=None):
"""One of regionAsInput or regionAsOutput must be non-empty, but not both.
regionAsInput->notEmpty() xor regionAsOutput->notEmpty()"""
raise NotImplementedError(
"operation region_as_input_or_output(...) not yet implemented"
)
class OpaqueActionMixin(object):
"""User defined mixin class for OpaqueAction."""
def language_body_size(self, diagnostics=None, context=None):
"""If the language attribute is not empty, then the size of the body and language lists must be the same.
language->notEmpty() implies (_'body'->size() = language->size())"""
raise NotImplementedError(
"operation language_body_size(...) not yet implemented"
)
class RaiseExceptionActionMixin(object):
"""User defined mixin class for RaiseExceptionAction."""
class ReadExtentActionMixin(object):
"""User defined mixin class for ReadExtentAction."""
def type_is_classifier(self, diagnostics=None, context=None):
"""The type of the result OutputPin is the classifier.
result.type = classifier"""
raise NotImplementedError(
"operation type_is_classifier(...) not yet implemented"
)
def multiplicity_of_result(self, diagnostics=None, context=None):
"""The multiplicity of the result OutputPin is 0..*.
result.is(0,*)"""
raise NotImplementedError(
"operation multiplicity_of_result(...) not yet implemented"
)
class ReadIsClassifiedObjectActionMixin(object):
"""User defined mixin class for ReadIsClassifiedObjectAction."""
def no_type(self, diagnostics=None, context=None):
"""The object InputPin has no type.
object.type = null"""
raise NotImplementedError("operation no_type(...) not yet implemented")
def multiplicity_of_output(self, diagnostics=None, context=None):
"""The multiplicity of the result OutputPin is 1..1.
result.is(1,1)"""
raise NotImplementedError(
"operation multiplicity_of_output(...) not yet implemented"
)
def boolean_result(self, diagnostics=None, context=None):
"""The type of the result OutputPin is Boolean.
result.type = Boolean"""
raise NotImplementedError("operation boolean_result(...) not yet implemented")
def multiplicity_of_input(self, diagnostics=None, context=None):
"""The multiplicity of the object InputPin is 1..1.
object.is(1,1)"""
raise NotImplementedError(
"operation multiplicity_of_input(...) not yet implemented"
)
class ReadLinkObjectEndActionMixin(object):
"""User defined mixin class for ReadLinkObjectEndAction."""
def property(self, diagnostics=None, context=None):
"""The end Property must be an Association memberEnd.
end.association <> null"""
raise NotImplementedError("operation property(...) not yet implemented")
def multiplicity_of_object(self, diagnostics=None, context=None):
"""The multiplicity of the object InputPin is 1..1.
object.is(1,1)"""
raise NotImplementedError(
"operation multiplicity_of_object(...) not yet implemented"
)
def ends_of_association(self, diagnostics=None, context=None):
"""The ends of the association must not be static.
end.association.memberEnd->forAll(e | not e.isStatic)"""
raise NotImplementedError(
"operation ends_of_association(...) not yet implemented"
)
def type_of_result(self, diagnostics=None, context=None):
"""The type of the result OutputPin is the same as the type of the end Property.
result.type = end.type"""
raise NotImplementedError("operation type_of_result(...) not yet implemented")
def multiplicity_of_result(self, diagnostics=None, context=None):
"""The multiplicity of the result OutputPin is 1..1.
result.is(1,1)"""
raise NotImplementedError(
"operation multiplicity_of_result(...) not yet implemented"
)
def type_of_object(self, diagnostics=None, context=None):
"""The type of the object InputPin is the AssociationClass that owns the end Property.
object.type = end.association"""
raise NotImplementedError("operation type_of_object(...) not yet implemented")
def association_of_association(self, diagnostics=None, context=None):
"""The association of the end must be an AssociationClass.
end.association.oclIsKindOf(AssociationClass)"""
raise NotImplementedError(
"operation association_of_association(...) not yet implemented"
)
class ReadLinkObjectEndQualifierActionMixin(object):
"""User defined mixin class for ReadLinkObjectEndQualifierAction."""
def multiplicity_of_object(self, diagnostics=None, context=None):
"""The multiplicity of the object InputPin is 1..1.
object.is(1,1)"""
raise NotImplementedError(
"operation multiplicity_of_object(...) not yet implemented"
)
def type_of_object(self, diagnostics=None, context=None):
"""The type of the object InputPin is the AssociationClass that owns the Association end that has the given qualifier Property.
object.type = qualifier.associationEnd.association"""
raise NotImplementedError("operation type_of_object(...) not yet implemented")
def multiplicity_of_qualifier(self, diagnostics=None, context=None):
"""The multiplicity of the qualifier Property is 1..1.
qualifier.is(1,1)"""
raise NotImplementedError(
"operation multiplicity_of_qualifier(...) not yet implemented"
)
def ends_of_association(self, diagnostics=None, context=None):
"""The ends of the Association must not be static.
qualifier.associationEnd.association.memberEnd->forAll(e | not e.isStatic)"""
raise NotImplementedError(
"operation ends_of_association(...) not yet implemented"
)
def multiplicity_of_result(self, diagnostics=None, context=None):
"""The multiplicity of the result OutputPin is 1..1.
result.is(1,1)"""
raise NotImplementedError(
"operation multiplicity_of_result(...) not yet implemented"
)
def same_type(self, diagnostics=None, context=None):
"""The type of the result OutputPin is the same as the type of the qualifier Property.
result.type = qualifier.type"""
raise NotImplementedError("operation same_type(...) not yet implemented")
def association_of_association(self, diagnostics=None, context=None):
"""The association of the Association end of the qualifier Property must be an AssociationClass.
qualifier.associationEnd.association.oclIsKindOf(AssociationClass)"""
raise NotImplementedError(
"operation association_of_association(...) not yet implemented"
)
def qualifier_attribute(self, diagnostics=None, context=None):
"""The qualifier Property must be a qualifier of an Association end.
qualifier.associationEnd <> null"""
raise NotImplementedError(
"operation qualifier_attribute(...) not yet implemented"
)
class ReadSelfActionMixin(object):
"""User defined mixin class for ReadSelfAction."""
def contained(self, diagnostics=None, context=None):
"""A ReadSelfAction must have a context Classifier.
_'context' <> null"""
raise NotImplementedError("operation contained(...) not yet implemented")
def multiplicity(self, diagnostics=None, context=None):
"""The multiplicity of the result OutputPin is 1..1.
result.is(1,1)"""
raise NotImplementedError("operation multiplicity(...) not yet implemented")
def not_static(self, diagnostics=None, context=None):
"""If the ReadSelfAction is contained in an Behavior that is acting as a method, then the Operation of the method must not be static.
let behavior: Behavior = self.containingBehavior() in
behavior.specification<>null implies not behavior.specification.isStatic"""
raise NotImplementedError("operation not_static(...) not yet implemented")
def type(self, diagnostics=None, context=None):
"""The type of the result OutputPin is the context Classifier.
result.type = _'context'"""
raise NotImplementedError("operation type(...) not yet implemented")
class ReclassifyObjectActionMixin(object):
"""User defined mixin class for ReclassifyObjectAction."""
def input_pin(self, diagnostics=None, context=None):
"""The object InputPin has no type.
object.type = null"""
raise NotImplementedError("operation input_pin(...) not yet implemented")
def classifier_not_abstract(self, diagnostics=None, context=None):
"""None of the newClassifiers may be abstract.
not newClassifier->exists(isAbstract)"""
raise NotImplementedError(
"operation classifier_not_abstract(...) not yet implemented"
)
def multiplicity(self, diagnostics=None, context=None):
"""The multiplicity of the object InputPin is 1..1.
object.is(1,1)"""
raise NotImplementedError("operation multiplicity(...) not yet implemented")
class ReduceActionMixin(object):
"""User defined mixin class for ReduceAction."""
def reducer_inputs_output(self, diagnostics=None, context=None):
"""The reducer Behavior must have two input ownedParameters and one output ownedParameter, where the type of the output Parameter and the type of elements of the input collection conform to the types of the input Parameters.
let inputs: OrderedSet(Parameter) = reducer.inputParameters() in
let outputs: OrderedSet(Parameter) = reducer.outputParameters() in
inputs->size()=2 and outputs->size()=1 and
inputs.type->forAll(t |
outputs.type->forAll(conformsTo(t)) and
-- Note that the following only checks the case when the collection is via multiple tokens.
collection.upperBound()>1 implies collection.type.conformsTo(t))"""
raise NotImplementedError(
"operation reducer_inputs_output(...) not yet implemented"
)
def input_type_is_collection(self, diagnostics=None, context=None):
"""The type of the collection InputPin must be a collection."""
raise NotImplementedError(
"operation input_type_is_collection(...) not yet implemented"
)
def output_types_are_compatible(self, diagnostics=None, context=None):
"""The type of the output of the reducer Behavior must conform to the type of the result OutputPin.
reducer.outputParameters().type->forAll(conformsTo(result.type))"""
raise NotImplementedError(
"operation output_types_are_compatible(...) not yet implemented"
)
class ReplyActionMixin(object):
"""User defined mixin class for ReplyAction."""
def pins_match_parameter(self, diagnostics=None, context=None):
"""The replyValue InputPins must match the output (return, out, and inout) parameters of the operation of the event of the replyToCall Trigger in number, type, ordering, and multiplicity.
let parameter:OrderedSet(Parameter) = replyToCall.event.oclAsType(CallEvent).operation.outputParameters() in
replyValue->size()=parameter->size() and
Sequence{1..replyValue->size()}->forAll(i |
replyValue->at(i).type.conformsTo(parameter->at(i).type) and
replyValue->at(i).isOrdered=parameter->at(i).isOrdered and
replyValue->at(i).compatibleWith(parameter->at(i)))"""
raise NotImplementedError(
"operation pins_match_parameter(...) not yet implemented"
)
def event_on_reply_to_call_trigger(self, diagnostics=None, context=None):
"""The event of the replyToCall Trigger must be a CallEvent.
replyToCall.event.oclIsKindOf(CallEvent)"""
raise NotImplementedError(
"operation event_on_reply_to_call_trigger(...) not yet implemented"
)
class StartClassifierBehaviorActionMixin(object):
"""User defined mixin class for StartClassifierBehaviorAction."""
def multiplicity(self, diagnostics=None, context=None):
"""The multiplicity of the object InputPin is 1..1
object.is(1,1)"""
raise NotImplementedError("operation multiplicity(...) not yet implemented")
def type_has_classifier(self, diagnostics=None, context=None):
"""If the InputPin has a type, then the type or one of its ancestors must have a classifierBehavior.
object.type->notEmpty() implies
(object.type.oclIsKindOf(BehavioredClassifier) and object.type.oclAsType(BehavioredClassifier).classifierBehavior<>null)"""
raise NotImplementedError(
"operation type_has_classifier(...) not yet implemented"
)
class TestIdentityActionMixin(object):
"""User defined mixin class for TestIdentityAction."""
def multiplicity(self, diagnostics=None, context=None):
"""The multiplicity of the InputPins is 1..1.
first.is(1,1) and second.is(1,1)"""
raise NotImplementedError("operation multiplicity(...) not yet implemented")
def no_type(self, diagnostics=None, context=None):
"""The InputPins have no type.
first.type= null and second.type = null"""
raise NotImplementedError("operation no_type(...) not yet implemented")
def result_is_boolean(self, diagnostics=None, context=None):
"""The type of the result OutputPin is Boolean.
result.type=Boolean"""
raise NotImplementedError(
"operation result_is_boolean(...) not yet implemented"
)
class UnmarshallActionMixin(object):
"""User defined mixin class for UnmarshallAction."""
def structural_feature(self, diagnostics=None, context=None):
"""The unmarshallType must have at least one StructuralFeature.
unmarshallType.allAttributes()->size() >= 1"""
raise NotImplementedError(
"operation structural_feature(...) not yet implemented"
)
def number_of_result(self, diagnostics=None, context=None):
"""The number of result outputPins must be the same as the number of attributes of the unmarshallType.
unmarshallType.allAttributes()->size() = result->size()"""
raise NotImplementedError("operation number_of_result(...) not yet implemented")
def type_ordering_and_multiplicity(self, diagnostics=None, context=None):
"""The type, ordering and multiplicity of each attribute of the unmarshallType must be compatible with the type, ordering and multiplicity of the corresponding result OutputPin.
let attribute:OrderedSet(Property) = unmarshallType.allAttributes() in
Sequence{1..result->size()}->forAll(i |
attribute->at(i).type.conformsTo(result->at(i).type) and
attribute->at(i).isOrdered=result->at(i).isOrdered and
attribute->at(i).compatibleWith(result->at(i)))"""
raise NotImplementedError(
"operation type_ordering_and_multiplicity(...) not yet implemented"
)
def multiplicity_of_object(self, diagnostics=None, context=None):
"""The multiplicity of the object InputPin is 1..1
object.is(1,1)"""
raise NotImplementedError(
"operation multiplicity_of_object(...) not yet implemented"
)
def object_type(self, diagnostics=None, context=None):
"""The type of the object InputPin conform to the unmarshallType.
object.type.conformsTo(unmarshallType)"""
raise NotImplementedError("operation object_type(...) not yet implemented")
class ActivityFinalNodeMixin(object):
"""User defined mixin class for ActivityFinalNode."""
class ActivityParameterNodeMixin(object):
"""User defined mixin class for ActivityParameterNode."""
def no_outgoing_edges(self, diagnostics=None, context=None):
"""An ActivityParameterNode with no outgoing ActivityEdges and one or more incoming ActivityEdges must have a parameter with direction out, inout, or return.
(incoming->notEmpty() and outgoing->isEmpty()) implies
(parameter.direction = ParameterDirectionKind::out or
parameter.direction = ParameterDirectionKind::inout or
parameter.direction = ParameterDirectionKind::return)"""
raise NotImplementedError(
"operation no_outgoing_edges(...) not yet implemented"
)
def has_parameters(self, diagnostics=None, context=None):
"""The parameter of an ActivityParameterNode must be from the containing Activity.
activity.ownedParameter->includes(parameter)"""
raise NotImplementedError("operation has_parameters(...) not yet implemented")
def same_type(self, diagnostics=None, context=None):
"""The type of an ActivityParameterNode is the same as the type of its parameter.
type = parameter.type"""
raise NotImplementedError("operation same_type(...) not yet implemented")
def no_incoming_edges(self, diagnostics=None, context=None):
"""An ActivityParameterNode with no incoming ActivityEdges and one or more outgoing ActivityEdges must have a parameter with direction in or inout.
(outgoing->notEmpty() and incoming->isEmpty()) implies
(parameter.direction = ParameterDirectionKind::_'in' or
parameter.direction = ParameterDirectionKind::inout)"""
raise NotImplementedError(
"operation no_incoming_edges(...) not yet implemented"
)
def no_edges(self, diagnostics=None, context=None):
"""An ActivityParameterNode may have all incoming ActivityEdges or all outgoing ActivityEdges, but it must not have both incoming and outgoing ActivityEdges.
incoming->isEmpty() or outgoing->isEmpty()"""
raise NotImplementedError("operation no_edges(...) not yet implemented")
class CentralBufferNodeMixin(object):
"""User defined mixin class for CentralBufferNode."""
class FlowFinalNodeMixin(object):
"""User defined mixin class for FlowFinalNode."""
class DurationIntervalMixin(object):
"""User defined mixin class for DurationInterval."""
class LiteralBooleanMixin(object):
"""User defined mixin class for LiteralBoolean."""
class LiteralIntegerMixin(object):
"""User defined mixin class for LiteralInteger."""
class LiteralNullMixin(object):
"""User defined mixin class for LiteralNull."""
class LiteralRealMixin(object):
"""User defined mixin class for LiteralReal."""
class LiteralStringMixin(object):
"""User defined mixin class for LiteralString."""
class LiteralUnlimitedNaturalMixin(object):
"""User defined mixin class for LiteralUnlimitedNatural."""
class TimeIntervalMixin(object):
"""User defined mixin class for TimeInterval."""
class ClassifierMixin(object):
"""User defined mixin class for Classifier."""
def specialize_type(self, diagnostics=None, context=None):
"""A Classifier may only specialize Classifiers of a valid type.
parents()->forAll(c | self.maySpecializeType(c))"""
raise NotImplementedError("operation specialize_type(...) not yet implemented")
def maps_to_generalization_set(self, diagnostics=None, context=None):
"""The Classifier that maps to a GeneralizationSet may neither be a specific nor a general Classifier in any of the Generalization relationships defined for that GeneralizationSet. In other words, a power type may not be an instance of itself nor may its instances also be its subclasses.
powertypeExtent->forAll( gs |
gs.generalization->forAll( gen |
not (gen.general = self) and not gen.general.allParents()->includes(self) and not (gen.specific = self) and not self.allParents()->includes(gen.specific)
))"""
raise NotImplementedError(
"operation maps_to_generalization_set(...) not yet implemented"
)
def non_final_parents(self, diagnostics=None, context=None):
"""The parents of a Classifier must be non-final.
parents()->forAll(not isFinalSpecialization)"""
raise NotImplementedError(
"operation non_final_parents(...) not yet implemented"
)
def no_cycles_in_generalization(self, diagnostics=None, context=None):
"""Generalization hierarchies must be directed and acyclical. A Classifier can not be both a transitively general and transitively specific Classifier of the same Classifier.
not allParents()->includes(self)"""
raise NotImplementedError(
"operation no_cycles_in_generalization(...) not yet implemented"
)
def get_all_attributes(self):
"""Retrieves all the attributes of this classifier, including those inherited from its parents."""
raise NotImplementedError(
"operation get_all_attributes(...) not yet implemented"
)
def get_all_operations(self):
"""Retrieves all the operations of this classifier, including those inherited from its parents."""
raise NotImplementedError(
"operation get_all_operations(...) not yet implemented"
)
def get_all_used_interfaces(self):
"""Retrieves all the interfaces on which this classifier or any of its parents has a usage dependency."""
raise NotImplementedError(
"operation get_all_used_interfaces(...) not yet implemented"
)
def get_operation(self, name=None, parameterNames=None, parameterTypes=None):
"""Retrieves the first operation with the specified name, parameter names, and parameter types from this classifier."""
raise NotImplementedError("operation get_operation(...) not yet implemented")
def get_operation(
self, name=None, parameterNames=None, parameterTypes=None, ignoreCase=None
):
"""Retrieves the first operation with the specified name, parameter names, and parameter types from this classifier, ignoring case if indicated."""
raise NotImplementedError("operation get_operation(...) not yet implemented")
def get_operations(self):
"""Retrieves the operations of this classifier."""
raise NotImplementedError("operation get_operations(...) not yet implemented")
def get_used_interfaces(self):
"""Retrieves the interfaces on which this classifier has a usage dependency."""
raise NotImplementedError(
"operation get_used_interfaces(...) not yet implemented"
)
def all_features(self):
"""The query allFeatures() gives all of the Features in the namespace of the Classifier. In general, through mechanisms such as inheritance, this will be a larger set than feature.
result = (member->select(oclIsKindOf(Feature))->collect(oclAsType(Feature))->asSet())
<p>From package UML::Classification.</p>"""
raise NotImplementedError("operation all_features(...) not yet implemented")
def all_parents(self):
"""The query allParents() gives all of the direct and indirect ancestors of a generalized Classifier.
result = (parents()->union(parents()->collect(allParents())->asSet()))
<p>From package UML::Classification.</p>"""
raise NotImplementedError("operation all_parents(...) not yet implemented")
def get_generals(self):
"""The general Classifiers are the ones referenced by the Generalization relationships.
result = (parents())
<p>From package UML::Classification.</p>"""
raise NotImplementedError("operation get_generals(...) not yet implemented")
def has_visibility_of(self, n=None):
"""The query hasVisibilityOf() determines whether a NamedElement is visible in the classifier. Non-private members are visible. It is only called when the argument is something owned by a parent.
allParents()->including(self)->collect(member)->includes(n)
result = (n.visibility <> VisibilityKind::private)
<p>From package UML::Classification.</p>"""
raise NotImplementedError(
"operation has_visibility_of(...) not yet implemented"
)
def inherit(self, inhs=None):
"""The query inherit() defines how to inherit a set of elements passed as its argument. It excludes redefined elements from the result.
result = (inhs->reject(inh |
inh.oclIsKindOf(RedefinableElement) and
ownedMember->select(oclIsKindOf(RedefinableElement))->
select(redefinedElement->includes(inh.oclAsType(RedefinableElement)))
->notEmpty()))
<p>From package UML::Classification.</p>"""
raise NotImplementedError("operation inherit(...) not yet implemented")
def inheritable_members(self, c=None):
"""The query inheritableMembers() gives all of the members of a Classifier that may be inherited in one of its descendants, subject to whatever visibility restrictions apply.
c.allParents()->includes(self)
result = (member->select(m | c.hasVisibilityOf(m)))
<p>From package UML::Classification.</p>"""
raise NotImplementedError(
"operation inheritable_members(...) not yet implemented"
)
def get_inherited_members(self):
"""The inheritedMember association is derived by inheriting the inheritable members of the parents.
result = (inherit(parents()->collect(inheritableMembers(self))->asSet()))
<p>From package UML::Classification.</p>"""
raise NotImplementedError(
"operation get_inherited_members(...) not yet implemented"
)
def may_specialize_type(self, c=None):
"""The query maySpecializeType() determines whether this classifier may have a generalization relationship to classifiers of the specified type. By default a classifier may specialize classifiers of the same or a more general type. It is intended to be redefined by classifiers that have different specialization constraints.
result = (self.oclIsKindOf(c.oclType()))
<p>From package UML::Classification.</p>"""
raise NotImplementedError(
"operation may_specialize_type(...) not yet implemented"
)
def parents(self):
"""The query parents() gives all of the immediate ancestors of a generalized Classifier.
result = (generalization.general->asSet())
<p>From package UML::Classification.</p>"""
raise NotImplementedError("operation parents(...) not yet implemented")
def directly_realized_interfaces(self):
"""The Interfaces directly realized by this Classifier
result = ((clientDependency->
select(oclIsKindOf(Realization) and supplier->forAll(oclIsKindOf(Interface))))->
collect(supplier.oclAsType(Interface))->asSet())
<p>From package UML::Classification.</p>"""
raise NotImplementedError(
"operation directly_realized_interfaces(...) not yet implemented"
)
def directly_used_interfaces(self):
"""The Interfaces directly used by this Classifier
result = ((supplierDependency->
select(oclIsKindOf(Usage) and client->forAll(oclIsKindOf(Interface))))->
collect(client.oclAsType(Interface))->asSet())
<p>From package UML::Classification.</p>"""
raise NotImplementedError(
"operation directly_used_interfaces(...) not yet implemented"
)
def all_realized_interfaces(self):
"""The Interfaces realized by this Classifier and all of its generalizations
result = (directlyRealizedInterfaces()->union(self.allParents()->collect(directlyRealizedInterfaces()))->asSet())
<p>From package UML::Classification.</p>"""
raise NotImplementedError(
"operation all_realized_interfaces(...) not yet implemented"
)
def all_used_interfaces(self):
"""The Interfaces used by this Classifier and all of its generalizations
result = (directlyUsedInterfaces()->union(self.allParents()->collect(directlyUsedInterfaces()))->asSet())
<p>From package UML::Classification.</p>"""
raise NotImplementedError(
"operation all_used_interfaces(...) not yet implemented"
)
def is_substitutable_for(self, contract=None):
"""result = (substitution.contract->includes(contract))
<p>From package UML::Classification.</p>"""
raise NotImplementedError(
"operation is_substitutable_for(...) not yet implemented"
)
def all_attributes(self):
"""The query allAttributes gives an ordered set of all owned and inherited attributes of the Classifier. All owned attributes appear before any inherited attributes, and the attributes inherited from any more specific parent Classifier appear before those of any more general parent Classifier. However, if the Classifier has multiple immediate parents, then the relative ordering of the sets of attributes from those parents is not defined.
result = (attribute->asSequence()->union(parents()->asSequence().allAttributes())->select(p | member->includes(p))->asOrderedSet())
<p>From package UML::Classification.</p>"""
raise NotImplementedError("operation all_attributes(...) not yet implemented")
def all_slottable_features(self):
"""All StructuralFeatures related to the Classifier that may have Slots, including direct attributes, inherited attributes, private attributes in generalizations, and memberEnds of Associations, but excluding redefined StructuralFeatures.
result = (member->select(oclIsKindOf(StructuralFeature))->
collect(oclAsType(StructuralFeature))->
union(self.inherit(self.allParents()->collect(p | p.attribute)->asSet())->
collect(oclAsType(StructuralFeature)))->asSet())
<p>From package UML::Classification.</p>"""
raise NotImplementedError(
"operation all_slottable_features(...) not yet implemented"
)
class ManifestationMixin(object):
"""User defined mixin class for Manifestation."""
class OperationMixin(object):
"""User defined mixin class for Operation."""
@property
@property
@property
@property
@property
def at_most_one_return(self, diagnostics=None, context=None):
"""An Operation can have at most one return parameter; i.e., an owned parameter with the direction set to 'return.'
self.ownedParameter->select(direction = ParameterDirectionKind::return)->size() <= 1"""
raise NotImplementedError(
"operation at_most_one_return(...) not yet implemented"
)
def only_body_for_query(self, diagnostics=None, context=None):
"""A bodyCondition can only be specified for a query Operation.
bodyCondition <> null implies isQuery"""
raise NotImplementedError(
"operation only_body_for_query(...) not yet implemented"
)
def get_return_result(self):
"""Retrieves the (only) return result parameter for this operation."""
raise NotImplementedError(
"operation get_return_result(...) not yet implemented"
)
def is_ordered(self):
"""If this operation has a return parameter, isOrdered equals the value of isOrdered for that parameter. Otherwise isOrdered is false.
result = (if returnResult()->notEmpty() then returnResult()-> exists(isOrdered) else false endif)
<p>From package UML::Classification.</p>"""
raise NotImplementedError("operation is_ordered(...) not yet implemented")
def is_unique(self):
"""If this operation has a return parameter, isUnique equals the value of isUnique for that parameter. Otherwise isUnique is true.
result = (if returnResult()->notEmpty() then returnResult()->exists(isUnique) else true endif)
<p>From package UML::Classification.</p>"""
raise NotImplementedError("operation is_unique(...) not yet implemented")
def get_lower(self):
"""If this operation has a return parameter, lower equals the value of lower for that parameter. Otherwise lower has no value.
result = (if returnResult()->notEmpty() then returnResult()->any(true).lower else null endif)
<p>From package UML::Classification.</p>"""
raise NotImplementedError("operation get_lower(...) not yet implemented")
def return_result(self):
"""The query returnResult() returns the set containing the return parameter of the Operation if one exists, otherwise, it returns an empty set
result = (ownedParameter->select (direction = ParameterDirectionKind::return)->asSet())
<p>From package UML::Classification.</p>"""
raise NotImplementedError("operation return_result(...) not yet implemented")
def get_type(self):
"""If this operation has a return parameter, type equals the value of type for that parameter. Otherwise type has no value.
result = (if returnResult()->notEmpty() then returnResult()->any(true).type else null endif)
<p>From package UML::Classification.</p>"""
raise NotImplementedError("operation get_type(...) not yet implemented")
def get_upper(self):
"""If this operation has a return parameter, upper equals the value of upper for that parameter. Otherwise upper has no value.
result = (if returnResult()->notEmpty() then returnResult()->any(true).upper else null endif)
<p>From package UML::Classification.</p>"""
raise NotImplementedError("operation get_upper(...) not yet implemented")
class StringExpressionMixin(object):
"""User defined mixin class for StringExpression."""
def operands(self, diagnostics=None, context=None):
"""All the operands of a StringExpression must be LiteralStrings
operand->forAll (oclIsKindOf (LiteralString))"""
raise NotImplementedError("operation operands(...) not yet implemented")
def subexpressions(self, diagnostics=None, context=None):
"""If a StringExpression has sub-expressions, it cannot have operands and vice versa (this avoids the problem of having to define a collating sequence between operands and subexpressions).
if subExpression->notEmpty() then operand->isEmpty() else operand->notEmpty() endif"""
raise NotImplementedError("operation subexpressions(...) not yet implemented")
class RealizationMixin(object):
"""User defined mixin class for Realization."""
class PinMixin(object):
"""User defined mixin class for Pin."""
def control_pins(self, diagnostics=None, context=None):
"""A control Pin has a control type.
isControl implies isControlType"""
raise NotImplementedError("operation control_pins(...) not yet implemented")
def not_unique(self, diagnostics=None, context=None):
"""Pin multiplicity is not unique.
not isUnique"""
raise NotImplementedError("operation not_unique(...) not yet implemented")
class WriteLinkActionMixin(object):
"""User defined mixin class for WriteLinkAction."""
def allow_access(self, diagnostics=None, context=None):
"""The visibility of at least one end must allow access from the context Classifier of the WriteLinkAction.
endData.end->exists(end |
end.type=_'context' or
end.visibility=VisibilityKind::public or
end.visibility=VisibilityKind::protected and
endData.end->exists(other |
other<>end and _'context'.conformsTo(other.type.oclAsType(Classifier))))"""
raise NotImplementedError("operation allow_access(...) not yet implemented")
class WriteStructuralFeatureActionMixin(object):
"""User defined mixin class for WriteStructuralFeatureAction."""
def multiplicity_of_result(self, diagnostics=None, context=None):
"""The multiplicity of the result OutputPin must be 1..1.
result <> null implies result.is(1,1)"""
raise NotImplementedError(
"operation multiplicity_of_result(...) not yet implemented"
)
def type_of_value(self, diagnostics=None, context=None):
"""The type of the value InputPin must conform to the type of the structuralFeature.
value <> null implies value.type.conformsTo(structuralFeature.type)"""
raise NotImplementedError("operation type_of_value(...) not yet implemented")
def multiplicity_of_value(self, diagnostics=None, context=None):
"""The multiplicity of the value InputPin is 1..1.
value<>null implies value.is(1,1)"""
raise NotImplementedError(
"operation multiplicity_of_value(...) not yet implemented"
)
def type_of_result(self, diagnostics=None, context=None):
"""The type of the result OutputPin is the same as the type of the inherited object InputPin.
result <> null implies result.type = object.type"""
raise NotImplementedError("operation type_of_result(...) not yet implemented")
class WriteVariableActionMixin(object):
"""User defined mixin class for WriteVariableAction."""
def value_type(self, diagnostics=None, context=None):
"""The type of the value InputPin must conform to the type of the variable.
value <> null implies value.type.conformsTo(variable.type)"""
raise NotImplementedError("operation value_type(...) not yet implemented")
def multiplicity(self, diagnostics=None, context=None):
"""The multiplicity of the value InputPin is 1..1.
value<>null implies value.is(1,1)"""
raise NotImplementedError("operation multiplicity(...) not yet implemented")
class AcceptCallActionMixin(object):
"""User defined mixin class for AcceptCallAction."""
def result_pins(self, diagnostics=None, context=None):
"""The number of result OutputPins must be the same as the number of input (in and inout) ownedParameters of the Operation specified by the trigger Event. The type, ordering and multiplicity of each result OutputPin must be consistent with the corresponding input Parameter.
let parameter: OrderedSet(Parameter) = trigger.event->asSequence()->first().oclAsType(CallEvent).operation.inputParameters() in
result->size() = parameter->size() and
Sequence{1..result->size()}->forAll(i |
parameter->at(i).type.conformsTo(result->at(i).type) and
parameter->at(i).isOrdered = result->at(i).isOrdered and
parameter->at(i).compatibleWith(result->at(i)))"""
raise NotImplementedError("operation result_pins(...) not yet implemented")
def trigger_call_event(self, diagnostics=None, context=None):
"""The action must have exactly one trigger, which must be for a CallEvent.
trigger->size()=1 and
trigger->asSequence()->first().event.oclIsKindOf(CallEvent)"""
raise NotImplementedError(
"operation trigger_call_event(...) not yet implemented"
)
def unmarshall(self, diagnostics=None, context=None):
"""isUnmrashall must be true for an AcceptCallAction.
isUnmarshall = true"""
raise NotImplementedError("operation unmarshall(...) not yet implemented")
class BroadcastSignalActionMixin(object):
"""User defined mixin class for BroadcastSignalAction."""
def number_of_arguments(self, diagnostics=None, context=None):
"""The number of argument InputPins must be the same as the number of attributes in the signal.
argument->size() = signal.allAttributes()->size()"""
raise NotImplementedError(
"operation number_of_arguments(...) not yet implemented"
)
def type_ordering_multiplicity(self, diagnostics=None, context=None):
"""The type, ordering, and multiplicity of an argument InputPin must be the same as the corresponding attribute of the signal.
let attribute: OrderedSet(Property) = signal.allAttributes() in
Sequence{1..argument->size()}->forAll(i |
argument->at(i).type.conformsTo(attribute->at(i).type) and
argument->at(i).isOrdered = attribute->at(i).isOrdered and
argument->at(i).compatibleWith(attribute->at(i)))"""
raise NotImplementedError(
"operation type_ordering_multiplicity(...) not yet implemented"
)
def no_onport(self, diagnostics=None, context=None):
"""A BroadcaseSignalAction may not specify onPort.
onPort=null"""
raise NotImplementedError("operation no_onport(...) not yet implemented")
class CallActionMixin(object):
"""User defined mixin class for CallAction."""
def argument_pins(self, diagnostics=None, context=None):
"""The number of argument InputPins must be the same as the number of input (in and inout) ownedParameters of the called Behavior or Operation. The type, ordering and multiplicity of each argument InputPin must be consistent with the corresponding input Parameter.
let parameter: OrderedSet(Parameter) = self.inputParameters() in
argument->size() = parameter->size() and
Sequence{1..argument->size()}->forAll(i |
argument->at(i).type.conformsTo(parameter->at(i).type) and
argument->at(i).isOrdered = parameter->at(i).isOrdered and
argument->at(i).compatibleWith(parameter->at(i)))"""
raise NotImplementedError("operation argument_pins(...) not yet implemented")
def result_pins(self, diagnostics=None, context=None):
"""The number of result OutputPins must be the same as the number of output (inout, out and return) ownedParameters of the called Behavior or Operation. The type, ordering and multiplicity of each result OutputPin must be consistent with the corresponding input Parameter.
let parameter: OrderedSet(Parameter) = self.outputParameters() in
result->size() = parameter->size() and
Sequence{1..result->size()}->forAll(i |
parameter->at(i).type.conformsTo(result->at(i).type) and
parameter->at(i).isOrdered = result->at(i).isOrdered and
parameter->at(i).compatibleWith(result->at(i)))"""
raise NotImplementedError("operation result_pins(...) not yet implemented")
def synchronous_call(self, diagnostics=None, context=None):
"""Only synchronous CallActions can have result OutputPins.
result->notEmpty() implies isSynchronous"""
raise NotImplementedError("operation synchronous_call(...) not yet implemented")
def input_parameters(self):
"""Return the in and inout ownedParameters of the Behavior or Operation being called. (This operation is abstract and should be overridden by subclasses of CallAction.)
<p>From package UML::Actions.</p>"""
raise NotImplementedError("operation input_parameters(...) not yet implemented")
def output_parameters(self):
"""Return the inout, out and return ownedParameters of the Behavior or Operation being called. (This operation is abstract and should be overridden by subclasses of CallAction.)
<p>From package UML::Actions.</p>"""
raise NotImplementedError(
"operation output_parameters(...) not yet implemented"
)
class ClearStructuralFeatureActionMixin(object):
"""User defined mixin class for ClearStructuralFeatureAction."""
def type_of_result(self, diagnostics=None, context=None):
"""The type of the result OutputPin is the same as the type of the inherited object InputPin.
result<>null implies result.type = object.type"""
raise NotImplementedError("operation type_of_result(...) not yet implemented")
def multiplicity_of_result(self, diagnostics=None, context=None):
"""The multiplicity of the result OutputPin must be 1..1.
result<>null implies result.is(1,1)"""
raise NotImplementedError(
"operation multiplicity_of_result(...) not yet implemented"
)
class ClearVariableActionMixin(object):
"""User defined mixin class for ClearVariableAction."""
class ReadLinkActionMixin(object):
"""User defined mixin class for ReadLinkAction."""
def type_and_ordering(self, diagnostics=None, context=None):
"""The type and ordering of the result OutputPin are same as the type and ordering of the open Association end.
self.openEnd()->forAll(type=result.type and isOrdered=result.isOrdered)"""
raise NotImplementedError(
"operation type_and_ordering(...) not yet implemented"
)
def compatible_multiplicity(self, diagnostics=None, context=None):
"""The multiplicity of the open Association end must be compatible with the multiplicity of the result OutputPin.
self.openEnd()->first().compatibleWith(result)"""
raise NotImplementedError(
"operation compatible_multiplicity(...) not yet implemented"
)
def visibility(self, diagnostics=None, context=None):
"""Visibility of the open end must allow access from the object performing the action.
let openEnd : Property = self.openEnd()->first() in
openEnd.visibility = VisibilityKind::public or
endData->exists(oed |
oed.end<>openEnd and
(_'context' = oed.end.type or
(openEnd.visibility = VisibilityKind::protected and
_'context'.conformsTo(oed.end.type.oclAsType(Classifier)))))"""
raise NotImplementedError("operation visibility(...) not yet implemented")
def one_open_end(self, diagnostics=None, context=None):
"""Exactly one linkEndData specification (corresponding to the "open" end) must not have an value InputPin.
self.openEnd()->size() = 1"""
raise NotImplementedError("operation one_open_end(...) not yet implemented")
def navigable_open_end(self, diagnostics=None, context=None):
"""The open end must be navigable.
self.openEnd()->first().isNavigable()"""
raise NotImplementedError(
"operation navigable_open_end(...) not yet implemented"
)
def open_end(self):
"""Returns the ends corresponding to endData with no value InputPin. (A well-formed ReadLinkAction is constrained to have only one of these.)
result = (endData->select(value=null).end->asOrderedSet())
<p>From package UML::Actions.</p>"""
raise NotImplementedError("operation open_end(...) not yet implemented")
class ReadStructuralFeatureActionMixin(object):
"""User defined mixin class for ReadStructuralFeatureAction."""
def type_and_ordering(self, diagnostics=None, context=None):
"""The type and ordering of the result OutputPin are the same as the type and ordering of the StructuralFeature.
result.type =structuralFeature.type and
result.isOrdered = structuralFeature.isOrdered"""
raise NotImplementedError(
"operation type_and_ordering(...) not yet implemented"
)
class ReadVariableActionMixin(object):
"""User defined mixin class for ReadVariableAction."""
def type_and_ordering(self, diagnostics=None, context=None):
"""The type and ordering of the result OutputPin are the same as the type and ordering of the variable.
result.type =variable.type and
result.isOrdered = variable.isOrdered"""
raise NotImplementedError(
"operation type_and_ordering(...) not yet implemented"
)
def compatible_multiplicity(self, diagnostics=None, context=None):
"""The multiplicity of the variable must be compatible with the multiplicity of the output pin.
variable.compatibleWith(result)"""
raise NotImplementedError(
"operation compatible_multiplicity(...) not yet implemented"
)
class SendObjectActionMixin(object):
"""User defined mixin class for SendObjectAction."""
def type_target_pin(self, diagnostics=None, context=None):
"""If onPort is not empty, the Port given by onPort must be an owned or inherited feature of the type of the target InputPin.
onPort<>null implies target.type.oclAsType(Classifier).allFeatures()->includes(onPort)"""
raise NotImplementedError("operation type_target_pin(...) not yet implemented")
class SendSignalActionMixin(object):
"""User defined mixin class for SendSignalAction."""
def type_ordering_multiplicity(self, diagnostics=None, context=None):
"""The type, ordering, and multiplicity of an argument InputPin must be the same as the corresponding attribute of the signal.
let attribute: OrderedSet(Property) = signal.allAttributes() in
Sequence{1..argument->size()}->forAll(i |
argument->at(i).type.conformsTo(attribute->at(i).type) and
argument->at(i).isOrdered = attribute->at(i).isOrdered and
argument->at(i).compatibleWith(attribute->at(i)))"""
raise NotImplementedError(
"operation type_ordering_multiplicity(...) not yet implemented"
)
def number_order(self, diagnostics=None, context=None):
"""The number and order of argument InputPins must be the same as the number and order of attributes of the signal.
argument->size()=signal.allAttributes()->size()"""
raise NotImplementedError("operation number_order(...) not yet implemented")
def type_target_pin(self, diagnostics=None, context=None):
"""If onPort is not empty, the Port given by onPort must be an owned or inherited feature of the type of the target InputPin.
not onPort->isEmpty() implies target.type.oclAsType(Classifier).allFeatures()->includes(onPort)"""
raise NotImplementedError("operation type_target_pin(...) not yet implemented")
class DataStoreNodeMixin(object):
"""User defined mixin class for DataStoreNode."""
class BehavioredClassifierMixin(object):
"""User defined mixin class for BehavioredClassifier."""
def class_behavior(self, diagnostics=None, context=None):
"""If a behavior is classifier behavior, it does not have a specification.
classifierBehavior->notEmpty() implies classifierBehavior.specification->isEmpty()"""
raise NotImplementedError("operation class_behavior(...) not yet implemented")
def get_all_implemented_interfaces(self):
"""Retrieves all the interfaces on which this behaviored classifier or any of its parents has an interface realization dependency."""
raise NotImplementedError(
"operation get_all_implemented_interfaces(...) not yet implemented"
)
def get_implemented_interfaces(self):
"""Retrieves the interfaces on which this behaviored classifier has an interface realization dependency."""
raise NotImplementedError(
"operation get_implemented_interfaces(...) not yet implemented"
)
class DataTypeMixin(object):
"""User defined mixin class for DataType."""
def create_owned_attribute(self, name=None, type=None, lower=None, upper=None):
"""Creates a property with the specified name, type, lower bound, and upper bound as an owned attribute of this data type."""
raise NotImplementedError(
"operation create_owned_attribute(...) not yet implemented"
)
def create_owned_operation(
self, name=None, parameterNames=None, parameterTypes=None, returnType=None
):
"""Creates an operation with the specified name, parameter names, parameter types, and return type (or null) as an owned operation of this data type."""
raise NotImplementedError(
"operation create_owned_operation(...) not yet implemented"
)
class InterfaceMixin(object):
"""User defined mixin class for Interface."""
def visibility(self, diagnostics=None, context=None):
"""The visibility of all Features owned by an Interface must be public.
feature->forAll(visibility = VisibilityKind::public)"""
raise NotImplementedError("operation visibility(...) not yet implemented")
def create_owned_attribute(self, name=None, type=None, lower=None, upper=None):
"""Creates a property with the specified name, type, lower bound, and upper bound as an owned attribute of this interface."""
raise NotImplementedError(
"operation create_owned_attribute(...) not yet implemented"
)
def create_owned_operation(
self, name=None, parameterNames=None, parameterTypes=None, returnType=None
):
"""Creates an operation with the specified name, parameter names, parameter types, and return type (or null) as an owned operation of this interface."""
raise NotImplementedError(
"operation create_owned_operation(...) not yet implemented"
)
class SignalMixin(object):
"""User defined mixin class for Signal."""
def create_owned_attribute(self, name=None, type=None, lower=None, upper=None):
"""Creates a property with the specified name, type, lower bound, and upper bound as an owned attribute of this signal."""
raise NotImplementedError(
"operation create_owned_attribute(...) not yet implemented"
)
class StructuredClassifierMixin(object):
"""User defined mixin class for StructuredClassifier."""
def create_owned_attribute(self, name=None, type=None, lower=None, upper=None):
"""Creates a property with the specified name, type, lower bound, and upper bound as an owned attribute of this structured classifier."""
raise NotImplementedError(
"operation create_owned_attribute(...) not yet implemented"
)
def get_parts(self):
"""Derivation for StructuredClassifier::/part
result = (ownedAttribute->select(isComposite)->asSet())
<p>From package UML::StructuredClassifiers.</p>"""
raise NotImplementedError("operation get_parts(...) not yet implemented")
def all_roles(self):
"""All features of type ConnectableElement, equivalent to all direct and inherited roles.
result = (allFeatures()->select(oclIsKindOf(ConnectableElement))->collect(oclAsType(ConnectableElement))->asSet())
<p>From package UML::StructuredClassifiers.</p>"""
raise NotImplementedError("operation all_roles(...) not yet implemented")
class SubstitutionMixin(object):
"""User defined mixin class for Substitution."""
class InterfaceRealizationMixin(object):
"""User defined mixin class for InterfaceRealization."""
class StructuredActivityNodeMixin(object):
"""User defined mixin class for StructuredActivityNode."""
def output_pin_edges(self, diagnostics=None, context=None):
"""The outgoing ActivityEdges of the OutputPins of a StructuredActivityNode must have targets that are not within the StructuredActivityNode.
output.outgoing.target->excludesAll(allOwnedNodes()-input)"""
raise NotImplementedError("operation output_pin_edges(...) not yet implemented")
def edges(self, diagnostics=None, context=None):
"""The edges of a StructuredActivityNode are all the ActivityEdges with source and target ActivityNodes contained directly or indirectly within the StructuredActivityNode and at least one of the source or target not contained in any more deeply nested StructuredActivityNode.
edge=self.sourceNodes().outgoing->intersection(self.allOwnedNodes().incoming)->
union(self.targetNodes().incoming->intersection(self.allOwnedNodes().outgoing))->asSet()"""
raise NotImplementedError("operation edges(...) not yet implemented")
def input_pin_edges(self, diagnostics=None, context=None):
"""The incoming ActivityEdges of an InputPin of a StructuredActivityNode must have sources that are not within the StructuredActivityNode.
input.incoming.source->excludesAll(allOwnedNodes()-output)"""
raise NotImplementedError("operation input_pin_edges(...) not yet implemented")
def source_nodes(self):
"""Return those ActivityNodes contained immediately within the StructuredActivityNode that may act as sources of edges owned by the StructuredActivityNode.
result = (node->union(input.oclAsType(ActivityNode)->asSet())->
union(node->select(oclIsKindOf(Action)).oclAsType(Action).output)->asSet())
<p>From package UML::Actions.</p>"""
raise NotImplementedError("operation source_nodes(...) not yet implemented")
def target_nodes(self):
"""Return those ActivityNodes contained immediately within the StructuredActivityNode that may act as targets of edges owned by the StructuredActivityNode.
result = (node->union(output.oclAsType(ActivityNode)->asSet())->
union(node->select(oclIsKindOf(Action)).oclAsType(Action).input)->asSet())
<p>From package UML::Actions.</p>"""
raise NotImplementedError("operation target_nodes(...) not yet implemented")
class InputPinMixin(object):
"""User defined mixin class for InputPin."""
def outgoing_edges_structured_only(self, diagnostics=None, context=None):
"""An InputPin may have outgoing ActivityEdges only when it is owned by a StructuredActivityNode, and these edges must target a node contained (directly or indirectly) in the owning StructuredActivityNode.
outgoing->notEmpty() implies
action<>null and
action.oclIsKindOf(StructuredActivityNode) and
action.oclAsType(StructuredActivityNode).allOwnedNodes()->includesAll(outgoing.target)"""
raise NotImplementedError(
"operation outgoing_edges_structured_only(...) not yet implemented"
)
class OutputPinMixin(object):
"""User defined mixin class for OutputPin."""
def incoming_edges_structured_only(self, diagnostics=None, context=None):
"""An OutputPin may have incoming ActivityEdges only when it is owned by a StructuredActivityNode, and these edges must have sources contained (directly or indirectly) in the owning StructuredActivityNode.
incoming->notEmpty() implies
action<>null and
action.oclIsKindOf(StructuredActivityNode) and
action.oclAsType(StructuredActivityNode).allOwnedNodes()->includesAll(incoming.source)"""
raise NotImplementedError(
"operation incoming_edges_structured_only(...) not yet implemented"
)
class AddStructuralFeatureValueActionMixin(object):
"""User defined mixin class for AddStructuralFeatureValueAction."""
def required_value(self, diagnostics=None, context=None):
"""A value InputPin is required.
value<>null"""
raise NotImplementedError("operation required_value(...) not yet implemented")
def insert_at_pin(self, diagnostics=None, context=None):
"""AddStructuralFeatureActions adding a value to ordered StructuralFeatures must have a single InputPin for the insertion point with type UnlimitedNatural and multiplicity of 1..1 if isReplaceAll=false, and must have no Input Pin for the insertion point when the StructuralFeature is unordered.
if not structuralFeature.isOrdered then insertAt = null
else
not isReplaceAll implies
insertAt<>null and
insertAt->forAll(type=UnlimitedNatural and is(1,1.oclAsType(UnlimitedNatural)))
endif"""
raise NotImplementedError("operation insert_at_pin(...) not yet implemented")
class AddVariableValueActionMixin(object):
"""User defined mixin class for AddVariableValueAction."""
def required_value(self, diagnostics=None, context=None):
"""A value InputPin is required.
value <> null"""
raise NotImplementedError("operation required_value(...) not yet implemented")
def insert_at_pin(self, diagnostics=None, context=None):
"""AddVariableValueActions for ordered Variables must have a single InputPin for the insertion point with type UnlimtedNatural and multiplicity of 1..1 if isReplaceAll=false, otherwise the Action has no InputPin for the insertion point.
if not variable.isOrdered then insertAt = null
else
not isReplaceAll implies
insertAt<>null and
insertAt->forAll(type=UnlimitedNatural and is(1,1.oclAsType(UnlimitedNatural)))
endif"""
raise NotImplementedError("operation insert_at_pin(...) not yet implemented")
class CallBehaviorActionMixin(object):
"""User defined mixin class for CallBehaviorAction."""
def no_onport(self, diagnostics=None, context=None):
"""A CallBehaviorAction may not specify onPort.
onPort=null"""
raise NotImplementedError("operation no_onport(...) not yet implemented")
class CallOperationActionMixin(object):
"""User defined mixin class for CallOperationAction."""
def type_target_pin(self, diagnostics=None, context=None):
"""If onPort has no value, the operation must be an owned or inherited feature of the type of the target InputPin, otherwise the Port given by onPort must be an owned or inherited feature of the type of the target InputPin, and the Port must have a required or provided Interface with the operation as an owned or inherited feature.
if onPort=null then target.type.oclAsType(Classifier).allFeatures()->includes(operation)
else target.type.oclAsType(Classifier).allFeatures()->includes(onPort) and onPort.provided->union(onPort.required).allFeatures()->includes(operation)
endif"""
raise NotImplementedError("operation type_target_pin(...) not yet implemented")
class CreateLinkActionMixin(object):
"""User defined mixin class for CreateLinkAction."""
def association_not_abstract(self, diagnostics=None, context=None):
"""The Association cannot be an abstract Classifier.
not self.association().isAbstract"""
raise NotImplementedError(
"operation association_not_abstract(...) not yet implemented"
)
class DestroyLinkActionMixin(object):
"""User defined mixin class for DestroyLinkAction."""
class RemoveStructuralFeatureValueActionMixin(object):
"""User defined mixin class for RemoveStructuralFeatureValueAction."""
def remove_at_and_value(self, diagnostics=None, context=None):
"""RemoveStructuralFeatureValueActions removing a value from ordered, non-unique StructuralFeatures must have a single removeAt InputPin and no value InputPin, if isRemoveDuplicates is false. The removeAt InputPin must be of type Unlimited Natural with multiplicity 1..1. Otherwise, the Action has a value InputPin and no removeAt InputPin.
if structuralFeature.isOrdered and not structuralFeature.isUnique and not isRemoveDuplicates then
value = null and
removeAt <> null and
removeAt.type = UnlimitedNatural and
removeAt.is(1,1)
else
removeAt = null and value <> null
endif"""
raise NotImplementedError(
"operation remove_at_and_value(...) not yet implemented"
)
class RemoveVariableValueActionMixin(object):
"""User defined mixin class for RemoveVariableValueAction."""
def remove_at_and_value(self, diagnostics=None, context=None):
"""ReadVariableActions removing a value from ordered, non-unique Variables must have a single removeAt InputPin and no value InputPin, if isRemoveDuplicates is false. The removeAt InputPin must be of type Unlimited Natural with multiplicity 1..1. Otherwise, the Action has a value InputPin and no removeAt InputPin.
if variable.isOrdered and not variable.isUnique and not isRemoveDuplicates then
value = null and
removeAt <> null and
removeAt.type = UnlimitedNatural and
removeAt.is(1,1)
else
removeAt = null and value <> null
endif"""
raise NotImplementedError(
"operation remove_at_and_value(...) not yet implemented"
)
class StartObjectBehaviorActionMixin(object):
"""User defined mixin class for StartObjectBehaviorAction."""
def multiplicity_of_object(self, diagnostics=None, context=None):
"""The multiplicity of the object InputPin must be 1..1.
object.is(1,1)"""
raise NotImplementedError(
"operation multiplicity_of_object(...) not yet implemented"
)
def type_of_object(self, diagnostics=None, context=None):
"""The type of the object InputPin must be either a Behavior or a BehavioredClassifier with a classifierBehavior.
self.behavior()<>null"""
raise NotImplementedError("operation type_of_object(...) not yet implemented")
def no_onport(self, diagnostics=None, context=None):
"""A StartObjectBehaviorAction may not specify onPort.
onPort->isEmpty()"""
raise NotImplementedError("operation no_onport(...) not yet implemented")
def behavior(self):
"""If the type of the object InputPin is a Behavior, then that Behavior. Otherwise, if the type of the object InputPin is a BehavioredClassifier, then the classifierBehavior of that BehavioredClassifier.
result = (if object.type.oclIsKindOf(Behavior) then
object.type.oclAsType(Behavior)
else if object.type.oclIsKindOf(BehavioredClassifier) then
object.type.oclAsType(BehavioredClassifier).classifierBehavior
else
null
endif
endif)
<p>From package UML::Actions.</p>"""
raise NotImplementedError("operation behavior(...) not yet implemented")
class InformationItemMixin(object):
"""User defined mixin class for InformationItem."""
def sources_and_targets(self, diagnostics=None, context=None):
"""The sources and targets of an information item (its related information flows) must designate subsets of the sources and targets of the representation information item, if any. The Classifiers that can realize an information item can only be of the following kind: Class, Interface, InformationItem, Signal, Component.
(self.represented->select(oclIsKindOf(InformationItem))->forAll(p |
p.conveyingFlow.source->forAll(q | self.conveyingFlow.source->includes(q)) and
p.conveyingFlow.target->forAll(q | self.conveyingFlow.target->includes(q)))) and
(self.represented->forAll(oclIsKindOf(Class) or oclIsKindOf(Interface) or
oclIsKindOf(InformationItem) or oclIsKindOf(Signal) or oclIsKindOf(Component)))"""
raise NotImplementedError(
"operation sources_and_targets(...) not yet implemented"
)
def has_no(self, diagnostics=None, context=None):
"""An informationItem has no feature, no generalization, and no associations.
self.generalization->isEmpty() and self.feature->isEmpty()"""
raise NotImplementedError("operation has_no(...) not yet implemented")
def not_instantiable(self, diagnostics=None, context=None):
"""It is not instantiable.
isAbstract"""
raise NotImplementedError("operation not_instantiable(...) not yet implemented")
class ComponentRealizationMixin(object):
"""User defined mixin class for ComponentRealization."""
class AssociationMixin(object):
"""User defined mixin class for Association."""
def specialized_end_number(self, diagnostics=None, context=None):
"""An Association specializing another Association has the same number of ends as the other Association.
parents()->select(oclIsKindOf(Association)).oclAsType(Association)->forAll(p | p.memberEnd->size() = self.memberEnd->size())"""
raise NotImplementedError(
"operation specialized_end_number(...) not yet implemented"
)
def specialized_end_types(self, diagnostics=None, context=None):
"""When an Association specializes another Association, every end of the specific Association corresponds to an end of the general Association, and the specific end reaches the same type or a subtype of the corresponding general end.
Sequence{1..memberEnd->size()}->
forAll(i | general->select(oclIsKindOf(Association)).oclAsType(Association)->
forAll(ga | self.memberEnd->at(i).type.conformsTo(ga.memberEnd->at(i).type)))"""
raise NotImplementedError(
"operation specialized_end_types(...) not yet implemented"
)
def binary_associations(self, diagnostics=None, context=None):
"""Only binary Associations can be aggregations.
memberEnd->exists(aggregation <> AggregationKind::none) implies (memberEnd->size() = 2 and memberEnd->exists(aggregation = AggregationKind::none))"""
raise NotImplementedError(
"operation binary_associations(...) not yet implemented"
)
def association_ends(self, diagnostics=None, context=None):
"""Ends of Associations with more than two ends must be owned by the Association itself.
memberEnd->size() > 2 implies ownedEnd->includesAll(memberEnd)"""
raise NotImplementedError("operation association_ends(...) not yet implemented")
def ends_must_be_typed(self, diagnostics=None, context=None):
"""memberEnd->forAll(type->notEmpty())"""
raise NotImplementedError(
"operation ends_must_be_typed(...) not yet implemented"
)
def is_binary(self):
"""Determines whether this association is a binary association, i.e. whether it has exactly two member ends."""
raise NotImplementedError("operation is_binary(...) not yet implemented")
def get_end_types(self):
"""endType is derived from the types of the member ends.
result = (memberEnd->collect(type)->asSet())
<p>From package UML::StructuredClassifiers.</p>"""
raise NotImplementedError("operation get_end_types(...) not yet implemented")
class PropertyMixin(object):
"""User defined mixin class for Property."""
@property
@default.setter
@property
@isComposite.setter
@property
@opposite.setter
def subsetting_context_conforms(self, diagnostics=None, context=None):
"""Subsetting may only occur when the context of the subsetting property conforms to the context of the subsetted property.
subsettedProperty->notEmpty() implies
(subsettingContext()->notEmpty() and subsettingContext()->forAll (sc |
subsettedProperty->forAll(sp |
sp.subsettingContext()->exists(c | sc.conformsTo(c)))))"""
raise NotImplementedError(
"operation subsetting_context_conforms(...) not yet implemented"
)
def derived_union_is_read_only(self, diagnostics=None, context=None):
"""A derived union is read only.
isDerivedUnion implies isReadOnly"""
raise NotImplementedError(
"operation derived_union_is_read_only(...) not yet implemented"
)
def multiplicity_of_composite(self, diagnostics=None, context=None):
"""A multiplicity on the composing end of a composite aggregation must not have an upper bound greater than 1.
isComposite and association <> null implies opposite.upperBound() <= 1"""
raise NotImplementedError(
"operation multiplicity_of_composite(...) not yet implemented"
)
def redefined_property_inherited(self, diagnostics=None, context=None):
"""A redefined Property must be inherited from a more general Classifier.
(redefinedProperty->notEmpty()) implies
(redefinitionContext->notEmpty() and
redefinedProperty->forAll(rp|
((redefinitionContext->collect(fc|
fc.allParents()))->asSet())->collect(c| c.allFeatures())->asSet()->includes(rp)))"""
raise NotImplementedError(
"operation redefined_property_inherited(...) not yet implemented"
)
def subsetting_rules(self, diagnostics=None, context=None):
"""A subsetting Property may strengthen the type of the subsetted Property, and its upper bound may be less.
subsettedProperty->forAll(sp |
self.type.conformsTo(sp.type) and
((self.upperBound()->notEmpty() and sp.upperBound()->notEmpty()) implies
self.upperBound() <= sp.upperBound() ))"""
raise NotImplementedError("operation subsetting_rules(...) not yet implemented")
def binding_to_attribute(self, diagnostics=None, context=None):
"""A binding of a PropertyTemplateParameter representing an attribute must be to an attribute.
(self.isAttribute()
and (templateParameterSubstitution->notEmpty())
implies (templateParameterSubstitution->forAll(ts |
ts.formal.oclIsKindOf(Property)
and ts.formal.oclAsType(Property).isAttribute())))"""
raise NotImplementedError(
"operation binding_to_attribute(...) not yet implemented"
)
def derived_union_is_derived(self, diagnostics=None, context=None):
"""A derived union is derived.
isDerivedUnion implies isDerived"""
raise NotImplementedError(
"operation derived_union_is_derived(...) not yet implemented"
)
def deployment_target(self, diagnostics=None, context=None):
"""A Property can be a DeploymentTarget if it is a kind of Node and functions as a part in the internal structure of an encompassing Node.
deployment->notEmpty() implies owner.oclIsKindOf(Node) and Node.allInstances()->exists(n | n.part->exists(p | p = self))"""
raise NotImplementedError(
"operation deployment_target(...) not yet implemented"
)
def subsetted_property_names(self, diagnostics=None, context=None):
"""A Property may not subset a Property with the same name.
subsettedProperty->forAll(sp | sp.name <> name)"""
raise NotImplementedError(
"operation subsetted_property_names(...) not yet implemented"
)
def type_of_opposite_end(self, diagnostics=None, context=None):
"""If a Property is a classifier-owned end of a binary Association, its owner must be the type of the opposite end.
(opposite->notEmpty() and owningAssociation->isEmpty()) implies classifier = opposite.type"""
raise NotImplementedError(
"operation type_of_opposite_end(...) not yet implemented"
)
def qualified_is_association_end(self, diagnostics=None, context=None):
"""All qualified Properties must be Association ends
qualifier->notEmpty() implies association->notEmpty()"""
raise NotImplementedError(
"operation qualified_is_association_end(...) not yet implemented"
)
def get_default(self):
"""Retrieves a string representation of the default value for this property."""
raise NotImplementedError("operation get_default(...) not yet implemented")
def get_other_end(self):
"""Retrieves the other end of the (binary) association in which this property is a member end."""
raise NotImplementedError("operation get_other_end(...) not yet implemented")
def set_boolean_default_value(self, value=None):
"""Sets the default value for this property to the specified Boolean value."""
raise NotImplementedError(
"operation set_boolean_default_value(...) not yet implemented"
)
def set_default(self, newDefault=None):
"""Sets the default value for this property based on the specified string representation."""
raise NotImplementedError("operation set_default(...) not yet implemented")
def set_integer_default_value(self, value=None):
"""Sets the default value for this property to the specified integer value."""
raise NotImplementedError(
"operation set_integer_default_value(...) not yet implemented"
)
def set_is_navigable(self, isNavigable=None):
"""Sets the navigability of this property as indicated."""
raise NotImplementedError("operation set_is_navigable(...) not yet implemented")
def set_null_default_value(self):
"""Sets the default value for this property to the null value."""
raise NotImplementedError(
"operation set_null_default_value(...) not yet implemented"
)
def set_real_default_value(self, value=None):
"""Sets the default value for this property to the specified real value."""
raise NotImplementedError(
"operation set_real_default_value(...) not yet implemented"
)
def set_string_default_value(self, value=None):
"""Sets the default value for this property to the specified string value."""
raise NotImplementedError(
"operation set_string_default_value(...) not yet implemented"
)
def set_unlimited_natural_default_value(self, value=None):
"""Sets the default value for this property to the specified unlimited natural value."""
raise NotImplementedError(
"operation set_unlimited_natural_default_value(...) not yet implemented"
)
def is_attribute(self):
"""The query isAttribute() is true if the Property is defined as an attribute of some Classifier.
result = (not classifier->isEmpty())
<p>From package UML::Classification.</p>"""
raise NotImplementedError("operation is_attribute(...) not yet implemented")
def is_composite(self):
"""The value of isComposite is true only if aggregation is composite.
result = (aggregation = AggregationKind::composite)
<p>From package UML::Classification.</p>"""
return self.isComposite
def is_navigable(self):
"""The query isNavigable() indicates whether it is possible to navigate across the property.
result = (not classifier->isEmpty() or association.navigableOwnedEnd->includes(self))
<p>From package UML::Classification.</p>"""
raise NotImplementedError("operation is_navigable(...) not yet implemented")
def get_opposite(self):
"""If this property is a memberEnd of a binary association, then opposite gives the other end.
result = (if association <> null and association.memberEnd->size() = 2
then
association.memberEnd->any(e | e <> self)
else
null
endif)
<p>From package UML::Classification.</p>"""
raise NotImplementedError("operation get_opposite(...) not yet implemented")
def subsetting_context(self):
"""The query subsettingContext() gives the context for subsetting a Property. It consists, in the case of an attribute, of the corresponding Classifier, and in the case of an association end, all of the Classifiers at the other ends.
result = (if association <> null
then association.memberEnd->excluding(self)->collect(type)->asSet()
else
if classifier<>null
then classifier->asSet()
else Set{}
endif
endif)
<p>From package UML::Classification.</p>"""
raise NotImplementedError(
"operation subsetting_context(...) not yet implemented"
)
class ArtifactMixin(object):
"""User defined mixin class for Artifact."""
def create_owned_attribute(self, name=None, type=None, lower=None, upper=None):
"""Creates a property with the specified name, type, lower bound, and upper bound as an owned attribute of this artifact."""
raise NotImplementedError(
"operation create_owned_attribute(...) not yet implemented"
)
def create_owned_operation(
self, name=None, parameterNames=None, parameterTypes=None, returnType=None
):
"""Creates an operation with the specified name, parameter names, parameter types, and return type (or null) as an owned operation of this artifact."""
raise NotImplementedError(
"operation create_owned_operation(...) not yet implemented"
)
class EnumerationMixin(object):
"""User defined mixin class for Enumeration."""
def immutable(self, diagnostics=None, context=None):
"""ownedAttribute->forAll(isReadOnly)"""
raise NotImplementedError("operation immutable(...) not yet implemented")
class PrimitiveTypeMixin(object):
"""User defined mixin class for PrimitiveType."""
class UseCaseMixin(object):
"""User defined mixin class for UseCase."""
def binary_associations(self, diagnostics=None, context=None):
"""UseCases can only be involved in binary Associations.
Association.allInstances()->forAll(a | a.memberEnd.type->includes(self) implies a.memberEnd->size() = 2)"""
raise NotImplementedError(
"operation binary_associations(...) not yet implemented"
)
def no_association_to_use_case(self, diagnostics=None, context=None):
"""UseCases cannot have Associations to UseCases specifying the same subject.
Association.allInstances()->forAll(a | a.memberEnd.type->includes(self) implies
(
let usecases: Set(UseCase) = a.memberEnd.type->select(oclIsKindOf(UseCase))->collect(oclAsType(UseCase))->asSet() in
usecases->size() > 1 implies usecases->collect(subject)->size() > 1
)
)"""
raise NotImplementedError(
"operation no_association_to_use_case(...) not yet implemented"
)
def cannot_include_self(self, diagnostics=None, context=None):
"""A UseCase cannot include UseCases that directly or indirectly include it.
not allIncludedUseCases()->includes(self)"""
raise NotImplementedError(
"operation cannot_include_self(...) not yet implemented"
)
def must_have_name(self, diagnostics=None, context=None):
"""A UseCase must have a name.
name -> notEmpty ()"""
raise NotImplementedError("operation must_have_name(...) not yet implemented")
def all_included_use_cases(self):
"""The query allIncludedUseCases() returns the transitive closure of all UseCases (directly or indirectly) included by this UseCase.
result = (self.include.addition->union(self.include.addition->collect(uc | uc.allIncludedUseCases()))->asSet())
<p>From package UML::UseCases.</p>"""
raise NotImplementedError(
"operation all_included_use_cases(...) not yet implemented"
)
class EncapsulatedClassifierMixin(object):
"""User defined mixin class for EncapsulatedClassifier."""
def get_owned_ports(self):
"""Derivation for EncapsulatedClassifier::/ownedPort : Port
result = (ownedAttribute->select(oclIsKindOf(Port))->collect(oclAsType(Port))->asOrderedSet())
<p>From package UML::StructuredClassifiers.</p>"""
raise NotImplementedError("operation get_owned_ports(...) not yet implemented")
class ActionInputPinMixin(object):
"""User defined mixin class for ActionInputPin."""
def input_pin(self, diagnostics=None, context=None):
"""The fromAction of an ActionInputPin must only have ActionInputPins as InputPins.
fromAction.input->forAll(oclIsKindOf(ActionInputPin))"""
raise NotImplementedError("operation input_pin(...) not yet implemented")
def one_output_pin(self, diagnostics=None, context=None):
"""The fromAction of an ActionInputPin must have exactly one OutputPin.
fromAction.output->size() = 1"""
raise NotImplementedError("operation one_output_pin(...) not yet implemented")
def no_control_or_object_flow(self, diagnostics=None, context=None):
"""The fromAction of an ActionInputPin cannot have ActivityEdges coming into or out of it or its Pins.
fromAction.incoming->union(outgoing)->isEmpty() and
fromAction.input.incoming->isEmpty() and
fromAction.output.outgoing->isEmpty()"""
raise NotImplementedError(
"operation no_control_or_object_flow(...) not yet implemented"
)
class ConditionalNodeMixin(object):
"""User defined mixin class for ConditionalNode."""
def result_no_incoming(self, diagnostics=None, context=None):
"""The result OutputPins have no incoming edges.
result.incoming->isEmpty()"""
raise NotImplementedError(
"operation result_no_incoming(...) not yet implemented"
)
def no_input_pins(self, diagnostics=None, context=None):
"""A ConditionalNode has no InputPins.
input->isEmpty()"""
raise NotImplementedError("operation no_input_pins(...) not yet implemented")
def one_clause_with_executable_node(self, diagnostics=None, context=None):
"""No ExecutableNode in the ConditionNode may appear in the test or body part of more than one clause of a ConditionalNode.
node->select(oclIsKindOf(ExecutableNode)).oclAsType(ExecutableNode)->forAll(n |
self.clause->select(test->union(_'body')->includes(n))->size()=1)"""
raise NotImplementedError(
"operation one_clause_with_executable_node(...) not yet implemented"
)
def matching_output_pins(self, diagnostics=None, context=None):
"""Each clause of a ConditionalNode must have the same number of bodyOutput pins as the ConditionalNode has result OutputPins, and each clause bodyOutput Pin must be compatible with the corresponding result OutputPin (by positional order) in type, multiplicity, ordering, and uniqueness.
clause->forAll(
bodyOutput->size()=self.result->size() and
Sequence{1..self.result->size()}->forAll(i |
bodyOutput->at(i).type.conformsTo(result->at(i).type) and
bodyOutput->at(i).isOrdered = result->at(i).isOrdered and
bodyOutput->at(i).isUnique = result->at(i).isUnique and
bodyOutput->at(i).compatibleWith(result->at(i))))"""
raise NotImplementedError(
"operation matching_output_pins(...) not yet implemented"
)
def executable_nodes(self, diagnostics=None, context=None):
"""The union of the ExecutableNodes in the test and body parts of all clauses must be the same as the subset of nodes contained in the ConditionalNode (considered as a StructuredActivityNode) that are ExecutableNodes.
clause.test->union(clause._'body') = node->select(oclIsKindOf(ExecutableNode)).oclAsType(ExecutableNode)"""
raise NotImplementedError("operation executable_nodes(...) not yet implemented")
def clause_no_predecessor(self, diagnostics=None, context=None):
"""No two clauses within a ConditionalNode may be predecessorClauses of each other, either directly or indirectly.
clause->closure(predecessorClause)->intersection(clause)->isEmpty()"""
raise NotImplementedError(
"operation clause_no_predecessor(...) not yet implemented"
)
class CreateLinkObjectActionMixin(object):
"""User defined mixin class for CreateLinkObjectAction."""
def multiplicity(self, diagnostics=None, context=None):
"""The multiplicity of the OutputPin is 1..1.
result.is(1,1)"""
raise NotImplementedError("operation multiplicity(...) not yet implemented")
def type_of_result(self, diagnostics=None, context=None):
"""The type of the result OutputPin must be the same as the Association of the CreateLinkObjectAction.
result.type = association()"""
raise NotImplementedError("operation type_of_result(...) not yet implemented")
def association_class(self, diagnostics=None, context=None):
"""The Association must be an AssociationClass.
self.association().oclIsKindOf(AssociationClass)"""
raise NotImplementedError(
"operation association_class(...) not yet implemented"
)
class ExpansionRegionMixin(object):
"""User defined mixin class for ExpansionRegion."""
class LoopNodeMixin(object):
"""User defined mixin class for LoopNode."""
def result_no_incoming(self, diagnostics=None, context=None):
"""The result OutputPins have no incoming edges.
result.incoming->isEmpty()"""
raise NotImplementedError(
"operation result_no_incoming(...) not yet implemented"
)
def input_edges(self, diagnostics=None, context=None):
"""The loopVariableInputs must not have outgoing edges.
loopVariableInput.outgoing->isEmpty()"""
raise NotImplementedError("operation input_edges(...) not yet implemented")
def executable_nodes(self, diagnostics=None, context=None):
"""The union of the ExecutableNodes in the setupPart, test and bodyPart of a LoopNode must be the same as the subset of nodes contained in the LoopNode (considered as a StructuredActivityNode) that are ExecutableNodes.
setupPart->union(test)->union(bodyPart)=node->select(oclIsKindOf(ExecutableNode)).oclAsType(ExecutableNode)->asSet()"""
raise NotImplementedError("operation executable_nodes(...) not yet implemented")
def body_output_pins(self, diagnostics=None, context=None):
"""The bodyOutput pins are OutputPins on Actions in the body of the LoopNode.
bodyPart.oclAsType(Action).allActions().output->includesAll(bodyOutput)"""
raise NotImplementedError("operation body_output_pins(...) not yet implemented")
def setup_test_and_body(self, diagnostics=None, context=None):
"""The test and body parts of a ConditionalNode must be disjoint with each other.
setupPart->intersection(test)->isEmpty() and
setupPart->intersection(bodyPart)->isEmpty() and
test->intersection(bodyPart)->isEmpty()"""
raise NotImplementedError(
"operation setup_test_and_body(...) not yet implemented"
)
def matching_output_pins(self, diagnostics=None, context=None):
"""A LoopNode must have the same number of bodyOutput Pins as loopVariables, and each bodyOutput Pin must be compatible with the corresponding loopVariable (by positional order) in type, multiplicity, ordering and uniqueness.
bodyOutput->size()=loopVariable->size() and
Sequence{1..loopVariable->size()}->forAll(i |
bodyOutput->at(i).type.conformsTo(loopVariable->at(i).type) and
bodyOutput->at(i).isOrdered = loopVariable->at(i).isOrdered and
bodyOutput->at(i).isUnique = loopVariable->at(i).isUnique and
loopVariable->at(i).includesMultiplicity(bodyOutput->at(i)))"""
raise NotImplementedError(
"operation matching_output_pins(...) not yet implemented"
)
def matching_loop_variables(self, diagnostics=None, context=None):
"""A LoopNode must have the same number of loopVariableInputs and loopVariables, and they must match in type, uniqueness and multiplicity.
loopVariableInput->size()=loopVariable->size() and
loopVariableInput.type=loopVariable.type and
loopVariableInput.isUnique=loopVariable.isUnique and
loopVariableInput.lower=loopVariable.lower and
loopVariableInput.upper=loopVariable.upper"""
raise NotImplementedError(
"operation matching_loop_variables(...) not yet implemented"
)
def matching_result_pins(self, diagnostics=None, context=None):
"""A LoopNode must have the same number of result OutputPins and loopVariables, and they must match in type, uniqueness and multiplicity.
result->size()=loopVariable->size() and
result.type=loopVariable.type and
result.isUnique=loopVariable.isUnique and
result.lower=loopVariable.lower and
result.upper=loopVariable.upper"""
raise NotImplementedError(
"operation matching_result_pins(...) not yet implemented"
)
def loop_variable_outgoing(self, diagnostics=None, context=None):
"""All ActivityEdges outgoing from loopVariable OutputPins must have targets within the LoopNode.
allOwnedNodes()->includesAll(loopVariable.outgoing.target)"""
raise NotImplementedError(
"operation loop_variable_outgoing(...) not yet implemented"
)
class SequenceNodeMixin(object):
"""User defined mixin class for SequenceNode."""
class ValuePinMixin(object):
"""User defined mixin class for ValuePin."""
def no_incoming_edges(self, diagnostics=None, context=None):
"""A ValuePin may have no incoming ActivityEdges.
incoming->isEmpty()"""
raise NotImplementedError(
"operation no_incoming_edges(...) not yet implemented"
)
def compatible_type(self, diagnostics=None, context=None):
"""The type of the value ValueSpecification must conform to the type of the ValuePin.
value.type.conformsTo(type)"""
raise NotImplementedError("operation compatible_type(...) not yet implemented")
class ActorMixin(object):
"""User defined mixin class for Actor."""
def associations(self, diagnostics=None, context=None):
"""An Actor can only have Associations to UseCases, Components, and Classes. Furthermore these Associations must be binary.
Association.allInstances()->forAll( a |
a.memberEnd->collect(type)->includes(self) implies
(
a.memberEnd->size() = 2 and
let actorEnd : Property = a.memberEnd->any(type = self) in
actorEnd.opposite.class.oclIsKindOf(UseCase) or
( actorEnd.opposite.class.oclIsKindOf(Class) and not
actorEnd.opposite.class.oclIsKindOf(Behavior))
)
)"""
raise NotImplementedError("operation associations(...) not yet implemented")
def must_have_name(self, diagnostics=None, context=None):
"""An Actor must have a name.
name->notEmpty()"""
raise NotImplementedError("operation must_have_name(...) not yet implemented")
class DeploymentSpecificationMixin(object):
"""User defined mixin class for DeploymentSpecification."""
def deployment_target(self, diagnostics=None, context=None):
"""The DeploymentTarget of a DeploymentSpecification is a kind of ExecutionEnvironment.
deployment->forAll (location.oclIsKindOf(ExecutionEnvironment))"""
raise NotImplementedError(
"operation deployment_target(...) not yet implemented"
)
def deployed_elements(self, diagnostics=None, context=None):
"""The deployedElements of a DeploymentTarget that are involved in a Deployment that has an associated Deployment-Specification is a kind of Component (i.e., the configured components).
deployment->forAll (location.deployedElement->forAll (oclIsKindOf(Component)))"""
raise NotImplementedError(
"operation deployed_elements(...) not yet implemented"
)
class PortMixin(object):
"""User defined mixin class for Port."""
def port_aggregation(self, diagnostics=None, context=None):
"""Port.aggregation must be composite.
aggregation = AggregationKind::composite"""
raise NotImplementedError("operation port_aggregation(...) not yet implemented")
def default_value(self, diagnostics=None, context=None):
"""A defaultValue for port cannot be specified when the type of the Port is an Interface.
type.oclIsKindOf(Interface) implies defaultValue->isEmpty()"""
raise NotImplementedError("operation default_value(...) not yet implemented")
def encapsulated_owner(self, diagnostics=None, context=None):
"""All Ports are owned by an EncapsulatedClassifier.
owner = encapsulatedClassifier"""
raise NotImplementedError(
"operation encapsulated_owner(...) not yet implemented"
)
def get_provideds(self):
"""Derivation for Port::/provided
result = (if isConjugated then basicRequired() else basicProvided() endif)
<p>From package UML::StructuredClassifiers.</p>"""
raise NotImplementedError("operation get_provideds(...) not yet implemented")
def get_requireds(self):
"""Derivation for Port::/required
result = (if isConjugated then basicProvided() else basicRequired() endif)
<p>From package UML::StructuredClassifiers.</p>"""
raise NotImplementedError("operation get_requireds(...) not yet implemented")
def basic_provided(self):
"""The union of the sets of Interfaces realized by the type of the Port and its supertypes, or directly the type of the Port if the Port is typed by an Interface.
result = (if type.oclIsKindOf(Interface)
then type.oclAsType(Interface)->asSet()
else type.oclAsType(Classifier).allRealizedInterfaces()
endif)
<p>From package UML::StructuredClassifiers.</p>"""
raise NotImplementedError("operation basic_provided(...) not yet implemented")
def basic_required(self):
"""The union of the sets of Interfaces used by the type of the Port and its supertypes.
result = ( type.oclAsType(Classifier).allUsedInterfaces() )
<p>From package UML::StructuredClassifiers.</p>"""
raise NotImplementedError("operation basic_required(...) not yet implemented")
class ExtensionMixin(object):
"""User defined mixin class for Extension."""
@property
@property
def non_owned_end(self, diagnostics=None, context=None):
"""The non-owned end of an Extension is typed by a Class.
metaclassEnd()->notEmpty() and metaclassEnd().type.oclIsKindOf(Class)"""
raise NotImplementedError("operation non_owned_end(...) not yet implemented")
def is_binary(self, diagnostics=None, context=None):
"""An Extension is binary, i.e., it has only two memberEnds.
memberEnd->size() = 2"""
raise NotImplementedError("operation is_binary(...) not yet implemented")
def get_stereotype(self):
"""Retrieves the stereotype that extends a metaclass through this extension."""
raise NotImplementedError("operation get_stereotype(...) not yet implemented")
def get_stereotype_end(self):
"""Retrieves the extension end that is typed by a stereotype (as opposed to a metaclass)."""
raise NotImplementedError(
"operation get_stereotype_end(...) not yet implemented"
)
def is_required(self):
"""The query isRequired() is true if the owned end has a multiplicity with the lower bound of 1.
result = (ownedEnd.lowerBound() = 1)
<p>From package UML::Packages.</p>"""
raise NotImplementedError("operation is_required(...) not yet implemented")
def get_metaclass(self):
"""The query metaclass() returns the metaclass that is being extended (as opposed to the extending stereotype).
result = (metaclassEnd().type.oclAsType(Class))
<p>From package UML::Packages.</p>"""
raise NotImplementedError("operation get_metaclass(...) not yet implemented")
def metaclass_end(self):
"""The query metaclassEnd() returns the Property that is typed by a metaclass (as opposed to a stereotype).
result = (memberEnd->reject(p | ownedEnd->includes(p.oclAsType(ExtensionEnd)))->any(true))
<p>From package UML::Packages.</p>"""
raise NotImplementedError("operation metaclass_end(...) not yet implemented")
class ExtensionEndMixin(object):
"""User defined mixin class for ExtensionEnd."""
def multiplicity(self, diagnostics=None, context=None):
"""The multiplicity of ExtensionEnd is 0..1 or 1.
(lowerBound() = 0 or lowerBound() = 1) and upperBound() = 1"""
raise NotImplementedError("operation multiplicity(...) not yet implemented")
def aggregation(self, diagnostics=None, context=None):
"""The aggregation of an ExtensionEnd is composite.
self.aggregation = AggregationKind::composite"""
raise NotImplementedError("operation aggregation(...) not yet implemented")
class CollaborationMixin(object):
"""User defined mixin class for Collaboration."""
class CommunicationPathMixin(object):
"""User defined mixin class for CommunicationPath."""
class ClassMixin(object):
"""User defined mixin class for Class."""
def passive_class(self, diagnostics=None, context=None):
"""Only an active Class may own Receptions and have a classifierBehavior.
not isActive implies (ownedReception->isEmpty() and classifierBehavior = null)"""
raise NotImplementedError("operation passive_class(...) not yet implemented")
def create_owned_operation(
self, name=None, parameterNames=None, parameterTypes=None, returnType=None
):
"""Creates an operation with the specified name, parameter names, parameter types, and return type (or null) as an owned operation of this class."""
raise NotImplementedError(
"operation create_owned_operation(...) not yet implemented"
)
def get_extensions(self):
"""Derivation for Class::/extension : Extension
result = (Extension.allInstances()->select(ext |
let endTypes : Sequence(Classifier) = ext.memberEnd->collect(type.oclAsType(Classifier)) in
endTypes->includes(self) or endTypes.allParents()->includes(self) ))
<p>From package UML::StructuredClassifiers.</p>"""
raise NotImplementedError("operation get_extensions(...) not yet implemented")
def get_super_classes(self):
"""Derivation for Class::/superClass : Class
result = (self.general()->select(oclIsKindOf(Class))->collect(oclAsType(Class))->asSet())
<p>From package UML::StructuredClassifiers.</p>"""
return self.superClass
class BehaviorMixin(object):
"""User defined mixin class for Behavior."""
@property
def most_one_behavior(self, diagnostics=None, context=None):
"""There may be at most one Behavior for a given pairing of BehavioredClassifier (as owner of the Behavior) and BehavioralFeature (as specification of the Behavior).
specification <> null implies _'context'.ownedBehavior->select(specification=self.specification)->size() = 1"""
raise NotImplementedError(
"operation most_one_behavior(...) not yet implemented"
)
def parameters_match(self, diagnostics=None, context=None):
"""If a Behavior has a specification BehavioralFeature, then it must have the same number of ownedParameters as its specification. The Behavior Parameters must also "match" the BehavioralParameter Parameters, but the exact requirements for this matching are not formalized.
specification <> null implies ownedParameter->size() = specification.ownedParameter->size()"""
raise NotImplementedError("operation parameters_match(...) not yet implemented")
def feature_of_context_classifier(self, diagnostics=None, context=None):
"""The specification BehavioralFeature must be a feature (possibly inherited) of the context BehavioredClassifier of the Behavior.
_'context'.feature->includes(specification)"""
raise NotImplementedError(
"operation feature_of_context_classifier(...) not yet implemented"
)
def get_context(self):
"""A Behavior that is directly owned as a nestedClassifier does not have a context. Otherwise, to determine the context of a Behavior, find the first BehavioredClassifier reached by following the chain of owner relationships from the Behavior, if any. If there is such a BehavioredClassifier, then it is the context, unless it is itself a Behavior with a non-empty context, in which case that is also the context for the original Behavior.
result = (if nestingClass <> null then
null
else
let b:BehavioredClassifier = self.behavioredClassifier(self.owner) in
if b.oclIsKindOf(Behavior) and b.oclAsType(Behavior)._'context' <> null then
b.oclAsType(Behavior)._'context'
else
b
endif
endif
)
<p>From package UML::CommonBehavior.</p>"""
raise NotImplementedError("operation get_context(...) not yet implemented")
def behaviored_classifier(self, from_=None):
"""The first BehavioredClassifier reached by following the chain of owner relationships from the Behavior, if any.
if from.oclIsKindOf(BehavioredClassifier) then
from.oclAsType(BehavioredClassifier)
else if from.owner = null then
null
else
self.behavioredClassifier(from.owner)
endif
endif
<p>From package UML::CommonBehavior.</p>"""
raise NotImplementedError(
"operation behaviored_classifier(...) not yet implemented"
)
def input_parameters(self):
"""The in and inout ownedParameters of the Behavior.
result = (ownedParameter->select(direction=ParameterDirectionKind::_'in' or direction=ParameterDirectionKind::inout))
<p>From package UML::CommonBehavior.</p>"""
raise NotImplementedError("operation input_parameters(...) not yet implemented")
def output_parameters(self):
"""The out, inout and return ownedParameters.
result = (ownedParameter->select(direction=ParameterDirectionKind::out or direction=ParameterDirectionKind::inout or direction=ParameterDirectionKind::return))
<p>From package UML::CommonBehavior.</p>"""
raise NotImplementedError(
"operation output_parameters(...) not yet implemented"
)
class StereotypeMixin(object):
"""User defined mixin class for Stereotype."""
@property
def binary_associations_only(self, diagnostics=None, context=None):
"""Stereotypes may only participate in binary associations.
ownedAttribute.association->forAll(memberEnd->size()=2)"""
raise NotImplementedError(
"operation binary_associations_only(...) not yet implemented"
)
def generalize(self, diagnostics=None, context=None):
"""A Stereotype may only generalize or specialize another Stereotype.
allParents()->forAll(oclIsKindOf(Stereotype))
and Classifier.allInstances()->forAll(c | c.allParents()->exists(oclIsKindOf(Stereotype)) implies c.oclIsKindOf(Stereotype))"""
raise NotImplementedError("operation generalize(...) not yet implemented")
def name_not_clash(self, diagnostics=None, context=None):
"""Stereotype names should not clash with keyword names for the extended model element."""
raise NotImplementedError("operation name_not_clash(...) not yet implemented")
def association_end_ownership(self, diagnostics=None, context=None):
"""Where a stereotype’s property is an association end for an association other than a kind of extension, and the other end is not a stereotype, the other end must be owned by the association itself.
ownedAttribute
->select(association->notEmpty() and not association.oclIsKindOf(Extension) and not type.oclIsKindOf(Stereotype))
->forAll(opposite.owner = association)"""
raise NotImplementedError(
"operation association_end_ownership(...) not yet implemented"
)
def base_property_upper_bound(self, diagnostics=None, context=None):
"""The upper bound of base-properties is exactly 1."""
raise NotImplementedError(
"operation base_property_upper_bound(...) not yet implemented"
)
def base_property_multiplicity_single_extension(
self, diagnostics=None, context=None
):
"""If a Stereotype extends only one metaclass, the multiplicity of the corresponding base-property shall be 1..1."""
raise NotImplementedError(
"operation base_property_multiplicity_single_extension(...) not yet implemented"
)
def base_property_multiplicity_multiple_extension(
self, diagnostics=None, context=None
):
"""If a Stereotype extends more than one metaclass, the multiplicity of the corresponding base-properties shall be [0..1]. At any point in time, only one of these base-properties can contain a metaclass instance during runtime."""
raise NotImplementedError(
"operation base_property_multiplicity_multiple_extension(...) not yet implemented"
)
def create_extension(self, metaclass=None, isRequired=None):
"""Creates a(n) (required) extension of the specified metaclass with this stereotype."""
raise NotImplementedError("operation create_extension(...) not yet implemented")
def create_icon(self, location=None):
"""Creates an icon with the specified location for this stereotype."""
raise NotImplementedError("operation create_icon(...) not yet implemented")
def create_icon(self, format=None, content=None):
"""Creates an icon with the specified format and content for this stereotype."""
raise NotImplementedError("operation create_icon(...) not yet implemented")
def get_all_extended_metaclasses(self):
"""Retrieves all the metaclasses extended by this stereotype, including the metaclasses extended by its superstereotypes."""
raise NotImplementedError(
"operation get_all_extended_metaclasses(...) not yet implemented"
)
def get_definition(self):
"""Retrieves the current definition (Ecore representation) of this stereotype."""
raise NotImplementedError("operation get_definition(...) not yet implemented")
def get_extended_metaclasses(self):
"""Retrieves the metaclasses extended by this stereotype."""
raise NotImplementedError(
"operation get_extended_metaclasses(...) not yet implemented"
)
def get_keyword(self):
"""Retrieves the localized keyword for this stereotype."""
raise NotImplementedError("operation get_keyword(...) not yet implemented")
def get_keyword(self, localize=None):
"""Retrieves the keyword for this stereotype, localized if indicated."""
raise NotImplementedError("operation get_keyword(...) not yet implemented")
def containing_profile(self):
"""The query containingProfile returns the closest profile directly or indirectly containing this stereotype.
result = (self.namespace.oclAsType(Package).containingProfile())
<p>From package UML::Packages.</p>"""
raise NotImplementedError(
"operation containing_profile(...) not yet implemented"
)
def get_profile(self):
"""A stereotype must be contained, directly or indirectly, in a profile.
result = (self.containingProfile())
<p>From package UML::Packages.</p>"""
raise NotImplementedError("operation get_profile(...) not yet implemented")
class ComponentMixin(object):
"""User defined mixin class for Component."""
def no_nested_classifiers(self, diagnostics=None, context=None):
"""A Component cannot nest Classifiers.
nestedClassifier->isEmpty()"""
raise NotImplementedError(
"operation no_nested_classifiers(...) not yet implemented"
)
def no_packaged_elements(self, diagnostics=None, context=None):
"""A Component nested in a Class cannot have any packaged elements.
nestingClass <> null implies packagedElement->isEmpty()"""
raise NotImplementedError(
"operation no_packaged_elements(...) not yet implemented"
)
def create_owned_class(self, name=None, isAbstract=None):
"""Creates a(n) (abstract) class with the specified name as a packaged element of this component."""
raise NotImplementedError(
"operation create_owned_class(...) not yet implemented"
)
def create_owned_enumeration(self, name=None):
"""Creates a enumeration with the specified name as a packaged element of this component."""
raise NotImplementedError(
"operation create_owned_enumeration(...) not yet implemented"
)
def create_owned_interface(self, name=None):
"""Creates an interface with the specified name as a packaged element of this component."""
raise NotImplementedError(
"operation create_owned_interface(...) not yet implemented"
)
def create_owned_primitive_type(self, name=None):
"""Creates a primitive type with the specified name as a packaged element of this component."""
raise NotImplementedError(
"operation create_owned_primitive_type(...) not yet implemented"
)
def get_provideds(self):
"""Derivation for Component::/provided
result = (let ris : Set(Interface) = allRealizedInterfaces(),
realizingClassifiers : Set(Classifier) = self.realization.realizingClassifier->union(self.allParents()->collect(realization.realizingClassifier))->asSet(),
allRealizingClassifiers : Set(Classifier) = realizingClassifiers->union(realizingClassifiers.allParents())->asSet(),
realizingClassifierInterfaces : Set(Interface) = allRealizingClassifiers->iterate(c; rci : Set(Interface) = Set{} | rci->union(c.allRealizedInterfaces())),
ports : Set(Port) = self.ownedPort->union(allParents()->collect(ownedPort))->asSet(),
providedByPorts : Set(Interface) = ports.provided->asSet()
in ris->union(realizingClassifierInterfaces) ->union(providedByPorts)->asSet())
<p>From package UML::StructuredClassifiers.</p>"""
raise NotImplementedError("operation get_provideds(...) not yet implemented")
def get_requireds(self):
"""Derivation for Component::/required
result = (let uis : Set(Interface) = allUsedInterfaces(),
realizingClassifiers : Set(Classifier) = self.realization.realizingClassifier->union(self.allParents()->collect(realization.realizingClassifier))->asSet(),
allRealizingClassifiers : Set(Classifier) = realizingClassifiers->union(realizingClassifiers.allParents())->asSet(),
realizingClassifierInterfaces : Set(Interface) = allRealizingClassifiers->iterate(c; rci : Set(Interface) = Set{} | rci->union(c.allUsedInterfaces())),
ports : Set(Port) = self.ownedPort->union(allParents()->collect(ownedPort))->asSet(),
usedByPorts : Set(Interface) = ports.required->asSet()
in uis->union(realizingClassifierInterfaces)->union(usedByPorts)->asSet()
)
<p>From package UML::StructuredClassifiers.</p>"""
raise NotImplementedError("operation get_requireds(...) not yet implemented")
class ActivityMixin(object):
"""User defined mixin class for Activity."""
def maximum_one_parameter_node(self, diagnostics=None, context=None):
"""A Parameter with direction other than inout must have exactly one ActivityParameterNode in an Activity.
ownedParameter->forAll(p |
p.direction <> ParameterDirectionKind::inout implies node->select(
oclIsKindOf(ActivityParameterNode) and oclAsType(ActivityParameterNode).parameter = p)->size()= 1)"""
raise NotImplementedError(
"operation maximum_one_parameter_node(...) not yet implemented"
)
def maximum_two_parameter_nodes(self, diagnostics=None, context=None):
"""A Parameter with direction inout must have exactly two ActivityParameterNodes in an Activity, at most one with incoming ActivityEdges and at most one with outgoing ActivityEdges.
ownedParameter->forAll(p |
p.direction = ParameterDirectionKind::inout implies
let associatedNodes : Set(ActivityNode) = node->select(
oclIsKindOf(ActivityParameterNode) and oclAsType(ActivityParameterNode).parameter = p) in
associatedNodes->size()=2 and
associatedNodes->select(incoming->notEmpty())->size()<=1 and
associatedNodes->select(outgoing->notEmpty())->size()<=1
)"""
raise NotImplementedError(
"operation maximum_two_parameter_nodes(...) not yet implemented"
)
class StateMachineMixin(object):
"""User defined mixin class for StateMachine."""
def connection_points(self, diagnostics=None, context=None):
"""The connection points of a StateMachine are Pseudostates of kind entry point or exit point.
connectionPoint->forAll (kind = PseudostateKind::entryPoint or kind = PseudostateKind::exitPoint)"""
raise NotImplementedError(
"operation connection_points(...) not yet implemented"
)
def classifier_context(self, diagnostics=None, context=None):
"""The Classifier context of a StateMachine cannot be an Interface.
_'context' <> null implies not _'context'.oclIsKindOf(Interface)"""
raise NotImplementedError(
"operation classifier_context(...) not yet implemented"
)
def method(self, diagnostics=None, context=None):
"""A StateMachine as the method for a BehavioralFeature cannot have entry/exit connection points.
specification <> null implies connectionPoint->isEmpty()"""
raise NotImplementedError("operation method(...) not yet implemented")
def context_classifier(self, diagnostics=None, context=None):
"""The context Classifier of the method StateMachine of a BehavioralFeature must be the Classifier that owns the BehavioralFeature.
specification <> null implies ( _'context' <> null and specification.featuringClassifier->exists(c | c = _'context'))"""
raise NotImplementedError(
"operation context_classifier(...) not yet implemented"
)
def lca(self, s1=None, s2=None):
"""The operation LCA(s1,s2) returns the Region that is the least common
ancestor of Vertices s1 and s2, based on the StateMachine containment hierarchy.
result = (if ancestor(s1, s2) then
s2.container
else
if ancestor(s2, s1) then
s1.container
else
LCA(s1.container.state, s2.container.state)
endif
endif)
<p>From package UML::StateMachines.</p>"""
raise NotImplementedError("operation lca(...) not yet implemented")
def ancestor(self, s1=None, s2=None):
"""The query ancestor(s1, s2) checks whether Vertex s2 is an ancestor of Vertex s1.
result = (if (s2 = s1) then
true
else
if s1.container.stateMachine->notEmpty() then
true
else
if s2.container.stateMachine->notEmpty() then
false
else
ancestor(s1, s2.container.state)
endif
endif
endif )
<p>From package UML::StateMachines.</p>"""
raise NotImplementedError("operation ancestor(...) not yet implemented")
def lca_state(self, v1=None, v2=None):
"""This utility funciton is like the LCA, except that it returns the nearest composite State that contains both input Vertices.
result = (if v2.oclIsTypeOf(State) and ancestor(v1, v2) then
v2.oclAsType(State)
else if v1.oclIsTypeOf(State) and ancestor(v2, v1) then
v1.oclAsType(State)
else if (v1.container.state->isEmpty() or v2.container.state->isEmpty()) then
null.oclAsType(State)
else LCAState(v1.container.state, v2.container.state)
endif endif endif)
<p>From package UML::StateMachines.</p>"""
raise NotImplementedError("operation lca_state(...) not yet implemented")
class OpaqueBehaviorMixin(object):
"""User defined mixin class for OpaqueBehavior."""
class NodeMixin(object):
"""User defined mixin class for Node."""
def internal_structure(self, diagnostics=None, context=None):
"""The internal structure of a Node (if defined) consists solely of parts of type Node.
part->forAll(oclIsKindOf(Node))"""
raise NotImplementedError(
"operation internal_structure(...) not yet implemented"
)
def create_communication_path(
self,
end1IsNavigable=None,
end1Aggregation=None,
end1Name=None,
end1Lower=None,
end1Upper=None,
end1Node=None,
end2IsNavigable=None,
end2Aggregation=None,
end2Name=None,
end2Lower=None,
end2Upper=None,
):
"""Creates a (binary) communication path between this node and the specified
other node, with the specified navigabilities, aggregations, names,
lower bounds, and upper bounds, and owned by this node's nearest package."""
raise NotImplementedError(
"operation create_communication_path(...) not yet implemented"
)
def get_communication_paths(self):
"""Retrieves the communication paths in which this node is involved."""
raise NotImplementedError(
"operation get_communication_paths(...) not yet implemented"
)
class ProtocolStateMachineMixin(object):
"""User defined mixin class for ProtocolStateMachine."""
def deep_or_shallow_history(self, diagnostics=None, context=None):
"""ProtocolStateMachines cannot have deep or shallow history Pseudostates.
region->forAll (r | r.subvertex->forAll (v | v.oclIsKindOf(Pseudostate) implies
((v.oclAsType(Pseudostate).kind <> PseudostateKind::deepHistory) and (v.oclAsType(Pseudostate).kind <> PseudostateKind::shallowHistory))))"""
raise NotImplementedError(
"operation deep_or_shallow_history(...) not yet implemented"
)
def entry_exit_do(self, diagnostics=None, context=None):
"""The states of a ProtocolStateMachine cannot have entry, exit, or do activity Behaviors.
region->forAll(r | r.subvertex->forAll(v | v.oclIsKindOf(State) implies
(v.oclAsType(State).entry->isEmpty() and v.oclAsType(State).exit->isEmpty() and v.oclAsType(State).doActivity->isEmpty())))"""
raise NotImplementedError("operation entry_exit_do(...) not yet implemented")
def protocol_transitions(self, diagnostics=None, context=None):
"""All Transitions of a ProtocolStateMachine must be ProtocolTransitions.
region->forAll(r | r.transition->forAll(t | t.oclIsTypeOf(ProtocolTransition)))"""
raise NotImplementedError(
"operation protocol_transitions(...) not yet implemented"
)
class FunctionBehaviorMixin(object):
"""User defined mixin class for FunctionBehavior."""
def one_output_parameter(self, diagnostics=None, context=None):
"""A FunctionBehavior has at least one output Parameter.
self.ownedParameter->
select(p | p.direction = ParameterDirectionKind::out or p.direction= ParameterDirectionKind::inout or p.direction= ParameterDirectionKind::return)->size() >= 1"""
raise NotImplementedError(
"operation one_output_parameter(...) not yet implemented"
)
def types_of_parameters(self, diagnostics=None, context=None):
"""The types of the ownedParameters are all DataTypes, which may not nest anything but other DataTypes.
ownedParameter->forAll(p | p.type <> null and
p.type.oclIsTypeOf(DataType) and hasAllDataTypeAttributes(p.type.oclAsType(DataType)))"""
raise NotImplementedError(
"operation types_of_parameters(...) not yet implemented"
)
def has_all_data_type_attributes(self, d=None):
"""The hasAllDataTypeAttributes query tests whether the types of the attributes of the given DataType are all DataTypes, and similarly for all those DataTypes.
result = (d.ownedAttribute->forAll(a |
a.type.oclIsKindOf(DataType) and
hasAllDataTypeAttributes(a.type.oclAsType(DataType))))
<p>From package UML::CommonBehavior.</p>"""
raise NotImplementedError(
"operation has_all_data_type_attributes(...) not yet implemented"
)
class DeviceMixin(object):
"""User defined mixin class for Device."""
class ExecutionEnvironmentMixin(object):
"""User defined mixin class for ExecutionEnvironment."""
class InteractionMixin(object):
"""User defined mixin class for Interaction."""
def not_contained(self, diagnostics=None, context=None):
"""An Interaction instance must not be contained within another Interaction instance.
enclosingInteraction->isEmpty()"""
raise NotImplementedError("operation not_contained(...) not yet implemented")
class AssociationClassMixin(object):
"""User defined mixin class for AssociationClass."""
def cannot_be_defined(self, diagnostics=None, context=None):
"""An AssociationClass cannot be defined between itself and something else.
self.endType()->excludes(self) and self.endType()->collect(et|et.oclAsType(Classifier).allParents())->flatten()->excludes(self)"""
raise NotImplementedError(
"operation cannot_be_defined(...) not yet implemented"
)
def disjoint_attributes_ends(self, diagnostics=None, context=None):
"""The owned attributes and owned ends of an AssociationClass are disjoint.
ownedAttribute->intersection(ownedEnd)->isEmpty()"""
raise NotImplementedError(
"operation disjoint_attributes_ends(...) not yet implemented"
)
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
37811,
35608,
1040,
284,
307,
9177,
416,
2836,
526,
15931,
198,
198,
11748,
12972,
721,
382,
13,
721,
382,
355,
304,
7295,
198,
6738,
12972,
721,
382,
13,
721,
382,
1330,
8392,
263,
1572,
36307,
198,
6738,
12972,
721,
382,
13,
8367,
34924,
1330,
412,
7295,
18274,
4487,
11,
7772,
11395,
12331,
198,
6738,
12972,
721,
382,
13,
5083,
26791,
1330,
9514,
628,
198,
198,
4871,
24641,
19746,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
24641,
19746,
526,
15931,
628,
198,
198,
4871,
11703,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
11703,
526,
15931,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
825,
468,
62,
18403,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
36,
3639,
326,
1276,
307,
6898,
1276,
423,
281,
4870,
13,
198,
220,
220,
220,
1276,
3856,
23858,
276,
3419,
15565,
4870,
3784,
1662,
40613,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
18403,
318,
407,
6045,
628,
220,
220,
220,
825,
407,
62,
593,
62,
944,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2025,
5002,
743,
407,
3264,
393,
20762,
898,
2346,
13,
198,
220,
220,
220,
407,
477,
23858,
276,
36,
3639,
3419,
3784,
42813,
7,
944,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
407,
287,
2116,
13,
439,
62,
11990,
62,
68,
3639,
3419,
628,
220,
220,
220,
825,
751,
62,
2539,
4775,
7,
944,
11,
21179,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
46245,
262,
7368,
21179,
284,
428,
5002,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
751,
62,
2539,
4775,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
4174,
62,
301,
567,
8690,
7,
944,
11,
31240,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
4677,
13508,
262,
7368,
31240,
284,
428,
5002,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
422,
764,
13317,
62,
26791,
1330,
651,
62,
46758,
62,
35790,
62,
15699,
278,
628,
220,
220,
220,
220,
220,
220,
220,
308,
49007,
796,
651,
62,
46758,
62,
35790,
62,
15699,
278,
198,
220,
220,
220,
220,
220,
220,
220,
6770,
11,
2779,
62,
35790,
796,
308,
49007,
7,
301,
567,
8690,
11,
2116,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
6770,
318,
6045,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
198,
220,
220,
220,
220,
220,
220,
220,
3586,
796,
6770,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
900,
35226,
7,
31438,
11,
2779,
62,
35790,
13,
3672,
11,
2116,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
68,
26198,
13,
33295,
7,
31438,
8,
628,
220,
220,
220,
825,
2251,
62,
36,
2025,
38983,
7,
944,
11,
2723,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
16719,
274,
281,
23025,
351,
262,
7368,
2723,
290,
428,
5002,
198,
220,
220,
220,
220,
220,
220,
220,
355,
663,
2746,
5002,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
23025,
796,
304,
7295,
13,
36,
2025,
38983,
7,
10459,
28,
10459,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
68,
2025,
30078,
13,
33295,
7,
1236,
14221,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
23025,
628,
220,
220,
220,
825,
4117,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
24159,
305,
893,
428,
5002,
416,
10829,
477,
3272,
10288,
284,
14,
6738,
340,
290,
198,
220,
220,
220,
220,
220,
220,
220,
10829,
340,
422,
663,
7268,
8271,
393,
2134,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
33678,
3419,
628,
220,
220,
220,
825,
651,
62,
2539,
10879,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
26286,
329,
428,
5002,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
2539,
10879,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
651,
62,
1324,
677,
540,
62,
301,
567,
8690,
7,
944,
11,
10617,
5376,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
31240,
351,
262,
7368,
10617,
1438,
326,
318,
198,
220,
220,
220,
220,
220,
220,
220,
9723,
284,
428,
5002,
11,
393,
9242,
611,
645,
884,
31240,
318,
9723,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
1324,
677,
540,
62,
301,
567,
8690,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
1324,
677,
540,
62,
301,
567,
13567,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
22364,
326,
389,
9723,
284,
428,
5002,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1390,
883,
326,
389,
2672,
290,
14,
273,
743,
1541,
307,
5625,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
1324,
677,
540,
62,
301,
567,
13567,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
1324,
18511,
62,
301,
567,
8690,
7,
944,
11,
10617,
5376,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
31240,
351,
262,
7368,
10617,
1438,
326,
318,
198,
220,
220,
220,
220,
220,
220,
220,
5625,
284,
428,
5002,
11,
393,
9242,
611,
645,
884,
31240,
318,
220,
5625,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
422,
764,
13317,
62,
26791,
1330,
651,
62,
301,
567,
8690,
62,
6738,
62,
31438,
628,
220,
220,
220,
220,
220,
220,
220,
329,
267,
11,
374,
287,
2116,
13557,
259,
4399,
62,
2411,
82,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
374,
13,
3672,
13,
9688,
2032,
342,
7203,
8692,
62,
1,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31240,
796,
651,
62,
301,
567,
8690,
62,
6738,
62,
31438,
7,
78,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
351,
9514,
7,
16922,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
31240,
13,
22557,
5376,
6624,
10617,
5376,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
31240,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
6045,
628,
220,
220,
220,
825,
651,
62,
1324,
18511,
62,
301,
567,
13567,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
22364,
326,
389,
5625,
284,
428,
5002,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
422,
764,
13317,
62,
26791,
1330,
651,
62,
301,
567,
8690,
62,
6738,
62,
31438,
628,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
900,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
329,
267,
11,
374,
287,
2116,
13557,
259,
4399,
62,
2411,
82,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
374,
13,
3672,
13,
9688,
2032,
342,
7203,
8692,
62,
1,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31240,
796,
651,
62,
301,
567,
8690,
62,
6738,
62,
31438,
7,
78,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
31240,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1255,
13,
2860,
7,
301,
567,
8690,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
46545,
7,
20274,
8,
628,
220,
220,
220,
825,
651,
62,
1324,
18511,
62,
7266,
301,
567,
8690,
7,
944,
11,
31240,
28,
14202,
11,
10617,
5376,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
3293,
567,
8690,
286,
262,
7368,
31240,
351,
262,
198,
220,
220,
220,
220,
220,
220,
220,
7368,
10617,
1438,
326,
318,
5625,
284,
428,
5002,
11,
393,
9242,
611,
198,
220,
220,
220,
220,
220,
220,
220,
645,
884,
31240,
318,
5625,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
1324,
18511,
62,
7266,
301,
567,
8690,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
1324,
18511,
62,
7266,
301,
567,
13567,
7,
944,
11,
31240,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
3293,
567,
13567,
286,
262,
7368,
31240,
326,
389,
198,
220,
220,
220,
220,
220,
220,
220,
5625,
284,
428,
5002,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
1324,
18511,
62,
7266,
301,
567,
13567,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
19849,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
2746,
326,
12216,
357,
31336,
3264,
393,
20762,
8,
428,
198,
220,
220,
220,
220,
220,
220,
220,
5002,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
422,
764,
388,
75,
1330,
9104,
628,
220,
220,
220,
220,
220,
220,
220,
2560,
796,
2116,
13,
68,
29869,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
981,
2560,
318,
407,
6045,
290,
407,
318,
39098,
7,
8000,
11,
9104,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2560,
796,
2560,
13,
68,
29869,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2560,
628,
220,
220,
220,
825,
651,
62,
710,
12423,
62,
26495,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
16936,
5301,
326,
12216,
357,
31336,
3264,
393,
20762,
8,
198,
220,
220,
220,
220,
220,
220,
220,
428,
5002,
11,
393,
262,
5002,
2346,
357,
361,
340,
318,
257,
5301,
21387,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
422,
764,
388,
75,
1330,
15717,
628,
220,
220,
220,
220,
220,
220,
220,
2560,
796,
2116,
13,
68,
29869,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
981,
2560,
318,
407,
6045,
290,
407,
318,
39098,
7,
8000,
11,
15717,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2560,
796,
2560,
13,
68,
29869,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2560,
628,
220,
220,
220,
825,
651,
62,
39468,
5748,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
6958,
287,
543,
428,
5002,
318,
2950,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
39468,
5748,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
39468,
5748,
7,
944,
11,
304,
9487,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
6958,
286,
262,
7368,
2099,
287,
543,
428,
5002,
198,
220,
220,
220,
220,
220,
220,
220,
318,
2950,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
39468,
5748,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
35827,
62,
301,
567,
8690,
7,
944,
11,
10617,
5376,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
31240,
351,
262,
7368,
10617,
1438,
326,
318,
198,
220,
220,
220,
220,
220,
220,
220,
2672,
329,
428,
5002,
11,
393,
9242,
611,
645,
884,
31240,
318,
2672,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
35827,
62,
301,
567,
8690,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
35827,
62,
301,
567,
13567,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
22364,
326,
389,
2672,
329,
428,
5002,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
35827,
62,
301,
567,
13567,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
10459,
62,
34762,
62,
39468,
5748,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
7924,
6958,
329,
543,
428,
5002,
318,
257,
2723,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
10459,
62,
34762,
62,
39468,
5748,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
10459,
62,
34762,
62,
39468,
5748,
7,
944,
11,
304,
9487,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
7924,
6958,
286,
262,
7368,
2099,
329,
543,
198,
220,
220,
220,
220,
220,
220,
220,
428,
5002,
318,
257,
2723,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
10459,
62,
34762,
62,
39468,
5748,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
301,
567,
8690,
62,
31438,
7,
944,
11,
31240,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
3586,
286,
262,
7368,
31240,
329,
428,
5002,
11,
198,
220,
220,
220,
220,
220,
220,
220,
393,
9242,
611,
645,
884,
31240,
3586,
7160,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
301,
567,
8690,
62,
31438,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
301,
567,
8690,
62,
1324,
677,
602,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
31240,
5479,
329,
428,
5002,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
422,
764,
13317,
62,
26791,
1330,
651,
62,
301,
567,
8690,
62,
6738,
62,
31438,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
46545,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
267,
11,
374,
287,
2116,
13557,
259,
4399,
62,
2411,
82,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
374,
13,
3672,
13,
9688,
2032,
342,
7203,
8692,
62,
4943,
290,
651,
62,
301,
567,
8690,
62,
6738,
62,
31438,
7,
78,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
16793,
62,
34762,
62,
39468,
5748,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
7924,
6958,
329,
543,
428,
5002,
318,
257,
2496,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
16793,
62,
34762,
62,
39468,
5748,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
16793,
62,
34762,
62,
39468,
5748,
7,
944,
11,
304,
9487,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
7924,
6958,
286,
262,
7368,
2099,
329,
543,
198,
220,
220,
220,
220,
220,
220,
220,
428,
5002,
318,
257,
2496,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
16793,
62,
34762,
62,
39468,
5748,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
8367,
7,
944,
11,
31240,
28,
14202,
11,
3119,
5376,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
1988,
286,
262,
3119,
351,
262,
7368,
1438,
287,
262,
198,
220,
220,
220,
220,
220,
220,
220,
7368,
31240,
329,
428,
5002,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
8367,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
468,
62,
2539,
4775,
7,
944,
11,
21179,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
35,
13221,
274,
1771,
428,
5002,
468,
262,
7368,
21179,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
468,
62,
2539,
4775,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
468,
62,
8367,
7,
944,
11,
31240,
28,
14202,
11,
3119,
5376,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
35,
13221,
274,
1771,
428,
5002,
468,
257,
357,
13159,
12,
12286,
8,
1988,
329,
262,
198,
220,
220,
220,
220,
220,
220,
220,
3119,
351,
262,
7368,
1438,
287,
262,
7368,
31240,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
468,
62,
8367,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
318,
62,
301,
567,
8690,
62,
1324,
677,
540,
7,
944,
11,
31240,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
35,
13221,
274,
1771,
262,
7368,
31240,
318,
9723,
284,
428,
5002,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
318,
62,
301,
567,
8690,
62,
1324,
677,
540,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
318,
62,
301,
567,
8690,
62,
1324,
18511,
7,
944,
11,
31240,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
35,
13221,
274,
1771,
262,
7368,
31240,
318,
5625,
284,
428,
5002,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
31240,
796,
2116,
13,
1136,
62,
1324,
18511,
62,
301,
567,
8690,
7,
301,
567,
8690,
13,
22557,
5376,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
31240,
318,
407,
6045,
628,
220,
220,
220,
825,
318,
62,
301,
567,
8690,
62,
35827,
7,
944,
11,
31240,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
35,
13221,
274,
1771,
262,
7368,
31240,
318,
2672,
329,
428,
5002,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
318,
62,
301,
567,
8690,
62,
35827,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
4781,
62,
2539,
4775,
7,
944,
11,
21179,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
8413,
5241,
262,
7368,
21179,
422,
428,
5002,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
4781,
62,
2539,
4775,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
900,
62,
8367,
7,
944,
11,
31240,
28,
14202,
11,
3119,
5376,
28,
14202,
11,
649,
11395,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
50,
1039,
262,
1988,
286,
262,
3119,
351,
262,
7368,
1438,
287,
262,
7368,
198,
220,
220,
220,
220,
220,
220,
220,
31240,
329,
428,
5002,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
900,
62,
8367,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
555,
39014,
62,
301,
567,
8690,
7,
944,
11,
31240,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
3118,
1324,
13508,
262,
7368,
31240,
422,
428,
5002,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
555,
39014,
62,
301,
567,
8690,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
477,
62,
11990,
62,
68,
3639,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
477,
23858,
276,
36,
3639,
3419,
3607,
477,
286,
262,
1277,
290,
12913,
198,
220,
220,
220,
220,
220,
220,
220,
6898,
36,
3639,
286,
281,
11703,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
357,
11990,
20180,
3784,
24592,
7,
11990,
20180,
3784,
33327,
7,
198,
220,
220,
220,
220,
220,
220,
220,
304,
930,
304,
13,
439,
23858,
276,
36,
3639,
3419,
4008,
3784,
292,
7248,
28955,
198,
220,
220,
220,
220,
220,
220,
220,
1279,
79,
29,
4863,
5301,
471,
5805,
3712,
17227,
1273,
5620,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
68,
3237,
15842,
3419,
628,
220,
220,
220,
825,
1276,
62,
1350,
62,
11990,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
383,
12405,
1276,
3856,
23858,
276,
3419,
9217,
1771,
26632,
286,
428,
2099,
1276,
423,
198,
220,
220,
220,
220,
220,
220,
220,
281,
4870,
13,
3834,
37724,
286,
11703,
326,
466,
407,
2421,
281,
4870,
1276,
20957,
198,
220,
220,
220,
220,
220,
220,
220,
428,
4905,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
357,
7942,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1279,
79,
29,
4863,
5301,
471,
5805,
3712,
17227,
1273,
5620,
25970,
79,
29,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
6407,
628,
198,
198,
4871,
34441,
20180,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
34441,
20180,
526,
15931,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
825,
20742,
62,
50032,
62,
15605,
1056,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1002,
257,
34441,
20180,
318,
6898,
416,
1223,
584,
621,
257,
28531,
10223,
11,
198,
220,
220,
220,
220,
220,
220,
220,
340,
857,
407,
423,
257,
20742,
13,
1881,
326,
318,
407,
6898,
416,
1997,
198,
220,
220,
220,
220,
220,
220,
220,
357,
392,
12891,
1276,
307,
257,
15717,
11,
355,
428,
318,
262,
691,
1611,
286,
198,
220,
220,
220,
220,
220,
220,
220,
34441,
20180,
326,
23170,
1460,
1276,
3856,
23858,
276,
28955,
743,
423,
257,
20742,
13,
198,
220,
220,
220,
220,
220,
220,
220,
357,
14933,
10223,
796,
9242,
290,
4870,
1279,
29,
9242,
8,
15565,
20742,
796,
9242,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
20742,
62,
50032,
62,
15605,
1056,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
468,
62,
22557,
62,
3672,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2215,
612,
318,
257,
1438,
11,
290,
477,
286,
262,
7268,
28531,
43076,
423,
257,
1438,
11,
198,
220,
220,
220,
220,
220,
220,
220,
262,
10617,
5376,
318,
12006,
422,
262,
1438,
286,
262,
34441,
20180,
290,
262,
198,
220,
220,
220,
220,
220,
220,
220,
3891,
286,
262,
7268,
28531,
43076,
13,
198,
7,
3672,
1279,
29,
9242,
290,
477,
36690,
43076,
3419,
3784,
19738,
7,
5907,
930,
36545,
13,
3672,
796,
9242,
8,
3784,
271,
40613,
28955,
15565,
198,
220,
10617,
5376,
796,
477,
36690,
43076,
3419,
3784,
2676,
378,
7,
36545,
1058,
28531,
10223,
26,
4194,
25,
10903,
796,
198,
220,
1438,
930,
36545,
13,
3672,
13,
1102,
9246,
7,
944,
13,
25512,
1352,
3419,
737,
1102,
9246,
7,
9460,
4008,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
468,
62,
22557,
62,
3672,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
468,
62,
3919,
62,
22557,
62,
3672,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
612,
318,
645,
1438,
11,
393,
530,
286,
262,
7268,
28531,
43076,
468,
645,
1438,
11,
198,
220,
220,
220,
220,
220,
220,
220,
612,
318,
645,
10617,
5376,
13,
198,
3672,
28,
8423,
393,
477,
36690,
43076,
3419,
3784,
19738,
7,
36545,
930,
36545,
13,
3672,
28,
8423,
1267,
3784,
1662,
40613,
3419,
15565,
198,
22557,
5376,
796,
9242,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
468,
62,
3919,
62,
22557,
62,
3672,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2251,
62,
45841,
1387,
7,
944,
11,
22693,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
16719,
274,
257,
20203,
1022,
428,
3706,
5002,
290,
262,
7368,
198,
220,
220,
220,
220,
220,
220,
220,
22693,
11,
6898,
416,
428,
3706,
5002,
338,
16936,
5301,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2251,
62,
45841,
1387,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2251,
62,
26060,
7,
944,
11,
22693,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
16719,
274,
257,
8748,
1022,
428,
3706,
5002,
290,
262,
7368,
22693,
11,
198,
220,
220,
220,
220,
220,
220,
220,
6898,
416,
428,
3706,
5002,
338,
16936,
5301,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
2251,
62,
26060,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
651,
62,
18242,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
257,
36618,
6167,
329,
428,
3706,
5002,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
18242,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
651,
62,
18242,
7,
944,
11,
1957,
1096,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
257,
6167,
329,
428,
3706,
5002,
11,
36618,
611,
8203,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
18242,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
477,
62,
14933,
43076,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
477,
36690,
43076,
3419,
3607,
262,
8379,
286,
28531,
43076,
287,
543,
262,
198,
220,
220,
220,
220,
220,
220,
220,
34441,
20180,
318,
28376,
11,
1762,
503,
2017,
13,
198,
20274,
796,
357,
198,
361,
4870,
796,
9242,
198,
220,
788,
14230,
1068,
7248,
90,
92,
198,
17772,
198,
220,
1309,
13507,
2752,
36690,
10223,
1058,
28531,
10223,
796,
198,
220,
220,
220,
611,
4870,
13,
38679,
3792,
35854,
5189,
7,
30800,
36301,
8,
290,
4870,
13,
38679,
1722,
6030,
7,
198,
220,
220,
220,
37350,
36301,
737,
12683,
1300,
13,
28243,
13,
38679,
3792,
35854,
5189,
7,
36690,
10223,
8,
198,
220,
220,
220,
220,
220,
788,
4870,
13,
38679,
1722,
6030,
7,
30800,
36301,
737,
12683,
1300,
13,
28243,
13,
38679,
1722,
6030,
7,
36690,
10223,
8,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
25745,
198,
220,
220,
220,
45762,
198,
220,
287,
13507,
2752,
36690,
10223,
13,
439,
36690,
43076,
3419,
3784,
3866,
37038,
7,
268,
565,
2752,
36690,
10223,
8,
198,
32088,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
17227,
1273,
5620,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
477,
62,
14933,
43076,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
477,
62,
593,
278,
62,
43789,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
477,
23858,
278,
11869,
1095,
3419,
5860,
262,
900,
286,
477,
262,
13507,
2752,
198,
220,
220,
220,
220,
220,
220,
220,
28531,
43076,
286,
428,
34441,
20180,
11,
1762,
503,
2017,
11,
326,
389,
6400,
1095,
11,
198,
220,
220,
220,
220,
220,
220,
220,
510,
284,
475,
407,
1390,
262,
717,
884,
28531,
10223,
326,
318,
407,
257,
15717,
13,
198,
20274,
796,
357,
361,
25745,
13,
38679,
3792,
35854,
5189,
7,
27813,
8,
198,
8524,
198,
220,
1309,
23107,
27813,
1058,
15717,
796,
25745,
13,
38679,
1722,
6030,
7,
27813,
8,
287,
198,
220,
220,
220,
23107,
27813,
3784,
24592,
7,
593,
278,
27813,
13,
439,
23858,
278,
11869,
1095,
28955,
198,
17772,
198,
220,
9242,
198,
32088,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
17227,
1273,
5620,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
477,
62,
593,
278,
62,
43789,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
318,
62,
17080,
41726,
62,
6738,
7,
944,
11,
299,
28,
14202,
11,
36545,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
318,
20344,
41726,
4863,
3419,
15947,
1771,
734,
34441,
36,
3639,
198,
220,
220,
220,
220,
220,
220,
220,
743,
34193,
763,
12,
38476,
1626,
257,
28531,
10223,
13,
2750,
4277,
11,
734,
3706,
4847,
198,
220,
220,
220,
220,
220,
220,
220,
389,
15714,
540,
611,
357,
64,
8,
484,
423,
3858,
6159,
286,
543,
318,
257,
1611,
286,
198,
220,
220,
220,
220,
220,
220,
220,
262,
584,
393,
357,
65,
8,
484,
423,
1180,
3891,
13,
198,
20274,
796,
14808,
944,
13,
38679,
3792,
35854,
5189,
7,
77,
13,
38679,
6030,
28955,
393,
299,
13,
38679,
3792,
35854,
5189,
7,
944,
13,
38679,
6030,
3419,
4008,
15565,
198,
220,
220,
220,
36545,
13,
1136,
36690,
5189,
27608,
7,
944,
8,
3784,
3849,
5458,
7,
5907,
13,
1136,
36690,
5189,
27608,
7,
77,
4008,
3784,
271,
40613,
3419,
198,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
17227,
1273,
5620,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
318,
62,
17080,
41726,
62,
6738,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
22557,
62,
3672,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2215,
257,
34441,
20180,
468,
257,
1438,
11,
290,
477,
286,
663,
7268,
28531,
43076,
198,
220,
220,
220,
220,
220,
220,
220,
423,
257,
1438,
11,
262,
10617,
5376,
318,
12006,
422,
262,
1438,
286,
262,
198,
220,
220,
220,
220,
220,
220,
220,
34441,
20180,
290,
262,
3891,
286,
262,
7268,
28531,
43076,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
357,
361,
2116,
13,
3672,
1279,
29,
9242,
290,
2116,
13,
439,
36690,
43076,
3419,
3784,
19738,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
36545,
930,
36545,
13,
3672,
28,
8423,
1267,
3784,
271,
40613,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
788,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
439,
36690,
43076,
3419,
3784,
2676,
378,
7,
36545,
1058,
28531,
10223,
26,
4194,
25,
10903,
796,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
3672,
930,
36545,
13,
3672,
13,
1102,
9246,
7,
944,
13,
25512,
1352,
3419,
737,
1102,
9246,
7,
9460,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9242,
198,
220,
220,
220,
220,
220,
220,
220,
45762,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1279,
79,
29,
4863,
5301,
471,
5805,
3712,
17227,
1273,
5620,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
22557,
62,
3672,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2880,
1352,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
2880,
1352,
3419,
3607,
262,
4731,
326,
318,
973,
284,
4553,
3891,
198,
220,
220,
220,
220,
220,
220,
220,
618,
30580,
257,
10617,
5376,
13,
198,
20274,
796,
19203,
3712,
11537,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
17227,
1273,
5620,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
366,
3712,
1,
628,
220,
220,
220,
825,
651,
62,
16366,
62,
45841,
3976,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
20274,
796,
357,
35,
2690,
1387,
13,
439,
6310,
1817,
3419,
3784,
19738,
7,
67,
930,
288,
13,
16366,
3784,
42813,
7,
944,
22305,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
17227,
1273,
5620,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
16366,
62,
45841,
3976,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
18957,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
18957,
526,
15931,
628,
198,
4871,
7412,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
7412,
526,
15931,
628,
198,
4871,
25139,
2357,
540,
20180,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
25139,
2357,
540,
20180,
526,
15931,
628,
220,
220,
220,
825,
318,
62,
38532,
62,
4480,
7,
944,
11,
279,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
318,
7293,
16873,
3152,
3419,
15947,
611,
428,
25139,
2357,
540,
20180,
198,
220,
220,
220,
220,
220,
220,
220,
318,
11670,
351,
262,
7368,
25139,
2357,
540,
20180,
13,
2750,
4277,
11,
198,
220,
220,
220,
220,
220,
220,
220,
428,
25139,
2357,
540,
20180,
318,
11670,
351,
1194,
25139,
2357,
540,
20180,
198,
220,
220,
220,
220,
220,
220,
220,
279,
611,
262,
1611,
286,
428,
25139,
2357,
540,
20180,
318,
262,
976,
355,
393,
257,
850,
4906,
198,
220,
220,
220,
220,
220,
220,
220,
286,
262,
1611,
286,
279,
13,
3834,
37724,
286,
25139,
2357,
540,
20180,
815,
20957,
198,
220,
220,
220,
220,
220,
220,
220,
428,
4905,
284,
11986,
1180,
17764,
17778,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
357,
944,
13,
38679,
3792,
35854,
5189,
7,
79,
13,
38679,
6030,
3419,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
1279,
79,
29,
4863,
5301,
471,
5805,
3712,
17227,
1273,
5620,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
318,
62,
38532,
62,
4480,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
318,
62,
28243,
62,
17143,
2357,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
318,
30800,
36301,
3419,
15947,
611,
428,
25139,
2357,
540,
20180,
198,
220,
220,
220,
220,
220,
220,
220,
318,
7362,
355,
257,
8766,
37350,
36301,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
357,
28243,
36301,
3784,
1662,
40613,
28955,
198,
220,
220,
220,
220,
220,
220,
220,
1279,
79,
29,
4863,
5301,
471,
5805,
3712,
17227,
1273,
5620,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
318,
62,
28243,
62,
17143,
2357,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
37350,
36301,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
37350,
36301,
526,
15931,
628,
220,
220,
220,
825,
1276,
62,
1350,
62,
38532,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
4277,
1276,
307,
11670,
351,
262,
8766,
37350,
36301,
13,
198,
12286,
1279,
29,
9242,
15565,
4277,
13,
271,
7293,
16873,
3152,
7,
17143,
316,
1068,
20180,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
1276,
62,
1350,
62,
38532,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
37350,
11712,
1300,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
37350,
11712,
1300,
526,
15931,
628,
220,
220,
220,
825,
898,
62,
68,
3639,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
48944,
1276,
898,
262,
25139,
2357,
540,
36,
3639,
484,
11507,
393,
198,
220,
220,
220,
220,
220,
220,
220,
883,
25139,
2357,
540,
36,
3639,
1276,
307,
6898,
416,
262,
37350,
540,
20180,
198,
220,
220,
220,
220,
220,
220,
220,
220,
852,
2169,
489,
515,
13,
198,
220,
220,
220,
220,
220,
220,
220,
11055,
13,
11990,
20180,
3784,
42813,
3237,
7,
17143,
2357,
13,
17143,
316,
1068,
20180,
3784,
292,
7248,
3419,
532,
198,
220,
220,
220,
220,
220,
220,
220,
11507,
13,
11990,
22973,
316,
1068,
20180,
3784,
292,
7248,
28955,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
898,
62,
68,
3639,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
3748,
62,
17143,
7307,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
3891,
286,
262,
10007,
286,
257,
37350,
11712,
1300,
389,
3748,
13,
198,
220,
220,
220,
220,
220,
220,
220,
11507,
3784,
1640,
3237,
7,
279,
16,
11,
279,
17,
930,
357,
79,
16,
1279,
29,
279,
17,
290,
279,
16,
13,
17143,
316,
1068,
20180,
13,
38679,
3792,
35854,
5189,
7,
198,
220,
220,
220,
220,
220,
220,
220,
34441,
20180,
8,
290,
279,
17,
13,
17143,
316,
1068,
20180,
13,
38679,
3792,
35854,
5189,
7,
45,
2434,
20180,
8,
1267,
15565,
198,
220,
220,
220,
220,
220,
220,
220,
279,
16,
13,
17143,
316,
1068,
20180,
13,
38679,
1722,
6030,
7,
45,
2434,
20180,
737,
3672,
1279,
29,
198,
220,
220,
220,
220,
220,
220,
220,
279,
17,
13,
17143,
316,
1068,
20180,
13,
38679,
1722,
6030,
7,
45,
2434,
20180,
737,
3672,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
3748,
62,
17143,
7307,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
37350,
540,
20180,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
37350,
540,
20180,
526,
15931,
628,
220,
220,
220,
825,
318,
62,
28243,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
318,
30800,
3419,
5860,
1771,
428,
37350,
540,
20180,
318,
1682,
198,
220,
220,
220,
220,
220,
220,
220,
257,
11055,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
357,
11990,
30800,
11712,
1300,
1279,
29,
9242,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1279,
79,
29,
4863,
5301,
471,
5805,
3712,
17227,
1273,
5620,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
318,
62,
28243,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
11507,
540,
62,
68,
3639,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
11507,
540,
36,
3639,
3419,
5860,
262,
900,
286,
25139,
2357,
540,
36,
3639,
198,
220,
220,
220,
220,
220,
220,
220,
326,
743,
307,
973,
355,
262,
5772,
316,
1068,
36,
3639,
329,
257,
37350,
36301,
286,
428,
198,
220,
220,
220,
220,
220,
220,
220,
37350,
540,
20180,
13,
2750,
4277,
11,
428,
900,
3407,
477,
262,
6898,
36,
3639,
13,
198,
220,
220,
220,
220,
220,
220,
220,
3834,
37724,
743,
20957,
428,
4905,
611,
484,
3853,
284,
4239,
262,
900,
198,
220,
220,
220,
220,
220,
220,
220,
286,
25139,
2357,
540,
36,
3639,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
357,
944,
13,
439,
23858,
276,
36,
3639,
3419,
3784,
19738,
7,
38679,
3792,
35854,
5189,
7,
198,
220,
220,
220,
220,
220,
220,
220,
25139,
2357,
540,
20180,
29720,
38679,
1722,
6030,
7,
36301,
540,
20180,
8,
3784,
292,
7248,
28955,
198,
220,
220,
220,
220,
220,
220,
220,
1279,
79,
29,
4863,
5301,
471,
5805,
3712,
17227,
1273,
5620,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
11507,
540,
62,
68,
3639,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
198,
4871,
39771,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
39771,
526,
15931,
628,
198,
4871,
37350,
36301,
7004,
301,
2738,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
37350,
36301,
7004,
301,
2738,
526,
15931,
628,
220,
220,
220,
825,
1276,
62,
1350,
62,
38532,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
4036,
25139,
2357,
540,
20180,
1276,
307,
11670,
351,
262,
8766,
198,
220,
220,
220,
220,
220,
220,
220,
37350,
36301,
11,
304,
13,
70,
1539,
262,
4036,
25139,
2357,
540,
20180,
329,
257,
5016,
198,
220,
220,
220,
220,
220,
220,
220,
37350,
36301,
1276,
307,
257,
5016,
13,
198,
50039,
3784,
1640,
3237,
7,
64,
930,
257,
13,
271,
7293,
16873,
3152,
7,
687,
282,
13,
17143,
316,
1068,
20180,
4008,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
1276,
62,
1350,
62,
38532,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
15237,
489,
8467,
20180,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
15237,
489,
8467,
20180,
526,
15931,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
2488,
21037,
13,
2617,
353,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
2488,
45828,
13,
2617,
353,
628,
220,
220,
220,
825,
6727,
62,
469,
62,
21037,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
6727,
5421,
1276,
307,
3744,
621,
393,
4961,
284,
262,
2793,
5421,
13,
198,
45828,
49646,
3419,
18189,
2793,
49646,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
6727,
62,
469,
62,
21037,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
2793,
62,
469,
62,
15,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
2793,
5421,
1276,
307,
257,
1729,
12,
31591,
18253,
18875,
13,
198,
21037,
49646,
3419,
18189,
657,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
2793,
62,
469,
62,
15,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
1988,
62,
16684,
2649,
62,
3919,
62,
1589,
62,
34435,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
257,
1729,
12,
18250,
1691,
11052,
22882,
2649,
318,
973,
329,
2793,
11395,
393,
6727,
11395,
11,
198,
220,
220,
220,
220,
220,
220,
220,
788,
22232,
326,
20855,
1276,
407,
423,
1735,
3048,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
1988,
62,
16684,
2649,
62,
3919,
62,
1589,
62,
34435,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
1988,
62,
16684,
2649,
62,
9979,
415,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
257,
1729,
12,
18250,
1691,
11052,
22882,
2649,
318,
973,
329,
2793,
11395,
393,
6727,
11395,
11,
198,
220,
220,
220,
220,
220,
220,
220,
788,
326,
20855,
1276,
307,
257,
6937,
5408,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
1988,
62,
16684,
2649,
62,
9979,
415,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2793,
62,
271,
62,
41433,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
340,
318,
407,
6565,
11,
788,
2793,
11395,
1276,
423,
281,
34142,
1988,
13,
198,
21037,
11395,
1279,
29,
9242,
15565,
2793,
11395,
13,
41433,
11395,
3419,
1279,
29,
9242,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
2793,
62,
271,
62,
41433,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
6727,
62,
271,
62,
403,
10698,
62,
11802,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
340,
318,
407,
6565,
11,
788,
6727,
11395,
1276,
423,
281,
26774,
35364,
1988,
13,
198,
45828,
11395,
1279,
29,
9242,
15565,
6727,
11395,
13,
403,
10698,
11395,
3419,
1279,
29,
9242,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
6727,
62,
271,
62,
403,
10698,
62,
11802,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
11670,
62,
4480,
7,
944,
11,
584,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
4905,
11670,
3152,
2753,
1194,
15082,
8467,
355,
5128,
13,
632,
198,
220,
220,
220,
220,
220,
220,
220,
5860,
2081,
611,
262,
584,
15082,
8467,
318,
10595,
621,
11,
393,
262,
976,
355,
11,
2116,
13,
198,
20274,
796,
14808,
847,
13,
21037,
49646,
3419,
19841,
2116,
13,
21037,
49646,
28955,
290,
14808,
847,
13,
45828,
49646,
3419,
796,
31936,
198,
273,
357,
944,
13,
45828,
49646,
3419,
19841,
584,
13,
45828,
49646,
3419,
22305,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
17227,
1273,
5620,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
11670,
62,
4480,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
3407,
62,
47945,
8467,
7,
944,
11,
337,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
3407,
15205,
24705,
8467,
3419,
8794,
1771,
428,
15082,
8467,
3407,
198,
220,
220,
220,
220,
220,
220,
220,
477,
262,
38691,
871,
3142,
416,
262,
7368,
15082,
8467,
13,
198,
944,
13,
45828,
49646,
3419,
3784,
1662,
40613,
3419,
290,
2116,
13,
21037,
49646,
3419,
3784,
1662,
40613,
3419,
290,
198,
44,
13,
45828,
49646,
3419,
3784,
1662,
40613,
3419,
290,
337,
13,
21037,
49646,
3419,
3784,
1662,
40613,
3419,
198,
20274,
796,
14808,
944,
13,
21037,
49646,
3419,
19841,
337,
13,
21037,
49646,
28955,
290,
357,
944,
13,
45828,
49646,
3419,
18189,
198,
44,
13,
45828,
49646,
3419,
4008,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
17227,
1273,
5620,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
3407,
62,
47945,
8467,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
318,
41052,
944,
11,
2793,
7784,
28,
14202,
11,
6727,
7784,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
4905,
318,
15947,
611,
262,
6727,
290,
2793,
5421,
286,
262,
198,
220,
220,
220,
220,
220,
220,
220,
16069,
389,
262,
3392,
1813,
13,
198,
20274,
796,
357,
21037,
7784,
796,
2116,
13,
21037,
49646,
3419,
290,
6727,
7784,
796,
2116,
13,
45828,
49646,
28955,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
17227,
1273,
5620,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
318,
41052,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
318,
62,
16680,
2473,
1739,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
318,
15205,
2473,
1739,
3419,
8794,
1771,
428,
15082,
8467,
468,
281,
198,
220,
220,
220,
220,
220,
220,
220,
6727,
5421,
3744,
621,
530,
13,
198,
45828,
49646,
3419,
3784,
1662,
40613,
3419,
198,
20274,
796,
357,
45828,
49646,
3419,
1875,
352,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
17227,
1273,
5620,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
318,
62,
16680,
2473,
1739,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
651,
62,
21037,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
10944,
2793,
11688,
1276,
4961,
262,
2793,
49646,
13,
198,
20274,
796,
357,
21037,
49646,
28955,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
17227,
1273,
5620,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
21037,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
2793,
62,
7784,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
2793,
49646,
3419,
5860,
262,
2793,
5421,
286,
262,
15082,
8467,
355,
198,
220,
220,
220,
220,
220,
220,
220,
281,
18253,
11,
543,
318,
262,
18253,
11395,
286,
2793,
11395,
11,
611,
428,
318,
1813,
11,
198,
220,
220,
220,
220,
220,
220,
220,
290,
352,
4306,
13,
198,
20274,
796,
357,
361,
357,
21037,
11395,
28,
8423,
393,
2793,
11395,
13,
41433,
11395,
3419,
28,
8423,
8,
788,
352,
2073,
198,
21037,
11395,
13,
41433,
11395,
3419,
45762,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
17227,
1273,
5620,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
2793,
62,
7784,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
651,
62,
45828,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
10944,
6727,
11688,
1276,
4961,
262,
6727,
49646,
13,
198,
20274,
796,
357,
45828,
49646,
28955,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
17227,
1273,
5620,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
45828,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
6727,
62,
7784,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
6727,
49646,
3419,
5860,
262,
6727,
5421,
286,
262,
15082,
8467,
329,
198,
220,
220,
220,
220,
220,
220,
220,
257,
49948,
15082,
8467,
355,
281,
15822,
3288,
11,
543,
318,
262,
198,
220,
220,
220,
220,
220,
220,
220,
15822,
35364,
11395,
286,
6727,
11395,
11,
611,
1813,
11,
290,
352,
11,
4306,
13,
198,
20274,
796,
357,
361,
357,
45828,
11395,
28,
8423,
393,
6727,
11395,
13,
403,
10698,
11395,
3419,
28,
8423,
8,
788,
352,
2073,
198,
45828,
11395,
13,
403,
10698,
11395,
3419,
45762,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
17227,
1273,
5620,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
6727,
62,
7784,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
32026,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
32026,
526,
15931,
628,
198,
4871,
35528,
25060,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
35528,
25060,
526,
15931,
628,
220,
220,
220,
825,
21360,
62,
2618,
62,
276,
3212,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
21360,
25842,
468,
645,
15619,
393,
28181,
24641,
7407,
3212,
290,
262,
198,
220,
220,
220,
220,
220,
220,
220,
6631,
20560,
468,
645,
15619,
24641,
7407,
3212,
13,
198,
30281,
25842,
13,
259,
4976,
3784,
271,
40613,
3419,
290,
21360,
25842,
13,
448,
5146,
3784,
271,
40613,
3419,
290,
198,
1069,
4516,
20560,
13,
259,
4976,
3784,
271,
40613,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
21360,
62,
2618,
62,
276,
3212,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
5072,
62,
49556,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
262,
6861,
19667,
318,
281,
7561,
351,
25235,
47,
1040,
11,
788,
262,
198,
220,
220,
220,
220,
220,
220,
220,
21360,
25842,
1276,
635,
307,
281,
7561,
351,
262,
976,
1271,
286,
25235,
47,
1040,
11,
198,
220,
220,
220,
220,
220,
220,
220,
543,
389,
11670,
287,
2099,
11,
16216,
11,
290,
15082,
8467,
284,
883,
286,
198,
220,
220,
220,
220,
220,
220,
220,
262,
6861,
19667,
13,
198,
220,
220,
220,
220,
220,
220,
220,
357,
24326,
19667,
13,
38679,
3792,
35854,
5189,
7,
12502,
8,
290,
6861,
19667,
13,
38679,
1722,
6030,
7,
198,
220,
220,
220,
220,
220,
220,
220,
7561,
737,
22915,
3784,
1662,
40613,
28955,
15565,
198,
220,
220,
220,
220,
220,
220,
220,
357,
30281,
25842,
13,
38679,
3792,
35854,
5189,
7,
12502,
8,
290,
1309,
6861,
19667,
26410,
1058,
198,
220,
220,
220,
220,
220,
220,
220,
14230,
1068,
7248,
7,
26410,
28348,
8,
796,
6861,
19667,
13,
38679,
1722,
6030,
7,
198,
220,
220,
220,
220,
220,
220,
220,
7561,
737,
22915,
11,
30281,
25842,
26410,
1058,
14230,
1068,
7248,
7,
26410,
28348,
8,
796,
198,
220,
220,
220,
220,
220,
220,
220,
21360,
25842,
13,
38679,
1722,
6030,
7,
12502,
737,
22915,
287,
198,
220,
220,
220,
220,
220,
220,
220,
6861,
19667,
26410,
3784,
7857,
3419,
796,
21360,
25842,
26410,
3784,
7857,
3419,
290,
198,
220,
220,
220,
220,
220,
220,
220,
45835,
90,
16,
492,
24326,
19667,
26410,
3784,
7857,
3419,
92,
3784,
1640,
3237,
7,
72,
930,
198,
220,
220,
220,
220,
220,
220,
220,
21360,
25842,
26410,
3784,
265,
7,
72,
737,
4906,
13,
1102,
23914,
2514,
7,
24326,
19667,
26410,
3784,
265,
7,
72,
737,
4906,
8,
290,
198,
220,
220,
220,
220,
220,
220,
220,
21360,
25842,
26410,
3784,
265,
7,
72,
737,
271,
35422,
1068,
28,
24326,
19667,
26410,
3784,
265,
7,
72,
737,
271,
35422,
1068,
290,
198,
220,
220,
220,
220,
220,
220,
220,
21360,
25842,
26410,
3784,
265,
7,
72,
737,
38532,
3152,
7,
24326,
19667,
26410,
3784,
265,
7,
72,
22305,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
5072,
62,
49556,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
530,
62,
15414,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
21360,
25842,
318,
281,
7561,
351,
530,
23412,
28348,
11,
290,
326,
23412,
28348,
318,
262,
198,
220,
220,
220,
220,
220,
220,
220,
976,
355,
262,
6631,
20560,
13,
198,
220,
220,
220,
220,
220,
220,
220,
21360,
25842,
13,
38679,
3792,
35854,
5189,
7,
12502,
8,
290,
198,
220,
220,
220,
220,
220,
220,
220,
1309,
17311,
25,
14230,
1068,
7248,
7,
20560,
28348,
8,
796,
21360,
25842,
13,
38679,
1722,
6030,
7,
12502,
737,
15414,
287,
198,
220,
220,
220,
220,
220,
220,
220,
17311,
3784,
7857,
3419,
28,
16,
290,
17311,
3784,
11085,
3419,
28,
1069,
4516,
20560,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
530,
62,
15414,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
5743,
62,
10459,
62,
16793,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2025,
24641,
37021,
326,
468,
257,
2723,
1626,
262,
21360,
25842,
286,
281,
198,
220,
220,
220,
220,
220,
220,
220,
35528,
25060,
1276,
423,
663,
2496,
287,
262,
21360,
25842,
635,
11,
290,
7927,
25470,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1309,
13760,
25,
7248,
7,
16516,
19667,
8,
796,
21360,
25842,
13,
38679,
1722,
6030,
7,
12502,
737,
439,
23858,
276,
45,
4147,
3419,
287,
198,
220,
220,
220,
220,
220,
220,
220,
13760,
13,
448,
5146,
3784,
1640,
3237,
7,
77,
4147,
3784,
42813,
7,
16793,
4008,
290,
198,
220,
220,
220,
220,
220,
220,
220,
13760,
13,
259,
4976,
3784,
1640,
3237,
7,
77,
4147,
3784,
42813,
7,
10459,
4008,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
5743,
62,
10459,
62,
16793,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
21360,
62,
2618,
62,
18403,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
21360,
25842,
1276,
423,
262,
976,
4870,
355,
262,
6861,
19667,
13,
198,
30281,
25842,
13,
18403,
28,
24326,
19667,
13,
18403,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
21360,
62,
2618,
62,
18403,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
6631,
62,
15414,
62,
4906,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
6631,
20560,
1276,
2035,
423,
645,
2099,
393,
790,
6631,
6030,
1276,
198,
220,
220,
220,
220,
220,
220,
220,
17216,
284,
262,
6631,
20560,
2099,
13,
198,
220,
220,
220,
220,
220,
220,
220,
6631,
20560,
13,
4906,
28,
8423,
393,
198,
220,
220,
220,
220,
220,
220,
220,
6631,
6030,
3784,
1640,
3237,
7,
1102,
23914,
2514,
7,
1069,
4516,
20560,
13,
4906,
13,
38679,
1722,
6030,
7,
9487,
7483,
22305,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
6631,
62,
15414,
62,
4906,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
7502,
12915,
6601,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
7502,
12915,
6601,
526,
15931,
628,
220,
220,
220,
825,
976,
62,
4906,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
2099,
286,
262,
1988,
23412,
28348,
17216,
82,
284,
262,
2099,
286,
262,
5396,
886,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1988,
27,
29,
8423,
15565,
1988,
13,
4906,
13,
1102,
23914,
2514,
7,
437,
13,
4906,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
976,
62,
4906,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
15082,
8467,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
15082,
8467,
286,
262,
1988,
23412,
28348,
1276,
307,
352,
492,
16,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1988,
27,
29,
8423,
15565,
1988,
13,
271,
7,
16,
11,
16,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
15082,
8467,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
886,
62,
15252,
62,
15414,
62,
11635,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
1988,
23412,
28348,
318,
407,
635,
262,
39265,
1988,
23412,
28348,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1988,
3784,
1069,
13955,
3237,
7,
13255,
7483,
13,
8367,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
886,
62,
15252,
62,
15414,
62,
11635,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
3119,
62,
271,
62,
562,
41003,
62,
437,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
14161,
1276,
307,
281,
5396,
2888,
12915,
13,
198,
220,
220,
220,
220,
220,
220,
220,
886,
13,
562,
41003,
1279,
29,
9242,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
3119,
62,
271,
62,
562,
41003,
62,
437,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
40528,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
40528,
1276,
307,
40528,
286,
262,
5396,
886,
13,
198,
220,
220,
220,
220,
220,
220,
220,
886,
13,
13255,
7483,
3784,
42813,
3237,
7,
13255,
7483,
13,
13255,
7483,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
40528,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
477,
62,
49556,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
35561,
477,
262,
23412,
47,
1040,
20717,
416,
428,
7502,
12915,
6601,
13,
2750,
4277,
198,
220,
220,
220,
220,
220,
220,
220,
428,
3407,
262,
1988,
290,
39265,
23412,
47,
1040,
11,
475,
850,
37724,
743,
198,
220,
220,
220,
220,
220,
220,
220,
20957,
262,
4905,
284,
751,
584,
23412,
47,
1040,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
357,
8367,
3784,
292,
33,
363,
3419,
3784,
24592,
7,
13255,
7483,
13,
8367,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
1279,
79,
29,
4863,
5301,
471,
5805,
3712,
32,
2733,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
477,
62,
49556,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
9537,
7483,
11395,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
9537,
7483,
11395,
526,
15931,
628,
220,
220,
220,
825,
15082,
8467,
62,
1659,
62,
13255,
7483,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
15082,
8467,
286,
262,
1988,
23412,
28348,
318,
352,
492,
16,
13,
198,
8367,
13,
271,
7,
16,
11,
16,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
15082,
8467,
62,
1659,
62,
13255,
7483,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2099,
62,
1659,
62,
13255,
7483,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
2099,
286,
262,
1988,
23412,
28348,
17216,
82,
284,
262,
2099,
286,
262,
39265,
198,
220,
220,
220,
220,
220,
220,
220,
14161,
13,
8367,
13,
4906,
13,
1102,
23914,
2514,
7,
13255,
7483,
13,
4906,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2099,
62,
1659,
62,
13255,
7483,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
39265,
62,
42348,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
39265,
1276,
307,
257,
39265,
286,
262,
5396,
886,
286,
262,
198,
220,
220,
220,
220,
220,
220,
220,
2792,
12915,
6601,
326,
12216,
428,
9537,
7483,
11395,
13,
198,
220,
220,
220,
220,
220,
220,
220,
2792,
12915,
6601,
13,
437,
13,
13255,
7483,
3784,
42813,
7,
13255,
7483,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
39265,
62,
42348,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
28081,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
28081,
526,
15931,
628,
220,
220,
220,
825,
1767,
62,
22915,
62,
49556,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
1767,
26410,
350,
1040,
389,
25235,
47,
1040,
319,
24439,
287,
262,
1767,
286,
262,
28081,
13,
198,
62,
6,
2618,
4458,
38679,
1722,
6030,
7,
12502,
737,
439,
32,
2733,
22446,
22915,
3784,
42813,
3237,
7,
2618,
26410,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
1767,
62,
22915,
62,
49556,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
875,
1304,
62,
22915,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
875,
1304,
13727,
1276,
307,
319,
281,
7561,
287,
262,
1332,
2665,
286,
262,
28081,
290,
198,
220,
220,
220,
220,
220,
220,
220,
1276,
307,
286,
2099,
41146,
351,
15082,
8467,
352,
492,
16,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1332,
13,
38679,
1722,
6030,
7,
12502,
737,
439,
32,
2733,
22446,
22915,
3784,
42813,
7,
12501,
1304,
8,
290,
198,
220,
220,
220,
220,
220,
220,
220,
875,
1304,
13,
4906,
796,
41146,
290,
198,
220,
220,
220,
220,
220,
220,
220,
875,
1304,
13,
271,
7,
16,
11,
16,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
875,
1304,
62,
22915,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
1332,
62,
392,
62,
2618,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
1332,
290,
1767,
3354,
286,
257,
9724,
1859,
19667,
1276,
307,
595,
73,
1563,
351,
1123,
198,
220,
220,
220,
220,
220,
220,
220,
584,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1332,
3784,
3849,
5458,
28264,
6,
2618,
11537,
3784,
271,
40613,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
1332,
62,
392,
62,
2618,
7,
23029,
407,
1865,
9177,
4943,
628,
628,
198,
198,
4871,
28531,
10223,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
28531,
10223,
526,
15931,
628,
220,
220,
220,
825,
1866,
62,
17080,
41726,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
3237,
262,
1866,
286,
257,
28531,
10223,
389,
15714,
540,
1626,
340,
13,
198,
30814,
8491,
20344,
41726,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
1866,
62,
17080,
41726,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2314,
62,
11748,
62,
944,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
28531,
10223,
2314,
423,
257,
15717,
20939,
284,
2346,
13,
198,
26495,
20939,
13,
320,
9213,
27813,
13,
38679,
1722,
6030,
7,
36690,
10223,
8,
3784,
1069,
13955,
7,
944,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2314,
62,
11748,
62,
944,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2314,
62,
11748,
62,
11990,
62,
30814,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
28531,
10223,
2314,
423,
281,
11703,
20939,
284,
530,
286,
663,
6898,
25341,
13,
198,
30854,
20939,
13,
320,
9213,
20180,
13,
38679,
1722,
6030,
7,
20180,
8,
3784,
1069,
13955,
3237,
7,
11990,
27608,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2314,
62,
11748,
62,
11990,
62,
30814,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2251,
62,
30854,
62,
11748,
7,
944,
11,
5002,
28,
14202,
11,
20742,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
16719,
274,
281,
1330,
286,
262,
7368,
5002,
656,
428,
25745,
351,
262,
198,
220,
220,
220,
220,
220,
220,
220,
7368,
20742,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2251,
62,
30854,
62,
11748,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2251,
62,
26495,
62,
11748,
7,
944,
11,
5301,
62,
28,
14202,
11,
20742,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
16719,
274,
281,
1330,
286,
262,
7368,
5301,
656,
428,
25745,
351,
262,
198,
220,
220,
220,
220,
220,
220,
220,
7368,
20742,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2251,
62,
26495,
62,
11748,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
320,
9213,
62,
68,
3639,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
4847,
17392,
416,
428,
25745,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
320,
9213,
62,
68,
3639,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
320,
9213,
62,
43789,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
10392,
17392,
416,
428,
25745,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
320,
9213,
62,
43789,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
19607,
62,
26000,
3279,
7,
944,
11,
848,
82,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
19607,
22667,
3279,
3419,
36833,
422,
257,
900,
286,
15717,
540,
36,
3639,
198,
220,
220,
220,
220,
220,
220,
220,
597,
326,
561,
407,
307,
15714,
540,
422,
1123,
584,
287,
428,
28531,
10223,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
357,
320,
862,
3784,
260,
752,
7,
11011,
16,
220,
930,
848,
82,
3784,
1069,
1023,
7,
11011,
17,
930,
407,
848,
16,
13,
271,
20344,
41726,
4863,
7,
198,
220,
220,
220,
220,
220,
220,
220,
848,
17,
11,
2116,
35514,
1279,
79,
29,
4863,
5301,
471,
5805,
3712,
17227,
1273,
5620,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
19607,
62,
26000,
3279,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
14933,
62,
1659,
62,
19522,
7,
944,
11,
5002,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
651,
36690,
5189,
27608,
3419,
3607,
257,
900,
286,
477,
286,
262,
3891,
326,
257,
198,
220,
220,
220,
220,
220,
220,
220,
2888,
561,
423,
287,
257,
28531,
10223,
11,
2263,
33332,
656,
1848,
13,
554,
2276,
198,
220,
220,
220,
220,
220,
220,
220,
257,
2888,
460,
423,
3294,
3891,
287,
257,
28531,
10223,
611,
340,
318,
17392,
517,
621,
198,
220,
220,
220,
220,
220,
220,
220,
1752,
351,
1180,
47217,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
357,
361,
2116,
13,
11990,
27608,
4613,
42813,
7,
30854,
8,
198,
220,
220,
220,
220,
220,
220,
220,
788,
5345,
90,
30854,
13,
3672,
92,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
1309,
5002,
3546,
3742,
1058,
5345,
7,
20180,
20939,
8,
796,
2116,
13,
30854,
20939,
3784,
19738,
7,
198,
220,
220,
220,
220,
220,
220,
220,
304,
72,
930,
304,
72,
13,
320,
9213,
20180,
796,
5002,
8,
287,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
5002,
3546,
3742,
3784,
1662,
40613,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
788,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5002,
3546,
3742,
3784,
33327,
7,
417,
930,
1288,
13,
1136,
5376,
28955,
3784,
292,
7248,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
26495,
20939,
3784,
19738,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31028,
930,
31028,
13,
320,
9213,
27813,
13,
23504,
25341,
22446,
38679,
1722,
6030,
7,
45,
2434,
20180,
8,
3784,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3407,
7,
30854,
4008,
3784,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2824,
7,
14415,
930,
31028,
13,
320,
9213,
27813,
13,
1136,
36690,
5189,
27608,
7,
30854,
4008,
3784,
292,
7248,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
45762,
198,
220,
220,
220,
220,
220,
220,
220,
45762,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1279,
79,
29,
4863,
5301,
471,
5805,
3712,
17227,
1273,
5620,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
14933,
62,
1659,
62,
19522,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
1330,
62,
30814,
7,
944,
11,
848,
82,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
1330,
25341,
3419,
15738,
543,
286,
257,
900,
286,
15717,
540,
36,
3639,
198,
220,
220,
220,
220,
220,
220,
220,
389,
1682,
17392,
656,
262,
28531,
10223,
13,
770,
36833,
7104,
3392,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1312,
13,
68,
1539,
883,
543,
423,
3891,
326,
5358,
351,
3891,
286,
6898,
25341,
11,
198,
220,
220,
220,
220,
220,
220,
220,
290,
340,
635,
36833,
15717,
540,
36,
3639,
326,
561,
423,
262,
198,
220,
220,
220,
220,
220,
220,
220,
43649,
3891,
618,
17392,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
357,
944,
13,
1069,
9152,
22667,
3279,
7,
320,
862,
8,
3784,
19738,
7,
198,
220,
220,
220,
220,
220,
220,
220,
848,
930,
2116,
13,
11990,
27608,
3784,
1640,
3237,
7,
11883,
930,
848,
13,
271,
20344,
41726,
4863,
7,
11883,
11,
2116,
35514,
198,
220,
220,
220,
220,
220,
220,
220,
1279,
79,
29,
4863,
5301,
471,
5805,
3712,
17227,
1273,
5620,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
1330,
62,
30814,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
651,
62,
320,
9213,
62,
30814,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
17392,
27608,
3119,
318,
10944,
355,
262,
15717,
540,
36,
3639,
198,
220,
220,
220,
220,
220,
220,
220,
326,
389,
1866,
286,
428,
28531,
10223,
355,
257,
1255,
286,
2035,
15717,
3546,
3742,
198,
220,
220,
220,
220,
220,
220,
220,
393,
11703,
3546,
3742,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
357,
944,
13,
11748,
25341,
7,
30854,
20939,
13,
320,
9213,
20180,
3784,
292,
7248,
3419,
3784,
24592,
7,
198,
220,
220,
220,
220,
220,
220,
220,
5301,
20939,
13,
320,
9213,
27813,
3784,
33327,
7,
79,
930,
279,
13,
23504,
25341,
3419,
4008,
3784,
292,
7248,
3419,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
1279,
79,
29,
4863,
5301,
471,
5805,
3712,
17227,
1273,
5620,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
320,
9213,
62,
30814,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
1866,
62,
533,
62,
17080,
41726,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
41146,
12405,
1866,
8491,
20344,
41726,
3419,
15947,
1771,
477,
198,
220,
220,
220,
220,
220,
220,
220,
286,
262,
28531,
10223,
338,
1866,
389,
15714,
540,
1626,
340,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
357,
19522,
3784,
1640,
3237,
7,
1066,
65,
930,
198,
220,
220,
220,
220,
220,
220,
220,
2888,
3784,
42218,
7,
11883,
65,
8,
3784,
1640,
3237,
7,
847,
930,
198,
220,
220,
220,
220,
220,
220,
220,
1066,
65,
13,
271,
20344,
41726,
4863,
7,
847,
11,
2116,
35514,
198,
220,
220,
220,
220,
220,
220,
220,
1279,
79,
29,
4863,
5301,
471,
5805,
3712,
17227,
1273,
5620,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
1866,
62,
533,
62,
17080,
41726,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
628,
198,
4871,
4128,
276,
47117,
1056,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
4128,
276,
47117,
1056,
526,
15931,
628,
198,
4871,
17134,
276,
20180,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
17134,
276,
20180,
526,
15931,
628,
198,
4871,
8113,
273,
12915,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
8113,
273,
12915,
526,
15931,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
825,
2597,
62,
392,
62,
3911,
62,
4480,
62,
634,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
257,
8113,
273,
12915,
10288,
257,
636,
3152,
13924,
11,
788,
262,
2597,
1276,
307,
257,
198,
220,
220,
220,
220,
220,
220,
220,
4347,
326,
318,
5447,
393,
19552,
416,
262,
2099,
286,
262,
636,
3152,
13924,
13,
198,
220,
220,
220,
220,
220,
220,
220,
636,
3152,
13924,
3784,
1662,
40613,
3419,
15565,
198,
220,
220,
220,
220,
220,
220,
220,
357,
18090,
13,
38679,
3792,
35854,
5189,
7,
13924,
8,
290,
636,
3152,
13924,
13,
4906,
13,
38679,
1722,
6030,
7,
198,
220,
220,
220,
220,
220,
220,
220,
28531,
10223,
737,
19522,
3784,
42813,
7,
18090,
4008,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2597,
62,
392,
62,
3911,
62,
4480,
62,
634,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
636,
62,
4480,
62,
634,
62,
28920,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
257,
8113,
273,
12915,
318,
7223,
284,
257,
4347,
286,
262,
7268,
5016,
7483,
11,
198,
220,
220,
220,
220,
220,
220,
220,
636,
3152,
13924,
481,
307,
6565,
12195,
18090,
13,
38679,
3792,
35854,
5189,
7,
13924,
8,
290,
198,
220,
220,
220,
220,
220,
220,
220,
2597,
13,
18403,
796,
21716,
13,
18403,
8,
15565,
636,
3152,
13924,
3784,
271,
40613,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
636,
62,
4480,
62,
634,
62,
28920,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
15082,
8467,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
15082,
8467,
286,
262,
8113,
273,
12915,
743,
407,
307,
517,
2276,
621,
198,
220,
220,
220,
220,
220,
220,
220,
262,
15082,
8467,
286,
262,
11188,
886,
286,
262,
5396,
19720,
198,
220,
220,
220,
220,
220,
220,
220,
262,
23107,
8113,
273,
11,
611,
597,
13,
944,
13,
38532,
3152,
7,
4299,
3191,
12915,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
15082,
8467,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
2116,
62,
3911,
62,
4480,
62,
634,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
14161,
2714,
287,
2116,
13,
3911,
3152,
13924,
1276,
407,
307,
257,
4347,
13,
198,
220,
220,
220,
220,
220,
220,
220,
636,
3152,
13924,
3784,
1662,
40613,
3419,
15565,
407,
636,
3152,
13924,
13,
38679,
3792,
35854,
5189,
7,
13924,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2116,
62,
3911,
62,
4480,
62,
634,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
4299,
3191,
62,
437,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
28532,
26939,
329,
8113,
273,
12915,
3712,
14,
4299,
3191,
12915,
1058,
14161,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
357,
361,
21716,
13,
4906,
796,
9242,
198,
220,
220,
220,
220,
220,
220,
220,
788,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9242,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1309,
6376,
1058,
34142,
796,
21716,
13,
437,
3784,
9630,
5189,
7,
944,
8,
287,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
21716,
13,
4906,
13,
19522,
12915,
3784,
265,
7,
9630,
8,
198,
220,
220,
220,
220,
220,
220,
220,
45762,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1279,
79,
29,
4863,
5301,
471,
5805,
3712,
44909,
1522,
9487,
13350,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
4299,
3191,
62,
437,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
8113,
540,
20180,
30800,
36301,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
8113,
540,
20180,
30800,
36301,
526,
15931,
628,
198,
198,
4871,
34706,
434,
21745,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
34706,
434,
21745,
526,
15931,
628,
220,
220,
220,
825,
651,
62,
2934,
1420,
276,
62,
68,
3639,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
28532,
26939,
329,
34706,
434,
21745,
3712,
14,
2934,
1420,
276,
20180,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
357,
2934,
1420,
434,
13,
2934,
1420,
276,
8001,
29660,
3784,
19738,
7,
38679,
3792,
35854,
5189,
7,
8001,
29660,
4008,
3784,
33327,
7,
198,
220,
220,
220,
220,
220,
220,
220,
267,
565,
1722,
6030,
7,
8001,
29660,
737,
805,
8409,
341,
8,
3784,
33327,
7,
22602,
1143,
20180,
8,
3784,
292,
7248,
28955,
198,
220,
220,
220,
220,
220,
220,
220,
1279,
79,
29,
4863,
5301,
471,
5805,
3712,
49322,
902,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
2934,
1420,
276,
62,
68,
3639,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
34706,
276,
8001,
29660,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
34706,
276,
8001,
29660,
526,
15931,
628,
628,
198,
4871,
2297,
891,
259,
540,
20180,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
2297,
891,
259,
540,
20180,
526,
15931,
628,
220,
220,
220,
825,
34087,
17750,
62,
5936,
7609,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
34087,
3191,
5002,
1276,
307,
6414,
351,
1123,
2266,
18156,
5002,
13,
198,
220,
220,
220,
220,
220,
220,
220,
2266,
18156,
20180,
3784,
1640,
3237,
7,
260,
930,
302,
13,
271,
9444,
7609,
3152,
7,
944,
4008,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
34087,
17750,
62,
5936,
7609,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
1729,
62,
33201,
62,
445,
891,
17750,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
2297,
891,
259,
540,
20180,
460,
691,
34087,
500,
1729,
12,
33201,
2297,
891,
259,
540,
36,
3639,
13,
198,
445,
18156,
20180,
3784,
1640,
3237,
7,
260,
930,
407,
302,
13,
271,
3123,
1878,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
1729,
62,
33201,
62,
445,
891,
17750,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
34087,
17750,
62,
22866,
62,
12102,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2953,
1551,
530,
286,
262,
34087,
17750,
26307,
286,
262,
34087,
3191,
5002,
198,
220,
220,
220,
220,
220,
220,
220,
1276,
307,
257,
43135,
286,
379,
1551,
530,
286,
262,
34087,
17750,
26307,
329,
198,
220,
220,
220,
220,
220,
220,
220,
1123,
2266,
18156,
5002,
13,
198,
220,
220,
220,
220,
220,
220,
220,
2266,
18156,
20180,
3784,
1640,
3237,
7,
260,
930,
2116,
13,
271,
7738,
891,
17750,
21947,
47139,
7,
260,
4008,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
34087,
17750,
62,
22866,
62,
12102,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
318,
62,
5936,
7609,
62,
4480,
7,
944,
11,
34087,
3191,
20180,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
318,
9444,
7609,
3152,
3419,
26052,
11,
329,
597,
734,
2297,
891,
259,
540,
36,
3639,
198,
220,
220,
220,
220,
220,
220,
220,
287,
257,
4732,
287,
543,
34087,
17750,
318,
1744,
11,
1771,
34087,
17750,
198,
220,
220,
220,
220,
220,
220,
220,
561,
307,
34193,
6414,
13,
2750,
4277,
11,
428,
318,
3991,
26,
428,
4905,
198,
220,
220,
220,
220,
220,
220,
220,
1276,
307,
23170,
4651,
329,
850,
37724,
286,
2297,
891,
259,
540,
20180,
284,
8160,
262,
198,
220,
220,
220,
220,
220,
220,
220,
15794,
3403,
13,
198,
220,
220,
220,
220,
220,
220,
220,
34087,
3191,
20180,
13,
271,
7738,
891,
17750,
21947,
47139,
7,
944,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
357,
9562,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1279,
79,
29,
4863,
5301,
471,
5805,
3712,
9487,
2649,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
318,
62,
5936,
7609,
62,
4480,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
318,
62,
445,
891,
17750,
62,
22866,
62,
12102,
7,
944,
11,
2266,
18156,
20180,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
318,
7738,
891,
17750,
21947,
47139,
3419,
26052,
1771,
262,
34087,
17750,
198,
220,
220,
220,
220,
220,
220,
220,
26307,
286,
428,
2297,
891,
259,
540,
20180,
389,
6105,
3519,
284,
262,
34087,
17750,
198,
220,
220,
220,
220,
220,
220,
220,
26307,
286,
262,
7368,
2297,
891,
259,
540,
20180,
284,
1249,
428,
5002,
284,
34087,
500,
198,
220,
220,
220,
220,
220,
220,
220,
262,
584,
13,
2750,
4277,
379,
1551,
530,
286,
262,
34087,
17750,
26307,
286,
428,
198,
220,
220,
220,
220,
220,
220,
220,
5002,
1276,
307,
257,
43135,
286,
379,
1551,
530,
286,
262,
34087,
17750,
26307,
198,
220,
220,
220,
220,
220,
220,
220,
286,
262,
7368,
5002,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
357,
445,
891,
17750,
21947,
3784,
1069,
1023,
7,
66,
930,
269,
13,
439,
42969,
3419,
3784,
42813,
3237,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2266,
18156,
20180,
13,
445,
891,
17750,
21947,
22305,
198,
220,
220,
220,
220,
220,
220,
220,
1279,
79,
29,
4863,
5301,
471,
5805,
3712,
9487,
2649,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
318,
62,
445,
891,
17750,
62,
22866,
62,
12102,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
25139,
2357,
7248,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
25139,
2357,
7248,
526,
15931,
628,
220,
220,
220,
825,
976,
62,
17143,
2357,
1143,
62,
26858,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
40117,
287,
257,
25139,
2357,
7248,
1276,
477,
307,
17311,
393,
477,
307,
23862,
198,
220,
220,
220,
220,
220,
220,
220,
286,
262,
976,
11507,
1143,
9312,
11,
290,
262,
25139,
2357,
7248,
318,
6898,
416,
326,
9312,
13,
198,
220,
220,
220,
220,
220,
220,
220,
11507,
3784,
1640,
3237,
7,
79,
16,
11,
279,
17,
930,
2116,
13,
18403,
796,
279,
16,
13,
18403,
290,
2116,
13,
18403,
796,
279,
17,
13,
18403,
290,
198,
220,
220,
220,
220,
220,
220,
220,
279,
16,
13,
37295,
796,
279,
17,
13,
37295,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
976,
62,
17143,
2357,
1143,
62,
26858,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
5128,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
257,
11507,
1143,
9312,
468,
5128,
40117,
326,
389,
287,
257,
25139,
2357,
7248,
11,
198,
220,
220,
220,
220,
220,
220,
220,
788,
597,
17311,
326,
389,
407,
287,
257,
25139,
2357,
7248,
1276,
307,
11305,
13,
16766,
329,
198,
220,
220,
220,
220,
220,
220,
220,
5072,
40117,
13,
198,
220,
220,
220,
220,
220,
220,
220,
14808,
17143,
2357,
3784,
1069,
1023,
7,
37295,
796,
25139,
2357,
35,
4154,
35854,
3712,
62,
6,
259,
6,
4008,
15565,
198,
220,
220,
220,
220,
220,
220,
220,
17211,
38816,
13,
11990,
36301,
3784,
19738,
7,
79,
930,
279,
13,
37295,
796,
198,
220,
220,
220,
220,
220,
220,
220,
25139,
2357,
35,
4154,
35854,
3712,
62,
6,
259,
6,
290,
279,
13,
17143,
2357,
7248,
3784,
271,
40613,
28955,
3784,
1640,
3237,
7,
271,
12124,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
290,
198,
220,
220,
220,
220,
220,
220,
220,
14808,
17143,
2357,
3784,
1069,
1023,
7,
37295,
796,
25139,
2357,
35,
4154,
35854,
3712,
448,
4008,
15565,
198,
220,
220,
220,
220,
220,
220,
220,
17211,
38816,
13,
11990,
36301,
3784,
19738,
7,
79,
930,
279,
13,
37295,
796,
198,
220,
220,
220,
220,
220,
220,
220,
25139,
2357,
35,
4154,
35854,
3712,
448,
290,
279,
13,
17143,
2357,
7248,
3784,
271,
40613,
28955,
3784,
1640,
3237,
7,
271,
12124,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
5128,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
734,
62,
17143,
2357,
62,
28709,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
7571,
25139,
2357,
50,
1039,
2314,
423,
3446,
262,
976,
900,
286,
40117,
13,
198,
220,
220,
220,
220,
220,
220,
220,
11507,
3784,
1640,
3237,
7,
17143,
2357,
7248,
3784,
1640,
3237,
7,
82,
16,
11,
264,
17,
930,
264,
16,
3784,
7857,
3419,
796,
264,
17,
3784,
7857,
3419,
15565,
198,
220,
220,
220,
220,
220,
220,
220,
264,
16,
13,
17143,
2357,
3784,
1069,
1023,
7,
79,
930,
407,
264,
17,
13,
17143,
2357,
3784,
42813,
7,
79,
35514,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
734,
62,
17143,
2357,
62,
28709,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
628,
198,
4871,
4643,
16886,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
4643,
16886,
526,
15931,
628,
220,
220,
220,
825,
7268,
62,
5219,
62,
30243,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
4905,
7268,
9012,
37573,
3419,
5860,
262,
1812,
37573,
287,
543,
198,
220,
220,
220,
220,
220,
220,
220,
428,
4643,
16886,
318,
5447,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
357,
361,
9290,
1279,
29,
9242,
198,
220,
220,
220,
220,
220,
220,
220,
788,
198,
220,
220,
220,
220,
220,
220,
220,
1377,
262,
9290,
318,
257,
3814,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9290,
13,
38301,
9012,
37573,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
357,
944,
13,
38679,
3792,
35854,
5189,
7,
47,
325,
463,
455,
378,
4008,
290,
14808,
944,
13,
38679,
1722,
6030,
7,
47,
325,
463,
455,
378,
737,
11031,
796,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
49693,
463,
455,
378,
35854,
3712,
13000,
12727,
8,
393,
357,
944,
13,
38679,
1722,
6030,
7,
47,
325,
463,
455,
378,
737,
11031,
796,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
49693,
463,
455,
378,
35854,
3712,
37023,
12727,
4008,
788,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
38679,
1722,
6030,
7,
47,
325,
463,
455,
378,
737,
5219,
37573,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
357,
944,
13,
38679,
3792,
35854,
5189,
7,
32048,
12727,
26687,
4008,
788,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
38679,
1722,
6030,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
26923,
12727,
26687,
737,
5219,
13,
38301,
9012,
37573,
3419,
1377,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
645,
584,
4938,
2663,
1744,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9242,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
45762,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
45762,
198,
220,
220,
220,
220,
220,
220,
220,
45762,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
1279,
79,
29,
4863,
5301,
471,
5805,
3712,
9012,
49999,
1127,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
7268,
62,
5219,
62,
30243,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
259,
30715,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
28532,
26939,
329,
4643,
16886,
3712,
14,
259,
4976,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
357,
8291,
653,
13,
439,
6310,
1817,
3419,
3784,
19738,
7,
16793,
28,
944,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
1279,
79,
29,
4863,
5301,
471,
5805,
3712,
9012,
49999,
1127,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
259,
30715,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
651,
62,
448,
2188,
654,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
28532,
26939,
329,
4643,
16886,
3712,
14,
448,
5146,
198,
20274,
796,
357,
8291,
653,
13,
439,
6310,
1817,
3419,
3784,
19738,
7,
10459,
28,
944,
4008,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9012,
49999,
1127,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
448,
2188,
654,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
318,
62,
45964,
62,
259,
62,
5219,
7,
944,
11,
264,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1212,
10361,
4905,
5860,
2081,
611,
262,
4643,
16886,
318,
7763,
287,
262,
198,
220,
220,
220,
220,
220,
220,
220,
1812,
264,
357,
15414,
4578,
737,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
796,
357,
361,
407,
264,
13,
271,
5377,
1930,
578,
3419,
393,
9290,
3784,
271,
40613,
3419,
788,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3991,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
9290,
13,
5219,
796,
264,
788,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2081,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9290,
13,
5219,
13,
271,
4264,
1328,
818,
9012,
7,
82,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
45762,
198,
220,
220,
220,
220,
220,
220,
220,
45762,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1279,
79,
29,
4863,
5301,
471,
5805,
3712,
9012,
49999,
1127,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
318,
62,
45964,
62,
259,
62,
5219,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
318,
62,
45964,
62,
259,
62,
36996,
7,
944,
11,
374,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1212,
10361,
12405,
5860,
2081,
611,
262,
4643,
16886,
318,
7763,
287,
262,
17718,
374,
357,
15414,
4578,
737,
198,
20274,
796,
357,
361,
357,
34924,
796,
374,
8,
788,
198,
220,
220,
220,
220,
220,
220,
220,
2081,
198,
17772,
198,
220,
220,
220,
220,
220,
220,
220,
611,
357,
81,
13,
5219,
3784,
271,
40613,
28955,
788,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3991,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9290,
13,
5219,
13,
271,
4264,
1328,
818,
47371,
7,
81,
8,
198,
220,
220,
220,
220,
220,
220,
220,
45762,
198,
32088,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9012,
49999,
1127,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
318,
62,
45964,
62,
259,
62,
36996,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
24593,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
24593,
526,
15931,
628,
220,
220,
220,
825,
7616,
62,
4480,
62,
3742,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
257,
24593,
26052,
530,
393,
517,
14090,
11,
262,
1785,
286,
262,
24593,
1276,
307,
198,
220,
220,
220,
220,
220,
220,
220,
257,
16000,
9237,
13,
198,
634,
3784,
1662,
40613,
3419,
15565,
1785,
13,
38679,
3792,
35854,
5189,
7,
12837,
9237,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
7616,
62,
4480,
62,
3742,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
14680,
30800,
36301,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
14680,
30800,
36301,
526,
15931,
628,
220,
220,
220,
825,
2872,
62,
12286,
62,
12683,
1300,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
12286,
3784,
1662,
40613,
3419,
15565,
357,
12286,
13,
38679,
3792,
35854,
5189,
7,
32180,
8,
290,
357,
198,
220,
220,
220,
220,
220,
220,
220,
1309,
4277,
18257,
1058,
14680,
796,
4277,
13,
38679,
1722,
6030,
7,
32180,
8,
287,
198,
220,
220,
220,
4277,
18257,
13,
11990,
36301,
3784,
7857,
3419,
796,
5772,
316,
1068,
20180,
13,
11990,
36301,
3784,
7857,
3419,
290,
198,
220,
220,
220,
45835,
90,
16,
492,
4277,
18257,
13,
11990,
36301,
3784,
7857,
3419,
92,
3784,
1640,
3237,
7,
220,
844,
930,
198,
220,
220,
220,
220,
220,
220,
220,
1309,
279,
16,
25,
25139,
2357,
796,
4277,
18257,
13,
11990,
36301,
3784,
265,
7,
844,
828,
279,
17,
1058,
25139,
2357,
796,
198,
220,
220,
220,
220,
220,
220,
220,
220,
5772,
316,
1068,
20180,
13,
11990,
36301,
3784,
265,
7,
844,
8,
287,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
279,
16,
13,
4906,
796,
279,
17,
13,
4906,
290,
279,
16,
13,
45828,
796,
279,
17,
13,
45828,
290,
279,
16,
13,
21037,
796,
279,
17,
13,
21037,
290,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
279,
16,
13,
37295,
796,
279,
17,
13,
37295,
290,
279,
16,
13,
271,
35422,
1068,
796,
279,
17,
13,
271,
35422,
1068,
290,
279,
16,
13,
271,
40257,
796,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
279,
17,
13,
271,
40257,
22305,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2872,
62,
12286,
62,
12683,
1300,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
37322,
341,
11041,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
37322,
341,
11041,
526,
15931,
628,
220,
220,
220,
825,
5456,
62,
68,
3639,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
3237,
262,
5456,
4847,
286,
257,
2597,
33,
6020,
389,
287,
530,
5016,
7483,
290,
477,
198,
220,
220,
220,
220,
220,
220,
220,
22693,
4847,
286,
257,
2597,
33,
6020,
389,
287,
530,
37322,
341,
13,
198,
18090,
33,
6020,
3784,
33327,
7,
16366,
8,
3784,
1640,
3237,
7,
710,
16,
11,
497,
17,
930,
198,
220,
497,
16,
13,
38679,
3792,
35854,
5189,
7,
13313,
540,
20180,
8,
290,
497,
17,
13,
38679,
3792,
35854,
5189,
7,
13313,
540,
20180,
8,
290,
198,
220,
220,
220,
1309,
2906,
16,
1058,
8113,
540,
20180,
796,
497,
16,
13,
38679,
1722,
6030,
7,
13313,
540,
20180,
828,
2906,
17,
1058,
198,
220,
220,
220,
8113,
540,
20180,
796,
497,
17,
13,
38679,
1722,
6030,
7,
13313,
540,
20180,
8,
287,
198,
220,
220,
220,
220,
220,
2906,
16,
13,
7249,
1522,
9487,
7483,
796,
2906,
17,
13,
7249,
1522,
9487,
7483,
8,
198,
392,
198,
220,
2597,
33,
6020,
3784,
33327,
7,
18608,
2505,
8,
3784,
1640,
3237,
7,
710,
16,
11,
497,
17,
930,
198,
220,
497,
16,
13,
38679,
3792,
35854,
5189,
7,
13313,
540,
20180,
8,
290,
497,
17,
13,
38679,
3792,
35854,
5189,
7,
13313,
540,
20180,
8,
290,
198,
220,
220,
220,
1309,
2906,
16,
1058,
8113,
540,
20180,
796,
497,
16,
13,
38679,
1722,
6030,
7,
13313,
540,
20180,
828,
2906,
17,
1058,
198,
220,
220,
220,
8113,
540,
20180,
796,
497,
17,
13,
38679,
1722,
6030,
7,
13313,
540,
20180,
8,
287,
198,
220,
220,
220,
220,
220,
2906,
16,
13,
26000,
4820,
341,
796,
2906,
17,
13,
26000,
4820,
341,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
5456,
62,
68,
3639,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
790,
62,
18090,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
6109,
12438,
47445,
287,
262,
37322,
341,
318,
5421,
1626,
262,
37322,
341,
11041,
13,
198,
4906,
13,
26000,
4820,
341,
47445,
3784,
1640,
3237,
7,
18090,
930,
2597,
33,
6020,
3784,
1069,
1023,
7,
26145,
930,
374,
65,
13,
18608,
2505,
3784,
42813,
7,
18090,
22305,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
790,
62,
18090,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
34472,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
13313,
669,
287,
257,
37322,
341,
19720,
257,
37322,
341,
11041,
1276,
423,
198,
220,
220,
220,
220,
220,
220,
220,
11188,
8113,
669,
1022,
4847,
5421,
287,
262,
4732,
5016,
7483,
11,
198,
220,
220,
220,
220,
220,
220,
220,
290,
777,
11188,
8113,
669,
1276,
423,
262,
976,
393,
517,
2276,
2099,
198,
220,
220,
220,
220,
220,
220,
220,
220,
621,
262,
37322,
341,
8113,
669,
13,
198,
4906,
13,
11990,
34525,
3784,
1640,
3237,
7,
8443,
273,
930,
198,
220,
1309,
9176,
13313,
20801,
22667,
397,
1058,
5345,
7,
13313,
540,
20180,
8,
796,
21716,
13,
437,
13,
18090,
3784,
292,
7248,
22784,
198,
220,
220,
220,
220,
220,
220,
220,
5981,
36180,
654,
1058,
5345,
7,
35,
2690,
1387,
8,
796,
2597,
33,
6020,
3784,
19738,
7,
26145,
930,
374,
65,
13,
18608,
2505,
3784,
3849,
5458,
7,
305,
829,
13313,
20801,
22667,
397,
8,
3784,
1662,
40613,
3419,
828,
198,
220,
220,
220,
220,
220,
220,
220,
5421,
49,
4316,
1058,
5345,
7,
13313,
540,
20180,
8,
796,
5981,
36180,
654,
3784,
33327,
7,
16366,
13,
38679,
1722,
6030,
7,
13313,
540,
20180,
4008,
3784,
292,
7248,
22784,
198,
220,
220,
220,
220,
220,
220,
220,
4732,
9487,
7483,
1058,
32112,
1522,
9487,
7483,
796,
5421,
49,
4316,
3784,
1092,
7,
7942,
737,
7249,
1522,
9487,
7483,
3784,
1092,
7,
7942,
8,
287,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4732,
9487,
7483,
13,
11990,
34525,
3784,
1069,
1023,
7,
11188,
34525,
930,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
11188,
34525,
13,
437,
13,
18090,
3784,
1640,
3237,
7,
2597,
930,
5421,
49,
4316,
3784,
42813,
7,
18090,
8,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
290,
357,
8443,
273,
13,
4906,
3784,
1662,
40613,
3419,
290,
11188,
34525,
13,
4906,
3784,
1662,
40613,
28955,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15565,
21716,
13,
4906,
3784,
1640,
3237,
7,
1102,
23914,
2514,
7,
10215,
5546,
278,
34525,
13,
4906,
4008,
1267,
198,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
34472,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
5016,
7483,
30800,
36301,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
5016,
7483,
30800,
36301,
526,
15931,
628,
220,
220,
220,
825,
468,
62,
1102,
2536,
1397,
62,
4871,
7483,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
1249,
7004,
301,
270,
18187,
318,
2081,
11,
788,
612,
1276,
307,
257,
1500,
24674,
9487,
7483,
13,
198,
12154,
7004,
301,
270,
18187,
15565,
1500,
24674,
9487,
7483,
3784,
1662,
40613,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
468,
62,
1102,
2536,
1397,
62,
4871,
7483,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
5772,
316,
1068,
62,
30854,
62,
3919,
62,
40890,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
5772,
316,
1068,
20180,
468,
645,
1277,
3033,
11,
290,
611,
31070,
20180,
318,
198,
220,
220,
220,
220,
220,
220,
220,
6565,
340,
468,
645,
2276,
4582,
13,
198,
17143,
316,
1068,
20180,
13,
30053,
3784,
271,
40613,
3419,
290,
357,
1102,
2536,
1397,
9487,
7483,
3784,
271,
40613,
3419,
15565,
198,
17143,
316,
1068,
20180,
13,
439,
42969,
3419,
3784,
271,
40613,
28955,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
5772,
316,
1068,
62,
30854,
62,
3919,
62,
40890,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
12336,
62,
397,
8709,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
262,
5772,
316,
1068,
20180,
318,
407,
12531,
11,
788,
262,
5016,
7483,
973,
355,
281,
198,
220,
220,
220,
220,
220,
220,
220,
4578,
2236,
407,
307,
12531,
13,
198,
7,
1662,
5772,
316,
1068,
20180,
13,
271,
23839,
8,
15565,
198,
28243,
36301,
7004,
301,
2738,
13,
50039,
3784,
1640,
3237,
7,
64,
930,
407,
257,
13,
38679,
1722,
6030,
7,
9487,
7483,
737,
271,
23839,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
12336,
62,
397,
8709,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
4036,
62,
271,
62,
4871,
7483,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
4578,
284,
257,
5016,
7483,
30800,
36301,
318,
257,
5016,
7483,
13,
198,
11055,
36301,
7004,
301,
2738,
13,
50039,
3784,
1640,
3237,
7,
64,
930,
257,
13,
38679,
3792,
35854,
5189,
7,
9487,
7483,
4008,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
4036,
62,
271,
62,
4871,
7483,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
1500,
24674,
62,
4871,
13350,
62,
1102,
2536,
391,
62,
22046,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
612,
389,
597,
1500,
24674,
9487,
13350,
11,
788,
790,
4578,
1276,
307,
262,
198,
220,
220,
220,
220,
220,
220,
220,
976,
355,
393,
257,
43135,
286,
606,
11,
393,
611,
1249,
7004,
301,
270,
18187,
318,
2081,
11,
198,
220,
220,
220,
220,
220,
220,
220,
788,
340,
460,
635,
307,
21436,
18187,
13,
198,
28243,
36301,
7004,
301,
2738,
13,
50039,
3784,
1640,
3237,
7,
257,
930,
198,
220,
1309,
1822,
1058,
5016,
7483,
796,
257,
13,
38679,
1722,
6030,
7,
9487,
7483,
8,
287,
198,
220,
220,
220,
1500,
24674,
9487,
7483,
3784,
1640,
3237,
7,
198,
220,
220,
220,
220,
220,
36624,
930,
198,
220,
220,
220,
220,
220,
220,
220,
220,
1822,
796,
36624,
393,
1822,
13,
1102,
23914,
2514,
7,
535,
8,
393,
357,
12154,
7004,
301,
270,
18187,
290,
1822,
13,
271,
7004,
301,
270,
18187,
1890,
7,
535,
4008,
198,
220,
220,
220,
220,
220,
1267,
198,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
1500,
24674,
62,
4871,
13350,
62,
1102,
2536,
391,
62,
22046,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
1500,
24674,
62,
4871,
13350,
62,
1102,
2536,
391,
62,
17143,
316,
1068,
62,
30854,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
198,
220,
220,
220,
15179,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
612,
389,
597,
1500,
24674,
9487,
13350,
11,
788,
262,
5772,
316,
1068,
20180,
198,
220,
220,
220,
220,
220,
220,
220,
220,
1276,
307,
262,
976,
355,
393,
257,
43135,
286,
606,
11,
393,
611,
1249,
7004,
301,
270,
18187,
318,
2081,
11,
788,
340,
460,
635,
307,
21436,
18187,
13,
198,
1102,
2536,
1397,
9487,
7483,
3784,
1640,
3237,
7,
198,
220,
220,
220,
220,
36624,
930,
220,
5772,
316,
1068,
20180,
796,
36624,
393,
5772,
316,
1068,
20180,
13,
1102,
23914,
2514,
7,
535,
8,
393,
198,
220,
220,
220,
220,
357,
12154,
7004,
301,
270,
18187,
290,
5772,
316,
1068,
20180,
13,
271,
7004,
301,
270,
18187,
1890,
7,
535,
4008,
198,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
1500,
24674,
62,
4871,
13350,
62,
1102,
2536,
391,
62,
17143,
316,
1068,
62,
30854,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
7502,
12915,
12443,
341,
6601,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
7502,
12915,
12443,
341,
6601,
526,
15931,
628,
220,
220,
220,
825,
7550,
62,
265,
62,
11635,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
11280,
12915,
12443,
341,
6601,
329,
6149,
5396,
5645,
1276,
423,
257,
2060,
198,
220,
220,
220,
220,
220,
220,
220,
7550,
2953,
23412,
28348,
329,
262,
36075,
966,
351,
2099,
26774,
35364,
290,
15082,
8467,
286,
352,
492,
16,
11,
611,
318,
3041,
5372,
3237,
28,
9562,
11,
290,
1276,
423,
645,
23412,
28348,
329,
262,
36075,
966,
618,
262,
8112,
5645,
389,
555,
24071,
13,
198,
361,
220,
407,
886,
13,
271,
35422,
1068,
198,
8524,
7550,
2953,
796,
9242,
198,
17772,
198,
220,
220,
220,
220,
220,
220,
220,
407,
318,
3041,
5372,
3237,
28,
9562,
15565,
198,
220,
220,
220,
220,
220,
220,
220,
7550,
2953,
1279,
29,
9242,
290,
7550,
2953,
3784,
1640,
3237,
7,
4906,
28,
3118,
10698,
35364,
290,
318,
7,
16,
11,
16,
4008,
198,
32088,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
7550,
62,
265,
62,
11635,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
7502,
12915,
24159,
2762,
6601,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
7502,
12915,
24159,
2762,
6601,
526,
15931,
628,
220,
220,
220,
825,
4117,
62,
265,
62,
11635,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
11280,
12915,
24159,
2762,
6601,
329,
6149,
11,
1729,
34642,
5396,
5645,
1276,
423,
257,
2060,
4117,
2953,
23412,
28348,
611,
318,
49174,
35660,
489,
16856,
318,
3991,
11,
543,
1276,
307,
286,
2099,
26774,
35364,
290,
423,
257,
15082,
8467,
286,
352,
492,
16,
13,
15323,
11,
262,
2223,
468,
645,
4117,
2953,
5128,
6757,
13,
198,
361,
220,
407,
886,
13,
271,
35422,
1068,
393,
886,
13,
271,
40257,
393,
318,
49174,
35660,
489,
16856,
198,
8524,
4117,
2953,
796,
9242,
198,
17772,
198,
220,
220,
220,
220,
220,
220,
220,
4117,
2953,
1279,
29,
9242,
290,
198,
220,
220,
220,
220,
220,
220,
220,
4117,
2953,
3784,
1640,
3237,
7,
4906,
28,
3118,
10698,
35364,
290,
318,
7,
16,
11,
16,
4008,
198,
32088,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
4117,
62,
265,
62,
11635,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
16000,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
16000,
526,
15931,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
825,
7216,
62,
260,
344,
1412,
62,
20500,
62,
15596,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
262,
3758,
9237,
290,
262,
3328,
9237,
286,
262,
976,
16000,
389,
319,
262,
976,
21073,
4470,
11,
262,
3758,
9237,
1276,
307,
6149,
878,
262,
3328,
9237,
13,
198,
260,
15164,
9237,
13,
38679,
3792,
35854,
5189,
7,
12837,
29223,
33928,
22882,
2649,
8,
198,
23928,
444,
198,
1616,
277,
1058,
220,
21073,
4470,
796,
3758,
9237,
3784,
19738,
7,
38679,
3792,
35854,
5189,
7,
12837,
29223,
33928,
22882,
2649,
29720,
38679,
1722,
6030,
7,
12837,
29223,
33928,
22882,
2649,
8,
3784,
292,
35422,
1068,
7248,
3419,
3784,
11085,
22446,
32111,
287,
198,
69,
796,
3328,
9237,
3784,
19738,
7,
38679,
3792,
35854,
5189,
7,
12837,
29223,
33928,
22882,
2649,
29720,
38679,
1722,
6030,
7,
12837,
29223,
33928,
22882,
2649,
8,
3784,
292,
35422,
1068,
7248,
3419,
3784,
11085,
22446,
32111,
220,
15565,
198,
69,
13,
31534,
3784,
9630,
5189,
7,
21280,
9237,
13,
38679,
1722,
6030,
7,
12837,
29223,
33928,
22882,
2649,
8,
3784,
292,
35422,
1068,
7248,
3419,
3784,
11085,
3419,
1267,
1279,
198,
69,
13,
31534,
3784,
9630,
5189,
7,
260,
15164,
9237,
13,
38679,
1722,
6030,
7,
12837,
29223,
33928,
22882,
2649,
8,
3784,
292,
35422,
1068,
7248,
3419,
3784,
11085,
3419,
1267,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
7216,
62,
260,
344,
1412,
62,
20500,
62,
15596,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
7159,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
28100,
2886,
286,
257,
16000,
1276,
691,
307,
25,
1312,
8,
12608,
286,
262,
7216,
3868,
4470,
11,
21065,
8,
38491,
11,
46955,
8,
18975,
3815,
357,
4758,
389,
4295,
9517,
3815,
10200,
597,
2742,
1988,
828,
21628,
8,
7952,
10007,
286,
262,
13507,
2752,
4225,
2673,
11,
410,
8,
12608,
286,
262,
1398,
23107,
262,
4225,
2673,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
7159,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
2314,
62,
19692,
62,
7784,
3166,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
36479,
1095,
2314,
3272,
13215,
286,
32028,
42974,
902,
393,
511,
1515,
1746,
13,
220,
770,
318,
2081,
611,
290,
691,
611,
1111,
16000,
12915,
82,
389,
28543,
1626,
262,
976,
4225,
2673,
42974,
434,
357,
72,
13,
68,
1539,
281,
4225,
2673,
18843,
392,
393,
281,
4225,
2673,
737,
198,
21280,
9237,
3784,
1662,
40613,
3419,
290,
3328,
9237,
3784,
1662,
40613,
3419,
15565,
198,
1616,
3758,
4834,
565,
2752,
42974,
1058,
5345,
7,
9492,
2673,
42974,
434,
8,
796,
198,
21280,
9237,
3784,
292,
35422,
1068,
7248,
3419,
3784,
11085,
22446,
268,
565,
2752,
42974,
434,
3419,
198,
259,
198,
1616,
3328,
4834,
565,
2752,
42974,
1058,
5345,
7,
9492,
2673,
42974,
434,
8,
796,
198,
260,
15164,
9237,
3784,
292,
35422,
1068,
7248,
3419,
3784,
11085,
22446,
268,
565,
2752,
42974,
434,
3419,
198,
259,
220,
3758,
4834,
565,
2752,
42974,
796,
3328,
4834,
565,
2752,
42974,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2314,
62,
19692,
62,
7784,
3166,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
9877,
62,
271,
62,
12683,
282,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
818,
262,
1339,
618,
262,
16000,
9877,
318,
257,
26484,
11,
262,
7159,
286,
262,
16000,
1276,
6053,
284,
262,
12608,
286,
262,
26484,
13,
317,
16000,
45751,
24866,
284,
257,
26484,
3460,
4163,
611,
262,
45751,
318,
286,
262,
976,
5016,
393,
257,
43135,
286,
326,
286,
262,
3460,
4163,
13,
198,
7,
20500,
42758,
796,
16000,
42758,
3712,
292,
2047,
354,
11712,
282,
1267,
290,
9877,
13,
38679,
3792,
35854,
5189,
7,
11712,
282,
8,
15565,
198,
220,
220,
1309,
6737,
29021,
1058,
14230,
1068,
7248,
7,
21746,
8,
796,
9877,
13,
38679,
1722,
6030,
7,
11712,
282,
737,
259,
372,
863,
27608,
3419,
3784,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2922,
7,
77,
25,
45,
2434,
20180,
930,
299,
13,
38679,
3792,
6030,
5189,
7,
21746,
4008,
3784,
33327,
7,
38679,
1722,
6030,
7,
21746,
4008,
3784,
292,
35422,
1068,
7248,
3419,
198,
220,
220,
287,
6737,
29021,
3784,
7857,
3419,
796,
2116,
13,
49140,
3784,
7857,
3419,
198,
220,
220,
290,
2116,
13,
49140,
3784,
1640,
3237,
7,
267,
25,
11052,
22882,
2649,
930,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
407,
357,
78,
13,
38679,
3792,
35854,
5189,
7,
16870,
2234,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
290,
267,
13,
38679,
1722,
6030,
7,
16870,
2234,
737,
1837,
23650,
3784,
7857,
3419,
28,
15,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
290,
267,
13,
38679,
1722,
6030,
7,
16870,
2234,
737,
3575,
392,
3784,
271,
40613,
3419,
1267,
15565,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1309,
279,
1058,
14161,
796,
6737,
29021,
3784,
265,
7,
944,
13,
49140,
3784,
9630,
5189,
7,
78,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
287,
267,
13,
4906,
13,
38679,
1722,
6030,
7,
9487,
7483,
737,
1102,
23914,
2514,
7,
79,
13,
4906,
13,
38679,
1722,
6030,
7,
9487,
7483,
22305,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
9877,
62,
271,
62,
12683,
282,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
19810,
62,
16684,
6637,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
262,
16000,
12915,
82,
389,
1111,
10775,
33928,
22882,
6637,
11,
788,
262,
21716,
1276,
467,
1022,
262,
22349,
7997,
416,
262,
21073,
20655,
286,
262,
734,
16000,
12915,
82,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
19810,
62,
16684,
6637,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
9877,
62,
260,
2232,
62,
1462,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
9877,
1276,
2035,
3522,
281,
14680,
357,
259,
543,
1339,
3275,
42758,
318,
2035,
6171,
354,
14134,
393,
355,
2047,
354,
14134,
393,
10971,
8,
393,
257,
26484,
357,
259,
543,
1339,
3275,
42758,
318,
355,
2047,
354,
11712,
282,
737,
383,
1438,
286,
262,
34441,
20180,
20717,
416,
9877,
1276,
307,
262,
976,
355,
326,
286,
262,
16000,
13,
198,
12683,
1300,
3784,
1662,
40613,
3419,
15565,
198,
19510,
12683,
1300,
13,
38679,
3792,
35854,
5189,
7,
32180,
8,
290,
198,
7,
20500,
42758,
796,
16000,
42758,
3712,
292,
2047,
354,
14134,
393,
3275,
42758,
796,
16000,
42758,
3712,
28869,
354,
14134,
393,
3275,
42758,
796,
16000,
42758,
3712,
47768,
8,
198,
8,
393,
357,
12683,
1300,
13,
38679,
3792,
35854,
5189,
7,
11712,
282,
8,
220,
290,
3275,
42758,
796,
16000,
42758,
3712,
292,
2047,
354,
11712,
282,
1267,
198,
1267,
290,
1438,
796,
9877,
13,
3672,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
9877,
62,
260,
2232,
62,
1462,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
9877,
62,
271,
62,
27184,
62,
25927,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
818,
262,
1339,
618,
257,
16000,
351,
3275,
42758,
6171,
354,
14134,
393,
355,
2047,
354,
14134,
468,
257,
1729,
6565,
14680,
9877,
11,
262,
7159,
286,
262,
16000,
1276,
6053,
284,
262,
287,
290,
287,
448,
10007,
286,
262,
14680,
13,
317,
25139,
2357,
24866,
284,
281,
45751,
611,
262,
45751,
318,
286,
262,
976,
5016,
393,
257,
43135,
286,
326,
286,
262,
25139,
2357,
13,
198,
7,
20500,
42758,
796,
16000,
42758,
3712,
292,
2047,
354,
14134,
393,
3275,
42758,
796,
16000,
42758,
3712,
28869,
354,
14134,
8,
290,
9877,
13,
38679,
3792,
35854,
5189,
7,
32180,
8,
220,
15565,
198,
1309,
2581,
47,
8357,
1058,
14230,
1068,
7248,
7,
36301,
8,
796,
9877,
13,
38679,
1722,
6030,
7,
32180,
737,
11990,
36301,
3784,
198,
2922,
7,
37295,
796,
25139,
2357,
35,
4154,
35854,
3712,
259,
448,
393,
4571,
796,
25139,
2357,
35,
4154,
35854,
3712,
62,
6,
259,
6,
220,
1267,
198,
259,
2581,
47,
8357,
3784,
7857,
3419,
796,
2116,
13,
49140,
3784,
7857,
3419,
290,
198,
944,
13,
49140,
3784,
1640,
3237,
7,
267,
25,
11052,
22882,
2649,
930,
198,
1662,
357,
78,
13,
38679,
3792,
35854,
5189,
7,
16870,
2234,
8,
290,
267,
13,
38679,
1722,
6030,
7,
16870,
2234,
737,
1837,
23650,
3784,
7857,
3419,
28,
15,
290,
267,
13,
38679,
1722,
6030,
7,
16870,
2234,
737,
3575,
392,
3784,
271,
40613,
3419,
1267,
15565,
198,
1616,
279,
1058,
25139,
2357,
796,
2581,
47,
8357,
3784,
265,
7,
944,
13,
49140,
3784,
9630,
5189,
7,
78,
4008,
287,
198,
78,
13,
4906,
13,
38679,
1722,
6030,
7,
9487,
7483,
737,
1102,
23914,
2514,
7,
79,
13,
4906,
13,
38679,
1722,
6030,
7,
9487,
7483,
4008,
198,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
9877,
62,
271,
62,
27184,
62,
25927,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
9877,
62,
271,
62,
27184,
62,
47768,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
818,
262,
1339,
618,
257,
16000,
351,
3275,
42758,
10971,
468,
257,
1729,
6565,
14680,
9877,
11,
262,
7159,
286,
262,
16000,
1276,
6053,
284,
262,
503,
11,
287,
448,
11,
290,
1441,
10007,
286,
262,
14680,
13,
317,
25139,
2357,
24866,
284,
281,
45751,
611,
262,
45751,
318,
286,
262,
976,
5016,
393,
257,
43135,
286,
326,
286,
262,
25139,
2357,
13,
198,
7,
20500,
42758,
796,
16000,
42758,
3712,
47768,
8,
290,
9877,
13,
38679,
3792,
35854,
5189,
7,
32180,
8,
15565,
198,
1309,
10971,
47,
8357,
1058,
14230,
1068,
7248,
7,
36301,
8,
796,
9877,
13,
38679,
1722,
6030,
7,
32180,
737,
11990,
36301,
3784,
198,
19738,
7,
37295,
796,
25139,
2357,
35,
4154,
35854,
3712,
259,
448,
393,
4571,
796,
25139,
2357,
35,
4154,
35854,
3712,
448,
393,
4571,
796,
25139,
2357,
35,
4154,
35854,
3712,
7783,
8,
198,
259,
10971,
47,
8357,
3784,
7857,
3419,
796,
2116,
13,
49140,
3784,
7857,
3419,
290,
198,
944,
13,
49140,
3784,
1640,
3237,
7,
267,
25,
11052,
22882,
2649,
930,
267,
13,
38679,
3792,
35854,
5189,
7,
16870,
2234,
8,
290,
1309,
304,
1058,
41986,
796,
267,
13,
38679,
1722,
6030,
7,
16870,
2234,
8,
287,
198,
68,
13,
3575,
392,
3784,
1662,
40613,
3419,
220,
15565,
198,
1616,
279,
1058,
25139,
2357,
796,
10971,
47,
8357,
3784,
265,
7,
944,
13,
49140,
3784,
9630,
5189,
7,
78,
4008,
287,
198,
68,
13,
3575,
392,
3784,
292,
44015,
594,
3419,
3784,
11085,
22446,
4906,
13,
38679,
1722,
6030,
7,
9487,
7483,
737,
1102,
23914,
2514,
7,
79,
13,
4906,
13,
38679,
1722,
6030,
7,
9487,
7483,
4008,
198,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
9877,
62,
271,
62,
27184,
62,
47768,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
20500,
62,
11031,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1212,
12405,
5860,
262,
16000,
35854,
1988,
329,
428,
16000,
13,
198,
20274,
796,
357,
20500,
35854,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9492,
4658,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
20500,
62,
11031,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
4225,
2673,
42974,
434,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
4225,
2673,
42974,
434,
526,
15931,
628,
198,
4871,
21073,
4470,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
21073,
4470,
526,
15931,
628,
220,
220,
220,
825,
31870,
62,
23599,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
31870,
329,
257,
21073,
4470,
1276,
691,
307,
7368,
611,
262,
20717,
2142,
318,
1963,
2473,
1739,
13,
198,
2116,
13,
19738,
273,
3784,
1662,
40613,
3419,
796,
357,
944,
13,
7856,
6629,
13,
38679,
3792,
35854,
5189,
7,
15205,
24705,
8467,
20180,
8,
290,
2116,
13,
7856,
6629,
13,
38679,
1722,
6030,
7,
15205,
24705,
8467,
20180,
737,
271,
15205,
2473,
1739,
28955,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
31870,
62,
23599,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
10375,
62,
2664,
62,
20077,
62,
36195,
4470,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
257,
3868,
4470,
318,
287,
281,
4225,
2673,
6412,
284,
416,
281,
4225,
2673,
11041,
287,
281,
13507,
2752,
4225,
2673,
11,
220,
290,
326,
3868,
4470,
318,
2219,
351,
1194,
3868,
4470,
287,
281,
4225,
2673,
6412,
284,
416,
1194,
4225,
529,
261,
11041,
1626,
326,
976,
13507,
2752,
4225,
2673,
11,
340,
1276,
307,
2219,
284,
257,
3868,
4470,
1626,
326,
13507,
2752,
4225,
2673,
13,
2750,
2219,
21073,
20655,
356,
1612,
21073,
20655,
351,
262,
976,
31870,
290,
6870,
15814,
13,
198,
1616,
493,
5842,
274,
1058,
5345,
7,
9492,
2673,
11041,
8,
796,
10375,
13,
3849,
2673,
11041,
220,
287,
198,
600,
5842,
274,
3784,
1640,
3237,
198,
7,
1312,
1904,
1058,
4225,
2673,
11041,
930,
198,
1616,
1262,
9492,
2673,
1058,
5345,
7,
9492,
2673,
8,
220,
796,
1312,
1904,
13,
268,
565,
2752,
9492,
2673,
3784,
292,
7248,
3419,
198,
3784,
24592,
7,
198,
72,
1904,
13,
268,
565,
2752,
18843,
392,
13,
24011,
1389,
42974,
434,
3784,
292,
7248,
3419,
3784,
17966,
7,
268,
565,
2752,
18843,
392,
13,
24011,
1389,
42974,
434,
737,
268,
565,
2752,
9492,
2673,
3784,
292,
7248,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
259,
198,
1616,
12720,
5842,
274,
1058,
5345,
7,
9492,
2673,
11041,
8,
796,
1262,
9492,
2673,
13,
8310,
363,
434,
3784,
19738,
7,
38679,
3792,
35854,
5189,
7,
9492,
2673,
11041,
29720,
38679,
1722,
6030,
7,
9492,
2673,
11041,
8,
3784,
292,
7248,
3419,
198,
3784,
24592,
7,
198,
3500,
9492,
2673,
13,
8310,
363,
434,
3784,
19738,
7,
38679,
3792,
35854,
5189,
7,
20575,
1389,
42974,
434,
29720,
38679,
1722,
6030,
7,
20575,
1389,
42974,
434,
8,
3784,
292,
7248,
3419,
198,
3784,
17966,
7,
3575,
392,
13,
8310,
363,
434,
3784,
19738,
7,
38679,
3792,
35854,
5189,
7,
20575,
1389,
42974,
434,
29720,
38679,
1722,
6030,
7,
20575,
1389,
42974,
434,
29720,
3575,
392,
13,
8310,
363,
434,
3784,
198,
19738,
7,
38679,
3792,
35854,
5189,
7,
9492,
2673,
11041,
29720,
38679,
1722,
6030,
7,
9492,
2673,
11041,
8,
3784,
292,
7248,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
3784,
42218,
7,
72,
1904,
8,
198,
287,
198,
33350,
5842,
274,
3784,
1640,
3237,
7,
12720,
11041,
1058,
4225,
2673,
11041,
930,
198,
12720,
11041,
13,
5420,
364,
2514,
13,
36195,
4470,
3784,
1640,
3237,
7,
300,
1058,
21073,
4470,
930,
357,
75,
13,
7856,
6629,
796,
2116,
13,
7856,
6629,
290,
198,
357,
2116,
13,
19738,
273,
13,
38679,
3792,
35854,
5189,
7,
43,
270,
1691,
10100,
8,
15565,
198,
220,
300,
13,
19738,
273,
13,
38679,
3792,
35854,
5189,
7,
43,
270,
1691,
10100,
8,
290,
198,
220,
2116,
13,
19738,
273,
13,
38679,
1722,
6030,
7,
43,
270,
1691,
10100,
737,
8367,
796,
300,
13,
19738,
273,
13,
38679,
1722,
6030,
7,
43,
270,
1691,
10100,
737,
8367,
1267,
198,
220,
290,
198,
7,
2116,
13,
19738,
273,
13,
38679,
3792,
35854,
5189,
7,
43,
270,
1691,
46541,
8,
15565,
198,
220,
300,
13,
19738,
273,
13,
38679,
3792,
35854,
5189,
7,
43,
270,
1691,
46541,
8,
290,
198,
220,
2116,
13,
19738,
273,
13,
38679,
1722,
6030,
7,
43,
270,
1691,
46541,
737,
8367,
796,
300,
13,
19738,
273,
13,
38679,
1722,
6030,
7,
43,
270,
1691,
46541,
737,
8367,
1267,
198,
8,
198,
23928,
444,
198,
1262,
9492,
2673,
13,
36195,
4470,
3784,
1069,
1023,
7,
7856,
6629,
796,
2116,
13,
7856,
6629,
290,
198,
357,
2116,
13,
19738,
273,
13,
38679,
3792,
35854,
5189,
7,
43,
270,
1691,
10100,
8,
15565,
198,
220,
300,
13,
19738,
273,
13,
38679,
3792,
35854,
5189,
7,
43,
270,
1691,
10100,
8,
290,
198,
220,
2116,
13,
19738,
273,
13,
38679,
1722,
6030,
7,
43,
270,
1691,
10100,
737,
8367,
796,
300,
13,
19738,
273,
13,
38679,
1722,
6030,
7,
43,
270,
1691,
10100,
737,
8367,
1267,
198,
392,
198,
7,
2116,
13,
19738,
273,
13,
38679,
3792,
35854,
5189,
7,
43,
270,
1691,
46541,
8,
15565,
198,
220,
300,
13,
19738,
273,
13,
38679,
3792,
35854,
5189,
7,
43,
270,
1691,
46541,
8,
290,
198,
220,
2116,
13,
19738,
273,
13,
38679,
1722,
6030,
7,
43,
270,
1691,
46541,
737,
8367,
796,
300,
13,
19738,
273,
13,
38679,
1722,
6030,
7,
43,
270,
1691,
46541,
737,
8367,
1267,
198,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
10375,
62,
2664,
62,
20077,
62,
36195,
4470,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
976,
62,
4871,
7483,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
1398,
7483,
7268,
262,
20717,
8113,
540,
20180,
1276,
307,
262,
976,
1398,
7483,
11,
393,
281,
31836,
11,
286,
262,
1398,
7483,
326,
4909,
262,
10375,
13507,
2752,
428,
3868,
4470,
13,
198,
7856,
6629,
13,
14933,
10223,
3784,
17966,
7,
14933,
10223,
8,
3784,
42813,
7,
3849,
2673,
13557,
6,
22866,
11537,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
976,
62,
4871,
7483,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
31870,
62,
600,
62,
273,
62,
8841,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
31870,
1988,
11,
611,
1944,
11,
1276,
307,
257,
25659,
1691,
10100,
393,
257,
25659,
1691,
46541,
198,
944,
13,
19738,
273,
3784,
1662,
40613,
3419,
15565,
198,
944,
13,
19738,
273,
13,
38679,
3792,
35854,
5189,
7,
43,
270,
1691,
46541,
8,
393,
198,
944,
13,
19738,
273,
13,
38679,
3792,
35854,
5189,
7,
43,
270,
1691,
10100,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
31870,
62,
600,
62,
273,
62,
8841,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
16000,
12915,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
16000,
12915,
526,
15931,
628,
220,
220,
220,
825,
6697,
62,
437,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1212,
12405,
5860,
257,
900,
1390,
262,
16000,
12915,
357,
361,
7160,
8,
379,
262,
6697,
886,
286,
262,
16000,
329,
428,
16000,
12915,
13,
198,
20500,
3784,
1662,
40613,
3419,
198,
20274,
796,
357,
20500,
3784,
292,
7248,
22446,
20500,
12915,
3784,
292,
7248,
3419,
3784,
42218,
7,
944,
4008,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9492,
4658,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
6697,
62,
437,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
318,
62,
21280,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1212,
12405,
5860,
1988,
2081,
611,
428,
16000,
12915,
318,
257,
3758,
9237,
13,
198,
20500,
3784,
1662,
40613,
3419,
198,
20274,
796,
357,
20500,
13,
21280,
9237,
3784,
292,
7248,
3419,
3784,
42813,
7,
944,
4008,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9492,
4658,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
318,
62,
21280,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
318,
62,
260,
15164,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1212,
12405,
5860,
1988,
2081,
611,
428,
16000,
12915,
318,
257,
3328,
9237,
13,
198,
20500,
3784,
1662,
40613,
3419,
198,
20274,
796,
357,
20500,
13,
260,
15164,
9237,
3784,
292,
7248,
3419,
3784,
42813,
7,
944,
4008,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9492,
4658,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
318,
62,
260,
15164,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
13507,
2752,
62,
8310,
363,
434,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1212,
12405,
5860,
257,
900,
1390,
262,
13507,
2752,
4225,
2673,
42974,
434,
428,
16000,
12915,
318,
28543,
1626,
13,
198,
20274,
796,
357,
361,
2116,
3784,
19738,
7,
38679,
3792,
35854,
5189,
7,
22628,
4008,
3784,
1662,
40613,
3419,
198,
8524,
1377,
340,
318,
257,
12816,
198,
1616,
886,
22628,
1058,
12816,
796,
198,
220,
2116,
3784,
19738,
7,
38679,
3792,
35854,
5189,
7,
22628,
29720,
38679,
1722,
6030,
7,
22628,
8,
3784,
292,
35422,
1068,
7248,
3419,
3784,
11085,
3419,
198,
220,
287,
198,
220,
611,
886,
22628,
13,
271,
30815,
22495,
3419,
198,
220,
788,
886,
22628,
13,
24011,
1389,
42974,
434,
13,
268,
565,
2752,
9492,
2673,
13,
38679,
1722,
6030,
7,
9492,
2673,
42974,
434,
8,
3784,
292,
7248,
3419,
3784,
198,
220,
220,
220,
220,
6441,
7,
437,
22628,
13,
24011,
1389,
42974,
434,
13,
268,
565,
2752,
18843,
392,
13,
38679,
1722,
6030,
7,
9492,
2673,
42974,
434,
8,
3784,
292,
7248,
28955,
198,
220,
2073,
611,
886,
22628,
13,
271,
24441,
22495,
3419,
198,
220,
220,
220,
788,
886,
22628,
13,
24011,
1389,
42974,
434,
13,
38679,
1722,
6030,
7,
9492,
2673,
42974,
434,
8,
3784,
292,
7248,
3419,
198,
220,
220,
220,
2073,
611,
886,
22628,
13,
271,
37,
6636,
3419,
198,
220,
220,
220,
220,
220,
788,
886,
22628,
13,
3849,
2673,
13,
38679,
1722,
6030,
7,
9492,
2673,
42974,
434,
8,
3784,
292,
7248,
3419,
198,
220,
220,
220,
220,
220,
2073,
611,
886,
22628,
13,
271,
6398,
723,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
788,
886,
22628,
13,
3849,
2673,
11041,
13,
268,
565,
2752,
9492,
2673,
13,
38679,
1722,
6030,
7,
9492,
2673,
42974,
434,
8,
3784,
292,
7248,
3419,
3784,
198,
220,
220,
220,
220,
6441,
7,
437,
22628,
13,
3849,
2673,
11041,
13,
268,
565,
2752,
18843,
392,
13,
38679,
1722,
6030,
7,
9492,
2673,
42974,
434,
8,
3784,
292,
7248,
28955,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
9242,
198,
220,
220,
220,
220,
220,
220,
220,
45762,
198,
220,
220,
220,
220,
220,
45762,
198,
220,
220,
220,
45762,
198,
220,
45762,
198,
17772,
1377,
340,
318,
257,
16000,
29223,
33928,
22882,
2649,
198,
1616,
886,
44,
2640,
1058,
16000,
29223,
33928,
22882,
2649,
220,
796,
198,
220,
2116,
3784,
19738,
7,
38679,
3792,
35854,
5189,
7,
12837,
29223,
33928,
22882,
2649,
29720,
38679,
1722,
6030,
7,
12837,
29223,
33928,
22882,
2649,
8,
3784,
292,
35422,
1068,
7248,
3419,
3784,
11085,
3419,
198,
220,
287,
198,
220,
611,
886,
44,
2640,
13,
268,
565,
2752,
9492,
2673,
3784,
1662,
40613,
3419,
198,
220,
788,
886,
44,
2640,
13,
268,
565,
2752,
9492,
2673,
13,
38679,
1722,
6030,
7,
9492,
2673,
42974,
434,
8,
3784,
292,
7248,
3419,
198,
220,
2073,
886,
44,
2640,
13,
268,
565,
2752,
18843,
392,
13,
38679,
1722,
6030,
7,
9492,
2673,
42974,
434,
8,
3784,
292,
7248,
3419,
198,
220,
45762,
198,
32088,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9492,
4658,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
13507,
2752,
62,
8310,
363,
434,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
3611,
18743,
278,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
3611,
18743,
278,
526,
15931,
628,
220,
220,
220,
825,
4173,
5420,
2588,
425,
62,
7645,
1800,
62,
17966,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2025,
19810,
20855,
1276,
407,
307,
6149,
3585,
284,
2346,
832,
257,
2168,
286,
2276,
1502,
654,
13,
357,
818,
584,
2456,
11,
262,
1007,
1800,
16512,
286,
262,
2276,
1502,
654,
318,
4173,
5420,
2588,
425,
2014,
198,
8499,
3784,
17966,
7,
1462,
3260,
13,
8499,
8,
3784,
1069,
13955,
7,
19052,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
4173,
5420,
2588,
425,
62,
7645,
1800,
62,
17966,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
15717,
540,
20180,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
15717,
540,
20180,
526,
15931,
628,
220,
220,
220,
825,
25745,
62,
50032,
62,
4703,
2247,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
15717,
540,
20180,
6898,
416,
257,
28531,
10223,
1276,
423,
257,
20742,
13,
198,
4703,
2247,
796,
9242,
15565,
25745,
796,
9242,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
25745,
62,
50032,
62,
4703,
2247,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
37350,
33,
6020,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
37350,
33,
6020,
526,
15931,
628,
220,
220,
220,
825,
11507,
62,
7266,
301,
2738,
62,
687,
282,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
10871,
11507,
7004,
301,
2738,
1276,
3522,
284,
257,
8766,
37350,
36301,
286,
262,
2496,
37350,
11712,
1300,
13,
198,
17143,
2357,
7004,
301,
2738,
3784,
1640,
3237,
7,
65,
930,
9877,
13,
17143,
2357,
3784,
42813,
7,
65,
13,
687,
282,
4008,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
11507,
62,
7266,
301,
2738,
62,
687,
282,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
530,
62,
17143,
2357,
62,
7266,
301,
2738,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
37350,
23286,
6020,
4909,
379,
749,
530,
37350,
36301,
7004,
301,
2738,
329,
1123,
8766,
37350,
36301,
286,
262,
2496,
37350,
11712,
1300,
13,
198,
12683,
1300,
13,
17143,
2357,
3784,
1640,
3237,
7,
79,
930,
11507,
7004,
301,
2738,
3784,
19738,
7,
65,
930,
275,
13,
687,
282,
796,
279,
8,
3784,
7857,
3419,
19841,
352,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
530,
62,
17143,
2357,
62,
7266,
301,
2738,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
198,
4871,
27018,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
27018,
526,
15931,
628,
198,
4871,
49693,
463,
455,
378,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
49693,
463,
455,
378,
526,
15931,
628,
220,
220,
220,
825,
27188,
62,
448,
5146,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
3237,
27188,
28181,
257,
15563,
37423,
1276,
2496,
2585,
287,
1180,
7652,
286,
281,
29617,
519,
20996,
1181,
13,
198,
7,
11031,
796,
49693,
463,
455,
378,
35854,
3712,
32523,
8,
15565,
198,
198,
438,
329,
597,
5166,
286,
28181,
27188,
612,
7160,
281,
29617,
519,
20996,
1181,
543,
4909,
262,
6670,
286,
777,
27188,
198,
438,
884,
326,
777,
6670,
5594,
284,
1180,
7652,
286,
326,
29617,
519,
20996,
1181,
198,
198,
448,
5146,
3784,
1640,
3237,
7,
83,
16,
25,
8291,
653,
11,
256,
17,
25,
8291,
653,
930,
1309,
542,
9012,
25,
9012,
796,
7268,
9012,
37573,
22446,
5639,
32,
9012,
7,
83,
16,
13,
16793,
11,
256,
17,
13,
16793,
8,
287,
198,
220,
220,
220,
220,
220,
220,
220,
14808,
3642,
9012,
1279,
29,
9242,
8,
290,
357,
3642,
9012,
13,
36996,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4613,
1069,
1023,
7,
81,
16,
25,
47371,
11,
374,
17,
25,
17718,
930,
357,
81,
16,
1279,
29,
374,
17,
8,
290,
256,
16,
13,
16793,
13,
271,
4264,
1328,
818,
47371,
7,
81,
16,
8,
290,
256,
17,
13,
16793,
13,
271,
4264,
1328,
818,
47371,
7,
81,
17,
4008,
22305,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
27188,
62,
448,
5146,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
3572,
62,
332,
16886,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
818,
257,
1844,
1185,
368,
20480,
11,
257,
3572,
4643,
16886,
1276,
423,
379,
1551,
530,
15619,
290,
530,
28181,
40658,
13,
198,
7,
11031,
796,
49693,
463,
455,
378,
35854,
3712,
25541,
8,
15565,
357,
259,
4976,
3784,
7857,
3419,
18189,
352,
290,
28181,
3784,
7857,
3419,
18189,
352,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
3572,
62,
332,
16886,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
28181,
62,
6738,
62,
36733,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
28181,
40658,
422,
281,
4238,
37423,
743,
423,
257,
4069,
11,
475,
407,
257,
7616,
393,
257,
4860,
13,
198,
7,
11031,
796,
49693,
463,
455,
378,
35854,
3712,
36733,
8,
15565,
357,
448,
5146,
13,
14864,
796,
9242,
290,
28181,
13,
46284,
3784,
271,
40613,
28955,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
28181,
62,
6738,
62,
36733,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
4654,
62,
332,
16886,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
818,
257,
1844,
1812,
37573,
11,
257,
4654,
4643,
16886,
1276,
423,
379,
1551,
734,
15619,
3602,
1756,
290,
3446,
530,
28181,
40658,
13,
198,
7,
11031,
796,
49693,
463,
455,
378,
35854,
3712,
22179,
8,
15565,
357,
448,
5146,
3784,
7857,
3419,
796,
352,
290,
15619,
3784,
7857,
3419,
18189,
362,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
4654,
62,
332,
16886,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
35037,
62,
332,
16886,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
818,
257,
1844,
1812,
37573,
11,
257,
35037,
4643,
16886,
1276,
423,
379,
1551,
530,
15619,
290,
530,
28181,
40658,
13,
198,
7,
11031,
796,
49693,
463,
455,
378,
35854,
3712,
73,
4575,
8,
15565,
357,
259,
4976,
3784,
7857,
3419,
18189,
352,
290,
28181,
3784,
7857,
3419,
18189,
352,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
35037,
62,
332,
16886,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
2106,
62,
1851,
1063,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
18122,
24417,
1063,
460,
423,
379,
749,
530,
28181,
40658,
13,
198,
19510,
11031,
796,
49693,
463,
455,
378,
35854,
3712,
22089,
18122,
8,
393,
357,
11031,
796,
49693,
463,
455,
378,
35854,
3712,
1477,
12154,
18122,
4008,
15565,
357,
448,
5146,
3784,
7857,
3419,
19841,
352,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
2106,
62,
1851,
1063,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
4238,
62,
332,
16886,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2025,
4238,
4643,
16886,
460,
423,
379,
749,
530,
28181,
40658,
13,
198,
7,
11031,
796,
49693,
463,
455,
378,
35854,
3712,
36733,
8,
15565,
357,
448,
5146,
3784,
7857,
3419,
19841,
352,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
4238,
62,
332,
16886,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
15563,
62,
332,
16886,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
818,
257,
1844,
1812,
37573,
11,
257,
15563,
4643,
16886,
1276,
423,
379,
1551,
734,
28181,
3602,
1756,
290,
3446,
530,
15619,
40658,
13,
198,
7,
11031,
796,
49693,
463,
455,
378,
35854,
3712,
32523,
8,
15565,
357,
259,
4976,
3784,
7857,
3419,
796,
352,
290,
28181,
3784,
7857,
3419,
18189,
362,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
15563,
62,
332,
16886,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
27188,
62,
259,
4976,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
3237,
3602,
1756,
15619,
257,
4654,
4643,
16886,
1276,
39779,
287,
1180,
47089,
286,
281,
29617,
519,
20996,
1812,
13,
198,
7,
11031,
796,
49693,
463,
455,
378,
35854,
3712,
22179,
8,
15565,
198,
198,
438,
329,
597,
5166,
286,
15619,
27188,
612,
7160,
281,
29617,
519,
20996,
1181,
543,
4909,
262,
2723,
20202,
1063,
286,
777,
27188,
198,
438,
884,
326,
777,
2723,
9421,
1063,
5594,
284,
1180,
7652,
286,
326,
29617,
519,
20996,
1181,
198,
198,
259,
4976,
3784,
1640,
3237,
7,
83,
16,
25,
8291,
653,
11,
256,
17,
25,
8291,
653,
930,
1309,
542,
9012,
25,
9012,
796,
7268,
9012,
37573,
22446,
5639,
32,
9012,
7,
83,
16,
13,
10459,
11,
256,
17,
13,
10459,
8,
287,
198,
220,
220,
220,
220,
220,
220,
220,
14808,
3642,
9012,
1279,
29,
9242,
8,
290,
357,
3642,
9012,
13,
36996,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4613,
1069,
1023,
7,
81,
16,
25,
47371,
11,
374,
17,
25,
17718,
930,
357,
81,
16,
1279,
29,
374,
17,
8,
290,
256,
16,
13,
10459,
13,
271,
4264,
1328,
818,
47371,
7,
81,
16,
8,
290,
256,
17,
13,
10459,
13,
271,
4264,
1328,
818,
47371,
7,
81,
17,
4008,
22305,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
27188,
62,
259,
4976,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
26923,
12727,
26687,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
26923,
12727,
26687,
526,
15931,
628,
220,
220,
220,
825,
8420,
62,
7752,
463,
455,
689,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
8420,
49693,
463,
455,
689,
1276,
307,
49693,
463,
455,
689,
351,
1611,
8420,
12727,
13,
198,
37023,
3784,
1640,
3237,
7,
11031,
796,
49693,
463,
455,
378,
35854,
3712,
37023,
12727,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
8420,
62,
7752,
463,
455,
689,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
5726,
62,
7752,
463,
455,
689,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
5726,
49693,
463,
455,
689,
1276,
307,
49693,
463,
455,
689,
351,
1611,
5726,
12727,
13,
198,
13000,
3784,
1640,
3237,
7,
11031,
796,
49693,
463,
455,
378,
35854,
3712,
13000,
12727,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
5726,
62,
7752,
463,
455,
689,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
20497,
3103,
10367,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
20497,
3103,
10367,
526,
15931,
628,
198,
4871,
15717,
13102,
469,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
15717,
13102,
469,
526,
15931,
628,
198,
4871,
13118,
23416,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
13118,
23416,
526,
15931,
628,
220,
220,
220,
825,
651,
62,
1324,
18511,
62,
46758,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
6770,
357,
36,
7295,
10552,
8,
286,
262,
7034,
3917,
351,
428,
7034,
3586,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
1324,
18511,
62,
46758,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
1324,
18511,
62,
46758,
7,
944,
11,
3706,
20180,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
6770,
357,
36,
7295,
10552,
8,
286,
262,
7368,
3706,
5002,
287,
262,
7034,
3917,
351,
428,
7034,
3586,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
1324,
18511,
62,
46758,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
11703,
20939,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
11703,
20939,
526,
15931,
628,
220,
220,
220,
825,
17392,
62,
30854,
62,
271,
62,
11377,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2025,
17392,
20180,
468,
2035,
1171,
20742,
393,
645,
20742,
379,
477,
13,
198,
320,
9213,
20180,
13,
4703,
2247,
1279,
29,
9242,
15565,
17392,
20180,
13,
4703,
2247,
796,
6911,
2247,
35854,
3712,
11377,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
17392,
62,
30854,
62,
271,
62,
11377,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
20742,
62,
11377,
62,
273,
62,
19734,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
20742,
286,
281,
11703,
20939,
318,
2035,
1171,
393,
2839,
13,
198,
4703,
2247,
796,
6911,
2247,
35854,
3712,
11377,
393,
20742,
796,
6911,
2247,
35854,
3712,
19734,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
20742,
62,
11377,
62,
273,
62,
19734,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
3672,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
651,
5376,
3419,
5860,
262,
1438,
739,
543,
262,
17392,
15717,
540,
20180,
481,
307,
1900,
287,
262,
33332,
25745,
13,
198,
20274,
796,
357,
361,
16144,
3784,
1662,
40613,
3419,
788,
198,
220,
16144,
198,
17772,
198,
220,
17392,
20180,
13,
3672,
198,
32088,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
17227,
1273,
5620,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
3672,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
15717,
20939,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
15717,
20939,
526,
15931,
628,
220,
220,
220,
825,
1171,
62,
273,
62,
19734,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
20742,
286,
257,
15717,
20939,
318,
2035,
1171,
393,
2839,
13,
198,
4703,
2247,
796,
6911,
2247,
35854,
3712,
11377,
393,
20742,
796,
6911,
2247,
35854,
3712,
19734,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
1171,
62,
273,
62,
19734,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
3611,
1634,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
3611,
1634,
526,
15931,
628,
198,
4871,
27995,
12727,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
27995,
12727,
526,
15931,
628,
220,
220,
220,
825,
1276,
62,
14150,
62,
3672,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2025,
27995,
12727,
1276,
423,
257,
1438,
13,
198,
3672,
3784,
1662,
40613,
7499,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
1276,
62,
14150,
62,
3672,
7,
23029,
407,
1865,
9177,
4943,
628,
628,
198,
198,
4871,
24641,
13247,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
24641,
13247,
526,
15931,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
2488,
259,
16516,
13,
2617,
353,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
825,
13760,
62,
392,
62,
276,
3212,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
3237,
7763,
45,
4147,
290,
3994,
68,
7407,
3212,
286,
281,
24641,
13247,
1276,
307,
287,
262,
976,
24641,
355,
262,
1448,
13,
198,
45964,
19667,
3784,
1640,
3237,
7,
21797,
796,
2116,
13,
38301,
16516,
28955,
290,
198,
45964,
37021,
3784,
1640,
3237,
7,
21797,
796,
2116,
13,
38301,
16516,
28955,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
13760,
62,
392,
62,
276,
3212,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
407,
62,
45964,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2949,
7763,
19667,
393,
7763,
37021,
286,
281,
24641,
13247,
743,
307,
7763,
416,
663,
850,
24432,
393,
663,
2208,
38,
14459,
11,
1007,
1800,
306,
13,
198,
7266,
8094,
3784,
17966,
7,
7266,
8094,
737,
45964,
19667,
3784,
1069,
13955,
3237,
7,
45964,
19667,
8,
290,
198,
16668,
13247,
3784,
17966,
7,
16668,
13247,
737,
45964,
19667,
3784,
1069,
13955,
3237,
7,
45964,
19667,
8,
290,
198,
7266,
8094,
3784,
17966,
7,
7266,
8094,
737,
45964,
37021,
3784,
1069,
13955,
3237,
7,
45964,
37021,
8,
290,
198,
16668,
13247,
3784,
17966,
7,
16668,
13247,
737,
45964,
37021,
3784,
1069,
13955,
3237,
7,
45964,
37021,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
407,
62,
45964,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
198,
4871,
24641,
37021,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
24641,
37021,
526,
15931,
628,
220,
220,
220,
825,
2723,
62,
392,
62,
16793,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
281,
24641,
37021,
318,
3264,
6898,
416,
281,
24641,
11,
788,
663,
2723,
290,
2496,
1276,
307,
3264,
393,
20762,
7763,
287,
262,
976,
24641,
13,
198,
21797,
27,
29,
8423,
15565,
2723,
13,
38301,
16516,
3419,
796,
3842,
290,
2496,
13,
38301,
16516,
3419,
796,
3842,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2723,
62,
392,
62,
16793,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
4225,
2673,
11041,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
4225,
2673,
11041,
526,
15931,
628,
220,
220,
220,
825,
17435,
62,
15699,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
6398,
723,
15953,
286,
262,
4225,
2673,
11041,
1276,
2872,
5178,
282,
15953,
286,
262,
6412,
4225,
2673,
13,
15953,
2872,
618,
511,
3891,
389,
4961,
290,
511,
6218,
6053,
13,
198,
50039,
22628,
3784,
1662,
40613,
3419,
15565,
198,
5420,
364,
2514,
13,
687,
282,
22628,
3784,
1640,
3237,
7,
277,
70,
1058,
12816,
930,
2116,
13,
50039,
22628,
3784,
19738,
7,
6759,
2052,
7,
40616,
4008,
3784,
7857,
3419,
28,
16,
8,
290,
198,
944,
13,
50039,
22628,
3784,
1640,
3237,
7,
363,
1058,
12816,
930,
10229,
2514,
13,
687,
282,
22628,
3784,
19738,
7,
6759,
2052,
7,
363,
4008,
3784,
7857,
3419,
28,
16,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
17435,
62,
15699,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
7159,
62,
533,
62,
9979,
1187,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
7159,
1276,
691,
307,
38491,
11,
10007,
286,
262,
13507,
2752,
4225,
2673,
393,
12608,
286,
262,
1398,
7483,
23107,
262,
13507,
2752,
4225,
2673,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
7159,
62,
533,
62,
9979,
1187,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
1441,
62,
8367,
62,
8344,
48137,
62,
1073,
1857,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
1441,
11395,
6690,
48137,
1276,
307,
257,
14161,
286,
257,
8113,
540,
20180,
326,
318,
7997,
416,
257,
21073,
4470,
5017,
416,
428,
4225,
2673,
11041,
13,
198,
7783,
11395,
6690,
48137,
3784,
292,
7248,
3419,
3784,
1662,
40613,
3419,
15565,
198,
1616,
39849,
5222,
1058,
5345,
7,
13313,
540,
20180,
8,
796,
5017,
13,
7856,
6629,
3784,
292,
7248,
3419,
287,
198,
66,
709,
5222,
3784,
1662,
40613,
3419,
290,
1309,
6097,
25,
7248,
7,
9487,
7483,
8,
796,
39849,
5222,
13,
4906,
13,
38679,
3792,
35854,
5189,
7,
9487,
7483,
737,
38679,
1722,
6030,
7,
9487,
7483,
8,
3784,
292,
7248,
3419,
287,
198,
1616,
477,
2964,
862,
1058,
5345,
7,
21746,
8,
796,
6097,
13,
42348,
3784,
24592,
7,
37724,
13,
439,
42969,
22446,
42348,
8,
3784,
292,
7248,
3419,
287,
198,
439,
2964,
862,
3784,
42813,
7,
7783,
11395,
6690,
48137,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
1441,
62,
8367,
62,
8344,
48137,
62,
1073,
1857,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
7159,
62,
10215,
5546,
62,
1462,
62,
17143,
7307,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
7159,
286,
262,
4225,
2673,
11041,
1276,
6053,
284,
10007,
286,
262,
6412,
4225,
2673,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
7159,
62,
10215,
5546,
62,
1462,
62,
17143,
7307,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
1441,
62,
8367,
62,
4906,
62,
8344,
48137,
62,
10215,
5546,
594,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
198,
220,
220,
220,
15179,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
2099,
286,
262,
1441,
11395,
1276,
6053,
284,
262,
2099,
286,
262,
1441,
11395,
6690,
48137,
13,
198,
7783,
11395,
13,
4906,
3784,
292,
44015,
594,
3419,
3784,
1662,
40613,
3419,
15565,
1441,
11395,
13,
4906,
3784,
292,
44015,
594,
3419,
3784,
11085,
3419,
796,
1441,
11395,
6690,
48137,
13,
4906,
3784,
292,
44015,
594,
3419,
3784,
11085,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
1441,
62,
8367,
62,
4906,
62,
8344,
48137,
62,
10215,
5546,
594,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
477,
62,
36195,
20655,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
4225,
2673,
11041,
1276,
3002,
477,
21073,
20655,
286,
262,
13507,
2752,
4225,
2673,
326,
389,
2219,
351,
262,
3868,
20655,
5017,
416,
262,
6412,
4225,
2673,
13,
21073,
20655,
389,
2219,
611,
484,
423,
262,
976,
31870,
290,
6870,
8112,
12915,
3815,
13,
198,
1616,
2560,
9492,
2673,
1058,
5345,
7,
9492,
2673,
8,
796,
13507,
2752,
9492,
2673,
3784,
292,
7248,
3419,
3784,
198,
24592,
7,
268,
565,
2752,
18843,
392,
13,
24011,
1389,
42974,
434,
3784,
17966,
7,
268,
565,
2752,
18843,
392,
13,
24011,
1389,
42974,
434,
8,
3784,
198,
33327,
7,
268,
565,
2752,
9492,
2673,
737,
38679,
1722,
6030,
7,
9492,
2673,
8,
3784,
292,
7248,
28955,
287,
198,
8000,
9492,
2673,
3784,
7857,
3419,
28,
16,
290,
1309,
1006,
9492,
2673,
1058,
4225,
2673,
796,
10229,
2514,
287,
198,
8000,
9492,
2673,
13,
32111,
3784,
329,
3237,
7,
600,
43,
361,
4470,
1058,
21073,
4470,
930,
1006,
9492,
2673,
13,
32111,
3784,
198,
1640,
3237,
7,
1006,
43,
361,
4470,
1058,
21073,
4470,
930,
1006,
43,
361,
4470,
13,
7856,
6629,
796,
493,
43,
361,
4470,
13,
7856,
6629,
290,
198,
7,
198,
7,
1006,
43,
361,
4470,
13,
19738,
273,
13,
38679,
3792,
35854,
5189,
7,
43,
270,
1691,
10100,
8,
15565,
198,
220,
493,
43,
361,
4470,
13,
19738,
273,
13,
38679,
3792,
35854,
5189,
7,
43,
270,
1691,
10100,
8,
290,
198,
220,
1006,
43,
361,
4470,
13,
19738,
273,
13,
38679,
1722,
6030,
7,
43,
270,
1691,
10100,
737,
8367,
796,
493,
43,
361,
4470,
13,
19738,
273,
13,
38679,
1722,
6030,
7,
43,
270,
1691,
10100,
737,
8367,
1267,
290,
198,
7,
1006,
43,
361,
4470,
13,
19738,
273,
13,
38679,
3792,
35854,
5189,
7,
43,
270,
1691,
46541,
8,
15565,
198,
220,
493,
43,
361,
4470,
13,
19738,
273,
13,
38679,
3792,
35854,
5189,
7,
43,
270,
1691,
46541,
8,
290,
198,
220,
1006,
43,
361,
4470,
13,
19738,
273,
13,
38679,
1722,
6030,
7,
43,
270,
1691,
46541,
737,
8367,
796,
493,
43,
361,
4470,
13,
19738,
273,
13,
38679,
1722,
6030,
7,
43,
270,
1691,
46541,
737,
8367,
1267,
198,
8,
198,
15565,
2116,
13,
32111,
3784,
292,
7248,
3419,
3784,
42813,
7,
600,
43,
361,
4470,
22305,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
477,
62,
36195,
20655,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
12816,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
12816,
526,
15931,
628,
220,
220,
220,
825,
4036,
62,
10494,
62,
31409,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
428,
12816,
318,
281,
4036,
22628,
11,
340,
1276,
423,
3446,
530,
12336,
8766,
22628,
1626,
262,
6412,
4225,
2673,
13,
198,
3849,
2673,
11041,
3784,
1662,
40613,
3419,
15565,
10375,
11041,
13,
5420,
364,
2514,
13,
687,
282,
22628,
3784,
19738,
7,
6759,
2052,
7,
944,
4008,
3784,
7857,
3419,
28,
16,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
4036,
62,
10494,
62,
31409,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2641,
62,
12993,
62,
31409,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
428,
12816,
318,
2641,
257,
32028,
42974,
434,
11,
340,
1276,
423,
3446,
530,
12336,
12816,
543,
318,
2354,
286,
326,
32028,
42974,
434,
13,
198,
271,
24441,
22495,
3419,
15565,
5929,
42974,
434,
13,
66,
8310,
363,
434,
22628,
3784,
19738,
7,
271,
30815,
22495,
3419,
290,
7466,
7,
944,
4008,
3784,
7857,
3419,
28,
16,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2641,
62,
12993,
62,
31409,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2354,
62,
12993,
62,
31409,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
428,
12816,
318,
2354,
281,
705,
2501,
6,
32028,
42974,
434,
11,
220,
329,
790,
4225,
2673,
18843,
1352,
2641,
326,
32028,
42974,
434,
612,
1276,
307,
3446,
530,
12336,
12816,
2641,
262,
14336,
521,
276,
42974,
434,
351,
663,
12330,
886,
28543,
416,
326,
4225,
2673,
18843,
1352,
13,
1002,
428,
12816,
318,
2354,
32028,
42974,
434,
351,
10088,
584,
621,
705,
2501,
3256,
220,
220,
612,
1276,
307,
3446,
530,
12336,
12816,
2641,
326,
32028,
42974,
434,
13,
198,
271,
30815,
22495,
3419,
15565,
198,
611,
2116,
13,
24011,
1389,
42974,
434,
13,
3849,
2673,
18843,
1352,
3784,
292,
35422,
1068,
7248,
3419,
3784,
11085,
3419,
796,
4225,
2673,
18843,
1352,
35854,
3712,
2501,
198,
788,
2116,
13,
24011,
1389,
42974,
434,
13,
3575,
392,
3784,
1640,
3237,
7,
404,
1058,
4225,
2673,
18843,
392,
930,
198,
2116,
13,
24011,
1389,
42974,
434,
13,
66,
8310,
363,
434,
22628,
3784,
19738,
7,
271,
24441,
22495,
3419,
290,
198,
6697,
12915,
22446,
268,
565,
2752,
42974,
434,
3419,
3784,
42813,
7,
944,
13,
24011,
1389,
42974,
434,
8,
290,
7466,
7,
944,
4008,
3784,
7857,
3419,
28,
16,
8,
198,
2073,
220,
2116,
13,
24011,
1389,
42974,
434,
13,
66,
8310,
363,
434,
22628,
3784,
19738,
7,
271,
24441,
22495,
3419,
290,
7466,
7,
944,
4008,
3784,
7857,
3419,
28,
16,
198,
45762,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2354,
62,
12993,
62,
31409,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
8766,
62,
10494,
62,
17080,
41726,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
271,
37,
6636,
3419,
15565,
326,
645,
584,
8766,
22628,
286,
262,
2560,
4225,
2673,
5860,
262,
976,
651,
5376,
3419,
355,
4504,
329,
2116,
198,
271,
37,
6636,
3419,
15565,
10375,
13,
687,
282,
22628,
3784,
19738,
7,
1136,
5376,
3419,
796,
2116,
13,
1136,
5376,
28955,
3784,
7857,
3419,
28,
16,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
8766,
62,
10494,
62,
17080,
41726,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
4036,
62,
10494,
62,
17080,
41726,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
271,
6398,
723,
3419,
15565,
326,
645,
584,
4036,
22628,
286,
262,
2560,
4225,
2673,
11041,
5860,
262,
976,
651,
5376,
3419,
355,
4504,
329,
2116,
198,
271,
6398,
723,
3419,
15565,
10375,
11041,
13,
50039,
22628,
3784,
19738,
7,
1136,
5376,
3419,
796,
2116,
13,
1136,
5376,
28955,
3784,
7857,
3419,
28,
16,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
4036,
62,
10494,
62,
17080,
41726,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2354,
62,
12993,
62,
10494,
62,
17080,
41726,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
271,
30815,
22495,
3419,
15565,
326,
645,
584,
2354,
269,
8310,
363,
434,
22628,
286,
262,
2560,
32028,
42974,
434,
5860,
262,
976,
651,
5376,
3419,
355,
4504,
329,
2116,
198,
271,
30815,
22495,
3419,
15565,
5929,
42974,
434,
13,
66,
8310,
363,
434,
22628,
3784,
19738,
7,
1136,
5376,
3419,
796,
2116,
13,
1136,
5376,
28955,
3784,
7857,
3419,
28,
16,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2354,
62,
12993,
62,
10494,
62,
17080,
41726,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2641,
62,
12993,
62,
10494,
62,
17080,
41726,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
271,
24441,
22495,
3419,
15565,
326,
645,
584,
2641,
269,
8310,
363,
434,
22628,
7223,
284,
257,
3275,
351,
663,
584,
886,
287,
262,
976,
4225,
2673,
18843,
1352,
355,
2116,
11,
5860,
262,
976,
651,
5376,
3419,
355,
4504,
329,
2116,
198,
271,
24441,
22495,
3419,
15565,
198,
1616,
2116,
18843,
392,
1058,
4225,
2673,
18843,
392,
796,
2116,
13,
1136,
18843,
392,
3419,
287,
198,
220,
5929,
42974,
434,
13,
66,
8310,
363,
434,
22628,
3784,
19738,
7,
271,
24441,
22495,
3419,
290,
651,
5376,
3419,
796,
2116,
13,
1136,
5376,
28955,
3784,
19738,
7,
1136,
18843,
392,
3419,
796,
2116,
18843,
392,
8,
3784,
7857,
3419,
28,
16,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2641,
62,
12993,
62,
10494,
62,
17080,
41726,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
318,
62,
43435,
62,
12993,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1212,
12405,
5860,
2081,
611,
428,
12816,
318,
7223,
284,
262,
18645,
286,
257,
32028,
42974,
434,
11,
290,
663,
584,
886,
357,
361,
1944,
8,
220,
318,
2354,
286,
262,
976,
32028,
42974,
434,
13,
198,
20274,
796,
357,
944,
13,
10365,
5971,
12915,
3419,
3784,
407,
40613,
3419,
290,
5929,
42974,
434,
3784,
1662,
40613,
3419,
15565,
198,
1616,
1269,
12915,
1058,
16000,
12915,
796,
2116,
13,
10365,
5971,
12915,
3419,
3784,
292,
35422,
1068,
7248,
3419,
3784,
11085,
3419,
287,
198,
361,
1269,
12915,
13,
38679,
3792,
35854,
5189,
7,
12837,
29223,
33928,
22882,
2649,
8,
198,
8524,
1309,
1269,
44,
2640,
1058,
16000,
29223,
33928,
22882,
2649,
796,
1269,
12915,
13,
38679,
1722,
6030,
7,
12837,
29223,
33928,
22882,
2649,
8,
198,
259,
220,
2116,
13,
24011,
1389,
42974,
434,
13,
268,
565,
2752,
9492,
2673,
13,
38679,
1722,
6030,
7,
9492,
2673,
42974,
434,
8,
3784,
292,
7248,
3419,
3784,
198,
220,
220,
220,
220,
6441,
7,
944,
13,
24011,
1389,
42974,
434,
13,
268,
565,
2752,
18843,
392,
13,
38679,
1722,
6030,
7,
9492,
2673,
42974,
434,
8,
3784,
292,
7248,
28955,
796,
198,
220,
220,
220,
220,
1269,
44,
2640,
13,
268,
565,
2752,
9492,
2673,
13,
38679,
1722,
6030,
7,
9492,
2673,
42974,
434,
8,
3784,
292,
7248,
3419,
3784,
198,
220,
220,
220,
220,
6441,
7,
10365,
44,
2640,
13,
268,
565,
2752,
18843,
392,
13,
38679,
1722,
6030,
7,
9492,
2673,
42974,
434,
8,
3784,
292,
7248,
28955,
198,
17772,
1309,
1269,
22628,
1058,
12816,
796,
1269,
12915,
13,
38679,
1722,
6030,
7,
22628,
8,
198,
259,
2116,
13,
24011,
1389,
42974,
434,
13,
268,
565,
2752,
9492,
2673,
13,
38679,
1722,
6030,
7,
9492,
2673,
42974,
434,
8,
3784,
292,
7248,
3419,
3784,
198,
220,
220,
220,
220,
6441,
7,
944,
13,
24011,
1389,
42974,
434,
13,
268,
565,
2752,
18843,
392,
13,
38679,
1722,
6030,
7,
9492,
2673,
42974,
434,
8,
3784,
292,
7248,
28955,
796,
198,
220,
220,
220,
220,
1269,
22628,
13,
24011,
1389,
42974,
434,
13,
268,
565,
2752,
9492,
2673,
13,
38679,
1722,
6030,
7,
9492,
2673,
42974,
434,
8,
3784,
292,
7248,
3419,
3784,
198,
220,
220,
220,
220,
6441,
7,
10365,
22628,
13,
24011,
1389,
42974,
434,
13,
268,
565,
2752,
18843,
392,
13,
38679,
1722,
6030,
7,
9492,
2673,
42974,
434,
8,
3784,
292,
7248,
28955,
198,
32088,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9492,
4658,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
318,
62,
43435,
62,
12993,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
318,
62,
48787,
62,
12993,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1212,
12405,
5860,
2081,
611,
428,
12816,
318,
7223,
284,
262,
18645,
286,
257,
32028,
42974,
434,
11,
290,
663,
584,
886,
357,
361,
1944,
8,
318,
2641,
286,
281,
4225,
2673,
18843,
1352,
286,
262,
976,
32028,
42974,
434,
13,
198,
20274,
796,
357,
944,
13,
10365,
5971,
12915,
3419,
3784,
407,
40613,
3419,
290,
5929,
42974,
434,
3784,
1662,
40613,
3419,
15565,
198,
1616,
1269,
12915,
1058,
16000,
12915,
796,
2116,
13,
10365,
5971,
12915,
3419,
3784,
292,
35422,
1068,
7248,
3419,
3784,
11085,
3419,
287,
198,
361,
1269,
12915,
13,
38679,
3792,
35854,
5189,
7,
12837,
29223,
33928,
22882,
2649,
8,
198,
8524,
1309,
1269,
44,
2640,
1058,
16000,
29223,
33928,
22882,
2649,
198,
28,
1269,
12915,
13,
38679,
1722,
6030,
7,
12837,
29223,
33928,
22882,
2649,
8,
198,
259,
5929,
42974,
434,
796,
1269,
44,
2640,
13,
268,
565,
2752,
18843,
392,
13,
24011,
1389,
42974,
434,
198,
17772,
1309,
1269,
22628,
1058,
12816,
796,
1269,
12915,
13,
38679,
1722,
6030,
7,
22628,
8,
198,
259,
5929,
42974,
434,
796,
1269,
22628,
13,
24011,
1389,
42974,
434,
13,
268,
565,
2752,
18843,
392,
13,
24011,
1389,
42974,
434,
198,
32088,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9492,
4658,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
318,
62,
48787,
62,
12993,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
318,
62,
50039,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1212,
12405,
5860,
2081,
1988,
611,
428,
12816,
318,
281,
4036,
22628,
286,
281,
4225,
2673,
11041,
13,
198,
20274,
796,
357,
3849,
2673,
11041,
3784,
1662,
40613,
28955,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9492,
4658,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
318,
62,
50039,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
318,
62,
687,
282,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1212,
12405,
5860,
2081,
611,
428,
12816,
318,
257,
8766,
22628,
286,
281,
4225,
2673,
13,
198,
20274,
796,
357,
3849,
2673,
3784,
1662,
40613,
28955,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9492,
4658,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
318,
62,
687,
282,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
651,
62,
3672,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1212,
12405,
5860,
262,
1438,
286,
262,
8946,
11,
2035,
262,
7952,
1438,
20262,
3672,
8,
393,
262,
12006,
1438,
19203,
448,
62,
1,
393,
705,
259,
62,
6,
1673,
36686,
515,
287,
2166,
286,
764,
20500,
13,
3672,
8,
611,
262,
7952,
1438,
318,
407,
1944,
13,
198,
20274,
796,
357,
361,
1438,
3784,
1662,
40613,
3419,
788,
1438,
3784,
292,
35422,
1068,
7248,
3419,
3784,
11085,
3419,
198,
17772,
220,
611,
318,
6398,
723,
3419,
393,
318,
30815,
22495,
3419,
198,
220,
788,
611,
318,
25206,
3419,
198,
220,
220,
220,
788,
705,
448,
62,
4458,
1102,
9246,
7,
944,
13,
20500,
13,
3672,
3784,
292,
35422,
1068,
7248,
3419,
3784,
11085,
28955,
198,
220,
220,
220,
2073,
705,
259,
62,
4458,
1102,
9246,
7,
944,
13,
20500,
13,
3672,
3784,
292,
35422,
1068,
7248,
3419,
3784,
11085,
28955,
198,
220,
220,
220,
45762,
198,
220,
2073,
611,
318,
25206,
3419,
198,
220,
220,
220,
788,
705,
259,
62,
4458,
1102,
9246,
7,
944,
13,
20500,
13,
3672,
3784,
292,
35422,
1068,
7248,
3419,
3784,
11085,
28955,
198,
220,
220,
220,
2073,
705,
448,
62,
4458,
1102,
9246,
7,
944,
13,
20500,
13,
3672,
3784,
292,
35422,
1068,
7248,
3419,
3784,
11085,
28955,
198,
220,
220,
220,
45762,
198,
220,
45762,
198,
32088,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9492,
4658,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
3672,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
7466,
7,
944,
11,
8946,
2514,
23850,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1212,
12405,
5860,
2081,
611,
262,
1438,
286,
428,
12816,
7466,
262,
1438,
286,
262,
287,
11507,
12816,
11,
290,
262,
6218,
329,
262,
734,
15953,
6053,
13,
383,
16000,
329,
530,
12816,
357,
16706,
317,
8,
24866,
284,
262,
16000,
329,
1194,
12816,
357,
16706,
347,
8,
611,
357,
32,
290,
347,
423,
262,
976,
1438,
1988,
8,
290,
357,
361,
317,
318,
257,
3758,
9237,
788,
347,
318,
257,
3328,
9237,
8,
290,
357,
361,
317,
318,
257,
3328,
9237,
788,
347,
318,
257,
3758,
9237,
8,
290,
357,
32,
290,
347,
423,
262,
976,
3275,
42758,
1988,
8,
290,
357,
32,
290,
347,
423,
262,
976,
9877,
1988,
737,
198,
20274,
796,
357,
944,
13,
1136,
5376,
3419,
796,
8946,
2514,
23850,
13,
1136,
5376,
3419,
290,
198,
944,
13,
20500,
13,
20500,
42758,
796,
8946,
2514,
23850,
13,
20500,
13,
20500,
42758,
290,
198,
944,
13,
20500,
13,
3672,
796,
8946,
2514,
23850,
13,
20500,
13,
3672,
290,
198,
944,
13,
20500,
13,
21280,
9237,
3784,
42813,
7,
944,
8,
15565,
8946,
2514,
23850,
13,
20500,
13,
260,
15164,
9237,
3784,
42813,
7,
10494,
2514,
23850,
8,
220,
290,
198,
944,
13,
20500,
13,
260,
15164,
9237,
3784,
42813,
7,
944,
8,
15565,
8946,
2514,
23850,
13,
20500,
13,
21280,
9237,
3784,
42813,
7,
10494,
2514,
23850,
8,
290,
198,
944,
13,
20500,
13,
12683,
1300,
796,
8946,
2514,
23850,
13,
20500,
13,
12683,
1300,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9492,
4658,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
7466,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
651,
62,
3575,
392,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
262,
12816,
318,
281,
2641,
32028,
24229,
434,
12816,
11,
428,
4905,
5860,
262,
4225,
2673,
18843,
392,
326,
262,
6697,
886,
286,
428,
12816,
318,
3017,
1626,
13,
198,
20274,
796,
357,
361,
318,
24441,
22495,
3419,
788,
198,
220,
1309,
1269,
12915,
1058,
16000,
12915,
796,
2116,
13,
10365,
5971,
12915,
3419,
3784,
292,
35422,
1068,
7248,
3419,
3784,
11085,
3419,
287,
198,
220,
220,
220,
611,
1269,
12915,
13,
38679,
3792,
35854,
5189,
7,
12837,
29223,
33928,
22882,
2649,
8,
198,
220,
220,
220,
788,
1309,
1269,
44,
2640,
1058,
16000,
29223,
33928,
22882,
2649,
796,
1269,
12915,
13,
38679,
1722,
6030,
7,
12837,
29223,
33928,
22882,
2649,
8,
198,
220,
220,
220,
220,
220,
220,
220,
287,
1269,
44,
2640,
13,
268,
565,
2752,
18843,
392,
3784,
292,
35422,
1068,
7248,
3419,
3784,
11085,
3419,
198,
220,
220,
220,
2073,
1309,
1269,
22628,
1058,
12816,
796,
1269,
12915,
13,
38679,
1722,
6030,
7,
22628,
8,
198,
220,
220,
220,
220,
220,
220,
220,
287,
1269,
22628,
13,
24011,
1389,
42974,
434,
13,
268,
565,
2752,
18843,
392,
3784,
292,
35422,
1068,
7248,
3419,
3784,
11085,
3419,
198,
220,
220,
220,
45762,
198,
220,
2073,
9242,
198,
32088,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9492,
4658,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
3575,
392,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
10775,
33928,
22882,
2649,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
10775,
33928,
22882,
2649,
526,
15931,
628,
220,
220,
220,
825,
651,
62,
32111,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
35561,
262,
21073,
4470,
319,
543,
262,
10775,
33928,
22882,
2649,
3568,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
32111,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
900,
62,
32111,
7,
944,
11,
1988,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
50,
1039,
262,
21073,
4470,
319,
543,
262,
10775,
33928,
22882,
2649,
3568,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
900,
62,
32111,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
37497,
22882,
2649,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
37497,
22882,
2649,
526,
15931,
628,
220,
220,
220,
825,
976,
62,
36195,
4470,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
923,
9237,
290,
262,
5461,
9237,
1276,
307,
319,
262,
976,
21073,
4470,
13,
198,
9688,
13,
32111,
796,
5461,
13,
32111,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
976,
62,
36195,
4470,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
32028,
42974,
434,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
32028,
42974,
434,
526,
15931,
628,
220,
220,
220,
825,
2270,
41052,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
262,
10375,
18843,
1352,
318,
2270,
11,
262,
11188,
4225,
2673,
18843,
392,
1276,
3002,
477,
21073,
20655,
5017,
416,
262,
13507,
2752,
4225,
2673,
42974,
434,
13,
198,
3849,
2673,
18843,
1352,
28,
9492,
2673,
18843,
1352,
35854,
3712,
9032,
220,
15565,
198,
268,
565,
2752,
9492,
2673,
13,
38679,
1722,
6030,
7,
9492,
2673,
42974,
434,
8,
3784,
292,
7248,
3419,
3784,
24592,
7,
198,
220,
220,
13507,
2752,
18843,
392,
13,
38679,
1722,
6030,
7,
9492,
2673,
42974,
434,
8,
3784,
292,
7248,
3419,
737,
32111,
3784,
292,
7248,
3419,
796,
2116,
13,
32111,
3784,
292,
7248,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
2270,
41052,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
2074,
62,
392,
62,
46430,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
10375,
12879,
705,
44353,
6,
290,
705,
46430,
6,
460,
691,
307,
973,
329,
262,
12642,
32916,
382,
42974,
434,
850,
4906,
286,
32028,
42974,
434,
198,
19510,
3849,
2673,
18843,
1352,
796,
4225,
2673,
18843,
1352,
35854,
3712,
44353,
8,
393,
357,
3849,
2673,
18843,
1352,
796,
220,
4225,
2673,
18843,
1352,
35854,
3712,
46430,
4008,
15565,
267,
565,
3792,
35854,
5189,
7,
19626,
32916,
382,
42974,
434,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2074,
62,
392,
62,
46430,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2172,
62,
26268,
62,
9032,
62,
12480,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
262,
10375,
18843,
1352,
318,
2172,
11,
9052,
11,
2270,
11,
6818,
393,
2469,
11,
612,
1276,
307,
3446,
530,
1515,
392,
13,
198,
7,
3849,
2673,
18843,
1352,
796,
220,
4225,
2673,
18843,
1352,
35854,
3712,
8738,
393,
10375,
18843,
1352,
796,
4225,
2673,
18843,
1352,
35854,
3712,
26268,
393,
198,
3849,
2673,
18843,
1352,
796,
4225,
2673,
18843,
1352,
35854,
3712,
9032,
393,
10375,
18843,
1352,
796,
4225,
2673,
18843,
1352,
35854,
3712,
30493,
393,
198,
3849,
2673,
18843,
1352,
796,
4225,
2673,
18843,
1352,
35854,
3712,
12480,
8,
198,
23928,
444,
1515,
392,
3784,
7857,
3419,
28,
16,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2172,
62,
26268,
62,
9032,
62,
12480,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
6389,
2288,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
6389,
2288,
526,
15931,
628,
220,
220,
220,
825,
717,
62,
273,
62,
12957,
62,
3849,
2673,
62,
8310,
363,
434,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
17875,
6055,
1464,
3051,
355,
262,
845,
717,
4225,
2673,
42974,
434,
393,
262,
845,
938,
4225,
2673,
42974,
434,
286,
262,
13507,
2752,
4225,
2673,
18843,
392,
13,
198,
13507,
2752,
18843,
392,
3784,
1662,
40613,
3419,
290,
198,
1309,
12720,
42974,
902,
1058,
14230,
1068,
7248,
7,
9492,
2673,
42974,
434,
8,
796,
220,
13507,
2752,
18843,
392,
13,
8310,
363,
434,
287,
198,
220,
220,
357,
12720,
42974,
902,
3784,
1662,
40613,
3419,
290,
198,
220,
220,
14808,
33350,
42974,
902,
3784,
11085,
3419,
796,
2116,
8,
393,
220,
357,
33350,
42974,
902,
3784,
12957,
3419,
796,
2116,
22305,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
717,
62,
273,
62,
12957,
62,
3849,
2673,
62,
8310,
363,
434,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
976,
62,
3672,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
40553,
477,
4225,
2673,
10245,
1719,
262,
976,
4732,
1988,
11,
790,
21073,
4470,
4554,
5017,
416,
257,
6389,
2288,
357,
944,
8,
1276,
307,
2219,
351,
530,
5017,
21073,
4470,
4554,
286,
477,
584,
6389,
2288,
10245,
351,
262,
976,
1438,
355,
2116,
11,
290,
790,
21073,
4470,
4554,
5017,
416,
257,
6389,
2288,
4554,
351,
262,
976,
1438,
355,
2116,
1276,
307,
2219,
351,
530,
5017,
21073,
4470,
4554,
286,
2116,
13,
21073,
4470,
10245,
389,
2219,
611,
484,
423,
262,
976,
31870,
290,
6870,
8112,
12915,
3815,
13,
198,
268,
565,
2752,
18843,
392,
13,
24011,
1389,
42974,
434,
3784,
1662,
40613,
3419,
290,
198,
1616,
2560,
9492,
2673,
1058,
5345,
7,
9492,
2673,
8,
796,
198,
268,
565,
2752,
18843,
392,
13,
24011,
1389,
42974,
434,
3784,
17966,
7,
268,
565,
2752,
18843,
392,
13,
24011,
1389,
42974,
434,
8,
3784,
198,
33327,
7,
268,
565,
2752,
9492,
2673,
737,
38679,
1722,
6030,
7,
9492,
2673,
8,
3784,
292,
7248,
3419,
198,
259,
198,
7,
8000,
9492,
2673,
3784,
7857,
3419,
796,
352,
8,
198,
392,
1309,
12720,
9492,
4658,
1058,
5345,
7,
9492,
2673,
8,
796,
198,
357,
8000,
9492,
2673,
3784,
24592,
7,
8000,
9492,
2673,
3784,
33327,
28264,
6,
22866,
11537,
3784,
33327,
7,
46571,
8,
3784,
198,
2922,
7,
38679,
3792,
35854,
5189,
7,
9492,
2673,
29720,
38679,
1722,
6030,
7,
9492,
2673,
8,
3784,
292,
7248,
28955,
3784,
292,
7248,
28955,
287,
198,
357,
33350,
9492,
4658,
3784,
1662,
40613,
28955,
290,
198,
220,
1309,
5929,
42974,
902,
16,
1058,
5345,
7,
20575,
1389,
42974,
434,
8,
796,
12720,
9492,
4658,
13,
8310,
363,
434,
3784,
198,
2922,
7,
38679,
3792,
35854,
5189,
7,
20575,
1389,
42974,
434,
29720,
38679,
1722,
6030,
7,
20575,
1389,
42974,
434,
8,
3784,
292,
7248,
3419,
287,
198,
220,
220,
5929,
42974,
902,
16,
3784,
1662,
40613,
3419,
290,
220,
5929,
42974,
902,
16,
3784,
17966,
7,
3575,
392,
13,
8310,
363,
434,
3784,
198,
220,
220,
2922,
7,
38679,
3792,
35854,
5189,
7,
20575,
1389,
42974,
434,
29720,
38679,
1722,
6030,
7,
20575,
1389,
42974,
434,
4008,
3784,
292,
7248,
22446,
3575,
392,
13,
8310,
363,
434,
3784,
198,
220,
220,
2922,
7,
38679,
3792,
35854,
5189,
7,
17875,
2288,
29720,
38679,
1722,
6030,
7,
17875,
2288,
8,
3784,
292,
7248,
3419,
3784,
198,
220,
220,
329,
3237,
7,
66,
1058,
6389,
2288,
930,
220,
357,
66,
13,
3672,
796,
2116,
13,
3672,
8,
15565,
198,
220,
357,
66,
13,
32111,
3784,
292,
7248,
3419,
3784,
1640,
3237,
7,
565,
1058,
21073,
4470,
930,
1377,
220,
537,
1276,
307,
2219,
284,
530,
3868,
4470,
5017,
416,
2116,
198,
220,
2116,
13,
32111,
3784,
292,
7248,
3419,
3784,
198,
220,
2922,
7,
7856,
6629,
796,
537,
13,
7856,
6629,
290,
31870,
796,
537,
13,
19738,
273,
8,
3784,
292,
7248,
3419,
3784,
7857,
3419,
28,
16,
4008,
198,
220,
220,
290,
198,
357,
944,
13,
32111,
3784,
292,
7248,
3419,
3784,
1640,
3237,
7,
565,
1058,
21073,
4470,
930,
1377,
220,
537,
1276,
307,
2219,
284,
530,
3868,
4470,
5017,
416,
269,
198,
269,
13,
32111,
3784,
292,
7248,
3419,
3784,
198,
220,
2922,
7,
7856,
6629,
796,
537,
13,
7856,
6629,
290,
31870,
796,
537,
13,
19738,
273,
8,
3784,
292,
7248,
3419,
3784,
7857,
3419,
28,
16,
4008,
198,
220,
1267,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
976,
62,
3672,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
3298,
41052,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
17875,
6055,
389,
1464,
3298,
287,
262,
13507,
2752,
4225,
2673,
42974,
434,
304,
13,
70,
1539,
340,
1464,
8698,
477,
21073,
20655,
5017,
416,
262,
13507,
2752,
4225,
2673,
18843,
1352,
13,
198,
268,
565,
2752,
18843,
392,
3784,
1662,
40613,
3419,
290,
198,
220,
1309,
1515,
392,
43,
361,
20655,
1058,
5345,
7,
43,
361,
4470,
8,
796,
220,
13507,
2752,
18843,
392,
13,
32111,
287,
198,
220,
220,
220,
357,
3575,
392,
43,
361,
20655,
3784,
1662,
40613,
3419,
290,
198,
220,
220,
220,
1515,
392,
43,
361,
20655,
3784,
1640,
3237,
7,
349,
1058,
43,
361,
4470,
930,
944,
13,
32111,
3784,
42813,
7,
349,
22305,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
3298,
41052,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
1812,
19904,
2743,
415,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
1812,
19904,
2743,
415,
526,
15931,
628,
198,
4871,
5994,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
5994,
526,
15931,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
2488,
26495,
13,
2617,
353,
628,
220,
220,
220,
825,
2251,
62,
562,
41003,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
198,
220,
220,
220,
220,
220,
220,
220,
886,
16,
3792,
30575,
328,
540,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
886,
16,
46384,
43068,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
886,
16,
5376,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
886,
16,
31426,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
886,
16,
52,
2848,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
886,
16,
6030,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
886,
17,
3792,
30575,
328,
540,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
886,
17,
46384,
43068,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
886,
17,
5376,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
886,
17,
31426,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
886,
17,
52,
2848,
28,
14202,
11,
198,
220,
220,
220,
15179,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
16719,
274,
257,
7,
77,
8,
357,
39491,
8,
8112,
1022,
428,
2099,
290,
262,
7368,
584,
2099,
11,
351,
262,
7368,
20436,
5738,
11,
13262,
602,
11,
3891,
11,
2793,
22303,
11,
290,
6727,
22303,
11,
290,
6898,
416,
428,
2099,
338,
16936,
5301,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2251,
62,
562,
41003,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
562,
1733,
602,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
15814,
287,
543,
428,
2099,
318,
2950,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
562,
1733,
602,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
17216,
82,
62,
1462,
7,
944,
11,
584,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
17216,
82,
2514,
3419,
3607,
2081,
329,
257,
5994,
326,
17216,
82,
284,
1194,
13,
2750,
4277,
11,
734,
24897,
466,
407,
17216,
284,
1123,
584,
13,
770,
12405,
318,
5292,
284,
307,
2266,
18156,
329,
2176,
369,
10367,
7445,
13,
198,
20274,
796,
357,
9562,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
17227,
1273,
5620,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
17216,
82,
62,
1462,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
198,
4871,
8113,
540,
20180,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
8113,
540,
20180,
526,
15931,
628,
220,
220,
220,
825,
651,
62,
2412,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
28532,
26939,
329,
8113,
540,
20180,
3712,
14,
437,
1058,
8113,
273,
12915,
198,
20274,
796,
357,
34525,
12915,
13,
439,
6310,
1817,
3419,
3784,
19738,
7,
18090,
796,
2116,
4008,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
44909,
1522,
9487,
13350,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
2412,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
1482,
2536,
2913,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
1482,
2536,
2913,
526,
15931,
628,
220,
220,
220,
825,
25131,
62,
8367,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
11052,
22882,
2649,
329,
257,
1482,
2536,
2913,
1276,
13446,
284,
257,
41146,
1988,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
25131,
62,
8367,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
645,
62,
1589,
62,
34435,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
36,
2100,
11927,
262,
11052,
22882,
2649,
329,
257,
1482,
2536,
2913,
1276,
407,
423,
1735,
3048,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
645,
62,
1589,
62,
34435,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
407,
62,
39014,
62,
1462,
62,
944,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
1482,
2536,
2913,
2314,
307,
5625,
284,
2346,
13,
198,
1662,
31070,
20180,
3784,
42813,
7,
944,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
407,
62,
39014,
62,
1462,
62,
944,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
17718,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
17718,
526,
15931,
628,
220,
220,
220,
825,
2769,
62,
23569,
62,
332,
16886,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
17718,
460,
423,
379,
749,
530,
2769,
2106,
4643,
16886,
13,
198,
944,
13,
7266,
332,
16886,
3784,
19738,
357,
38679,
3792,
35854,
5189,
7,
47,
325,
463,
455,
378,
4008,
3784,
33327,
7,
38679,
1722,
6030,
7,
47,
325,
463,
455,
378,
4008,
3784,
198,
220,
220,
2922,
7,
11031,
796,
49693,
463,
455,
378,
35854,
3712,
22089,
18122,
8,
3784,
7857,
3419,
19841,
352,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2769,
62,
23569,
62,
332,
16886,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
19337,
62,
23569,
62,
332,
16886,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
17718,
460,
423,
379,
749,
530,
19337,
2106,
4643,
16886,
13,
198,
7266,
332,
16886,
3784,
19738,
7,
38679,
3792,
35854,
5189,
7,
47,
325,
463,
455,
378,
4008,
3784,
33327,
7,
38679,
1722,
6030,
7,
47,
325,
463,
455,
378,
4008,
3784,
198,
220,
2922,
7,
11031,
796,
49693,
463,
455,
378,
35854,
3712,
1477,
12154,
18122,
8,
3784,
7857,
3419,
19841,
352,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
19337,
62,
23569,
62,
332,
16886,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
6898,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
257,
17718,
318,
6898,
416,
257,
1812,
37573,
11,
788,
340,
2314,
635,
307,
6898,
416,
257,
1812,
290,
7927,
25470,
13,
198,
7,
5219,
37573,
1279,
29,
9242,
15565,
1181,
796,
9242,
8,
290,
357,
5219,
1279,
29,
9242,
15565,
1181,
37573,
796,
9242,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
6898,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
4238,
62,
332,
16886,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
17718,
460,
423,
379,
749,
530,
4238,
4643,
16886,
13,
198,
944,
13,
7266,
332,
16886,
3784,
19738,
357,
38679,
3792,
35854,
5189,
7,
47,
325,
463,
455,
378,
4008,
3784,
33327,
7,
38679,
1722,
6030,
7,
47,
325,
463,
455,
378,
4008,
3784,
198,
220,
2922,
7,
11031,
796,
49693,
463,
455,
378,
35854,
3712,
36733,
8,
3784,
7857,
3419,
19841,
352,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
4238,
62,
332,
16886,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
14448,
62,
1462,
62,
862,
76,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
4905,
14448,
2514,
3705,
44,
7499,
8794,
611,
262,
17718,
14448,
284,
257,
20497,
9012,
37573,
13,
198,
20274,
796,
357,
361,
220,
1181,
37573,
1279,
29,
9242,
198,
8524,
198,
220,
1181,
37573,
13,
38679,
3792,
35854,
5189,
7,
19703,
4668,
9012,
37573,
8,
198,
17772,
198,
220,
1181,
1279,
29,
9242,
220,
15565,
220,
1181,
13,
34924,
13,
6667,
28079,
2514,
3705,
44,
3419,
198,
32088,
1267,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9012,
49999,
1127,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
14448,
62,
1462,
62,
862,
76,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
7268,
62,
5219,
62,
30243,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
4905,
7268,
9012,
37573,
3419,
5860,
262,
1812,
37573,
287,
543,
428,
17718,
318,
5447,
13,
198,
20274,
796,
357,
361,
1181,
37573,
796,
9242,
198,
8524,
198,
220,
1181,
13,
38301,
9012,
37573,
3419,
198,
17772,
198,
220,
1181,
37573,
198,
32088,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9012,
49999,
1127,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
7268,
62,
5219,
62,
30243,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
34087,
17750,
62,
22866,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
34087,
17750,
4732,
286,
257,
17718,
318,
262,
16936,
7268,
1812,
37573,
13,
198,
20274,
796,
357,
1616,
895,
1058,
1812,
37573,
796,
7268,
9012,
37573,
3419,
287,
198,
361,
895,
13557,
6,
22866,
6,
796,
9242,
393,
895,
13,
24622,
3784,
1662,
40613,
3419,
788,
198,
220,
895,
198,
17772,
198,
220,
895,
13557,
6,
22866,
6,
198,
32088,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9012,
49999,
1127,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
34087,
17750,
62,
22866,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
8558,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
8558,
526,
15931,
628,
198,
4871,
40658,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
40658,
526,
15931,
628,
220,
220,
220,
825,
1181,
62,
271,
62,
22615,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
40658,
351,
1611,
7097,
460,
2723,
597,
4643,
16886,
2845,
5726,
2173,
13,
198,
7,
11031,
796,
40658,
35854,
3712,
22615,
8,
15565,
198,
220,
220,
220,
220,
220,
220,
220,
407,
357,
10459,
13,
38679,
3792,
35854,
5189,
7,
47,
325,
463,
455,
378,
8,
290,
2723,
13,
38679,
1722,
6030,
7,
47,
325,
463,
455,
378,
737,
11031,
796,
49693,
463,
455,
378,
35854,
3712,
13000,
12727,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
1181,
62,
271,
62,
22615,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
4654,
62,
325,
5154,
62,
33427,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
4654,
10618,
1276,
407,
423,
28135,
393,
833,
328,
5355,
13,
198,
7,
16793,
13,
38679,
3792,
35854,
5189,
7,
47,
325,
463,
455,
378,
8,
290,
2496,
13,
38679,
1722,
6030,
7,
47,
325,
463,
455,
378,
737,
11031,
796,
49693,
463,
455,
378,
35854,
3712,
22179,
8,
15565,
357,
14864,
796,
9242,
290,
7616,
3784,
271,
40613,
28955,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
4654,
62,
325,
5154,
62,
33427,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
1181,
62,
271,
62,
32538,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
40658,
351,
1611,
5387,
1276,
423,
257,
1812,
355,
663,
2723,
11,
290,
663,
2723,
290,
2496,
1276,
307,
4961,
13,
198,
7,
11031,
796,
40658,
35854,
3712,
32538,
8,
15565,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
10459,
13,
38679,
3792,
35854,
5189,
357,
9012,
8,
290,
2723,
796,
2496,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
1181,
62,
271,
62,
32538,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
28181,
62,
7752,
463,
455,
689,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
8291,
1756,
28181,
49693,
463,
455,
689,
743,
407,
423,
257,
24593,
13,
198,
10459,
13,
38679,
3792,
35854,
5189,
7,
47,
325,
463,
455,
378,
8,
290,
357,
10459,
13,
38679,
1722,
6030,
7,
47,
325,
463,
455,
378,
737,
11031,
1279,
29,
49693,
463,
455,
378,
35854,
3712,
36733,
8,
15565,
7616,
3784,
271,
40613,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
28181,
62,
7752,
463,
455,
689,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
4654,
62,
325,
5154,
62,
5219,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
4654,
10618,
1276,
1464,
39779,
422,
257,
1812,
13,
198,
7,
16793,
13,
38679,
3792,
35854,
5189,
7,
47,
325,
463,
455,
378,
8,
290,
2496,
13,
38679,
1722,
6030,
7,
47,
325,
463,
455,
378,
737,
11031,
796,
49693,
463,
455,
378,
35854,
3712,
22179,
8,
15565,
357,
10459,
13,
38679,
3792,
35854,
5189,
7,
9012,
4008,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
4654,
62,
325,
5154,
62,
5219,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
15563,
62,
325,
5154,
62,
5219,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
15563,
10618,
1276,
1464,
2496,
257,
1812,
13,
198,
7,
10459,
13,
38679,
3792,
35854,
5189,
7,
47,
325,
463,
455,
378,
8,
290,
220,
2723,
13,
38679,
1722,
6030,
7,
47,
325,
463,
455,
378,
737,
11031,
796,
49693,
463,
455,
378,
35854,
3712,
32523,
8,
15565,
357,
16793,
13,
38679,
3792,
35854,
5189,
7,
9012,
4008,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
15563,
62,
325,
5154,
62,
5219,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
1181,
62,
271,
62,
12001,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
40658,
351,
1611,
1957,
1276,
423,
257,
24185,
1812,
393,
281,
5726,
966,
355,
663,
2723,
13,
198,
7,
11031,
796,
40658,
35854,
3712,
12001,
8,
15565,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
14808,
10459,
13,
38679,
3792,
35854,
5189,
357,
9012,
8,
290,
2723,
13,
38679,
1722,
6030,
7,
9012,
737,
271,
5377,
1930,
578,
8,
393,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
10459,
13,
38679,
3792,
35854,
5189,
357,
47,
325,
463,
455,
378,
8,
290,
2723,
13,
38679,
1722,
6030,
7,
47,
325,
463,
455,
378,
737,
11031,
796,
49693,
463,
455,
378,
35854,
3712,
13000,
12727,
4008,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
1181,
62,
271,
62,
12001,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
4238,
62,
7645,
653,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2025,
4238,
40658,
379,
262,
1353,
1712,
1241,
17718,
286,
257,
1812,
37573,
326,
468,
645,
24593,
13,
198,
7,
10459,
13,
38679,
3792,
35854,
5189,
7,
47,
325,
463,
455,
378,
8,
290,
9290,
13,
5219,
37573,
3784,
1662,
40613,
28955,
15565,
198,
220,
220,
220,
220,
220,
220,
220,
7616,
3784,
271,
40613,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
4238,
62,
7645,
653,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
15563,
62,
325,
5154,
62,
33427,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
15563,
10618,
1276,
407,
423,
28135,
393,
833,
328,
5355,
13,
198,
7,
10459,
13,
38679,
3792,
35854,
5189,
7,
47,
325,
463,
455,
378,
8,
290,
2723,
13,
38679,
1722,
6030,
7,
47,
325,
463,
455,
378,
737,
11031,
796,
49693,
463,
455,
378,
35854,
3712,
32523,
8,
15565,
357,
14864,
796,
9242,
290,
7616,
3784,
271,
40613,
28955,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
15563,
62,
325,
5154,
62,
33427,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
7268,
62,
5219,
62,
30243,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
7268,
9012,
37573,
3419,
5860,
262,
1812,
37573,
326,
4909,
262,
40658,
2035,
3264,
393,
1007,
1800,
306,
13,
198,
20274,
796,
357,
34924,
13,
38301,
9012,
37573,
28955,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9012,
49999,
1127,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
7268,
62,
5219,
62,
30243,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
34087,
17750,
62,
22866,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
34087,
17750,
4732,
286,
257,
40658,
318,
262,
16936,
7268,
1812,
37573,
13,
198,
20274,
796,
357,
1616,
895,
1058,
1812,
37573,
796,
7268,
9012,
37573,
3419,
287,
198,
361,
895,
13557,
6,
22866,
6,
796,
9242,
393,
895,
13,
24622,
3784,
1662,
40613,
3419,
788,
198,
220,
895,
198,
17772,
198,
220,
895,
13557,
6,
22866,
6,
198,
32088,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9012,
49999,
1127,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
34087,
17750,
62,
22866,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
8113,
273,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
8113,
273,
526,
15931,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
825,
3858,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
3858,
286,
262,
8113,
540,
36,
3639,
326,
262,
5645,
286,
257,
8113,
273,
389,
7223,
284,
1276,
17216,
284,
262,
3858,
286,
262,
5645,
286,
262,
5396,
326,
3858,
262,
8113,
273,
11,
611,
597,
13,
198,
4906,
27,
29,
8423,
15565,
198,
220,
1309,
645,
5189,
12915,
82,
1058,
34142,
796,
886,
3784,
7857,
3419,
287,
198,
220,
357,
4906,
13,
19522,
12915,
3784,
7857,
3419,
796,
645,
5189,
12915,
82,
8,
290,
45835,
90,
16,
492,
3919,
5189,
12915,
82,
92,
3784,
1640,
3237,
7,
72,
930,
886,
3784,
265,
7,
72,
737,
18090,
13,
4906,
13,
1102,
23914,
2514,
7,
4906,
13,
19522,
12915,
3784,
265,
7,
72,
737,
4906,
4008,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
3858,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
9176,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
8113,
540,
36,
3639,
7223,
355,
9176,
284,
1123,
8113,
273,
12915,
6898,
416,
257,
8113,
273,
1276,
307,
6898,
393,
19552,
9176,
286,
262,
5016,
7483,
326,
6898,
262,
8113,
273,
11,
393,
484,
1276,
307,
30824,
286,
884,
9176,
13,
198,
7249,
1522,
9487,
7483,
1279,
29,
9242,
198,
392,
198,
220,
886,
3784,
1640,
3237,
7,
304,
930,
20793,
9487,
7483,
13,
439,
49,
4316,
3419,
3784,
42813,
7,
68,
13,
18090,
8,
198,
273,
198,
220,
304,
13,
18090,
13,
38679,
3792,
35854,
5189,
7,
13924,
8,
290,
20793,
9487,
7483,
13,
439,
49,
4316,
3419,
3784,
42813,
7,
68,
13,
3911,
3152,
13924,
4008,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
9176,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
651,
62,
11031,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
28532,
26939,
329,
8113,
273,
3712,
14,
11031,
1058,
8113,
273,
35854,
198,
20274,
796,
357,
361,
886,
3784,
1069,
1023,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2597,
13,
38679,
3792,
35854,
5189,
7,
13924,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
290,
636,
3152,
13924,
3784,
271,
40613,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
290,
407,
2597,
13,
38679,
1722,
6030,
7,
13924,
737,
271,
25267,
15759,
8,
198,
8524,
8113,
273,
35854,
3712,
2934,
1455,
341,
198,
17772,
8113,
273,
35854,
3712,
41873,
198,
32088,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
44909,
1522,
9487,
13350,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
11031,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
3611,
1634,
7248,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
3611,
1634,
7248,
526,
15931,
628,
220,
220,
220,
825,
2276,
1634,
62,
31642,
62,
4871,
7483,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
6109,
3611,
1634,
3917,
351,
257,
1948,
3611,
1634,
7248,
1276,
423,
262,
976,
2276,
5016,
7483,
13,
198,
24622,
1634,
3784,
33327,
7,
24622,
8,
3784,
292,
7248,
3419,
3784,
7857,
3419,
19841,
352,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2276,
1634,
62,
31642,
62,
4871,
7483,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
8739,
62,
1462,
62,
24622,
1634,
62,
2617,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
5016,
7483,
326,
8739,
284,
257,
3611,
1634,
7248,
743,
6159,
307,
257,
2176,
4249,
257,
2276,
5016,
7483,
287,
597,
286,
262,
3611,
1634,
6958,
5447,
329,
326,
3611,
1634,
7248,
13,
554,
584,
2456,
11,
257,
1176,
2099,
743,
407,
307,
281,
4554,
286,
2346,
4249,
743,
663,
10245,
307,
663,
850,
37724,
13,
198,
6477,
4906,
1279,
29,
9242,
15565,
2276,
1634,
3784,
1640,
3237,
7,
2429,
930,
198,
220,
220,
220,
407,
357,
5235,
13,
24622,
796,
1176,
4906,
8,
290,
407,
2429,
13,
24622,
13,
439,
42969,
3419,
3784,
42813,
7,
6477,
4906,
8,
290,
407,
357,
5235,
13,
11423,
796,
1176,
4906,
8,
290,
407,
1176,
4906,
13,
439,
42969,
3419,
3784,
42813,
7,
5235,
13,
11423,
8,
198,
220,
1267,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
8739,
62,
1462,
62,
24622,
1634,
62,
2617,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
198,
4871,
2297,
891,
259,
540,
30800,
11712,
1300,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
2297,
891,
259,
540,
30800,
11712,
1300,
526,
15931,
628,
220,
220,
220,
825,
34087,
1127,
62,
23743,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
597,
286,
262,
2560,
5016,
13350,
389,
257,
11055,
11,
788,
262,
7083,
11712,
1300,
1276,
2291,
262,
9877,
286,
326,
5016,
7483,
13,
198,
4871,
7483,
13,
439,
42969,
3419,
3784,
1640,
3237,
7,
66,
930,
269,
13,
11990,
30800,
11712,
1300,
3784,
1662,
40613,
3419,
15565,
2116,
3784,
17966,
7,
2302,
1631,
11712,
1300,
8,
3784,
42813,
7,
66,
13,
11990,
30800,
11712,
1300,
4008,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
34087,
1127,
62,
23743,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
259,
372,
863,
62,
17143,
7307,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
28532,
26939,
329,
2297,
891,
259,
540,
30800,
11712,
1300,
3712,
14,
259,
372,
863,
36301,
198,
20274,
796,
357,
361,
7083,
11712,
1300,
3784,
271,
40613,
3419,
788,
5345,
90,
92,
2073,
7083,
11712,
1300,
13,
17143,
2357,
3784,
292,
7248,
3419,
45762,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9487,
2649,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
259,
372,
863,
62,
17143,
7307,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
46228,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
46228,
526,
15931,
628,
220,
220,
220,
825,
7552,
62,
13033,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
27995,
40710,
20717,
416,
262,
46228,
2776,
1276,
5594,
284,
262,
5765,
20448,
326,
318,
852,
7083,
13,
198,
2302,
3004,
14749,
3784,
1640,
3237,
357,
42372,
930,
7083,
20448,
13,
2302,
3004,
12727,
3784,
42813,
7,
42372,
4008,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
7552,
62,
13033,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
40348,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
40348,
526,
15931,
628,
198,
4871,
24641,
7841,
653,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
24641,
7841,
653,
526,
15931,
628,
220,
220,
220,
825,
6870,
62,
4871,
7483,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
257,
1729,
12,
22615,
24641,
7841,
653,
6870,
257,
5016,
7483,
290,
468,
257,
2208,
7841,
653,
11,
788,
262,
2208,
7841,
653,
1276,
2380,
257,
5016,
7483,
11,
290,
262,
5016,
7483,
286,
262,
850,
3911,
653,
1276,
307,
28376,
357,
77,
7287,
9487,
7483,
393,
6898,
25267,
15759,
8,
287,
262,
5016,
7483,
7997,
416,
262,
2208,
7841,
653,
11,
393,
307,
379,
262,
7763,
886,
286,
257,
11742,
5396,
351,
262,
5016,
7483,
7997,
416,
262,
2208,
7841,
653,
13,
198,
7,
1662,
318,
41506,
290,
6870,
13,
38679,
3792,
35854,
5189,
7,
9487,
7483,
8,
290,
2208,
7841,
653,
3784,
1662,
40613,
28955,
15565,
198,
7,
198,
220,
220,
1309,
7997,
9487,
7483,
1058,
5016,
7483,
796,
6870,
13,
38679,
1722,
6030,
7,
9487,
7483,
8,
287,
198,
220,
220,
220,
220,
2208,
7841,
653,
13,
7856,
6629,
13,
38679,
3792,
35854,
5189,
7,
9487,
7483,
8,
290,
198,
220,
220,
220,
220,
220,
1309,
7997,
12442,
9487,
7483,
1058,
5016,
7483,
796,
2208,
7841,
653,
13,
7856,
6629,
13,
38679,
1722,
6030,
7,
9487,
7483,
8,
287,
198,
220,
220,
220,
220,
220,
220,
357,
33469,
12442,
9487,
7483,
13,
38679,
3792,
35854,
5189,
7,
25267,
15820,
1850,
9487,
7483,
8,
290,
7997,
9487,
7483,
13,
38679,
3792,
35854,
5189,
7,
25267,
15759,
8,
290,
198,
220,
220,
220,
220,
220,
220,
220,
7997,
12442,
9487,
7483,
13,
38679,
1722,
6030,
7,
25267,
15820,
1850,
9487,
7483,
737,
11990,
25267,
15759,
3784,
42813,
7,
33469,
9487,
7483,
13,
38679,
1722,
6030,
7,
25267,
15759,
22305,
198,
220,
220,
220,
220,
220,
220,
393,
198,
220,
220,
220,
220,
220,
220,
357,
33469,
12442,
9487,
7483,
13,
38679,
3792,
35854,
5189,
7,
9487,
8,
290,
220,
7997,
12442,
9487,
7483,
13,
38679,
1722,
6030,
7,
9487,
737,
77,
7287,
9487,
7483,
3784,
42813,
7,
33469,
9487,
7483,
4008,
198,
220,
220,
220,
220,
220,
220,
393,
198,
220,
220,
220,
220,
220,
220,
357,
8021,
41003,
13,
439,
6310,
1817,
3419,
3784,
1069,
1023,
7,
64,
930,
257,
13,
19522,
12915,
3784,
1069,
1023,
7,
437,
16,
930,
886,
16,
13,
271,
5377,
1930,
578,
290,
886,
16,
13,
4906,
796,
7997,
9487,
7483,
290,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
257,
13,
19522,
12915,
3784,
1069,
1023,
7,
437,
17,
930,
886,
16,
27,
29,
437,
17,
290,
886,
17,
13,
4906,
796,
7997,
12442,
9487,
7483,
35514,
198,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
6870,
62,
4871,
7483,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
6870,
62,
26745,
62,
392,
62,
271,
62,
45964,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
281,
24641,
7841,
653,
6870,
257,
14161,
290,
468,
257,
2208,
7841,
653,
11,
788,
262,
14161,
1276,
307,
286,
257,
5016,
7483,
7997,
416,
262,
2208,
7841,
653,
11,
393,
286,
257,
5016,
7483,
326,
318,
262,
2099,
286,
257,
14161,
7997,
416,
262,
2208,
7841,
653,
13,
198,
7,
7856,
6629,
13,
38679,
3792,
35854,
5189,
7,
21746,
8,
290,
2208,
7841,
653,
3784,
1662,
40613,
28955,
15565,
198,
7,
198,
220,
357,
16668,
7841,
653,
13,
7856,
6629,
13,
38679,
3792,
35854,
5189,
7,
9487,
7483,
8,
290,
6870,
13,
18403,
796,
2208,
7841,
653,
13,
7856,
6629,
8,
393,
198,
220,
357,
16668,
7841,
653,
13,
7856,
6629,
13,
38679,
3792,
35854,
5189,
7,
21746,
8,
290,
6870,
13,
18403,
796,
2208,
7841,
653,
13,
7856,
6629,
13,
38679,
1722,
6030,
7,
21746,
737,
4906,
8,
198,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
6870,
62,
26745,
62,
392,
62,
271,
62,
45964,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
6870,
62,
26745,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
281,
24641,
7841,
653,
6870,
257,
14161,
290,
468,
257,
2208,
7841,
653,
10200,
257,
5016,
7483,
11,
788,
477,
262,
584,
1729,
12,
22615,
850,
3911,
1756,
286,
262,
2208,
7841,
653,
1276,
2380,
24946,
3264,
6898,
416,
262,
976,
5016,
7483,
13,
198,
7,
7856,
6629,
13,
38679,
3792,
35854,
5189,
7,
21746,
8,
290,
2208,
7841,
653,
3784,
1662,
40613,
3419,
290,
2208,
7841,
653,
13,
7856,
6629,
13,
38679,
3792,
35854,
5189,
7,
9487,
7483,
4008,
15565,
198,
7,
198,
220,
1309,
7997,
9487,
7483,
1058,
5016,
7483,
796,
2208,
7841,
653,
13,
7856,
6629,
13,
38679,
1722,
6030,
7,
9487,
7483,
8,
198,
220,
287,
198,
220,
220,
220,
2208,
7841,
653,
13,
7266,
3911,
653,
3784,
260,
752,
7,
271,
41506,
8,
3784,
1640,
3237,
7,
79,
930,
198,
220,
220,
220,
220,
220,
220,
279,
13,
7856,
6629,
13,
38679,
3792,
35854,
5189,
7,
21746,
8,
290,
279,
13,
18403,
28,
33469,
9487,
7483,
8,
198,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
6870,
62,
26745,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
15793,
62,
1662,
62,
45964,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2025,
2191,
85,
3458,
7841,
653,
351,
318,
29271,
3004,
796,
2081,
743,
407,
307,
7763,
416,
1194,
24641,
7841,
653,
13,
198,
271,
29271,
3004,
15565,
2208,
7841,
653,
3784,
271,
40613,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
15793,
62,
1662,
62,
45964,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
198,
4871,
24641,
19667,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
24641,
19667,
526,
15931,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
2488,
21797,
13,
2617,
353,
628,
198,
4871,
4225,
3622,
856,
16516,
47371,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
4225,
3622,
856,
16516,
47371,
526,
15931,
628,
220,
220,
220,
825,
11313,
278,
62,
276,
3212,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
11313,
278,
7407,
3212,
286,
281,
4225,
3622,
856,
16516,
47371,
1276,
423,
511,
2723,
287,
262,
3814,
290,
511,
2496,
2354,
262,
3814,
11,
475,
1626,
262,
976,
24641,
7268,
262,
3814,
13,
198,
3849,
3622,
278,
37021,
3784,
1640,
3237,
7,
14907,
930,
198,
220,
10139,
3784,
42813,
7,
14907,
13,
10459,
8,
290,
10139,
3784,
1069,
13955,
7,
14907,
13,
16793,
8,
290,
5743,
13,
16793,
13,
38301,
16516,
3419,
796,
287,
16516,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
11313,
278,
62,
276,
3212,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
6779,
37535,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
6779,
37535,
526,
15931,
628,
220,
220,
220,
825,
2134,
62,
77,
4147,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
15988,
7414,
1666,
743,
407,
423,
9515,
45,
4147,
379,
2035,
886,
11,
2845,
329,
9515,
45,
4147,
351,
1630,
2099,
13,
198,
7,
10459,
13,
38679,
3792,
35854,
5189,
7,
10267,
19667,
8,
15565,
2723,
13,
38679,
1722,
6030,
7,
10267,
19667,
737,
271,
15988,
6030,
8,
290,
198,
7,
16793,
13,
38679,
3792,
35854,
5189,
7,
10267,
19667,
8,
15565,
2496,
13,
38679,
1722,
6030,
7,
10267,
19667,
737,
271,
15988,
6030,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
2134,
62,
77,
4147,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
9515,
37535,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
9515,
37535,
526,
15931,
628,
220,
220,
220,
825,
5128,
62,
392,
62,
22915,
62,
17143,
2357,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
6356,
20181,
468,
530,
5128,
25139,
2357,
290,
530,
5072,
25139,
2357,
13,
383,
5128,
25139,
2357,
1276,
423,
262,
976,
355,
393,
257,
2208,
4906,
286,
262,
2099,
286,
262,
2723,
9515,
19667,
11,
307,
1729,
12,
34642,
290,
423,
15082,
8467,
657,
492,
24620,
383,
5072,
25139,
2357,
1276,
307,
262,
976,
393,
257,
850,
4906,
286,
262,
2099,
286,
2723,
9515,
19667,
13,
383,
20181,
2314,
423,
1735,
3048,
13,
198,
49283,
27,
29,
8423,
15565,
198,
220,
220,
220,
220,
220,
220,
220,
6356,
13,
15414,
48944,
3419,
3784,
7857,
3419,
28,
16,
290,
198,
220,
220,
220,
220,
220,
220,
220,
6356,
13,
15414,
48944,
3419,
3784,
1640,
3237,
7,
1662,
318,
40257,
290,
318,
7,
15,
11,
9,
4008,
290,
198,
220,
220,
220,
220,
220,
220,
220,
6356,
13,
22915,
48944,
3419,
3784,
7857,
3419,
28,
16,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
5128,
62,
392,
62,
22915,
62,
17143,
2357,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
645,
62,
18558,
18187,
62,
77,
4147,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
10267,
7414,
1666,
743,
407,
423,
8393,
18187,
45,
4147,
379,
2035,
886,
13,
198,
1662,
357,
10459,
13,
38679,
3792,
35854,
5189,
7,
23002,
18187,
19667,
8,
393,
2496,
13,
38679,
3792,
35854,
5189,
7,
23002,
18187,
19667,
4008,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
645,
62,
18558,
18187,
62,
77,
4147,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
13389,
62,
46571,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
13389,
20181,
468,
530,
5128,
25139,
2357,
290,
530,
5072,
25139,
2357,
13,
383,
5128,
25139,
2357,
1276,
307,
262,
976,
355,
393,
257,
2208,
4906,
286,
262,
2099,
286,
2134,
11241,
2406,
422,
262,
2723,
886,
13,
383,
5072,
25139,
2357,
1276,
307,
262,
976,
393,
257,
850,
4906,
286,
262,
2099,
286,
2134,
11241,
2938,
33218,
13,
383,
20181,
2314,
423,
1735,
3048,
13,
198,
7645,
1161,
27,
29,
8423,
15565,
198,
220,
220,
220,
220,
220,
220,
220,
13389,
13,
15414,
48944,
3419,
3784,
7857,
3419,
28,
16,
290,
198,
220,
220,
220,
220,
220,
220,
220,
13389,
13,
22915,
48944,
3419,
3784,
7857,
3419,
28,
16,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
13389,
62,
46571,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
6356,
62,
46571,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2025,
9515,
37535,
743,
423,
257,
6356,
20181,
691,
611,
340,
468,
281,
9515,
19667,
355,
663,
2723,
13,
198,
49283,
27,
29,
8423,
15565,
2723,
13,
38679,
3792,
35854,
5189,
7,
10267,
19667,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
6356,
62,
46571,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
11670,
62,
19199,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
10267,
45,
4147,
5884,
416,
281,
9515,
37535,
11,
351,
42976,
37294,
6779,
45,
4147,
11,
1276,
423,
11670,
3858,
13,
554,
1948,
11,
262,
33218,
9515,
19667,
2099,
1276,
307,
262,
976,
393,
257,
2208,
4906,
286,
262,
28717,
9515,
19667,
2099,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
11670,
62,
19199,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
976,
62,
45828,
62,
65,
3733,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
10267,
45,
4147,
5884,
416,
281,
9515,
37535,
11,
351,
42976,
37294,
6779,
45,
4147,
11,
1276,
423,
262,
976,
6727,
33,
3733,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
976,
62,
45828,
62,
65,
3733,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2496,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2025,
9515,
37535,
351,
257,
6937,
3463,
743,
407,
2496,
281,
9515,
19667,
11,
351,
42976,
37294,
6779,
45,
4147,
11,
326,
468,
281,
6727,
5421,
1342,
621,
262,
3463,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
2496,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
318,
62,
16680,
291,
459,
62,
273,
62,
271,
62,
16680,
557,
15164,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
271,
15205,
291,
459,
290,
318,
15205,
557,
15164,
2314,
1111,
307,
2081,
13,
198,
1662,
357,
271,
15205,
291,
459,
290,
318,
15205,
557,
15164,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
318,
62,
16680,
291,
459,
62,
273,
62,
271,
62,
16680,
557,
15164,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
11086,
13208,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
11086,
13208,
526,
15931,
628,
198,
4871,
2142,
10707,
296,
9150,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
2142,
10707,
296,
9150,
526,
15931,
628,
220,
220,
220,
825,
725,
315,
22055,
62,
1659,
62,
12501,
296,
9150,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
8021,
2454,
326,
1626,
4225,
2673,
1395,
11,
21073,
4470,
406,
318,
286,
1398,
327,
290,
38237,
1335,
284,
360,
13,
2195,
2454,
635,
326,
612,
318,
1626,
1395,
281,
4225,
2673,
11041,
357,
16706,
8,
471,
326,
8698,
406,
13,
4784,
284,
262,
32315,
2029,
471,
481,
423,
257,
11283,
29369,
1626,
360,
13,
12511,
262,
4225,
2673,
20717,
416,
471,
11,
406,
815,
635,
307,
38237,
1335,
11,
290,
262,
26969,
9150,
815,
4941,
29369,
13,
357,
1212,
3896,
318,
1444,
725,
315,
22055,
286,
26969,
9150,
2014,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
725,
315,
22055,
62,
1659,
62,
12501,
296,
9150,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
7048,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
8021,
2454,
326,
1626,
4225,
2673,
1395,
11,
21073,
4470,
406,
318,
286,
1398,
327,
290,
38237,
1335,
284,
360,
13,
12511,
1395,
612,
318,
257,
8379,
286,
34175,
1863,
406,
357,
10508,
34175,
389,
32028,
42974,
902,
11,
4225,
2673,
11041,
290,
357,
25638,
8,
10775,
33928,
22882,
6637,
737,
3244,
257,
11188,
8379,
286,
34175,
1276,
1656,
1626,
360,
11,
14451,
530,
12,
1462,
12,
505,
287,
262,
976,
1502,
13,
1312,
8,
32028,
42974,
434,
9505,
406,
389,
14451,
351,
281,
3131,
12,
20541,
32028,
42974,
434,
287,
360,
13,
21065,
8,
1052,
4225,
2673,
11041,
9505,
406,
318,
14451,
351,
257,
3298,
357,
72,
13,
68,
1539,
9505,
477,
21073,
20655,
8,
4225,
2673,
11041,
287,
360,
13,
46955,
8,
317,
8631,
10775,
33928,
22882,
2649,
319,
406,
318,
3177,
281,
4036,
22628,
326,
1276,
307,
14451,
416,
257,
8766,
22628,
286,
360,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
7048,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
3354,
62,
1659,
62,
32538,
62,
7249,
942,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
7841,
10707,
296,
1930,
1756,
4174,
691,
284,
22349,
326,
389,
22349,
286,
18628,
32112,
942,
407,
284,
22349,
286,
37322,
602,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
3354,
62,
1659,
62,
32538,
62,
7249,
942,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
4225,
2673,
18843,
392,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
4225,
2673,
18843,
392,
526,
15931,
628,
220,
220,
220,
825,
4860,
62,
3642,
391,
62,
5420,
4972,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
4860,
1276,
3994,
691,
10288,
284,
3815,
1957,
284,
262,
21073,
4470,
319,
543,
340,
29076,
11,
393,
3815,
3298,
284,
262,
2187,
4225,
2673,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
4860,
62,
3642,
391,
62,
5420,
4972,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
4860,
62,
12942,
306,
62,
3448,
273,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
4860,
1276,
307,
4624,
3264,
3161,
284,
357,
29370,
8,
262,
10775,
33928,
22882,
2649,
326,
481,
1716,
262,
717,
10775,
33928,
22882,
2649,
1626,
428,
4225,
2673,
18843,
392,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
4860,
62,
12942,
306,
62,
3448,
273,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
7561,
23002,
1009,
22882,
2649,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
7561,
23002,
1009,
22882,
2649,
526,
15931,
628,
220,
220,
220,
825,
2223,
62,
5420,
14226,
771,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
7561,
20717,
416,
262,
7561,
23002,
1009,
22882,
2649,
1276,
307,
6898,
416,
262,
4225,
2673,
23107,
326,
7561,
23002,
1009,
22882,
2649,
13,
198,
7,
268,
565,
2752,
9492,
2673,
3784,
1662,
40613,
3419,
393,
13507,
2752,
18843,
392,
13,
24011,
1389,
42974,
434,
3784,
1662,
40613,
28955,
290,
198,
1616,
2560,
9492,
2673,
1058,
5345,
7,
9492,
2673,
8,
796,
13507,
2752,
9492,
2673,
13,
38679,
1722,
6030,
7,
9492,
2673,
8,
3784,
292,
7248,
3419,
3784,
24592,
7,
198,
268,
565,
2752,
18843,
392,
13,
24011,
1389,
42974,
434,
3784,
17966,
7,
268,
565,
2752,
18843,
392,
13,
24011,
1389,
42974,
434,
8,
3784,
198,
33327,
7,
268,
565,
2752,
9492,
2673,
737,
38679,
1722,
6030,
7,
9492,
2673,
8,
3784,
292,
7248,
28955,
287,
198,
7,
8000,
9492,
2673,
3784,
7857,
3419,
796,
352,
8,
290,
2116,
13,
2673,
13,
3849,
2673,
3784,
292,
7248,
3419,
796,
2560,
9492,
2673,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2223,
62,
5420,
14226,
771,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
20181,
23002,
1009,
22882,
2649,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
20181,
23002,
1009,
22882,
2649,
526,
15931,
628,
198,
4871,
12642,
32916,
382,
42974,
434,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
12642,
32916,
382,
42974,
434,
526,
15931,
628,
220,
220,
220,
825,
2074,
62,
273,
62,
46430,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
10375,
10088,
286,
257,
12642,
32916,
382,
42974,
434,
1276,
307,
2035,
705,
44353,
6,
393,
705,
46430,
4458,
198,
7,
3849,
2673,
18843,
1352,
796,
220,
4225,
2673,
18843,
1352,
35854,
3712,
44353,
8,
393,
357,
3849,
2673,
18843,
1352,
796,
220,
4225,
2673,
18843,
1352,
35854,
3712,
46430,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2074,
62,
273,
62,
46430,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2099,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
34441,
36,
3639,
1276,
307,
286,
257,
2099,
286,
5002,
326,
460,
307,
257,
9877,
329,
257,
3275,
357,
72,
13,
68,
492,
11,
281,
14680,
11,
393,
257,
26484,
737,
198,
20500,
3784,
1640,
3237,
7,
76,
930,
285,
13,
38679,
3792,
35854,
5189,
7,
32180,
8,
393,
285,
13,
38679,
3792,
35854,
5189,
7,
11712,
282,
4008,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
2099,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
37497,
29223,
33928,
22882,
2649,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
37497,
29223,
33928,
22882,
2649,
526,
15931,
628,
198,
4871,
11052,
22882,
2649,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
11052,
22882,
2649,
526,
15931,
628,
220,
220,
220,
825,
25131,
62,
8367,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
25131,
11395,
3419,
3607,
257,
2060,
41146,
1988,
618,
530,
460,
307,
29231,
13,
198,
20274,
796,
357,
8423,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
40161,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
25131,
62,
8367,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
18253,
62,
8367,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
18253,
11395,
3419,
3607,
257,
2060,
34142,
1988,
618,
530,
460,
307,
29231,
13,
198,
20274,
796,
357,
8423,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
40161,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
18253,
62,
8367,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
318,
62,
785,
48840,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
318,
5377,
48840,
3419,
15947,
1771,
257,
1988,
20855,
460,
307,
29231,
287,
257,
2746,
13,
770,
4905,
2314,
307,
3938,
5447,
287,
440,
5097,
13,
317,
369,
15464,
7822,
318,
2938,
284,
5203,
2081,
329,
428,
4905,
329,
477,
11052,
22882,
6637,
326,
340,
460,
24061,
11,
290,
284,
24061,
477,
286,
883,
329,
543,
262,
4905,
318,
2081,
13,
317,
369,
15464,
7822,
318,
2938,
284,
307,
1498,
284,
24061,
379,
1551,
262,
1988,
286,
477,
25659,
1691,
22882,
6637,
13,
198,
20274,
796,
357,
9562,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
40161,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
318,
62,
785,
48840,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
318,
62,
8423,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
318,
35067,
3419,
5860,
2081,
618,
340,
460,
307,
29231,
326,
262,
1988,
318,
9242,
13,
198,
20274,
796,
357,
9562,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
40161,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
318,
62,
8423,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
1103,
62,
8367,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
1103,
11395,
3419,
3607,
257,
2060,
6416,
1988,
618,
530,
460,
307,
29231,
13,
198,
20274,
796,
357,
8423,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
40161,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
1103,
62,
8367,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
4731,
62,
8367,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
4731,
11395,
3419,
3607,
257,
2060,
10903,
1988,
618,
530,
460,
307,
29231,
13,
198,
20274,
796,
357,
8423,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
40161,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
4731,
62,
8367,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
15822,
62,
8367,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
15822,
11395,
3419,
3607,
257,
2060,
26774,
35364,
1988,
618,
530,
460,
307,
29231,
13,
198,
20274,
796,
357,
8423,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
40161,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
15822,
62,
8367,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
38483,
38816,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
38483,
38816,
526,
15931,
628,
220,
220,
220,
825,
12531,
62,
3919,
62,
24396,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2215,
318,
23839,
318,
2081,
612,
389,
645,
5050,
13,
198,
271,
23839,
15565,
2446,
3784,
271,
40613,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
12531,
62,
3919,
62,
24396,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2251,
62,
7783,
62,
20274,
7,
944,
11,
1438,
28,
14202,
11,
2099,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
16719,
274,
257,
1441,
1255,
11507,
351,
262,
7368,
1438,
290,
2099,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2251,
62,
7783,
62,
20274,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
5128,
62,
17143,
7307,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
6898,
48944,
351,
4571,
287,
290,
287,
448,
13,
198,
20274,
796,
357,
11990,
36301,
3784,
19738,
7,
37295,
28,
36301,
35,
4154,
35854,
3712,
62,
6,
259,
6,
393,
4571,
28,
36301,
35,
4154,
35854,
3712,
259,
448,
4008,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9487,
2649,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
5128,
62,
17143,
7307,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
5072,
62,
17143,
7307,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
6898,
48944,
351,
4571,
503,
11,
287,
448,
11,
393,
1441,
13,
198,
20274,
796,
357,
11990,
36301,
3784,
19738,
7,
37295,
28,
36301,
35,
4154,
35854,
3712,
448,
393,
4571,
28,
36301,
35,
4154,
35854,
3712,
259,
448,
393,
4571,
28,
36301,
35,
4154,
35854,
3712,
7783,
4008,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9487,
2649,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
5072,
62,
17143,
7307,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
1812,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
1812,
526,
15931,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
825,
5726,
62,
273,
62,
37023,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
10049,
5726,
393,
8420,
49693,
463,
455,
689,
460,
4691,
355,
4637,
2173,
13,
198,
38659,
12727,
3784,
1640,
3237,
7,
11031,
796,
49693,
463,
455,
378,
35854,
3712,
13000,
12727,
393,
1611,
796,
49693,
463,
455,
378,
35854,
3712,
37023,
12727,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
5726,
62,
273,
62,
37023,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
850,
30243,
62,
27219,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
10049,
850,
30243,
1829,
460,
423,
4637,
966,
10288,
13,
198,
271,
7004,
30243,
9012,
15565,
4637,
3784,
1662,
40613,
7,
1267,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
850,
30243,
62,
27219,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
24185,
62,
27219,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
10049,
24185,
1829,
460,
423,
5726,
393,
8420,
49693,
463,
455,
689,
5447,
13,
198,
38659,
12727,
3784,
1662,
40613,
3419,
15565,
318,
5377,
1930,
578,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
24185,
62,
27219,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
23982,
62,
273,
62,
82,
2203,
62,
1659,
62,
7645,
1756,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
4637,
966,
10288,
973,
355,
23982,
14,
82,
2203,
286,
3602,
1756,
3917,
351,
257,
850,
30243,
1812,
1276,
307,
5447,
355,
5726,
14,
37023,
2173,
287,
262,
850,
30243,
1812,
37573,
13,
198,
944,
13,
271,
7004,
30243,
9012,
15565,
357,
944,
13,
38659,
3784,
1640,
3237,
357,
13155,
930,
198,
220,
31396,
13,
13000,
3784,
1640,
3237,
357,
862,
930,
26692,
13,
5219,
37573,
796,
2116,
13,
7266,
30243,
8,
290,
198,
220,
31396,
13,
37023,
3784,
1640,
3237,
357,
862,
930,
26692,
13,
5219,
37573,
796,
2116,
13,
7266,
30243,
22305,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
23982,
62,
273,
62,
82,
2203,
62,
1659,
62,
7645,
1756,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
850,
30243,
62,
273,
62,
2301,
507,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
1812,
318,
407,
3142,
284,
423,
1111,
257,
850,
30243,
290,
47089,
13,
198,
271,
5377,
1930,
578,
15565,
407,
318,
7004,
30243,
9012,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
850,
30243,
62,
273,
62,
2301,
507,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
318,
62,
785,
1930,
578,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
24185,
1812,
318,
257,
1812,
351,
379,
1551,
530,
17718,
13,
198,
20274,
796,
357,
36996,
3784,
1662,
40613,
28955,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9012,
49999,
1127,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
318,
62,
785,
1930,
578,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
318,
62,
1506,
519,
20996,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2025,
29617,
519,
20996,
1812,
318,
257,
24185,
1181,
351,
379,
1551,
362,
7652,
13,
198,
20274,
796,
357,
36996,
3784,
7857,
7499,
1875,
352,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9012,
49999,
1127,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
318,
62,
1506,
519,
20996,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
318,
62,
36439,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
2829,
1812,
318,
257,
1812,
1231,
597,
7652,
13,
198,
20274,
796,
14808,
36996,
3784,
271,
40613,
28955,
290,
407,
318,
7004,
30243,
9012,
28955,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9012,
49999,
1127,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
318,
62,
36439,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
318,
62,
7266,
30243,
62,
5219,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
10049,
850,
30243,
1812,
10288,
1194,
1812,
37573,
13,
198,
20274,
796,
357,
7266,
30243,
1279,
29,
9242,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9012,
49999,
1127,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
318,
62,
7266,
30243,
62,
5219,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
34087,
17750,
62,
22866,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
34087,
17750,
4732,
286,
257,
1812,
318,
262,
16936,
7268,
1812,
37573,
13,
198,
20274,
796,
357,
1616,
895,
1058,
1812,
37573,
796,
7268,
9012,
37573,
3419,
287,
198,
361,
895,
13557,
6,
22866,
6,
796,
9242,
393,
895,
13,
24622,
3784,
1662,
40613,
3419,
788,
198,
220,
895,
198,
17772,
198,
220,
895,
13557,
6,
22866,
6,
198,
32088,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9012,
49999,
1127,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
34087,
17750,
62,
22866,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
8393,
18187,
19667,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
8393,
18187,
19667,
526,
15931,
628,
198,
4871,
6779,
19667,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
6779,
19667,
526,
15931,
628,
198,
4871,
16000,
9237,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
16000,
9237,
526,
15931,
628,
198,
4871,
9794,
9237,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
9794,
9237,
526,
15931,
628,
198,
4871,
3862,
9237,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
3862,
9237,
526,
15931,
628,
220,
220,
220,
825,
618,
62,
13159,
62,
31591,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
11052,
22882,
2649,
618,
1276,
1441,
257,
1729,
12,
31591,
34142,
13,
198,
12518,
13,
41433,
11395,
3419,
18189,
657,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
618,
62,
13159,
62,
31591,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
4225,
2673,
3103,
2536,
2913,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
4225,
2673,
3103,
2536,
2913,
526,
15931,
628,
220,
220,
220,
825,
949,
600,
62,
9806,
600,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9452,
600,
14,
9806,
600,
460,
691,
307,
1944,
611,
262,
4225,
2673,
3103,
2536,
2913,
318,
3917,
351,
262,
1515,
392,
286,
257,
9052,
32028,
42974,
434,
13,
198,
9806,
600,
3784,
1662,
40613,
3419,
393,
949,
600,
3784,
1662,
40613,
3419,
15565,
198,
3849,
2673,
18843,
392,
13,
24011,
1389,
42974,
434,
13,
3849,
2673,
18843,
1352,
796,
198,
9492,
2673,
18843,
1352,
35854,
3712,
26268,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
949,
600,
62,
9806,
600,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
949,
600,
62,
13159,
62,
31591,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
949,
600,
318,
7368,
11,
788,
262,
5408,
1276,
13446,
284,
257,
1729,
12,
31591,
18253,
13,
198,
1084,
600,
3784,
1662,
40613,
3419,
15565,
198,
1084,
600,
3784,
292,
44015,
594,
3419,
3784,
11085,
22446,
41433,
11395,
3419,
18189,
657,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
949,
600,
62,
13159,
62,
31591,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
3509,
600,
62,
24561,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
3509,
600,
318,
7368,
11,
788,
262,
5408,
1276,
13446,
284,
257,
3967,
18253,
13,
198,
9806,
600,
3784,
1662,
40613,
3419,
15565,
198,
9806,
600,
3784,
292,
44015,
594,
3419,
3784,
11085,
22446,
41433,
11395,
3419,
1875,
657,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
3509,
600,
62,
24561,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
8925,
62,
25641,
2977,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
8925,
9633,
326,
1011,
636,
287,
262,
32315,
1276,
307,
6898,
416,
262,
8113,
540,
20180,
11188,
284,
262,
5017,
21073,
4470,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
8925,
62,
25641,
2977,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
3298,
62,
7890,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
32315,
743,
3994,
10288,
284,
3298,
1366,
393,
3551,
12,
27078,
1366,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
3298,
62,
7890,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
3509,
600,
62,
18223,
263,
62,
40496,
62,
1084,
600,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
3509,
600,
318,
7368,
11,
788,
949,
600,
1276,
307,
7368,
290,
262,
12660,
286,
3509,
600,
1276,
307,
18189,
262,
12660,
286,
949,
600,
13,
198,
9806,
600,
3784,
1662,
40613,
3419,
15565,
357,
1084,
600,
3784,
1662,
40613,
3419,
290,
198,
9806,
600,
3784,
292,
44015,
594,
3419,
3784,
11085,
22446,
41433,
11395,
3419,
18189,
198,
1084,
600,
3784,
292,
44015,
594,
3419,
3784,
11085,
22446,
41433,
11395,
3419,
1267,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
3509,
600,
62,
18223,
263,
62,
40496,
62,
1084,
600,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
16000,
29223,
33928,
22882,
2649,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
16000,
29223,
33928,
22882,
2649,
526,
15931,
628,
198,
198,
4871,
20497,
8291,
653,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
20497,
8291,
653,
526,
15931,
628,
220,
220,
220,
825,
10229,
62,
1462,
62,
27184,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
257,
20497,
8291,
653,
10229,
284,
281,
14680,
357,
72,
13,
68,
1539,
468,
257,
4889,
9237,
7616,
11188,
284,
281,
14680,
828,
788,
326,
14680,
815,
4174,
284,
262,
4732,
5016,
7483,
286,
262,
1812,
37573,
286,
262,
20497,
8291,
653,
13,
198,
361,
357,
260,
18186,
3419,
3784,
1662,
40613,
3419,
290,
7268,
9012,
37573,
22446,
62,
6,
22866,
6,
3784,
1662,
40613,
28955,
788,
198,
220,
220,
220,
7268,
9012,
37573,
22446,
62,
6,
22866,
4458,
38679,
1722,
6030,
7,
25267,
15820,
1850,
9487,
7483,
737,
439,
23595,
3419,
3784,
42813,
3237,
7,
260,
18186,
28955,
198,
17772,
2081,
45762,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
10229,
62,
1462,
62,
27184,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
3917,
62,
4658,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
20497,
8291,
653,
1239,
468,
3917,
10407,
615,
12706,
13,
198,
10760,
796,
9242,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
3917,
62,
4658,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
14448,
62,
1462,
62,
862,
76,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
20497,
8291,
653,
1464,
14448,
284,
257,
20497,
9012,
37573,
13,
198,
34924,
13,
6667,
28079,
2514,
3705,
44,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
14448,
62,
1462,
62,
862,
76,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
651,
62,
260,
18186,
82,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
28532,
26939,
329,
20497,
8291,
653,
3712,
14,
260,
18186,
198,
20274,
796,
357,
46284,
3784,
33327,
7,
15596,
8,
3784,
19738,
7,
38679,
3792,
35854,
5189,
7,
14134,
9237,
4008,
3784,
33327,
7,
38679,
1722,
6030,
7,
14134,
9237,
737,
27184,
8,
3784,
292,
7248,
28955,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9012,
49999,
1127,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
260,
18186,
82,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
4225,
2100,
3103,
2536,
2913,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
4225,
2100,
3103,
2536,
2913,
526,
15931,
628,
198,
4871,
22920,
31310,
13208,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
22920,
31310,
13208,
526,
15931,
628,
220,
220,
220,
825,
717,
62,
15596,
62,
47945,
8467,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
15082,
8467,
286,
717,
9237,
1276,
307,
362,
611,
262,
15082,
8467,
286,
1785,
318,
362,
13,
15323,
262,
15082,
8467,
286,
717,
9237,
318,
657,
13,
198,
361,
357,
15596,
3784,
7857,
3419,
796,
362,
8,
198,
220,
788,
357,
11085,
9237,
3784,
7857,
3419,
796,
362,
8,
2073,
357,
11085,
9237,
3784,
7857,
3419,
796,
657,
8,
198,
32088,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
717,
62,
15596,
62,
47945,
8467,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
3862,
31310,
13208,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
3862,
31310,
13208,
526,
15931,
628,
628,
198,
198,
4871,
15717,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
15717,
526,
15931,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
2488,
77,
37761,
27813,
13,
2617,
353,
628,
220,
220,
220,
825,
4847,
62,
11377,
62,
273,
62,
19734,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
281,
5002,
326,
318,
6898,
416,
257,
5301,
468,
20742,
11,
340,
318,
1171,
393,
2839,
13,
198,
8002,
1886,
20180,
3784,
1640,
3237,
7,
68,
930,
304,
13,
4703,
2247,
27,
29,
9242,
15565,
304,
13,
4703,
2247,
796,
6911,
2247,
35854,
3712,
11377,
393,
304,
13,
4703,
2247,
796,
6911,
2247,
35854,
3712,
19734,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
4847,
62,
11377,
62,
273,
62,
19734,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
4174,
62,
13317,
7,
944,
11,
7034,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
4677,
13508,
262,
1459,
6770,
286,
262,
7368,
7034,
284,
428,
5301,
290,
6338,
8991,
2672,
22364,
287,
262,
7034,
284,
4847,
1626,
428,
5301,
338,
25745,
23105,
451,
9282,
13,
1002,
257,
1180,
6770,
318,
1541,
5625,
11,
6338,
15720,
689,
597,
3917,
31240,
3815,
319,
257,
366,
13466,
3626,
1,
4308,
357,
15699,
278,
1398,
13350,
290,
13204,
3033,
416,
1438,
21387,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
4174,
62,
13317,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
2251,
62,
11990,
62,
4871,
7,
944,
11,
1438,
28,
14202,
11,
318,
23839,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
16719,
274,
257,
7,
77,
8,
357,
397,
8709,
8,
1398,
351,
262,
7368,
1438,
355,
281,
6898,
2099,
286,
428,
5301,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2251,
62,
11990,
62,
4871,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2251,
62,
11990,
62,
268,
6975,
341,
7,
944,
11,
1438,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
16719,
274,
257,
27056,
341,
351,
262,
7368,
1438,
355,
281,
6898,
2099,
286,
428,
5301,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2251,
62,
11990,
62,
268,
6975,
341,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2251,
62,
11990,
62,
39994,
7,
944,
11,
1438,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
16719,
274,
281,
7071,
351,
262,
7368,
1438,
355,
281,
6898,
2099,
286,
428,
5301,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2251,
62,
11990,
62,
39994,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2251,
62,
11990,
62,
19795,
1800,
62,
4906,
7,
944,
11,
1438,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
16719,
274,
257,
20049,
2099,
351,
262,
7368,
1438,
355,
281,
6898,
2099,
286,
428,
5301,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2251,
62,
11990,
62,
19795,
1800,
62,
4906,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2251,
62,
11990,
62,
301,
567,
8690,
7,
944,
11,
1438,
28,
14202,
11,
318,
23839,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
16719,
274,
257,
7,
77,
8,
357,
397,
8709,
8,
31240,
351,
262,
7368,
1438,
355,
281,
6898,
31240,
286,
428,
7034,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2251,
62,
11990,
62,
301,
567,
8690,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
439,
62,
1324,
18511,
62,
5577,
2915,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
477,
262,
16545,
326,
389,
5625,
284,
428,
5301,
11,
1390,
16545,
5625,
284,
663,
46282,
5301,
7,
82,
21387,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
439,
62,
1324,
18511,
62,
5577,
2915,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
439,
62,
13317,
62,
1324,
677,
602,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
477,
262,
7034,
5479,
329,
428,
5301,
11,
1390,
7034,
5479,
329,
663,
46282,
5301,
7,
82,
21387,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
439,
62,
13317,
62,
1324,
677,
602,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
1324,
18511,
62,
13317,
7,
944,
11,
10617,
5376,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
7034,
351,
262,
7368,
10617,
1438,
326,
318,
5625,
284,
428,
5301,
11,
393,
9242,
611,
645,
884,
7034,
318,
5625,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
1324,
18511,
62,
13317,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
1324,
18511,
62,
13317,
7,
944,
11,
10617,
5376,
28,
14202,
11,
664,
12321,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
7034,
351,
262,
7368,
10617,
1438,
326,
318,
5625,
284,
428,
5301,
393,
597,
286,
663,
46282,
10392,
357,
361,
8203,
828,
393,
9242,
611,
645,
884,
7034,
318,
5625,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
1324,
18511,
62,
13317,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
1324,
18511,
62,
5577,
2915,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
16545,
326,
389,
5625,
284,
428,
5301,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
1324,
18511,
62,
5577,
2915,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
13317,
62,
31438,
7,
944,
11,
7034,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
3586,
286,
262,
7368,
7034,
284,
428,
5301,
11,
393,
9242,
611,
645,
884,
7034,
318,
5625,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
13317,
62,
31438,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
13317,
62,
31438,
7,
944,
11,
7034,
28,
14202,
11,
664,
12321,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
3586,
286,
262,
7368,
7034,
284,
428,
5301,
393,
597,
286,
663,
46282,
10392,
357,
361,
8203,
828,
393,
9242,
611,
645,
884,
7034,
318,
5625,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
13317,
62,
31438,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
318,
62,
19849,
62,
32016,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
35,
13221,
274,
1771,
428,
5301,
318,
257,
2746,
5888,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
318,
62,
19849,
62,
32016,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
318,
62,
13317,
62,
1324,
18511,
7,
944,
11,
7034,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
35,
13221,
274,
1771,
262,
7368,
7034,
318,
5625,
284,
428,
5301,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
318,
62,
13317,
62,
1324,
18511,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
555,
39014,
62,
13317,
7,
944,
11,
7034,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
3118,
1324,
13508,
262,
7368,
7034,
422,
428,
5301,
290,
6338,
555,
1324,
13508,
22364,
287,
262,
7034,
422,
4847,
1626,
428,
5301,
338,
25745,
23105,
451,
9282,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
555,
39014,
62,
13317,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
4174,
62,
5577,
2915,
7,
944,
11,
16545,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
4677,
13508,
262,
1459,
17336,
286,
262,
7368,
16545,
284,
428,
5301,
290,
6338,
8991,
2672,
22364,
287,
262,
16545,
284,
4847,
1626,
428,
5301,
338,
25745,
23105,
451,
9282,
13,
1002,
1180,
17336,
389,
1541,
5625,
11,
6338,
15720,
689,
597,
3917,
31240,
3815,
319,
257,
366,
13466,
3626,
1,
4308,
357,
15699,
278,
1398,
13350,
290,
13204,
3033,
416,
1438,
21387,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
4174,
62,
5577,
2915,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
477,
62,
1324,
677,
540,
62,
301,
567,
13567,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
477,
33583,
540,
1273,
567,
13567,
3419,
5860,
477,
262,
3264,
393,
20762,
6898,
22364,
11,
1390,
22364,
7763,
287,
850,
12,
5577,
2915,
13,
198,
20274,
796,
357,
1616,
6898,
11869,
1095,
1058,
20127,
7,
27813,
8,
796,
6898,
27608,
3784,
19738,
7,
38679,
3792,
35854,
5189,
7,
27813,
4008,
3784,
33327,
7,
38679,
1722,
6030,
7,
27813,
4008,
287,
198,
6898,
1273,
567,
8690,
3784,
24592,
7,
11990,
11869,
1095,
13,
439,
33583,
540,
1273,
567,
13567,
28955,
3784,
2704,
41769,
3419,
3784,
292,
7248,
3419,
198,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
11869,
1095,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
477,
62,
1324,
677,
540,
62,
301,
567,
13567,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
7268,
62,
13317,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
7268,
37046,
3419,
5860,
262,
11706,
7034,
3264,
393,
20762,
7268,
428,
5301,
357,
273,
428,
5301,
2346,
11,
611,
340,
318,
257,
7034,
737,
198,
20274,
796,
357,
361,
2116,
13,
38679,
3792,
35854,
5189,
7,
37046,
8,
788,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
38679,
1722,
6030,
7,
37046,
8,
198,
17772,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
14933,
10223,
13,
38679,
1722,
6030,
7,
27813,
737,
38301,
37046,
3419,
198,
32088,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
11869,
1095,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
7268,
62,
13317,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
1838,
62,
23504,
7,
944,
11,
1288,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
1838,
53,
12843,
3419,
15738,
1771,
257,
15717,
1838,
281,
5002,
7424,
2354,
2346,
13,
26632,
351,
645,
20742,
290,
4847,
351,
1171,
20742,
389,
925,
7424,
13,
198,
19522,
3784,
42813,
7,
417,
8,
198,
20274,
796,
357,
11990,
27608,
3784,
42813,
7,
417,
8,
393,
198,
7,
30854,
20939,
3784,
19738,
7,
20295,
91,
20295,
13,
320,
9213,
20180,
796,
6911,
2247,
35854,
3712,
11377,
8,
3784,
33327,
7,
320,
9213,
20180,
13,
38679,
1722,
6030,
7,
45,
2434,
20180,
4008,
3784,
42813,
7,
417,
4008,
393,
198,
7,
26495,
20939,
3784,
19738,
7,
4703,
2247,
796,
6911,
2247,
35854,
3712,
11377,
8,
3784,
33327,
7,
320,
9213,
27813,
13,
19522,
3784,
42813,
7,
417,
4008,
3784,
1662,
40613,
3419,
4008,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
11869,
1095,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
1838,
62,
23504,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
651,
62,
77,
7287,
62,
43789,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
28532,
26939,
329,
15717,
3712,
14,
77,
7287,
27813,
198,
20274,
796,
357,
8002,
1886,
20180,
3784,
19738,
7,
38679,
3792,
35854,
5189,
7,
27813,
4008,
3784,
33327,
7,
38679,
1722,
6030,
7,
27813,
4008,
3784,
292,
7248,
28955,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
11869,
1095,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
77,
7287,
27813,
628,
220,
220,
220,
825,
651,
62,
11990,
62,
301,
567,
13567,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
28532,
26939,
329,
15717,
3712,
14,
11990,
1273,
567,
8690,
198,
20274,
796,
357,
8002,
1886,
20180,
3784,
19738,
7,
38679,
3792,
35854,
5189,
7,
1273,
567,
8690,
4008,
3784,
33327,
7,
38679,
1722,
6030,
7,
1273,
567,
8690,
4008,
3784,
292,
7248,
28955,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
11869,
1095,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
11990,
1273,
567,
8690,
628,
220,
220,
220,
825,
651,
62,
11990,
62,
19199,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
28532,
26939,
329,
15717,
3712,
14,
11990,
6030,
198,
20274,
796,
357,
8002,
1886,
20180,
3784,
19738,
7,
38679,
3792,
35854,
5189,
7,
6030,
4008,
3784,
33327,
7,
38679,
1722,
6030,
7,
6030,
4008,
3784,
292,
7248,
28955,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
11869,
1095,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
11990,
62,
19199,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
7424,
62,
30814,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
7424,
25341,
3419,
15738,
543,
1866,
286,
257,
15717,
460,
307,
17535,
2354,
340,
13,
198,
20274,
796,
357,
19522,
3784,
19738,
7,
285,
930,
285,
13,
38679,
3792,
35854,
5189,
7,
27813,
540,
20180,
8,
290,
2116,
13,
49123,
53,
12843,
7,
76,
4008,
3784,
33327,
7,
38679,
1722,
6030,
7,
27813,
540,
20180,
4008,
3784,
292,
7248,
28955,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
11869,
1095,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
7424,
62,
30814,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
37947,
1387,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
37947,
1387,
526,
15931,
628,
198,
4871,
8670,
18251,
16870,
2234,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
8670,
18251,
16870,
2234,
526,
15931,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
825,
3303,
62,
2618,
62,
7857,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
262,
3303,
11688,
318,
407,
6565,
11,
788,
262,
2546,
286,
262,
1767,
290,
3303,
26515,
1276,
307,
262,
976,
13,
198,
16129,
3784,
1662,
40613,
3419,
15565,
44104,
6,
2618,
6,
3784,
7857,
3419,
796,
3303,
3784,
7857,
28955,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
3303,
62,
2618,
62,
7857,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
530,
62,
7783,
62,
20274,
62,
17143,
2357,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
4069,
1276,
423,
3446,
530,
1441,
1255,
11507,
13,
198,
46571,
1279,
29,
9242,
15565,
198,
220,
220,
4069,
13,
11990,
36301,
3784,
19738,
7,
37295,
28,
36301,
35,
4154,
35854,
3712,
7783,
8,
3784,
7857,
3419,
796,
352,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
530,
62,
7783,
62,
20274,
62,
17143,
2357,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
691,
62,
7783,
62,
20274,
62,
17143,
7307,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
4069,
743,
691,
423,
1441,
1255,
10007,
13,
198,
46571,
1279,
29,
9242,
15565,
4069,
13,
11990,
36301,
3784,
19738,
7,
37295,
27,
29,
36301,
35,
4154,
35854,
3712,
7783,
8,
3784,
271,
40613,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
691,
62,
7783,
62,
20274,
62,
17143,
7307,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
318,
62,
18908,
1373,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
318,
34500,
1373,
3419,
4952,
1771,
281,
5408,
318,
5292,
284,
4439,
281,
34142,
13,
198,
20274,
796,
357,
9562,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
40161,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
318,
62,
18908,
1373,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
318,
62,
13159,
62,
31591,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
318,
15419,
32863,
876,
3419,
4952,
1771,
281,
18253,
5408,
468,
257,
1729,
12,
31591,
1988,
13,
198,
944,
13,
271,
34500,
1373,
3419,
198,
20274,
796,
357,
9562,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
40161,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
318,
62,
13159,
62,
31591,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
318,
62,
24561,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
318,
21604,
1800,
3419,
4952,
1771,
281,
18253,
5408,
468,
257,
3967,
1988,
13,
198,
944,
13,
271,
34500,
1373,
3419,
198,
20274,
796,
357,
9562,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
40161,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
318,
62,
24561,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
651,
62,
20274,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
28532,
26939,
329,
8670,
18251,
16870,
2234,
3712,
14,
20274,
198,
20274,
796,
357,
361,
4069,
796,
9242,
788,
198,
220,
220,
220,
220,
220,
220,
220,
9242,
198,
17772,
198,
220,
220,
220,
220,
220,
220,
220,
4069,
13,
11990,
36301,
3784,
11085,
3419,
198,
32088,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
40161,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
20274,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
1988,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
1988,
3419,
3607,
281,
18253,
1988,
329,
281,
5408,
5292,
284,
4439,
530,
13,
198,
944,
13,
271,
34500,
1373,
3419,
198,
20274,
796,
357,
15,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
40161,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
1988,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
25139,
2357,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
25139,
2357,
526,
15931,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
2488,
12286,
13,
2617,
353,
628,
220,
220,
220,
825,
287,
62,
392,
62,
448,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
10049,
287,
290,
287,
448,
40117,
743,
423,
257,
12233,
1245,
13,
5514,
503,
11,
287,
448,
11,
290,
1441,
40117,
743,
423,
257,
2251,
1245,
13,
198,
7,
10760,
796,
25139,
2357,
18610,
35854,
3712,
33678,
15565,
357,
37295,
796,
25139,
2357,
35,
4154,
35854,
3712,
62,
6,
259,
6,
393,
4571,
796,
25139,
2357,
35,
4154,
35854,
3712,
259,
448,
4008,
198,
392,
198,
7,
10760,
796,
25139,
2357,
18610,
35854,
3712,
17953,
15565,
357,
37295,
796,
25139,
2357,
35,
4154,
35854,
3712,
448,
393,
4571,
796,
25139,
2357,
35,
4154,
35854,
3712,
259,
448,
393,
4571,
796,
25139,
2357,
35,
4154,
35854,
3712,
7783,
4008,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
287,
62,
392,
62,
448,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
407,
62,
1069,
4516,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2025,
5128,
25139,
2357,
2314,
307,
281,
6631,
13,
198,
271,
16922,
15565,
357,
37295,
1279,
29,
25139,
2357,
35,
4154,
35854,
3712,
62,
6,
259,
6,
290,
4571,
1279,
29,
25139,
2357,
35,
4154,
35854,
3712,
259,
448,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
407,
62,
1069,
4516,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
21716,
62,
437,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
25139,
2357,
743,
691,
307,
3917,
351,
257,
8113,
273,
886,
1626,
262,
4732,
286,
257,
37322,
341,
13,
198,
437,
3784,
1662,
40613,
3419,
15565,
12438,
3784,
1662,
40613,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
21716,
62,
437,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
302,
298,
5250,
62,
20709,
615,
12706,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
3041,
298,
5250,
14301,
2314,
423,
4269,
40117,
13,
198,
7,
271,
12124,
290,
4069,
1279,
29,
9242,
8,
15565,
407,
4069,
13,
271,
3041,
298,
5250,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
302,
298,
5250,
62,
20709,
615,
12706,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
4269,
62,
392,
62,
1069,
4516,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
25139,
2357,
2314,
307,
257,
4269,
290,
6631,
379,
262,
976,
640,
13,
198,
1662,
357,
271,
16922,
290,
318,
12124,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
4269,
62,
392,
62,
1069,
4516,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2134,
62,
10760,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
48944,
25683,
416,
6060,
31431,
2314,
423,
281,
1245,
13,
198,
7,
4906,
13,
38679,
3792,
35854,
5189,
7,
6601,
6030,
4008,
15565,
357,
10760,
796,
9242,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
2134,
62,
10760,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
900,
62,
2127,
21052,
62,
12286,
62,
8367,
7,
944,
11,
1988,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
50,
1039,
262,
4277,
1988,
329,
428,
11507,
284,
262,
7368,
41146,
1988,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
900,
62,
2127,
21052,
62,
12286,
62,
8367,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
900,
62,
41433,
62,
12286,
62,
8367,
7,
944,
11,
1988,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
50,
1039,
262,
4277,
1988,
329,
428,
11507,
284,
262,
7368,
18253,
1988,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
900,
62,
41433,
62,
12286,
62,
8367,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
900,
62,
8423,
62,
12286,
62,
8367,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
50,
1039,
262,
4277,
1988,
329,
428,
11507,
284,
262,
9242,
1988,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
900,
62,
8423,
62,
12286,
62,
8367,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
900,
62,
5305,
62,
12286,
62,
8367,
7,
944,
11,
1988,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
50,
1039,
262,
4277,
1988,
329,
428,
11507,
284,
262,
7368,
1103,
1988,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
900,
62,
5305,
62,
12286,
62,
8367,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
900,
62,
8841,
62,
12286,
62,
8367,
7,
944,
11,
1988,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
50,
1039,
262,
4277,
1988,
329,
428,
11507,
284,
262,
7368,
4731,
1988,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
900,
62,
8841,
62,
12286,
62,
8367,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
900,
62,
403,
10698,
62,
11802,
62,
12286,
62,
8367,
7,
944,
11,
1988,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
50,
1039,
262,
4277,
1988,
329,
428,
11507,
284,
262,
7368,
15822,
3288,
1988,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
900,
62,
403,
10698,
62,
11802,
62,
12286,
62,
8367,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
12286,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
28532,
26939,
329,
25139,
2357,
3712,
14,
12286,
198,
20274,
796,
357,
361,
2116,
13,
4906,
796,
10903,
788,
4277,
11395,
13,
8841,
11395,
3419,
2073,
9242,
45762,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9487,
2649,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
12286,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
797,
4516,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
797,
4516,
526,
15931,
628,
220,
220,
220,
825,
976,
62,
3672,
62,
292,
62,
12683,
282,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
797,
4516,
468,
262,
976,
1438,
355,
663,
6737,
198,
3672,
796,
6737,
13,
3672,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
976,
62,
3672,
62,
292,
62,
12683,
282,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
976,
62,
301,
5620,
62,
292,
62,
12683,
282,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
797,
4516,
338,
10007,
2872,
262,
6898,
29021,
286,
663,
6737,
416,
1438,
11,
2099,
11,
290,
15082,
8467,
198,
12683,
282,
13,
11990,
33682,
3784,
7857,
3419,
796,
6898,
36301,
3784,
7857,
3419,
290,
198,
44015,
594,
90,
16,
492,
12683,
282,
13,
11990,
33682,
3784,
7857,
3419,
92,
3784,
1640,
3237,
7,
1312,
930,
198,
220,
220,
220,
6898,
36301,
3784,
265,
7,
72,
737,
37295,
796,
25139,
2357,
35,
4154,
35854,
3712,
62,
6,
259,
6,
290,
198,
220,
220,
220,
6898,
36301,
3784,
265,
7,
72,
737,
3672,
796,
6737,
13,
11990,
33682,
3784,
265,
7,
72,
737,
3672,
290,
198,
220,
220,
220,
6898,
36301,
3784,
265,
7,
72,
737,
4906,
796,
6737,
13,
11990,
33682,
3784,
265,
7,
72,
737,
4906,
290,
198,
220,
220,
220,
6898,
36301,
3784,
265,
7,
72,
737,
21037,
49646,
3419,
796,
6737,
13,
11990,
33682,
3784,
265,
7,
72,
737,
21037,
49646,
3419,
290,
198,
220,
220,
220,
6898,
36301,
3784,
265,
7,
72,
737,
45828,
49646,
3419,
796,
6737,
13,
11990,
33682,
3784,
265,
7,
72,
737,
45828,
49646,
3419,
198,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
976,
62,
301,
5620,
62,
292,
62,
12683,
282,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
32112,
1523,
38816,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
32112,
1523,
38816,
526,
15931,
628,
198,
4871,
2262,
590,
22882,
2649,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
2262,
590,
22882,
2649,
526,
15931,
628,
220,
220,
220,
825,
14833,
62,
433,
29660,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2025,
2262,
590,
22882,
2649,
460,
719,
355,
257,
34706,
276,
8001,
29660,
611,
340,
6870,
281,
4554,
286,
281,
45908,
13,
198,
2934,
1420,
434,
1890,
8001,
29660,
3784,
1662,
40613,
3419,
15565,
1398,
7483,
3784,
1069,
1023,
7,
38679,
3792,
35854,
5189,
7,
8001,
29660,
4008,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
14833,
62,
433,
29660,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
13204,
62,
30053,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2949,
517,
621,
530,
10852,
287,
281,
2262,
590,
22882,
2649,
743,
423,
262,
976,
16215,
38816,
13,
198,
4871,
7483,
3784,
1640,
3237,
7,
66,
930,
357,
66,
13,
439,
11122,
1252,
540,
23595,
3419,
3784,
1640,
3237,
7,
69,
930,
10852,
3784,
19738,
7,
82,
930,
264,
13,
4299,
3191,
38816,
796,
277,
8,
3784,
7857,
3419,
19841,
352,
22305,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
13204,
62,
30053,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
16215,
62,
30053,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
16215,
38816,
286,
1123,
10852,
318,
257,
32112,
1523,
38816,
3519,
284,
257,
1398,
7483,
286,
262,
2262,
590,
22882,
2649,
11,
1390,
1277,
12608,
11,
19552,
12608,
11,
2839,
12608,
287,
2276,
4582,
11,
290,
2888,
12915,
82,
286,
3928,
602,
11,
475,
23494,
2266,
18156,
32112,
1523,
23595,
13,
198,
43384,
3784,
1640,
3237,
7,
82,
930,
1398,
7483,
3784,
1069,
1023,
357,
66,
930,
269,
13,
439,
11122,
1252,
540,
23595,
3419,
3784,
42813,
357,
82,
13,
4299,
3191,
38816,
22305,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
16215,
62,
30053,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
14833,
62,
16793,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2025,
2262,
590,
22882,
2649,
460,
719,
355,
257,
34706,
434,
21745,
611,
340,
6870,
281,
4554,
286,
257,
19081,
290,
5499,
355,
257,
636,
287,
262,
5387,
4645,
286,
281,
20504,
19696,
19081,
13,
198,
2934,
1420,
434,
3784,
1662,
40613,
3419,
15565,
1398,
7483,
3784,
1069,
1023,
7,
17440,
930,
10139,
13,
38679,
3792,
35854,
5189,
7,
19667,
8,
290,
19081,
13,
439,
6310,
1817,
3419,
3784,
1069,
1023,
7,
77,
930,
299,
13,
3911,
3784,
1069,
1023,
7,
79,
930,
279,
13,
4906,
796,
10139,
22305,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
14833,
62,
16793,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
41986,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
41986,
526,
15931,
628,
628,
198,
4871,
7561,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
7561,
526,
15931,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
825,
651,
62,
22866,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
16124,
341,
329,
262,
4732,
3119,
13,
198,
20274,
796,
357,
1616,
4069,
25,
20181,
796,
2116,
13,
38301,
25267,
15759,
3419,
287,
198,
361,
4069,
28,
8423,
788,
9242,
198,
17772,
611,
4069,
13557,
6,
22866,
6,
796,
9242,
788,
4069,
198,
17772,
4069,
13557,
6,
22866,
6,
198,
32088,
198,
32088,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
32,
2733,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
22866,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
477,
62,
4658,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
13615,
428,
7561,
290,
477,
24439,
7763,
3264,
393,
20762,
287,
340,
13,
2750,
4277,
691,
262,
7561,
2346,
318,
4504,
11,
475,
262,
4905,
318,
23170,
4651,
329,
32112,
1522,
16516,
45,
4147,
13,
198,
20274,
796,
357,
944,
3784,
292,
7248,
28955,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
32,
2733,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
477,
62,
4658,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
477,
62,
11990,
62,
77,
4147,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
35561,
477,
262,
24641,
45,
4147,
3264,
393,
20762,
6898,
416,
428,
7561,
13,
770,
3407,
379,
1551,
477,
262,
350,
1040,
286,
262,
7561,
13,
198,
20274,
796,
357,
15414,
13,
38679,
1722,
6030,
7,
28348,
8,
3784,
292,
7248,
3419,
3784,
24592,
7,
22915,
3784,
292,
7248,
3419,
4008,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
32,
2733,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
477,
62,
11990,
62,
77,
4147,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
7268,
62,
46571,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
20274,
796,
357,
361,
287,
44909,
1522,
19667,
27,
29,
8423,
788,
287,
44909,
1522,
19667,
13,
38301,
25267,
15759,
3419,
198,
17772,
611,
3842,
27,
29,
8423,
788,
3842,
198,
17772,
10375,
198,
32088,
198,
32088,
198,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
32,
2733,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
7268,
62,
46571,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
9515,
19667,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
9515,
19667,
526,
15931,
628,
220,
220,
220,
825,
5128,
62,
22915,
62,
17143,
2357,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
6356,
20181,
468,
530,
5128,
25139,
2357,
290,
530,
5072,
25139,
2357,
13,
383,
5128,
25139,
2357,
1276,
423,
262,
976,
2099,
355,
220,
393,
257,
2208,
4906,
286,
262,
2099,
286,
9515,
19667,
11,
307,
1729,
12,
34642,
11,
290,
423,
15082,
8467,
657,
492,
24620,
383,
5072,
25139,
2357,
1276,
307,
262,
976,
393,
257,
850,
4906,
286,
262,
2099,
286,
9515,
19667,
13,
383,
20181,
2314,
423,
1735,
3048,
13,
198,
49283,
27,
29,
8423,
15565,
198,
220,
220,
220,
220,
220,
220,
220,
6356,
13,
15414,
48944,
3419,
3784,
7857,
3419,
28,
16,
290,
198,
220,
220,
220,
220,
220,
220,
220,
6356,
13,
15414,
48944,
3419,
3784,
1640,
3237,
7,
79,
930,
407,
279,
13,
271,
40257,
290,
279,
13,
271,
7,
15,
11,
28104,
290,
2116,
13,
4906,
13,
1102,
23914,
2514,
7,
79,
13,
4906,
4008,
290,
198,
220,
220,
220,
220,
220,
220,
220,
6356,
13,
22915,
48944,
3419,
3784,
7857,
3419,
28,
16,
290,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6356,
13,
15414,
48944,
3419,
3784,
1640,
3237,
7,
79,
930,
2116,
13,
4906,
13,
1102,
23914,
2514,
7,
79,
13,
4906,
4008,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
5128,
62,
22915,
62,
17143,
2357,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
6356,
62,
46571,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
281,
9515,
19667,
468,
257,
6356,
20181,
11,
788,
262,
16216,
286,
262,
2134,
10139,
318,
6149,
11,
290,
7927,
25470,
13,
198,
7,
49283,
27,
29,
8423,
8,
796,
357,
34555,
28,
10267,
19667,
18743,
278,
35854,
3712,
24071,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
6356,
62,
46571,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2134,
62,
11125,
62,
276,
3212,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
318,
15988,
6030,
28,
9562,
11,
262,
24641,
7407,
3212,
15619,
284,
393,
28181,
422,
281,
9515,
19667,
1276,
477,
307,
9515,
7414,
1666,
13,
198,
7,
1662,
318,
15988,
6030,
8,
15565,
15619,
3784,
24592,
7,
448,
5146,
8,
3784,
1640,
3237,
7,
38679,
3792,
35854,
5189,
7,
10267,
37535,
4008,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2134,
62,
11125,
62,
276,
3212,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
35748,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
35748,
526,
15931,
628,
220,
220,
220,
825,
318,
62,
33780,
62,
1525,
7,
944,
11,
257,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
35748,
318,
9857,
416,
24439,
1626,
663,
8354,
357,
1169,
24641,
393,
32112,
1522,
16516,
19667,
326,
12216,
340,
737,
198,
20274,
796,
357,
361,
8354,
27,
29,
8423,
788,
8354,
13,
439,
23858,
276,
45,
4147,
3419,
3784,
42813,
7,
64,
8,
198,
17772,
257,
13,
38301,
16516,
3419,
28,
21797,
43642,
198,
32088,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
25526,
871,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
318,
62,
33780,
62,
1525,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
8125,
19667,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
8125,
19667,
526,
15931,
628,
220,
220,
220,
825,
645,
62,
448,
5146,
62,
276,
3212,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
8125,
19667,
468,
645,
28181,
24641,
7407,
3212,
13,
198,
448,
5146,
3784,
271,
40613,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
645,
62,
448,
5146,
62,
276,
3212,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
26423,
19667,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
26423,
19667,
526,
15931,
628,
220,
220,
220,
825,
6632,
62,
15414,
62,
17143,
7307,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
262,
26423,
19667,
468,
645,
2551,
20560,
37535,
290,
281,
15619,
6779,
37535,
11,
788,
597,
2551,
20560,
20181,
468,
645,
287,
10007,
13,
198,
7,
12501,
1166,
20560,
27,
29,
8423,
290,
2551,
20560,
37535,
28,
8423,
290,
15619,
3784,
1069,
1023,
7,
38679,
3792,
35854,
5189,
7,
15988,
37535,
22305,
15565,
198,
220,
220,
2551,
20560,
13,
15414,
48944,
3419,
3784,
271,
40613,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
6632,
62,
15414,
62,
17143,
7307,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
13015,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
24641,
7407,
3212,
15619,
284,
290,
28181,
422,
257,
26423,
19667,
11,
584,
621,
262,
2551,
20560,
37535,
357,
361,
597,
828,
1276,
307,
2035,
477,
9515,
7414,
1666,
393,
477,
6779,
7414,
1666,
13,
198,
1616,
477,
7407,
3212,
25,
5345,
7,
16516,
37021,
8,
796,
15619,
3784,
24592,
7,
448,
5146,
8,
287,
198,
1616,
477,
3041,
14938,
7407,
3212,
25,
5345,
7,
16516,
37021,
8,
796,
611,
2551,
20560,
37535,
3784,
1662,
40613,
3419,
788,
477,
7407,
3212,
3784,
42218,
7,
12501,
1166,
20560,
37535,
8,
2073,
477,
7407,
3212,
45762,
287,
198,
439,
3041,
14938,
7407,
3212,
3784,
1640,
3237,
7,
38679,
3792,
35854,
5189,
7,
15988,
37535,
4008,
393,
477,
3041,
14938,
7407,
3212,
3784,
1640,
3237,
7,
38679,
3792,
35854,
5189,
7,
10267,
37535,
4008,
198,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
13015,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
2551,
62,
15414,
62,
11125,
62,
259,
4976,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
2551,
20560,
37535,
286,
257,
26423,
19667,
1276,
307,
281,
15619,
24641,
37021,
286,
262,
26423,
19667,
13,
198,
259,
4976,
3784,
42813,
7,
12501,
1166,
20560,
37535,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2551,
62,
15414,
62,
11125,
62,
259,
4976,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
734,
62,
15414,
62,
17143,
7307,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
262,
26423,
19667,
468,
257,
2551,
20560,
37535,
290,
281,
1218,
15619,
9515,
37535,
11,
788,
597,
2551,
20560,
468,
734,
287,
40117,
11,
262,
717,
286,
543,
468,
257,
2099,
326,
318,
262,
976,
355,
393,
257,
2208,
4906,
286,
262,
2099,
286,
2134,
16326,
4438,
319,
262,
1729,
12,
12501,
1166,
20560,
37535,
290,
262,
1218,
286,
543,
468,
257,
2099,
326,
318,
262,
976,
355,
393,
257,
2208,
4906,
286,
262,
2099,
286,
2134,
16326,
4438,
319,
262,
2551,
20560,
37535,
13,
198,
7,
12501,
1166,
20560,
27,
29,
8423,
290,
2551,
20560,
37535,
27,
29,
8423,
290,
15619,
3784,
1640,
3237,
7,
38679,
3792,
35854,
5189,
7,
10267,
37535,
22305,
15565,
198,
220,
220,
220,
220,
220,
220,
220,
2551,
20560,
13,
15414,
48944,
3419,
3784,
7857,
3419,
28,
17,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
734,
62,
15414,
62,
17143,
7307,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
15619,
62,
448,
5146,
62,
276,
3212,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
26423,
19667,
468,
530,
393,
734,
15619,
24641,
7407,
3212,
290,
379,
1551,
530,
28181,
24641,
37021,
13,
198,
7,
259,
4976,
3784,
7857,
3419,
796,
352,
393,
15619,
3784,
7857,
3419,
796,
362,
8,
290,
28181,
3784,
7857,
3419,
1875,
657,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
15619,
62,
448,
5146,
62,
276,
3212,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
15619,
62,
13716,
62,
505,
62,
15414,
62,
17143,
2357,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
262,
26423,
19667,
468,
257,
2551,
20560,
37535,
290,
281,
15619,
6779,
37535,
11,
788,
597,
2551,
20560,
20181,
468,
530,
287,
25139,
2357,
3025,
2099,
318,
262,
976,
355,
393,
257,
2208,
4906,
286,
262,
2099,
286,
2134,
16326,
4438,
319,
262,
2551,
20560,
37535,
13,
198,
7,
12501,
1166,
20560,
27,
29,
8423,
290,
2551,
20560,
37535,
27,
29,
8423,
290,
15619,
3784,
1069,
1023,
7,
38679,
3792,
35854,
5189,
7,
15988,
37535,
22305,
15565,
198,
220,
220,
220,
220,
220,
220,
220,
2551,
20560,
13,
15414,
48944,
3419,
3784,
7857,
3419,
28,
16,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
15619,
62,
13716,
62,
505,
62,
15414,
62,
17143,
2357,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
10007,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
2551,
20560,
20181,
468,
645,
503,
10007,
11,
645,
287,
448,
10007,
11,
290,
530,
1441,
11507,
13,
198,
12501,
1166,
20560,
27,
29,
8423,
15565,
198,
220,
357,
12501,
1166,
20560,
13,
11990,
36301,
3784,
1640,
3237,
7,
1845,
930,
198,
220,
220,
220,
220,
1582,
13,
37295,
1279,
29,
25139,
2357,
35,
4154,
35854,
3712,
448,
290,
198,
220,
220,
220,
220,
1582,
13,
37295,
1279,
29,
25139,
2357,
35,
4154,
35854,
3712,
259,
448,
1267,
290,
198,
220,
220,
2551,
20560,
13,
11990,
36301,
3784,
505,
7,
1845,
930,
198,
220,
220,
220,
220,
1582,
13,
37295,
1279,
29,
25139,
2357,
35,
4154,
35854,
3712,
7783,
4008,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
10007,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
15619,
62,
15252,
62,
505,
62,
15414,
62,
17143,
2357,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
262,
26423,
19667,
468,
645,
2551,
20560,
37535,
290,
281,
15619,
9515,
37535,
11,
788,
597,
2551,
20560,
20181,
468,
530,
287,
25139,
2357,
3025,
2099,
318,
262,
976,
355,
393,
257,
2208,
4906,
286,
262,
2099,
286,
2134,
16326,
4438,
319,
262,
15619,
9515,
37535,
13,
198,
7,
12501,
1166,
20560,
27,
29,
8423,
290,
2551,
20560,
37535,
28,
8423,
290,
15619,
3784,
1640,
3237,
7,
38679,
3792,
35854,
5189,
7,
10267,
37535,
22305,
15565,
198,
220,
220,
220,
220,
220,
220,
220,
2551,
20560,
13,
15414,
48944,
3419,
3784,
7857,
3419,
28,
16,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
15619,
62,
15252,
62,
505,
62,
15414,
62,
17143,
2357,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
39812,
19667,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
39812,
19667,
526,
15931,
628,
220,
220,
220,
825,
13015,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
24641,
7407,
3212,
15619,
284,
290,
28181,
422,
257,
39812,
19667,
1276,
307,
2035,
477,
9515,
7414,
1666,
393,
477,
6779,
7414,
1666,
13,
198,
1616,
477,
7407,
3212,
1058,
5345,
7,
16516,
37021,
8,
796,
15619,
3784,
24592,
7,
448,
5146,
8,
287,
198,
439,
7407,
3212,
3784,
1640,
3237,
7,
38679,
3792,
35854,
5189,
7,
15988,
37535,
4008,
393,
477,
7407,
3212,
3784,
1640,
3237,
7,
38679,
3792,
35854,
5189,
7,
10267,
37535,
4008,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
13015,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
530,
62,
259,
4976,
62,
14907,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
39812,
19667,
468,
530,
15619,
24641,
37021,
13,
198,
259,
4976,
3784,
7857,
3419,
28,
16,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
530,
62,
259,
4976,
62,
14907,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
20768,
19667,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
20768,
19667,
526,
15931,
628,
220,
220,
220,
825,
645,
62,
259,
4976,
62,
276,
3212,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2025,
20768,
19667,
468,
645,
15619,
24641,
7407,
3212,
13,
198,
259,
4976,
3784,
271,
40613,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
645,
62,
259,
4976,
62,
276,
3212,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
1630,
62,
276,
3212,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
3237,
262,
28181,
24641,
7407,
3212,
422,
281,
20768,
19667,
1276,
307,
6779,
7414,
1666,
13,
198,
448,
5146,
3784,
1640,
3237,
7,
38679,
3792,
35854,
5189,
7,
15988,
37535,
4008,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
1630,
62,
276,
3212,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
15251,
19667,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
15251,
19667,
526,
15931,
628,
220,
220,
220,
825,
530,
62,
448,
5146,
62,
14907,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
15251,
19667,
468,
530,
28181,
24641,
37021,
13,
198,
448,
5146,
3784,
7857,
3419,
796,
352,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
530,
62,
448,
5146,
62,
14907,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
15619,
62,
15252,
62,
11125,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
530,
286,
262,
15619,
24641,
7407,
3212,
286,
257,
15251,
19667,
318,
281,
9515,
37535,
11,
788,
663,
28181,
24641,
37021,
1276,
307,
281,
9515,
37535,
13,
15323,
663,
28181,
24641,
37021,
1276,
307,
257,
6779,
37535,
13,
198,
361,
15619,
3784,
1069,
1023,
7,
38679,
3792,
35854,
5189,
7,
10267,
37535,
4008,
788,
28181,
3784,
1640,
3237,
7,
38679,
3792,
35854,
5189,
7,
10267,
37535,
4008,
198,
17772,
28181,
3784,
1640,
3237,
7,
38679,
3792,
35854,
5189,
7,
15988,
37535,
4008,
198,
32088,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
15619,
62,
15252,
62,
11125,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
39407,
19667,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
39407,
19667,
526,
15931,
628,
220,
220,
220,
825,
530,
62,
448,
5146,
62,
14907,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
39407,
19667,
468,
530,
28181,
24641,
37021,
13,
198,
448,
5146,
3784,
7857,
3419,
28,
16,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
530,
62,
448,
5146,
62,
14907,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
13015,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
24641,
7407,
3212,
15619,
284,
290,
28181,
422,
257,
39407,
19667,
1276,
307,
2035,
477,
9515,
7414,
1666,
393,
477,
6779,
7414,
1666,
13,
198,
1616,
477,
7407,
3212,
1058,
5345,
7,
16516,
37021,
8,
796,
15619,
3784,
24592,
7,
448,
5146,
8,
287,
198,
439,
7407,
3212,
3784,
1640,
3237,
7,
38679,
3792,
35854,
5189,
7,
15988,
37535,
4008,
393,
477,
7407,
3212,
3784,
1640,
3237,
7,
38679,
3792,
35854,
5189,
7,
10267,
37535,
4008,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
13015,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
2262,
590,
11395,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
2262,
590,
11395,
526,
15931,
628,
198,
4871,
4377,
3041,
15164,
9237,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
4377,
3041,
15164,
9237,
526,
15931,
628,
198,
4871,
4889,
9237,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
4889,
9237,
526,
15931,
628,
198,
4871,
26484,
9237,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
26484,
9237,
526,
15931,
628,
198,
4871,
3862,
16870,
2234,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
3862,
16870,
2234,
526,
15931,
628,
220,
220,
220,
825,
645,
62,
31937,
62,
47911,
62,
672,
3168,
341,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
257,
3862,
16870,
2234,
468,
645,
44052,
11,
788,
340,
1276,
423,
257,
2060,
13432,
326,
318,
257,
3862,
31310,
13208,
13,
198,
31937,
796,
9242,
15565,
357,
672,
3168,
341,
3784,
7857,
3419,
796,
352,
290,
13432,
3784,
1640,
3237,
7,
38679,
3792,
35854,
5189,
7,
7575,
31310,
13208,
22305,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
645,
62,
31937,
62,
47911,
62,
672,
3168,
341,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
6188,
37535,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
6188,
37535,
526,
15931,
628,
220,
220,
220,
825,
1276,
62,
1102,
687,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
4237,
290,
6670,
286,
262,
1321,
5202,
1276,
17216,
284,
262,
4237,
290,
6670,
393,
369,
21243,
262,
6670,
290,
4237,
286,
262,
23258,
6958,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
1276,
62,
1102,
687,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
4237,
62,
392,
62,
83,
853,
1039,
62,
11031,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
4237,
290,
6670,
286,
262,
1321,
5202,
460,
691,
307,
530,
286,
262,
1708,
1611,
25,
27274,
11,
19081,
11,
5765,
20448,
11,
45908,
11,
5016,
11,
35100,
11,
4347,
11,
14161,
11,
26491,
11,
15717,
11,
24641,
19667,
11,
24641,
7841,
653,
11,
198,
25267,
15759,
290,
2262,
590,
22882,
2649,
2845,
618,
663,
1398,
7483,
318,
257,
2776,
357,
72,
13,
68,
13,
340,
6870,
257,
2792,
737,
198,
7,
944,
13,
17018,
7416,
3784,
1640,
3237,
7,
264,
271,
930,
198,
220,
267,
565,
3792,
35854,
5189,
7,
40277,
8,
393,
267,
565,
3792,
35854,
5189,
7,
19667,
8,
393,
267,
565,
3792,
35854,
5189,
7,
11041,
20448,
8,
393,
267,
565,
3792,
35854,
5189,
7,
8001,
29660,
8,
393,
198,
220,
267,
565,
3792,
35854,
5189,
7,
9487,
8,
393,
267,
565,
3792,
35854,
5189,
7,
21950,
8,
393,
267,
565,
3792,
35854,
5189,
7,
13924,
8,
393,
267,
565,
3792,
35854,
5189,
7,
21746,
8,
393,
198,
220,
267,
565,
3792,
35854,
5189,
7,
39317,
8,
393,
267,
565,
3792,
35854,
5189,
7,
27813,
8,
393,
267,
565,
3792,
35854,
5189,
7,
16516,
19667,
8,
393,
267,
565,
3792,
35854,
5189,
7,
16516,
7841,
653,
8,
393,
198,
220,
357,
38679,
3792,
35854,
5189,
7,
33384,
22882,
2649,
8,
290,
407,
264,
271,
13,
38679,
1722,
6030,
7,
33384,
22882,
2649,
737,
4871,
7483,
3784,
1069,
1023,
7,
38679,
3792,
35854,
5189,
7,
47117,
1056,
4008,
22305,
198,
198,
392,
198,
198,
7,
944,
13,
17018,
21745,
3784,
1640,
3237,
7,
1650,
930,
198,
220,
267,
565,
3792,
35854,
5189,
7,
40277,
8,
393,
267,
565,
3792,
35854,
5189,
7,
19667,
8,
393,
267,
565,
3792,
35854,
5189,
7,
11041,
20448,
8,
393,
267,
565,
3792,
35854,
5189,
7,
8001,
29660,
8,
393,
198,
220,
267,
565,
3792,
35854,
5189,
7,
9487,
8,
393,
267,
565,
3792,
35854,
5189,
7,
21950,
8,
393,
267,
565,
3792,
35854,
5189,
7,
13924,
8,
393,
267,
565,
3792,
35854,
5189,
7,
21746,
8,
393,
198,
220,
267,
565,
3792,
35854,
5189,
7,
39317,
8,
393,
267,
565,
3792,
35854,
5189,
7,
27813,
8,
393,
267,
565,
3792,
35854,
5189,
7,
16516,
19667,
8,
393,
267,
565,
3792,
35854,
5189,
7,
16516,
7841,
653,
8,
393,
198,
7,
38679,
3792,
35854,
5189,
7,
33384,
22882,
2649,
8,
290,
407,
1650,
13,
38679,
1722,
6030,
7,
33384,
22882,
2649,
737,
4871,
7483,
3784,
1069,
1023,
7,
38679,
3792,
35854,
5189,
7,
47117,
1056,
4008,
22305,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
4237,
62,
392,
62,
83,
853,
1039,
62,
11031,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
13878,
62,
4871,
13350,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2025,
1321,
5202,
460,
691,
13878,
1398,
13350,
326,
389,
3142,
284,
2380,
281,
1321,
2378,
13,
198,
944,
13,
1102,
3304,
276,
3784,
1640,
3237,
7,
38679,
3792,
35854,
5189,
7,
9487,
8,
393,
267,
565,
3792,
35854,
5189,
7,
39317,
8,
198,
220,
393,
267,
565,
3792,
35854,
5189,
7,
21918,
7449,
8,
393,
267,
565,
3792,
35854,
5189,
7,
11712,
282,
8,
393,
267,
565,
3792,
35854,
5189,
7,
21950,
4008,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
13878,
62,
4871,
13350,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
25034,
29223,
33928,
22882,
2649,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
25034,
29223,
33928,
22882,
2649,
526,
15931,
628,
220,
220,
220,
825,
645,
62,
13966,
33928,
62,
16684,
6637,
62,
35993,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2949,
584,
10775,
33928,
22882,
6637,
319,
257,
1813,
21073,
4470,
287,
281,
4225,
2673,
18843,
392,
743,
1656,
2174,
257,
25034,
29223,
33928,
22882,
2649,
13,
198,
1616,
267,
1058,
4225,
2673,
18843,
392,
796,
13507,
2752,
18843,
392,
287,
267,
3784,
1662,
40613,
3419,
290,
198,
1616,
12720,
37103,
1058,
14230,
1068,
7248,
7,
29223,
33928,
22882,
2649,
8,
796,
5017,
13,
31534,
3784,
19738,
7,
268,
565,
2752,
18843,
392,
796,
267,
8,
198,
259,
12720,
37103,
3784,
12957,
3419,
796,
2116,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
645,
62,
13966,
33928,
62,
16684,
6637,
62,
35993,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
8125,
9012,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
8125,
9012,
526,
15931,
628,
220,
220,
220,
825,
645,
62,
37023,
62,
46571,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
8125,
9012,
468,
645,
8420,
20181,
13,
198,
37023,
3784,
271,
40613,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
645,
62,
37023,
62,
46571,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
645,
62,
448,
5146,
62,
7645,
1756,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
8125,
9012,
2314,
423,
597,
28181,
3602,
1756,
13,
198,
448,
5146,
3784,
7857,
3419,
796,
657,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
645,
62,
448,
5146,
62,
7645,
1756,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
645,
62,
2301,
507,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
8125,
9012,
2314,
423,
47089,
13,
198,
36996,
3784,
7857,
3419,
796,
657,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
645,
62,
2301,
507,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
2314,
62,
35790,
62,
7266,
30243,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
8125,
9012,
2314,
4941,
257,
850,
30243,
13,
198,
7266,
30243,
3784,
271,
40613,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2314,
62,
35790,
62,
7266,
30243,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
645,
62,
13000,
62,
46571,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
8125,
9012,
468,
645,
5726,
20181,
13,
198,
13000,
3784,
271,
40613,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
645,
62,
13000,
62,
46571,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
645,
62,
5219,
62,
46571,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
8125,
9012,
468,
645,
1181,
357,
4598,
16516,
8,
20181,
13,
198,
4598,
16516,
3784,
271,
40613,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
645,
62,
5219,
62,
46571,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
22920,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
22920,
526,
15931,
628,
220,
220,
220,
825,
645,
62,
31937,
62,
47911,
62,
672,
3168,
341,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
257,
22920,
468,
645,
44052,
11,
788,
340,
1276,
423,
257,
2060,
13432,
326,
318,
257,
22920,
31310,
13208,
13,
198,
31937,
796,
9242,
15565,
357,
672,
3168,
341,
3784,
7857,
3419,
796,
352,
290,
13432,
3784,
1640,
3237,
7,
38679,
3792,
35854,
5189,
7,
26054,
31310,
13208,
22305,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
645,
62,
31937,
62,
47911,
62,
672,
3168,
341,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
22920,
3103,
2536,
2913,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
22920,
3103,
2536,
2913,
526,
15931,
628,
220,
220,
220,
825,
717,
62,
15596,
62,
47945,
8467,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
15082,
8467,
286,
717,
9237,
1276,
307,
362,
611,
262,
15082,
8467,
286,
31070,
20180,
318,
362,
13,
15323,
262,
15082,
8467,
286,
717,
9237,
318,
657,
13,
198,
361,
357,
1102,
2536,
1328,
20180,
3784,
7857,
3419,
796,
362,
8,
198,
220,
788,
357,
11085,
9237,
3784,
7857,
3419,
796,
362,
8,
2073,
357,
11085,
9237,
3784,
7857,
3419,
796,
657,
8,
198,
32088,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
717,
62,
15596,
62,
47945,
8467,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
468,
62,
505,
62,
273,
62,
11545,
62,
1102,
2536,
1328,
62,
68,
3639,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
22920,
3103,
2536,
2913,
468,
2035,
530,
393,
734,
31070,
36,
3639,
13,
198,
1102,
2536,
1328,
20180,
3784,
7857,
3419,
796,
352,
393,
31070,
20180,
3784,
7857,
3419,
28,
17,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
468,
62,
505,
62,
273,
62,
11545,
62,
1102,
2536,
1328,
62,
68,
3639,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
4225,
2100,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
4225,
2100,
526,
15931,
628,
198,
4871,
25659,
1691,
22882,
2649,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
25659,
1691,
22882,
2649,
526,
15931,
628,
198,
4871,
3862,
3103,
2536,
2913,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
3862,
3103,
2536,
2913,
526,
15931,
628,
220,
220,
220,
825,
468,
62,
505,
62,
1102,
2536,
1328,
62,
30854,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
3862,
3103,
2536,
2913,
468,
530,
31070,
20180,
13,
198,
1102,
2536,
1328,
20180,
3784,
7857,
3419,
796,
352,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
468,
62,
505,
62,
1102,
2536,
1328,
62,
30854,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
13118,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
13118,
526,
15931,
628,
220,
220,
220,
825,
1138,
330,
31172,
62,
35790,
62,
1662,
62,
20887,
1143,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2025,
5002,
17392,
355,
257,
1138,
330,
31172,
26687,
318,
407,
16976,
393,
38284,
287,
257,
13118,
13,
198,
4164,
330,
31172,
26687,
13,
320,
9213,
20180,
3784,
198,
220,
220,
220,
220,
220,
220,
220,
2922,
7,
66,
930,
269,
13,
38679,
3792,
35854,
5189,
7,
9487,
7483,
8,
290,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
66,
13,
38679,
1722,
6030,
7,
9487,
7483,
737,
439,
42969,
3419,
3784,
33327,
7,
14933,
10223,
8,
3784,
42813,
7,
944,
22305,
3784,
271,
40613,
3419,
198,
392,
198,
8002,
1886,
20180,
3784,
198,
220,
220,
220,
2922,
7,
38679,
3792,
35854,
5189,
7,
9487,
7483,
4008,
3784,
33327,
7,
38679,
1722,
6030,
7,
9487,
7483,
737,
439,
42969,
28955,
3784,
198,
220,
220,
220,
220,
220,
220,
16246,
7,
4164,
330,
31172,
26687,
13,
320,
9213,
20180,
3784,
19738,
7,
38679,
3792,
35854,
5189,
7,
9487,
7483,
4008,
3784,
33327,
7,
38679,
1722,
6030,
7,
9487,
7483,
22305,
3784,
271,
40613,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
1138,
330,
31172,
62,
35790,
62,
1662,
62,
20887,
1143,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
10288,
62,
31642,
62,
4164,
321,
375,
417,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
3237,
4847,
17392,
2035,
355,
1138,
330,
31172,
19927,
393,
832,
1138,
321,
375,
417,
19927,
389,
1866,
286,
262,
976,
2779,
4941,
1138,
321,
375,
417,
13,
198,
4164,
321,
375,
417,
26687,
13,
320,
9213,
27813,
13,
30854,
20939,
13,
320,
9213,
20180,
13,
439,
23858,
278,
11869,
1095,
3419,
3784,
198,
220,
6441,
7,
4164,
330,
31172,
26687,
13,
320,
9213,
20180,
13,
439,
23858,
278,
11869,
1095,
3419,
1267,
3784,
1662,
40613,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
10288,
62,
31642,
62,
4164,
321,
375,
417,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2251,
7,
944,
11,
1398,
7483,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
16719,
274,
290,
5860,
281,
4554,
286,
357,
1169,
412,
7295,
10552,
286,
8,
262,
7368,
1398,
7483,
5447,
287,
428,
7034,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
2251,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
8160,
7,
944,
11,
3689,
28,
14202,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
7469,
1127,
428,
7034,
416,
357,
260,
8,
20123,
278,
412,
7295,
24612,
286,
663,
1459,
10154,
11,
1262,
262,
7368,
3689,
11,
6689,
34558,
11,
290,
4732,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
422,
764,
13317,
62,
26791,
1330,
471,
5805,
62,
1238,
62,
47269,
11,
8160,
62,
13317,
628,
220,
220,
220,
220,
220,
220,
220,
304,
1236,
14221,
796,
2116,
13,
1136,
36,
2025,
38983,
7,
52,
5805,
62,
1238,
62,
47269,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
304,
1236,
14221,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
304,
1236,
14221,
796,
304,
7295,
13,
36,
2025,
38983,
7,
10459,
28,
52,
5805,
62,
1238,
62,
47269,
8,
198,
220,
220,
220,
220,
220,
220,
220,
304,
1236,
14221,
13,
3642,
658,
13,
33295,
7,
13086,
62,
13317,
7,
944,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
68,
2025,
30078,
13,
33295,
7,
68,
1236,
14221,
8,
628,
220,
220,
220,
825,
651,
62,
46758,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
1459,
6770,
357,
36,
7295,
10552,
8,
286,
428,
7034,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
46758,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
651,
62,
46758,
7,
944,
11,
3706,
20180,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
1459,
6770,
357,
36,
7295,
10552,
8,
286,
262,
7368,
3706,
5002,
287,
428,
7034,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
46758,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
651,
62,
11990,
62,
2302,
5736,
7,
944,
11,
2672,
10049,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
18366,
6898,
416,
428,
7034,
11,
23494,
1729,
12,
35827,
18366,
611,
8203,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
11990,
62,
2302,
5736,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
5420,
14226,
771,
62,
4164,
330,
28958,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
1138,
330,
28958,
20717,
416,
428,
7034,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
5420,
14226,
771,
62,
4164,
330,
28958,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
5420,
14226,
771,
62,
4164,
321,
375,
1424,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
1138,
321,
375,
1424,
20717,
416,
428,
7034,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
5420,
14226,
771,
62,
4164,
321,
375,
1424,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
318,
62,
23211,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
35,
13221,
274,
1771,
428,
7034,
318,
5447,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
318,
62,
23211,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
34706,
434,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
34706,
434,
526,
15931,
628,
198,
4871,
2275,
301,
7861,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
2275,
301,
7861,
526,
15931,
628,
198,
4871,
2039,
6975,
341,
43,
270,
1691,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
2039,
6975,
341,
43,
270,
1691,
526,
15931,
628,
220,
220,
220,
825,
651,
62,
4871,
7483,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
28532,
26939,
286,
2039,
6975,
341,
3712,
14,
4871,
7483,
198,
20274,
796,
357,
268,
6975,
341,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
26437,
9487,
13350,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
4871,
7483,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
9104,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
9104,
526,
15931,
628,
220,
220,
220,
825,
318,
62,
4164,
321,
375,
417,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
35,
13221,
274,
1771,
428,
2746,
318,
257,
1138,
321,
375,
417,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
318,
62,
4164,
321,
375,
417,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
29566,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
29566,
526,
15931,
628,
198,
4871,
11052,
22882,
2649,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
11052,
22882,
2649,
12502,
526,
15931,
628,
220,
220,
220,
825,
15082,
8467,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
15082,
8467,
286,
262,
1255,
25235,
28348,
318,
352,
492,
16,
198,
20274,
13,
271,
7,
16,
11,
16,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
15082,
8467,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
11670,
62,
4906,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
2099,
286,
262,
1988,
11052,
22882,
2649,
1276,
17216,
284,
262,
2099,
286,
262,
1255,
25235,
28348,
13,
198,
8367,
13,
4906,
13,
1102,
23914,
2514,
7,
20274,
13,
4906,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
11670,
62,
4906,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
35748,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
35748,
12502,
526,
15931,
628,
220,
220,
220,
825,
8354,
62,
1659,
62,
45286,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
35748,
12502,
1276,
307,
287,
262,
8354,
286,
262,
7885,
13,
198,
45286,
13,
271,
15457,
856,
3886,
7,
944,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
8354,
62,
1659,
62,
45286,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
7502,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
7502,
12502,
526,
15931,
628,
220,
220,
220,
825,
976,
62,
49556,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
5128,
11395,
23412,
47,
1040,
318,
262,
976,
355,
262,
6441,
286,
477,
262,
23412,
47,
1040,
20717,
416,
262,
886,
6601,
13,
198,
15414,
11395,
3784,
292,
33,
363,
3419,
28,
437,
6601,
13,
439,
47,
1040,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
976,
62,
49556,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
976,
62,
562,
41003,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
5645,
286,
262,
886,
6601,
1276,
477,
307,
422,
262,
976,
5396,
290,
2291,
477,
290,
691,
262,
2888,
12915,
82,
286,
326,
8112,
13,
198,
437,
6601,
13,
437,
796,
2116,
13,
562,
41003,
22446,
19522,
12915,
3784,
292,
33,
363,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
976,
62,
562,
41003,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
407,
62,
12708,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
5645,
286,
262,
886,
6601,
1276,
407,
307,
9037,
13,
198,
437,
6601,
3784,
1640,
3237,
7,
1662,
886,
13,
271,
45442,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
407,
62,
12708,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
8112,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
35561,
262,
5396,
13134,
319,
416,
428,
7502,
12502,
13,
198,
20274,
796,
357,
437,
6601,
3784,
292,
44015,
594,
3419,
3784,
11085,
22446,
437,
13,
562,
41003,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
32,
2733,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
8112,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
32112,
1523,
38816,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
32112,
1523,
38816,
12502,
526,
15931,
628,
220,
220,
220,
825,
15082,
8467,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
15082,
8467,
286,
262,
2134,
23412,
28348,
1276,
307,
352,
492,
16,
13,
198,
15252,
13,
271,
7,
16,
11,
16,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
15082,
8467,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
2134,
62,
4906,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
13204,
38816,
1276,
2035,
307,
281,
6898,
393,
19552,
3895,
286,
262,
2099,
286,
262,
2134,
23412,
28348,
11,
393,
340,
1276,
307,
281,
6898,
886,
286,
257,
13934,
5396,
3025,
6697,
886,
550,
355,
257,
2099,
284,
543,
262,
2099,
286,
262,
2134,
23412,
28348,
17216,
82,
13,
198,
15252,
13,
4906,
13,
38679,
1722,
6030,
7,
9487,
7483,
737,
439,
23595,
3419,
3784,
42813,
7,
7249,
1523,
38816,
8,
393,
198,
220,
220,
220,
220,
220,
220,
220,
2134,
13,
4906,
13,
1102,
23914,
2514,
7,
7249,
1523,
38816,
13,
38679,
1722,
6030,
7,
21746,
737,
10365,
5971,
13,
4906,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
2134,
62,
4906,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
20742,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
20742,
286,
262,
13204,
38816,
1276,
1249,
1895,
422,
262,
2134,
9489,
262,
4149,
44909,
1523,
38816,
12502,
13,
198,
7249,
1523,
38816,
13,
4703,
2247,
796,
6911,
2247,
35854,
3712,
11377,
393,
198,
62,
6,
22866,
4458,
439,
23595,
3419,
3784,
42813,
7,
7249,
1523,
38816,
8,
393,
198,
7249,
1523,
38816,
13,
4703,
2247,
28,
15854,
2247,
35854,
3712,
24326,
290,
198,
62,
6,
22866,
4458,
1102,
23914,
2514,
7,
7249,
1523,
38816,
13,
38679,
1722,
6030,
7,
21746,
737,
10365,
5971,
13,
4906,
13,
38679,
1722,
6030,
7,
9487,
7483,
4008,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
20742,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
407,
62,
12708,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
13204,
38816,
1276,
407,
307,
9037,
13,
198,
1662,
13204,
38816,
13,
271,
45442,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
407,
62,
12708,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
530,
62,
27594,
870,
62,
4871,
7483,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
13204,
38816,
1276,
423,
3446,
530,
9593,
9487,
7483,
13,
198,
7249,
1523,
38816,
13,
27594,
870,
9487,
7483,
3784,
7857,
3419,
796,
352,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
530,
62,
27594,
870,
62,
4871,
7483,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
21699,
9237,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
21699,
9237,
12502,
526,
15931,
628,
220,
220,
220,
825,
530,
62,
22915,
62,
11635,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
318,
3118,
76,
5406,
439,
28,
9562,
290,
597,
286,
262,
20022,
389,
329,
26484,
37103,
393,
3862,
37103,
11,
612,
1276,
307,
3446,
530,
1255,
25235,
28348,
351,
15082,
8467,
352,
492,
16,
13,
198,
1662,
318,
3118,
76,
5406,
439,
290,
7616,
3784,
1069,
1023,
7,
15596,
13,
38679,
3792,
35854,
5189,
7,
11712,
282,
9237,
8,
393,
1785,
13,
38679,
3792,
35854,
5189,
7,
7575,
9237,
4008,
15565,
198,
220,
220,
220,
220,
220,
220,
220,
5072,
3784,
7857,
3419,
796,
352,
290,
5072,
3784,
11085,
22446,
271,
7,
16,
11,
16,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
530,
62,
22915,
62,
11635,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
645,
62,
15414,
62,
49556,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
38855,
9237,
32,
2733,
743,
423,
645,
5128,
20567,
13,
198,
15414,
3784,
7857,
3419,
796,
657,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
645,
62,
15414,
62,
49556,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
645,
62,
22915,
62,
49556,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1858,
389,
645,
25235,
47,
1040,
611,
262,
7616,
2995,
389,
691,
9794,
37103,
290,
14,
273,
4889,
37103,
618,
428,
2223,
318,
281,
4554,
286,
21699,
9237,
12502,
290,
407,
281,
4554,
286,
257,
45923,
286,
21699,
9237,
12502,
357,
10508,
355,
21699,
14134,
12502,
737,
198,
7,
944,
13,
38679,
3792,
6030,
5189,
7,
38855,
9237,
12502,
8,
290,
198,
220,
220,
357,
46284,
3784,
1640,
3237,
7,
15596,
13,
38679,
3792,
35854,
5189,
7,
19400,
9237,
8,
393,
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,
1785,
13,
38679,
3792,
35854,
5189,
7,
14134,
9237,
35514,
198,
23928,
444,
5072,
3784,
7857,
3419,
796,
657,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
645,
62,
22915,
62,
49556,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
21303,
5406,
439,
62,
12683,
282,
62,
31534,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
318,
3118,
76,
5406,
439,
318,
2081,
357,
392,
428,
318,
407,
281,
21699,
14134,
12502,
828,
612,
1276,
307,
3446,
530,
7616,
11,
543,
318,
329,
257,
26484,
9237,
13,
383,
1271,
286,
1255,
5072,
20567,
1276,
307,
262,
976,
355,
262,
1271,
286,
12608,
286,
262,
6737,
13,
383,
2099,
290,
16216,
286,
1123,
1255,
5072,
6757,
1276,
307,
262,
976,
355,
262,
11188,
11688,
286,
262,
6737,
13,
383,
15082,
8467,
286,
1123,
1255,
5072,
6757,
1276,
307,
11670,
351,
262,
15082,
8467,
286,
262,
11188,
11688,
13,
198,
271,
3118,
76,
5406,
439,
290,
2116,
13,
38679,
3792,
6030,
5189,
7,
38855,
9237,
12502,
8,
15565,
198,
220,
220,
220,
220,
220,
220,
220,
7616,
3784,
7857,
3419,
28,
16,
290,
198,
220,
220,
220,
220,
220,
220,
220,
7616,
3784,
292,
44015,
594,
3419,
3784,
11085,
22446,
15596,
13,
38679,
3792,
35854,
5189,
7,
11712,
282,
9237,
8,
290,
198,
220,
220,
220,
220,
220,
220,
220,
1309,
11688,
25,
14230,
1068,
7248,
7,
21746,
8,
796,
7616,
3784,
292,
44015,
594,
3419,
3784,
11085,
22446,
15596,
13,
38679,
1722,
6030,
7,
11712,
282,
9237,
737,
12683,
282,
13,
439,
29021,
3419,
287,
198,
220,
220,
220,
220,
220,
220,
220,
11688,
3784,
7857,
3419,
29,
15,
290,
1255,
3784,
7857,
3419,
796,
11688,
3784,
7857,
3419,
290,
198,
220,
220,
220,
220,
220,
220,
220,
45835,
90,
16,
492,
20274,
3784,
7857,
3419,
92,
3784,
1640,
3237,
7,
72,
930,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1255,
3784,
265,
7,
72,
737,
4906,
796,
11688,
3784,
265,
7,
72,
737,
4906,
290,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1255,
3784,
265,
7,
72,
737,
271,
35422,
1068,
796,
11688,
3784,
265,
7,
72,
737,
271,
35422,
1068,
290,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1255,
3784,
265,
7,
72,
737,
42813,
15205,
24705,
8467,
7,
42348,
3784,
265,
7,
72,
22305,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
21303,
5406,
439,
62,
12683,
282,
62,
31534,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
369,
15464,
62,
4906,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
318,
3118,
76,
5406,
439,
28,
9562,
290,
477,
262,
20022,
389,
329,
26484,
37103,
11,
788,
262,
2099,
286,
262,
2060,
1255,
25235,
28348,
1276,
2035,
307,
9242,
393,
477,
262,
10425,
1276,
17216,
284,
340,
13,
198,
1662,
318,
3118,
76,
5406,
439,
15565,
198,
220,
220,
220,
220,
220,
220,
220,
1255,
3784,
271,
40613,
3419,
393,
198,
220,
220,
220,
220,
220,
220,
220,
1309,
2099,
25,
5994,
796,
1255,
3784,
11085,
22446,
4906,
287,
198,
220,
220,
220,
220,
220,
220,
220,
2099,
28,
8423,
393,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
46284,
3784,
1640,
3237,
7,
15596,
13,
38679,
3792,
35854,
5189,
7,
11712,
282,
9237,
4008,
290,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7616,
13,
15596,
13,
38679,
1722,
6030,
7,
11712,
282,
9237,
737,
12683,
282,
3784,
1640,
3237,
7,
82,
930,
264,
13,
1102,
23914,
2514,
7,
4906,
22305,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
369,
15464,
62,
4906,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
10001,
5040,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
10001,
5040,
12502,
526,
15931,
628,
198,
4871,
11459,
8021,
41003,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
11459,
8021,
41003,
12502,
526,
15931,
628,
220,
220,
220,
825,
15082,
8467,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
15082,
8467,
286,
262,
2134,
23412,
28348,
318,
352,
492,
16,
13,
198,
15252,
13,
271,
7,
16,
11,
16,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
15082,
8467,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
976,
62,
4906,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
2099,
286,
262,
23412,
28348,
1276,
17216,
284,
262,
2099,
286,
379,
1551,
530,
286,
262,
2888,
12915,
82,
286,
262,
8112,
13,
198,
562,
41003,
13,
19522,
12915,
3784,
1069,
1023,
7,
944,
13,
15252,
13,
4906,
13,
1102,
23914,
2514,
7,
4906,
4008,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
976,
62,
4906,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
13610,
10267,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
13610,
10267,
12502,
526,
15931,
628,
220,
220,
220,
825,
1398,
7483,
62,
1662,
62,
397,
8709,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
1398,
7483,
2314,
307,
12531,
13,
198,
1662,
1398,
7483,
13,
271,
23839,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
1398,
7483,
62,
1662,
62,
397,
8709,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
15082,
8467,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
15082,
8467,
286,
262,
1255,
25235,
28348,
318,
352,
492,
16,
13,
198,
20274,
13,
271,
7,
16,
11,
16,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
15082,
8467,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
1398,
7483,
62,
1662,
62,
562,
41003,
62,
4871,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
1398,
7483,
2314,
307,
281,
5396,
9487,
13,
198,
1662,
1398,
7483,
13,
38679,
3792,
35854,
5189,
7,
8021,
41003,
9487,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
1398,
7483,
62,
1662,
62,
562,
41003,
62,
4871,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
976,
62,
4906,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
2099,
286,
262,
1255,
25235,
28348,
1276,
307,
262,
976,
355,
262,
1398,
7483,
286,
262,
13610,
10267,
12502,
13,
198,
20274,
13,
4906,
796,
1398,
7483,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
976,
62,
4906,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
19448,
10267,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
19448,
10267,
12502,
526,
15931,
628,
220,
220,
220,
825,
15082,
8467,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
15082,
8467,
286,
262,
256,
1376,
314,
15414,
28348,
318,
352,
492,
16,
13,
198,
16793,
13,
271,
7,
16,
11,
16,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
15082,
8467,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
645,
62,
4906,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
2496,
23412,
28348,
468,
645,
2099,
13,
198,
16793,
13,
4906,
28,
9242,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
645,
62,
4906,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
25042,
19667,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
25042,
19667,
526,
15931,
628,
220,
220,
220,
825,
3814,
62,
292,
62,
15414,
62,
273,
62,
22915,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
3198,
286,
3814,
1722,
20560,
393,
3814,
1722,
26410,
1276,
307,
1729,
12,
28920,
11,
475,
407,
1111,
13,
198,
36996,
1722,
20560,
3784,
1662,
40613,
3419,
2124,
273,
3814,
1722,
26410,
3784,
1662,
40613,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
3814,
62,
292,
62,
15414,
62,
273,
62,
22915,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
8670,
18251,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
8670,
18251,
12502,
526,
15931,
628,
220,
220,
220,
825,
3303,
62,
2618,
62,
7857,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
262,
3303,
11688,
318,
407,
6565,
11,
788,
262,
2546,
286,
262,
1767,
290,
3303,
8341,
1276,
307,
262,
976,
13,
198,
16129,
3784,
1662,
40613,
3419,
15565,
44104,
6,
2618,
6,
3784,
7857,
3419,
796,
3303,
3784,
7857,
28955,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
3303,
62,
2618,
62,
7857,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
35123,
16922,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
35123,
16922,
12502,
526,
15931,
628,
198,
4871,
4149,
11627,
298,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
4149,
11627,
298,
12502,
526,
15931,
628,
220,
220,
220,
825,
2099,
62,
271,
62,
4871,
7483,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
2099,
286,
262,
1255,
25235,
28348,
318,
262,
1398,
7483,
13,
198,
20274,
13,
4906,
796,
1398,
7483,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2099,
62,
271,
62,
4871,
7483,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
15082,
8467,
62,
1659,
62,
20274,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
15082,
8467,
286,
262,
1255,
25235,
28348,
318,
657,
492,
24620,
198,
20274,
13,
271,
7,
15,
11,
28104,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
15082,
8467,
62,
1659,
62,
20274,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
4149,
3792,
9487,
1431,
10267,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
4149,
3792,
9487,
1431,
10267,
12502,
526,
15931,
628,
220,
220,
220,
825,
645,
62,
4906,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
2134,
23412,
28348,
468,
645,
2099,
13,
198,
15252,
13,
4906,
796,
9242,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
645,
62,
4906,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
15082,
8467,
62,
1659,
62,
22915,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
15082,
8467,
286,
262,
1255,
25235,
28348,
318,
352,
492,
16,
13,
198,
20274,
13,
271,
7,
16,
11,
16,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
15082,
8467,
62,
1659,
62,
22915,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
25131,
62,
20274,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
2099,
286,
262,
1255,
25235,
28348,
318,
41146,
13,
198,
20274,
13,
4906,
796,
41146,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
25131,
62,
20274,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
15082,
8467,
62,
1659,
62,
15414,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
15082,
8467,
286,
262,
2134,
23412,
28348,
318,
352,
492,
16,
13,
198,
15252,
13,
271,
7,
16,
11,
16,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
15082,
8467,
62,
1659,
62,
15414,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
4149,
11280,
10267,
12915,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
4149,
11280,
10267,
12915,
12502,
526,
15931,
628,
220,
220,
220,
825,
3119,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
886,
14161,
1276,
307,
281,
5396,
2888,
12915,
13,
198,
437,
13,
562,
41003,
1279,
29,
9242,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
3119,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
15082,
8467,
62,
1659,
62,
15252,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
15082,
8467,
286,
262,
2134,
23412,
28348,
318,
352,
492,
16,
13,
198,
15252,
13,
271,
7,
16,
11,
16,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
15082,
8467,
62,
1659,
62,
15252,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
5645,
62,
1659,
62,
562,
41003,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
5645,
286,
262,
8112,
1276,
407,
307,
9037,
13,
198,
437,
13,
562,
41003,
13,
19522,
12915,
3784,
1640,
3237,
7,
68,
930,
407,
304,
13,
271,
45442,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
5645,
62,
1659,
62,
562,
41003,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2099,
62,
1659,
62,
20274,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
2099,
286,
262,
1255,
25235,
28348,
318,
262,
976,
355,
262,
2099,
286,
262,
886,
14161,
13,
198,
20274,
13,
4906,
796,
886,
13,
4906,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
2099,
62,
1659,
62,
20274,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
15082,
8467,
62,
1659,
62,
20274,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
15082,
8467,
286,
262,
1255,
25235,
28348,
318,
352,
492,
16,
13,
198,
20274,
13,
271,
7,
16,
11,
16,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
15082,
8467,
62,
1659,
62,
20274,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2099,
62,
1659,
62,
15252,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
2099,
286,
262,
2134,
23412,
28348,
318,
262,
5396,
9487,
326,
12216,
262,
886,
14161,
13,
198,
15252,
13,
4906,
796,
886,
13,
562,
41003,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
2099,
62,
1659,
62,
15252,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
8112,
62,
1659,
62,
562,
41003,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
8112,
286,
262,
886,
1276,
307,
281,
5396,
9487,
13,
198,
437,
13,
562,
41003,
13,
38679,
3792,
35854,
5189,
7,
8021,
41003,
9487,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
8112,
62,
1659,
62,
562,
41003,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
4149,
11280,
10267,
12915,
46181,
7483,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
4149,
11280,
10267,
12915,
46181,
7483,
12502,
526,
15931,
628,
220,
220,
220,
825,
15082,
8467,
62,
1659,
62,
15252,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
15082,
8467,
286,
262,
2134,
23412,
28348,
318,
352,
492,
16,
13,
198,
15252,
13,
271,
7,
16,
11,
16,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
15082,
8467,
62,
1659,
62,
15252,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2099,
62,
1659,
62,
15252,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
2099,
286,
262,
2134,
23412,
28348,
318,
262,
5396,
9487,
326,
12216,
262,
5396,
886,
326,
468,
262,
1813,
39265,
14161,
13,
198,
15252,
13,
4906,
796,
39265,
13,
562,
41003,
12915,
13,
562,
41003,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
2099,
62,
1659,
62,
15252,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
15082,
8467,
62,
1659,
62,
13255,
7483,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
15082,
8467,
286,
262,
39265,
14161,
318,
352,
492,
16,
13,
198,
13255,
7483,
13,
271,
7,
16,
11,
16,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
15082,
8467,
62,
1659,
62,
13255,
7483,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
5645,
62,
1659,
62,
562,
41003,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
5645,
286,
262,
5396,
1276,
407,
307,
9037,
13,
198,
13255,
7483,
13,
562,
41003,
12915,
13,
562,
41003,
13,
19522,
12915,
3784,
1640,
3237,
7,
68,
930,
407,
304,
13,
271,
45442,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
5645,
62,
1659,
62,
562,
41003,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
15082,
8467,
62,
1659,
62,
20274,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
15082,
8467,
286,
262,
1255,
25235,
28348,
318,
352,
492,
16,
13,
198,
20274,
13,
271,
7,
16,
11,
16,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
15082,
8467,
62,
1659,
62,
20274,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
976,
62,
4906,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
2099,
286,
262,
1255,
25235,
28348,
318,
262,
976,
355,
262,
2099,
286,
262,
39265,
14161,
13,
198,
20274,
13,
4906,
796,
39265,
13,
4906,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
976,
62,
4906,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
8112,
62,
1659,
62,
562,
41003,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
8112,
286,
262,
5396,
886,
286,
262,
39265,
14161,
1276,
307,
281,
5396,
9487,
13,
198,
13255,
7483,
13,
562,
41003,
12915,
13,
562,
41003,
13,
38679,
3792,
35854,
5189,
7,
8021,
41003,
9487,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
8112,
62,
1659,
62,
562,
41003,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
39265,
62,
42348,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
39265,
14161,
1276,
307,
257,
39265,
286,
281,
5396,
886,
13,
198,
13255,
7483,
13,
562,
41003,
12915,
1279,
29,
9242,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
39265,
62,
42348,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
4149,
24704,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
4149,
24704,
12502,
526,
15931,
628,
220,
220,
220,
825,
7763,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
4149,
24704,
12502,
1276,
423,
257,
4732,
5016,
7483,
13,
198,
62,
6,
22866,
6,
1279,
29,
9242,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
7763,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
15082,
8467,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
15082,
8467,
286,
262,
1255,
25235,
28348,
318,
352,
492,
16,
13,
198,
20274,
13,
271,
7,
16,
11,
16,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
15082,
8467,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
407,
62,
12708,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
262,
4149,
24704,
12502,
318,
7763,
287,
281,
20181,
326,
318,
7205,
355,
257,
2446,
11,
788,
262,
14680,
286,
262,
2446,
1276,
407,
307,
9037,
13,
198,
1616,
4069,
25,
20181,
796,
2116,
13,
38301,
25267,
15759,
3419,
287,
198,
46571,
13,
16684,
2649,
27,
29,
8423,
15565,
407,
4069,
13,
16684,
2649,
13,
271,
45442,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
407,
62,
12708,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
2099,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
2099,
286,
262,
1255,
25235,
28348,
318,
262,
4732,
5016,
7483,
13,
198,
20274,
13,
4906,
796,
4808,
6,
22866,
6,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
2099,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
797,
4871,
1958,
10267,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
797,
4871,
1958,
10267,
12502,
526,
15931,
628,
220,
220,
220,
825,
5128,
62,
11635,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
2134,
23412,
28348,
468,
645,
2099,
13,
198,
15252,
13,
4906,
796,
9242,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
5128,
62,
11635,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
1398,
7483,
62,
1662,
62,
397,
8709,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
14202,
286,
262,
649,
9487,
13350,
743,
307,
12531,
13,
198,
1662,
649,
9487,
7483,
3784,
1069,
1023,
7,
271,
23839,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
1398,
7483,
62,
1662,
62,
397,
8709,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
15082,
8467,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
15082,
8467,
286,
262,
2134,
23412,
28348,
318,
352,
492,
16,
13,
198,
15252,
13,
271,
7,
16,
11,
16,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
15082,
8467,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
44048,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
44048,
12502,
526,
15931,
628,
220,
220,
220,
825,
2027,
2189,
62,
15414,
82,
62,
22915,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
2027,
2189,
20181,
1276,
423,
734,
5128,
6898,
48944,
290,
530,
5072,
6898,
36301,
11,
810,
262,
2099,
286,
262,
5072,
25139,
2357,
290,
262,
2099,
286,
4847,
286,
262,
5128,
4947,
17216,
284,
262,
3858,
286,
262,
5128,
40117,
13,
198,
1616,
17311,
25,
14230,
1068,
7248,
7,
36301,
8,
796,
2027,
2189,
13,
15414,
48944,
3419,
287,
198,
1616,
23862,
25,
14230,
1068,
7248,
7,
36301,
8,
796,
2027,
2189,
13,
22915,
48944,
3419,
287,
198,
15414,
82,
3784,
7857,
3419,
28,
17,
290,
23862,
3784,
7857,
3419,
28,
16,
290,
198,
15414,
82,
13,
4906,
3784,
1640,
3237,
7,
83,
930,
198,
220,
220,
220,
220,
220,
220,
220,
23862,
13,
4906,
3784,
1640,
3237,
7,
1102,
23914,
2514,
7,
83,
4008,
290,
198,
220,
220,
220,
220,
220,
220,
220,
1377,
5740,
326,
262,
1708,
691,
8794,
262,
1339,
618,
262,
4947,
318,
2884,
3294,
16326,
13,
198,
220,
220,
220,
220,
220,
220,
220,
4947,
13,
45828,
49646,
3419,
29,
16,
15565,
4947,
13,
4906,
13,
1102,
23914,
2514,
7,
83,
4008,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2027,
2189,
62,
15414,
82,
62,
22915,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
5128,
62,
4906,
62,
271,
62,
43681,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
2099,
286,
262,
4947,
23412,
28348,
1276,
307,
257,
4947,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
5128,
62,
4906,
62,
271,
62,
43681,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
5072,
62,
19199,
62,
533,
62,
38532,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
2099,
286,
262,
5072,
286,
262,
2027,
2189,
20181,
1276,
17216,
284,
262,
2099,
286,
262,
1255,
25235,
28348,
13,
198,
445,
48915,
13,
22915,
48944,
22446,
4906,
3784,
1640,
3237,
7,
1102,
23914,
2514,
7,
20274,
13,
4906,
4008,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
5072,
62,
19199,
62,
533,
62,
38532,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
14883,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
14883,
12502,
526,
15931,
628,
220,
220,
220,
825,
20567,
62,
15699,
62,
17143,
2357,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
10971,
11395,
23412,
47,
1040,
1276,
2872,
262,
5072,
357,
7783,
11,
503,
11,
290,
287,
448,
8,
10007,
286,
262,
4905,
286,
262,
1785,
286,
262,
10971,
2514,
14134,
24593,
287,
1271,
11,
2099,
11,
16216,
11,
290,
15082,
8467,
13,
198,
1616,
11507,
25,
35422,
1068,
7248,
7,
36301,
8,
796,
10971,
2514,
14134,
13,
15596,
13,
38679,
1722,
6030,
7,
14134,
9237,
737,
27184,
13,
22915,
48944,
3419,
287,
198,
47768,
11395,
3784,
7857,
3419,
28,
17143,
2357,
3784,
7857,
3419,
290,
198,
44015,
594,
90,
16,
492,
47768,
11395,
3784,
7857,
3419,
92,
3784,
1640,
3237,
7,
72,
930,
198,
220,
220,
220,
220,
220,
220,
220,
10971,
11395,
3784,
265,
7,
72,
737,
4906,
13,
1102,
23914,
2514,
7,
17143,
2357,
3784,
265,
7,
72,
737,
4906,
8,
290,
198,
220,
220,
220,
220,
220,
220,
220,
10971,
11395,
3784,
265,
7,
72,
737,
271,
35422,
1068,
28,
17143,
2357,
3784,
265,
7,
72,
737,
271,
35422,
1068,
290,
198,
220,
220,
220,
220,
220,
220,
220,
10971,
11395,
3784,
265,
7,
72,
737,
38532,
3152,
7,
17143,
2357,
3784,
265,
7,
72,
22305,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
20567,
62,
15699,
62,
17143,
2357,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
1785,
62,
261,
62,
47768,
62,
1462,
62,
13345,
62,
46284,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
1785,
286,
262,
10971,
2514,
14134,
24593,
1276,
307,
257,
4889,
9237,
13,
198,
47768,
2514,
14134,
13,
15596,
13,
38679,
3792,
35854,
5189,
7,
14134,
9237,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
1785,
62,
261,
62,
47768,
62,
1462,
62,
13345,
62,
46284,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
7253,
9487,
7483,
25267,
15759,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
7253,
9487,
7483,
25267,
15759,
12502,
526,
15931,
628,
220,
220,
220,
825,
15082,
8467,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
15082,
8467,
286,
262,
2134,
23412,
28348,
318,
352,
492,
16,
198,
15252,
13,
271,
7,
16,
11,
16,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
15082,
8467,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
2099,
62,
10134,
62,
4871,
7483,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
262,
23412,
28348,
468,
257,
2099,
11,
788,
262,
2099,
393,
530,
286,
663,
18668,
1276,
423,
257,
1398,
7483,
25267,
15759,
13,
198,
15252,
13,
4906,
3784,
1662,
40613,
3419,
15565,
198,
220,
220,
357,
15252,
13,
4906,
13,
38679,
3792,
35854,
5189,
7,
25267,
15820,
1850,
9487,
7483,
8,
290,
2134,
13,
4906,
13,
38679,
1722,
6030,
7,
25267,
15820,
1850,
9487,
7483,
737,
4871,
7483,
25267,
15759,
27,
29,
8423,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2099,
62,
10134,
62,
4871,
7483,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
6208,
7390,
26858,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
6208,
7390,
26858,
12502,
526,
15931,
628,
220,
220,
220,
825,
15082,
8467,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
15082,
8467,
286,
262,
23412,
47,
1040,
318,
352,
492,
16,
13,
198,
11085,
13,
271,
7,
16,
11,
16,
8,
290,
1218,
13,
271,
7,
16,
11,
16,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
15082,
8467,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
645,
62,
4906,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
23412,
47,
1040,
423,
645,
2099,
13,
198,
11085,
13,
4906,
28,
9242,
290,
1218,
13,
4906,
796,
9242,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
645,
62,
4906,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
1255,
62,
271,
62,
2127,
21052,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
2099,
286,
262,
1255,
25235,
28348,
318,
41146,
13,
198,
20274,
13,
4906,
28,
46120,
13087,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
1255,
62,
271,
62,
2127,
21052,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
791,
76,
5406,
439,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
791,
76,
5406,
439,
12502,
526,
15931,
628,
220,
220,
220,
825,
13204,
62,
30053,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
21303,
5406,
439,
6030,
1276,
423,
379,
1551,
530,
32112,
1523,
38816,
13,
198,
403,
76,
5406,
439,
6030,
13,
439,
29021,
3419,
3784,
7857,
3419,
18189,
352,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
13204,
62,
30053,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
1271,
62,
1659,
62,
20274,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
1271,
286,
1255,
5072,
47,
1040,
1276,
307,
262,
976,
355,
262,
1271,
286,
12608,
286,
262,
21303,
5406,
439,
6030,
13,
198,
403,
76,
5406,
439,
6030,
13,
439,
29021,
3419,
3784,
7857,
3419,
796,
1255,
3784,
7857,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
1271,
62,
1659,
62,
20274,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
2099,
62,
34555,
62,
392,
62,
47945,
8467,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
2099,
11,
16216,
290,
15082,
8467,
286,
1123,
11688,
286,
262,
21303,
5406,
439,
6030,
1276,
307,
11670,
351,
262,
2099,
11,
16216,
290,
15082,
8467,
286,
262,
11188,
1255,
25235,
28348,
13,
198,
1616,
11688,
25,
35422,
1068,
7248,
7,
21746,
8,
796,
21303,
5406,
439,
6030,
13,
439,
29021,
3419,
287,
198,
44015,
594,
90,
16,
492,
20274,
3784,
7857,
3419,
92,
3784,
1640,
3237,
7,
72,
930,
198,
220,
220,
220,
220,
220,
220,
220,
11688,
3784,
265,
7,
72,
737,
4906,
13,
1102,
23914,
2514,
7,
20274,
3784,
265,
7,
72,
737,
4906,
8,
290,
198,
220,
220,
220,
220,
220,
220,
220,
11688,
3784,
265,
7,
72,
737,
271,
35422,
1068,
28,
20274,
3784,
265,
7,
72,
737,
271,
35422,
1068,
290,
198,
220,
220,
220,
220,
220,
220,
220,
11688,
3784,
265,
7,
72,
737,
38532,
3152,
7,
20274,
3784,
265,
7,
72,
22305,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2099,
62,
34555,
62,
392,
62,
47945,
8467,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
15082,
8467,
62,
1659,
62,
15252,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
15082,
8467,
286,
262,
2134,
23412,
28348,
318,
352,
492,
16,
198,
15252,
13,
271,
7,
16,
11,
16,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
15082,
8467,
62,
1659,
62,
15252,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2134,
62,
4906,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
2099,
286,
262,
2134,
23412,
28348,
17216,
284,
262,
21303,
5406,
439,
6030,
13,
198,
15252,
13,
4906,
13,
1102,
23914,
2514,
7,
403,
76,
5406,
439,
6030,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
2134,
62,
4906,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
24641,
19006,
19667,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
24641,
19006,
19667,
526,
15931,
628,
198,
4871,
24641,
36301,
19667,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
24641,
36301,
19667,
526,
15931,
628,
220,
220,
220,
825,
645,
62,
448,
5146,
62,
276,
3212,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2025,
24641,
36301,
19667,
351,
645,
28181,
24641,
7407,
3212,
290,
530,
393,
517,
15619,
24641,
7407,
3212,
1276,
423,
257,
11507,
351,
4571,
503,
11,
287,
448,
11,
393,
1441,
13,
198,
7,
259,
4976,
3784,
1662,
40613,
3419,
290,
28181,
3784,
271,
40613,
28955,
15565,
198,
220,
220,
220,
220,
220,
220,
220,
357,
17143,
2357,
13,
37295,
796,
25139,
2357,
35,
4154,
35854,
3712,
448,
393,
198,
220,
220,
220,
220,
220,
220,
220,
220,
11507,
13,
37295,
796,
25139,
2357,
35,
4154,
35854,
3712,
259,
448,
393,
198,
220,
220,
220,
220,
220,
220,
220,
220,
11507,
13,
37295,
796,
25139,
2357,
35,
4154,
35854,
3712,
7783,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
645,
62,
448,
5146,
62,
276,
3212,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
468,
62,
17143,
7307,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
11507,
286,
281,
24641,
36301,
19667,
1276,
307,
422,
262,
7268,
24641,
13,
198,
21797,
13,
11990,
36301,
3784,
42813,
7,
17143,
2357,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
468,
62,
17143,
7307,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
976,
62,
4906,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
2099,
286,
281,
24641,
36301,
19667,
318,
262,
976,
355,
262,
2099,
286,
663,
11507,
13,
198,
4906,
796,
11507,
13,
4906,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
976,
62,
4906,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
645,
62,
259,
4976,
62,
276,
3212,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2025,
24641,
36301,
19667,
351,
645,
15619,
24641,
7407,
3212,
290,
530,
393,
517,
28181,
24641,
7407,
3212,
1276,
423,
257,
11507,
351,
4571,
287,
393,
287,
448,
13,
198,
7,
448,
5146,
3784,
1662,
40613,
3419,
290,
15619,
3784,
271,
40613,
28955,
15565,
198,
220,
220,
220,
220,
220,
220,
220,
357,
17143,
2357,
13,
37295,
796,
25139,
2357,
35,
4154,
35854,
3712,
62,
6,
259,
6,
393,
198,
220,
220,
220,
220,
220,
220,
220,
220,
11507,
13,
37295,
796,
25139,
2357,
35,
4154,
35854,
3712,
259,
448,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
645,
62,
259,
4976,
62,
276,
3212,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
645,
62,
276,
3212,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2025,
24641,
36301,
19667,
743,
423,
477,
15619,
24641,
7407,
3212,
393,
477,
28181,
24641,
7407,
3212,
11,
475,
340,
1276,
407,
423,
1111,
15619,
290,
28181,
24641,
7407,
3212,
13,
198,
259,
4976,
3784,
271,
40613,
3419,
393,
28181,
3784,
271,
40613,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
645,
62,
276,
3212,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
5694,
28632,
19667,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
5694,
28632,
19667,
526,
15931,
628,
198,
4871,
27782,
19006,
19667,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
27782,
19006,
19667,
526,
15931,
628,
198,
4871,
22920,
9492,
2100,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
22920,
9492,
2100,
526,
15931,
628,
198,
4871,
25659,
1691,
46120,
13087,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
25659,
1691,
46120,
13087,
526,
15931,
628,
198,
4871,
25659,
1691,
46541,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
25659,
1691,
46541,
526,
15931,
628,
198,
4871,
25659,
1691,
35067,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
25659,
1691,
35067,
526,
15931,
628,
198,
4871,
25659,
1691,
15633,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
25659,
1691,
15633,
526,
15931,
628,
198,
4871,
25659,
1691,
10100,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
25659,
1691,
10100,
526,
15931,
628,
198,
4871,
25659,
1691,
3118,
10698,
35364,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
25659,
1691,
3118,
10698,
35364,
526,
15931,
628,
198,
4871,
3862,
9492,
2100,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
3862,
9492,
2100,
526,
15931,
628,
628,
628,
198,
4871,
5016,
7483,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
5016,
7483,
526,
15931,
628,
220,
220,
220,
825,
39868,
62,
4906,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
5016,
7483,
743,
691,
39868,
5016,
13350,
286,
257,
4938,
2099,
13,
198,
23743,
3419,
3784,
1640,
3237,
7,
66,
930,
2116,
13,
11261,
13409,
1096,
6030,
7,
66,
4008,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
39868,
62,
4906,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
8739,
62,
1462,
62,
24622,
1634,
62,
2617,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
5016,
7483,
326,
8739,
284,
257,
3611,
1634,
7248,
743,
6159,
307,
257,
2176,
4249,
257,
2276,
5016,
7483,
287,
597,
286,
262,
3611,
1634,
6958,
5447,
329,
326,
3611,
1634,
7248,
13,
554,
584,
2456,
11,
257,
1176,
2099,
743,
407,
307,
281,
4554,
286,
2346,
4249,
743,
663,
10245,
635,
307,
663,
850,
37724,
13,
198,
6477,
4906,
11627,
298,
3784,
1640,
3237,
7,
308,
82,
930,
198,
220,
308,
82,
13,
24622,
1634,
3784,
1640,
3237,
7,
2429,
930,
198,
220,
220,
220,
407,
357,
5235,
13,
24622,
796,
2116,
8,
290,
407,
2429,
13,
24622,
13,
439,
42969,
3419,
3784,
42813,
7,
944,
8,
290,
407,
357,
5235,
13,
11423,
796,
2116,
8,
290,
407,
2116,
13,
439,
42969,
3419,
3784,
42813,
7,
5235,
13,
11423,
8,
198,
220,
15306,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
8739,
62,
1462,
62,
24622,
1634,
62,
2617,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
1729,
62,
20311,
62,
23743,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
3397,
286,
257,
5016,
7483,
1276,
307,
1729,
12,
20311,
13,
198,
23743,
3419,
3784,
1640,
3237,
7,
1662,
318,
19006,
13409,
1634,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
1729,
62,
20311,
62,
23743,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
645,
62,
32503,
62,
259,
62,
24622,
1634,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
12218,
1634,
28398,
444,
1276,
307,
7924,
290,
936,
88,
565,
605,
13,
317,
5016,
7483,
460,
407,
307,
1111,
257,
1007,
1800,
306,
2276,
290,
1007,
1800,
306,
2176,
5016,
7483,
286,
262,
976,
5016,
7483,
13,
198,
1662,
477,
42969,
3419,
3784,
42813,
7,
944,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
645,
62,
32503,
62,
259,
62,
24622,
1634,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
439,
62,
1078,
7657,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
477,
262,
12608,
286,
428,
1398,
7483,
11,
1390,
883,
19552,
422,
663,
3397,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
439,
62,
1078,
7657,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
439,
62,
3575,
602,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
477,
262,
4560,
286,
428,
1398,
7483,
11,
1390,
883,
19552,
422,
663,
3397,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
439,
62,
3575,
602,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
439,
62,
1484,
62,
3849,
32186,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
477,
262,
20314,
319,
543,
428,
1398,
7483,
393,
597,
286,
663,
3397,
468,
257,
8748,
20203,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
439,
62,
1484,
62,
3849,
32186,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
27184,
7,
944,
11,
1438,
28,
14202,
11,
11507,
36690,
28,
14202,
11,
11507,
31431,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
717,
4905,
351,
262,
7368,
1438,
11,
11507,
3891,
11,
290,
11507,
3858,
422,
428,
1398,
7483,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
27184,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
651,
62,
27184,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
1438,
28,
14202,
11,
11507,
36690,
28,
14202,
11,
11507,
31431,
28,
14202,
11,
8856,
20448,
28,
14202,
198,
220,
220,
220,
15179,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
717,
4905,
351,
262,
7368,
1438,
11,
11507,
3891,
11,
290,
11507,
3858,
422,
428,
1398,
7483,
11,
15482,
1339,
611,
8203,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
27184,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
651,
62,
3575,
602,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
4560,
286,
428,
1398,
7483,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
3575,
602,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
651,
62,
1484,
62,
3849,
32186,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
20314,
319,
543,
428,
1398,
7483,
468,
257,
8748,
20203,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
1484,
62,
3849,
32186,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
477,
62,
40890,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
477,
23595,
3419,
3607,
477,
286,
262,
17571,
287,
262,
25745,
286,
262,
5016,
7483,
13,
554,
2276,
11,
832,
11701,
884,
355,
24155,
11,
428,
481,
307,
257,
4025,
900,
621,
3895,
13,
198,
20274,
796,
357,
19522,
3784,
19738,
7,
38679,
3792,
35854,
5189,
7,
38816,
4008,
3784,
33327,
7,
38679,
1722,
6030,
7,
38816,
4008,
3784,
292,
7248,
28955,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9487,
2649,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
477,
62,
40890,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
477,
62,
23743,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
477,
42969,
3419,
3607,
477,
286,
262,
1277,
290,
12913,
18668,
286,
257,
38284,
5016,
7483,
13,
198,
20274,
796,
357,
23743,
3419,
3784,
24592,
7,
23743,
3419,
3784,
33327,
7,
439,
42969,
28955,
3784,
292,
7248,
3419,
4008,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9487,
2649,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
477,
62,
23743,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
651,
62,
8612,
874,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
2276,
5016,
13350,
389,
262,
3392,
20717,
416,
262,
3611,
1634,
6958,
13,
198,
20274,
796,
357,
23743,
28955,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9487,
2649,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
8612,
874,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
468,
62,
4703,
2247,
62,
1659,
7,
944,
11,
299,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
468,
15854,
2247,
5189,
3419,
15947,
1771,
257,
34441,
20180,
318,
7424,
287,
262,
1398,
7483,
13,
8504,
12,
19734,
1866,
389,
7424,
13,
632,
318,
691,
1444,
618,
262,
4578,
318,
1223,
6898,
416,
257,
2560,
13,
198,
439,
42969,
3419,
3784,
8201,
7,
944,
8,
3784,
33327,
7,
19522,
8,
3784,
42813,
7,
77,
8,
198,
20274,
796,
357,
77,
13,
4703,
2247,
1279,
29,
6911,
2247,
35854,
3712,
19734,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9487,
2649,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
468,
62,
4703,
2247,
62,
1659,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
16955,
7,
944,
11,
287,
11994,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
16955,
3419,
15738,
703,
284,
16955,
257,
900,
286,
4847,
3804,
355,
663,
4578,
13,
220,
632,
36833,
2266,
18156,
4847,
422,
262,
1255,
13,
198,
20274,
796,
357,
259,
11994,
3784,
260,
752,
7,
259,
71,
930,
198,
220,
25783,
13,
38679,
3792,
35854,
5189,
7,
7738,
891,
259,
540,
20180,
8,
290,
198,
220,
6898,
27608,
3784,
19738,
7,
38679,
3792,
35854,
5189,
7,
7738,
891,
259,
540,
20180,
4008,
3784,
198,
220,
220,
220,
2922,
7,
445,
18156,
20180,
3784,
42813,
7,
259,
71,
13,
38679,
1722,
6030,
7,
7738,
891,
259,
540,
20180,
22305,
198,
220,
220,
220,
220,
220,
220,
4613,
1662,
40613,
3419,
4008,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9487,
2649,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
16955,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
10639,
4674,
62,
30814,
7,
944,
11,
269,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
10639,
4674,
25341,
3419,
3607,
477,
286,
262,
1866,
286,
257,
5016,
7483,
326,
743,
307,
19552,
287,
530,
286,
663,
25321,
11,
2426,
284,
4232,
20742,
8733,
4174,
13,
198,
66,
13,
439,
42969,
3419,
3784,
42813,
7,
944,
8,
198,
20274,
796,
357,
19522,
3784,
19738,
7,
76,
930,
269,
13,
10134,
15854,
2247,
5189,
7,
76,
22305,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9487,
2649,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
10639,
4674,
62,
30814,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
259,
372,
863,
62,
30814,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
19552,
27608,
8112,
318,
10944,
416,
10639,
1780,
262,
10639,
4674,
1866,
286,
262,
3397,
13,
198,
20274,
796,
357,
259,
372,
270,
7,
23743,
3419,
3784,
33327,
7,
259,
372,
4674,
25341,
7,
944,
4008,
3784,
292,
7248,
3419,
4008,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9487,
2649,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
259,
372,
863,
62,
30814,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
743,
62,
20887,
1096,
62,
4906,
7,
944,
11,
269,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
743,
13409,
1096,
6030,
3419,
15947,
1771,
428,
1398,
7483,
743,
423,
257,
2276,
1634,
2776,
284,
1398,
13350,
286,
262,
7368,
2099,
13,
2750,
4277,
257,
1398,
7483,
743,
39868,
1398,
13350,
286,
262,
976,
393,
257,
517,
2276,
2099,
13,
632,
318,
5292,
284,
307,
2266,
18156,
416,
1398,
13350,
326,
423,
1180,
43135,
17778,
13,
198,
20274,
796,
357,
944,
13,
38679,
3792,
35854,
5189,
7,
66,
13,
38679,
6030,
3419,
4008,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9487,
2649,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
743,
62,
20887,
1096,
62,
4906,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
3397,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
3397,
3419,
3607,
477,
286,
262,
7103,
18668,
286,
257,
38284,
5016,
7483,
13,
198,
20274,
796,
357,
24622,
1634,
13,
24622,
3784,
292,
7248,
28955,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9487,
2649,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
3397,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
3264,
62,
5305,
1143,
62,
3849,
32186,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
4225,
32186,
3264,
6939,
416,
428,
5016,
7483,
198,
20274,
796,
14808,
16366,
35,
2690,
1387,
3784,
198,
220,
2922,
7,
38679,
3792,
35854,
5189,
7,
15633,
1634,
8,
290,
22693,
3784,
1640,
3237,
7,
38679,
3792,
35854,
5189,
7,
39317,
35514,
3784,
198,
220,
220,
220,
220,
220,
2824,
7,
18608,
2505,
13,
38679,
1722,
6030,
7,
39317,
4008,
3784,
292,
7248,
28955,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9487,
2649,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
3264,
62,
5305,
1143,
62,
3849,
32186,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
3264,
62,
1484,
62,
3849,
32186,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
4225,
32186,
3264,
973,
416,
428,
5016,
7483,
198,
20274,
796,
14808,
18608,
2505,
35,
2690,
1387,
3784,
198,
220,
2922,
7,
38679,
3792,
35854,
5189,
7,
28350,
8,
290,
5456,
3784,
1640,
3237,
7,
38679,
3792,
35854,
5189,
7,
39317,
35514,
3784,
198,
220,
220,
220,
2824,
7,
16366,
13,
38679,
1722,
6030,
7,
39317,
4008,
3784,
292,
7248,
28955,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9487,
2649,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
3264,
62,
1484,
62,
3849,
32186,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
477,
62,
5305,
1143,
62,
3849,
32186,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
4225,
32186,
6939,
416,
428,
5016,
7483,
290,
477,
286,
663,
2276,
4582,
198,
20274,
796,
357,
12942,
306,
15633,
1143,
9492,
32186,
3419,
3784,
24592,
7,
944,
13,
439,
42969,
3419,
3784,
33327,
7,
12942,
306,
15633,
1143,
9492,
32186,
3419,
4008,
3784,
292,
7248,
28955,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9487,
2649,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
477,
62,
5305,
1143,
62,
3849,
32186,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
477,
62,
1484,
62,
3849,
32186,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
4225,
32186,
973,
416,
428,
5016,
7483,
290,
477,
286,
663,
2276,
4582,
198,
20274,
796,
357,
12942,
306,
38052,
9492,
32186,
3419,
3784,
24592,
7,
944,
13,
439,
42969,
3419,
3784,
33327,
7,
12942,
306,
38052,
9492,
32186,
3419,
4008,
3784,
292,
7248,
28955,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9487,
2649,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
477,
62,
1484,
62,
3849,
32186,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
318,
62,
7266,
301,
270,
18187,
62,
1640,
7,
944,
11,
2775,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
20274,
796,
357,
7266,
301,
2738,
13,
28484,
3784,
42813,
7,
28484,
4008,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9487,
2649,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
318,
62,
7266,
301,
270,
18187,
62,
1640,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
477,
62,
1078,
7657,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
477,
29021,
3607,
281,
6149,
900,
286,
477,
6898,
290,
19552,
12608,
286,
262,
5016,
7483,
13,
1439,
6898,
12608,
1656,
878,
597,
19552,
12608,
11,
290,
262,
12608,
19552,
422,
597,
517,
2176,
2560,
5016,
7483,
1656,
878,
883,
286,
597,
517,
2276,
2560,
5016,
7483,
13,
2102,
11,
611,
262,
5016,
7483,
468,
3294,
7103,
3397,
11,
788,
262,
3585,
16216,
286,
262,
5621,
286,
12608,
422,
883,
3397,
318,
407,
5447,
13,
198,
20274,
796,
357,
42348,
3784,
292,
44015,
594,
3419,
3784,
24592,
7,
23743,
3419,
3784,
292,
44015,
594,
22446,
439,
29021,
28955,
3784,
19738,
7,
79,
930,
2888,
3784,
42813,
7,
79,
4008,
3784,
292,
35422,
1068,
7248,
28955,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9487,
2649,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
477,
62,
1078,
7657,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
477,
62,
6649,
1252,
540,
62,
40890,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
3237,
32112,
1523,
23595,
3519,
284,
262,
5016,
7483,
326,
743,
423,
3454,
1747,
11,
1390,
1277,
12608,
11,
19552,
12608,
11,
2839,
12608,
287,
2276,
4582,
11,
290,
2888,
12915,
82,
286,
3928,
602,
11,
475,
23494,
2266,
18156,
32112,
1523,
23595,
13,
198,
20274,
796,
357,
19522,
3784,
19738,
7,
38679,
3792,
35854,
5189,
7,
44909,
1523,
38816,
4008,
3784,
198,
220,
2824,
7,
38679,
1722,
6030,
7,
44909,
1523,
38816,
4008,
3784,
198,
220,
220,
6441,
7,
944,
13,
259,
372,
270,
7,
944,
13,
439,
42969,
3419,
3784,
33327,
7,
79,
930,
279,
13,
42348,
8,
3784,
292,
7248,
28955,
3784,
198,
220,
220,
220,
220,
2824,
7,
38679,
1722,
6030,
7,
44909,
1523,
38816,
22305,
3784,
292,
7248,
28955,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9487,
2649,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
477,
62,
6649,
1252,
540,
62,
40890,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
36757,
341,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
36757,
341,
526,
15931,
628,
198,
4871,
14680,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
14680,
526,
15931,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
825,
379,
62,
1712,
62,
505,
62,
7783,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2025,
14680,
460,
423,
379,
749,
530,
1441,
11507,
26,
1312,
13,
68,
1539,
281,
6898,
11507,
351,
262,
4571,
900,
284,
705,
7783,
2637,
198,
944,
13,
11990,
36301,
3784,
19738,
7,
37295,
796,
25139,
2357,
35,
4154,
35854,
3712,
7783,
8,
3784,
7857,
3419,
19841,
352,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
379,
62,
1712,
62,
505,
62,
7783,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
691,
62,
2618,
62,
1640,
62,
22766,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
1767,
48362,
460,
691,
307,
7368,
329,
257,
12405,
14680,
13,
198,
2618,
48362,
1279,
29,
9242,
15565,
318,
20746,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
691,
62,
2618,
62,
1640,
62,
22766,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
7783,
62,
20274,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
357,
8807,
8,
1441,
1255,
11507,
329,
428,
4905,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
7783,
62,
20274,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
318,
62,
24071,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
428,
4905,
468,
257,
1441,
11507,
11,
318,
35422,
1068,
21767,
262,
1988,
286,
318,
35422,
1068,
329,
326,
11507,
13,
15323,
318,
35422,
1068,
318,
3991,
13,
198,
20274,
796,
357,
361,
1441,
23004,
3419,
3784,
1662,
40613,
3419,
788,
1441,
23004,
3419,
3784,
7160,
7,
271,
35422,
1068,
8,
2073,
3991,
45762,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9487,
2649,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
318,
62,
24071,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
318,
62,
34642,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
428,
4905,
468,
257,
1441,
11507,
11,
318,
40257,
21767,
262,
1988,
286,
318,
40257,
329,
326,
11507,
13,
15323,
318,
40257,
318,
2081,
13,
198,
20274,
796,
357,
361,
1441,
23004,
3419,
3784,
1662,
40613,
3419,
788,
1441,
23004,
3419,
3784,
1069,
1023,
7,
271,
40257,
8,
2073,
2081,
45762,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9487,
2649,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
318,
62,
34642,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
651,
62,
21037,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
428,
4905,
468,
257,
1441,
11507,
11,
2793,
21767,
262,
1988,
286,
2793,
329,
326,
11507,
13,
15323,
2793,
468,
645,
1988,
13,
198,
20274,
796,
357,
361,
1441,
23004,
3419,
3784,
1662,
40613,
3419,
788,
1441,
23004,
3419,
3784,
1092,
7,
7942,
737,
21037,
2073,
9242,
45762,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9487,
2649,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
21037,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
1441,
62,
20274,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
1441,
23004,
3419,
5860,
262,
900,
7268,
262,
1441,
11507,
286,
262,
14680,
611,
530,
7160,
11,
4306,
11,
340,
5860,
281,
6565,
900,
198,
20274,
796,
357,
11990,
36301,
3784,
19738,
357,
37295,
796,
25139,
2357,
35,
4154,
35854,
3712,
7783,
8,
3784,
292,
7248,
28955,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9487,
2649,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
1441,
62,
20274,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
651,
62,
4906,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
428,
4905,
468,
257,
1441,
11507,
11,
2099,
21767,
262,
1988,
286,
2099,
329,
326,
11507,
13,
15323,
2099,
468,
645,
1988,
13,
198,
20274,
796,
357,
361,
1441,
23004,
3419,
3784,
1662,
40613,
3419,
788,
1441,
23004,
3419,
3784,
1092,
7,
7942,
737,
4906,
2073,
9242,
45762,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9487,
2649,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
4906,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
651,
62,
45828,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
428,
4905,
468,
257,
1441,
11507,
11,
6727,
21767,
262,
1988,
286,
6727,
329,
326,
11507,
13,
15323,
6727,
468,
645,
1988,
13,
198,
20274,
796,
357,
361,
1441,
23004,
3419,
3784,
1662,
40613,
3419,
788,
1441,
23004,
3419,
3784,
1092,
7,
7942,
737,
45828,
2073,
9242,
45762,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9487,
2649,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
45828,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
10903,
16870,
2234,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
10903,
16870,
2234,
526,
15931,
628,
220,
220,
220,
825,
1515,
1746,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
3237,
262,
1515,
1746,
286,
257,
10903,
16870,
2234,
1276,
307,
25659,
1691,
13290,
654,
198,
3575,
392,
3784,
1640,
3237,
357,
38679,
3792,
35854,
5189,
357,
43,
270,
1691,
10100,
4008,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
1515,
1746,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
850,
42712,
507,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
257,
10903,
16870,
2234,
468,
850,
12,
42712,
507,
11,
340,
2314,
423,
1515,
1746,
290,
7927,
25470,
357,
5661,
30940,
262,
1917,
286,
1719,
284,
8160,
257,
2927,
803,
8379,
1022,
1515,
1746,
290,
850,
42712,
507,
737,
198,
361,
850,
16870,
2234,
3784,
1662,
40613,
3419,
788,
1515,
392,
3784,
271,
40613,
3419,
2073,
1515,
392,
3784,
1662,
40613,
3419,
45762,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
850,
42712,
507,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
6416,
1634,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
6416,
1634,
526,
15931,
628,
198,
4871,
13727,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
13727,
526,
15931,
628,
220,
220,
220,
825,
1630,
62,
49556,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
1630,
13727,
468,
257,
1630,
2099,
13,
198,
271,
15988,
15565,
318,
15988,
6030,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
1630,
62,
49556,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
407,
62,
34642,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
28348,
15082,
8467,
318,
407,
3748,
13,
198,
1662,
318,
40257,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
407,
62,
34642,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
19430,
11280,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
19430,
11280,
12502,
526,
15931,
628,
220,
220,
220,
825,
1249,
62,
15526,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
20742,
286,
379,
1551,
530,
886,
1276,
1249,
1895,
422,
262,
4732,
5016,
7483,
286,
262,
19430,
11280,
12502,
13,
198,
437,
6601,
13,
437,
3784,
1069,
1023,
7,
437,
930,
198,
220,
886,
13,
4906,
28,
62,
6,
22866,
6,
393,
198,
220,
886,
13,
4703,
2247,
28,
15854,
2247,
35854,
3712,
11377,
393,
198,
220,
886,
13,
4703,
2247,
28,
15854,
2247,
35854,
3712,
24326,
290,
198,
220,
886,
6601,
13,
437,
3784,
1069,
1023,
7,
847,
930,
198,
220,
220,
220,
584,
27,
29,
437,
290,
4808,
6,
22866,
4458,
1102,
23914,
2514,
7,
847,
13,
4906,
13,
38679,
1722,
6030,
7,
9487,
7483,
35514,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
1249,
62,
15526,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
19430,
44909,
1523,
38816,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
19430,
44909,
1523,
38816,
12502,
526,
15931,
628,
220,
220,
220,
825,
15082,
8467,
62,
1659,
62,
20274,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
15082,
8467,
286,
262,
1255,
25235,
28348,
1276,
307,
352,
492,
16,
13,
198,
20274,
1279,
29,
9242,
15565,
1255,
13,
271,
7,
16,
11,
16,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
15082,
8467,
62,
1659,
62,
20274,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2099,
62,
1659,
62,
8367,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
2099,
286,
262,
1988,
23412,
28348,
1276,
17216,
284,
262,
2099,
286,
262,
13204,
38816,
13,
198,
8367,
1279,
29,
9242,
15565,
1988,
13,
4906,
13,
1102,
23914,
2514,
7,
7249,
1523,
38816,
13,
4906,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
2099,
62,
1659,
62,
8367,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
15082,
8467,
62,
1659,
62,
8367,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
15082,
8467,
286,
262,
1988,
23412,
28348,
318,
352,
492,
16,
13,
198,
8367,
27,
29,
8423,
15565,
1988,
13,
271,
7,
16,
11,
16,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
15082,
8467,
62,
1659,
62,
8367,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2099,
62,
1659,
62,
20274,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
2099,
286,
262,
1255,
25235,
28348,
318,
262,
976,
355,
262,
2099,
286,
262,
19552,
2134,
23412,
28348,
13,
198,
20274,
1279,
29,
9242,
15565,
1255,
13,
4906,
796,
2134,
13,
4906,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
2099,
62,
1659,
62,
20274,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
19430,
43015,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
19430,
43015,
12502,
526,
15931,
628,
220,
220,
220,
825,
1988,
62,
4906,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
2099,
286,
262,
1988,
23412,
28348,
1276,
17216,
284,
262,
2099,
286,
262,
7885,
13,
198,
8367,
1279,
29,
9242,
15565,
1988,
13,
4906,
13,
1102,
23914,
2514,
7,
45286,
13,
4906,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
1988,
62,
4906,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
15082,
8467,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
15082,
8467,
286,
262,
1988,
23412,
28348,
318,
352,
492,
16,
13,
198,
8367,
27,
29,
8423,
15565,
1988,
13,
271,
7,
16,
11,
16,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
15082,
8467,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
21699,
14134,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
21699,
14134,
12502,
526,
15931,
628,
220,
220,
220,
825,
1255,
62,
49556,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
1271,
286,
1255,
25235,
47,
1040,
1276,
307,
262,
976,
355,
262,
1271,
286,
5128,
357,
259,
290,
287,
448,
8,
6898,
48944,
286,
262,
14680,
7368,
416,
262,
7616,
8558,
13,
383,
2099,
11,
16216,
290,
15082,
8467,
286,
1123,
1255,
25235,
28348,
1276,
307,
6414,
351,
262,
11188,
5128,
25139,
2357,
13,
198,
1616,
11507,
25,
14230,
1068,
7248,
7,
36301,
8,
796,
7616,
13,
15596,
3784,
292,
44015,
594,
3419,
3784,
11085,
22446,
38679,
1722,
6030,
7,
14134,
9237,
737,
27184,
13,
15414,
48944,
3419,
287,
198,
20274,
3784,
7857,
3419,
796,
11507,
3784,
7857,
3419,
290,
198,
44015,
594,
90,
16,
492,
20274,
3784,
7857,
3419,
92,
3784,
1640,
3237,
7,
72,
930,
198,
220,
220,
220,
220,
220,
220,
220,
11507,
3784,
265,
7,
72,
737,
4906,
13,
1102,
23914,
2514,
7,
20274,
3784,
265,
7,
72,
737,
4906,
8,
290,
198,
220,
220,
220,
220,
220,
220,
220,
11507,
3784,
265,
7,
72,
737,
271,
35422,
1068,
796,
1255,
3784,
265,
7,
72,
737,
271,
35422,
1068,
290,
198,
220,
220,
220,
220,
220,
220,
220,
11507,
3784,
265,
7,
72,
737,
38532,
3152,
7,
20274,
3784,
265,
7,
72,
22305,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
1255,
62,
49556,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
7616,
62,
13345,
62,
15596,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
2223,
1276,
423,
3446,
530,
7616,
11,
543,
1276,
307,
329,
257,
4889,
9237,
13,
198,
46284,
3784,
7857,
3419,
28,
16,
290,
198,
46284,
3784,
292,
44015,
594,
3419,
3784,
11085,
22446,
15596,
13,
38679,
3792,
35854,
5189,
7,
14134,
9237,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
7616,
62,
13345,
62,
15596,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
21303,
5406,
439,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
271,
3118,
43395,
1077,
439,
1276,
307,
2081,
329,
281,
21699,
14134,
12502,
13,
198,
271,
3118,
76,
5406,
439,
796,
2081,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
21303,
5406,
439,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
44244,
11712,
282,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
44244,
11712,
282,
12502,
526,
15931,
628,
220,
220,
220,
825,
1271,
62,
1659,
62,
853,
2886,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
1271,
286,
4578,
23412,
47,
1040,
1276,
307,
262,
976,
355,
262,
1271,
286,
12608,
287,
262,
6737,
13,
198,
49140,
3784,
7857,
3419,
796,
6737,
13,
439,
29021,
3419,
3784,
7857,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
1271,
62,
1659,
62,
853,
2886,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2099,
62,
34555,
62,
47945,
8467,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
2099,
11,
16216,
11,
290,
15082,
8467,
286,
281,
4578,
23412,
28348,
1276,
307,
262,
976,
355,
262,
11188,
11688,
286,
262,
6737,
13,
198,
1616,
11688,
25,
14230,
1068,
7248,
7,
21746,
8,
796,
6737,
13,
439,
29021,
3419,
287,
198,
44015,
594,
90,
16,
492,
49140,
3784,
7857,
3419,
92,
3784,
1640,
3237,
7,
72,
930,
198,
220,
220,
220,
220,
220,
220,
220,
4578,
3784,
265,
7,
72,
737,
4906,
13,
1102,
23914,
2514,
7,
42348,
3784,
265,
7,
72,
737,
4906,
8,
290,
198,
220,
220,
220,
220,
220,
220,
220,
4578,
3784,
265,
7,
72,
737,
271,
35422,
1068,
796,
11688,
3784,
265,
7,
72,
737,
271,
35422,
1068,
290,
198,
220,
220,
220,
220,
220,
220,
220,
4578,
3784,
265,
7,
72,
737,
38532,
3152,
7,
42348,
3784,
265,
7,
72,
22305,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2099,
62,
34555,
62,
47945,
8467,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
645,
62,
261,
634,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
9765,
7442,
11712,
282,
12502,
743,
407,
11986,
319,
13924,
13,
198,
261,
13924,
28,
8423,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
645,
62,
261,
634,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
4889,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
4889,
12502,
526,
15931,
628,
220,
220,
220,
825,
4578,
62,
49556,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
1271,
286,
4578,
23412,
47,
1040,
1276,
307,
262,
976,
355,
262,
1271,
286,
5128,
357,
259,
290,
287,
448,
8,
6898,
48944,
286,
262,
1444,
20181,
393,
14680,
13,
383,
2099,
11,
16216,
290,
15082,
8467,
286,
1123,
4578,
23412,
28348,
1276,
307,
6414,
351,
262,
11188,
5128,
25139,
2357,
13,
198,
1616,
11507,
25,
14230,
1068,
7248,
7,
36301,
8,
796,
2116,
13,
15414,
48944,
3419,
287,
198,
49140,
3784,
7857,
3419,
796,
11507,
3784,
7857,
3419,
290,
198,
44015,
594,
90,
16,
492,
49140,
3784,
7857,
3419,
92,
3784,
1640,
3237,
7,
72,
930,
198,
220,
220,
220,
220,
220,
220,
220,
4578,
3784,
265,
7,
72,
737,
4906,
13,
1102,
23914,
2514,
7,
17143,
2357,
3784,
265,
7,
72,
737,
4906,
8,
290,
198,
220,
220,
220,
220,
220,
220,
220,
4578,
3784,
265,
7,
72,
737,
271,
35422,
1068,
796,
11507,
3784,
265,
7,
72,
737,
271,
35422,
1068,
290,
198,
220,
220,
220,
220,
220,
220,
220,
4578,
3784,
265,
7,
72,
737,
38532,
3152,
7,
17143,
2357,
3784,
265,
7,
72,
22305,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
4578,
62,
49556,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
1255,
62,
49556,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
1271,
286,
1255,
25235,
47,
1040,
1276,
307,
262,
976,
355,
262,
1271,
286,
5072,
357,
259,
448,
11,
503,
290,
1441,
8,
6898,
48944,
286,
262,
1444,
20181,
393,
14680,
13,
383,
2099,
11,
16216,
290,
15082,
8467,
286,
1123,
1255,
25235,
28348,
1276,
307,
6414,
351,
262,
11188,
5128,
25139,
2357,
13,
198,
1616,
11507,
25,
14230,
1068,
7248,
7,
36301,
8,
796,
2116,
13,
22915,
48944,
3419,
287,
198,
20274,
3784,
7857,
3419,
796,
11507,
3784,
7857,
3419,
290,
198,
44015,
594,
90,
16,
492,
20274,
3784,
7857,
3419,
92,
3784,
1640,
3237,
7,
72,
930,
198,
220,
220,
220,
220,
220,
220,
220,
11507,
3784,
265,
7,
72,
737,
4906,
13,
1102,
23914,
2514,
7,
20274,
3784,
265,
7,
72,
737,
4906,
8,
290,
198,
220,
220,
220,
220,
220,
220,
220,
11507,
3784,
265,
7,
72,
737,
271,
35422,
1068,
796,
1255,
3784,
265,
7,
72,
737,
271,
35422,
1068,
290,
198,
220,
220,
220,
220,
220,
220,
220,
11507,
3784,
265,
7,
72,
737,
38532,
3152,
7,
20274,
3784,
265,
7,
72,
22305,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
1255,
62,
49556,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
18305,
516,
62,
13345,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
10049,
18305,
516,
4889,
32,
2733,
460,
423,
1255,
25235,
47,
1040,
13,
198,
20274,
3784,
1662,
40613,
3419,
15565,
318,
50,
31301,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
18305,
516,
62,
13345,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
5128,
62,
17143,
7307,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
13615,
262,
287,
290,
287,
448,
6898,
48944,
286,
262,
20181,
393,
14680,
852,
1444,
13,
357,
1212,
4905,
318,
12531,
290,
815,
307,
23170,
4651,
416,
850,
37724,
286,
4889,
12502,
2014,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
32,
2733,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
5128,
62,
17143,
7307,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
5072,
62,
17143,
7307,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
13615,
262,
287,
448,
11,
503,
290,
1441,
6898,
48944,
286,
262,
20181,
393,
14680,
852,
1444,
13,
357,
1212,
4905,
318,
12531,
290,
815,
307,
23170,
4651,
416,
850,
37724,
286,
4889,
12502,
2014,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
32,
2733,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
5072,
62,
17143,
7307,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
11459,
44909,
1523,
38816,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
11459,
44909,
1523,
38816,
12502,
526,
15931,
628,
220,
220,
220,
825,
2099,
62,
1659,
62,
20274,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
2099,
286,
262,
1255,
25235,
28348,
318,
262,
976,
355,
262,
2099,
286,
262,
19552,
2134,
23412,
28348,
13,
198,
20274,
27,
29,
8423,
15565,
1255,
13,
4906,
796,
2134,
13,
4906,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
2099,
62,
1659,
62,
20274,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
15082,
8467,
62,
1659,
62,
20274,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
15082,
8467,
286,
262,
1255,
25235,
28348,
1276,
307,
352,
492,
16,
13,
198,
20274,
27,
29,
8423,
15565,
1255,
13,
271,
7,
16,
11,
16,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
15082,
8467,
62,
1659,
62,
20274,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
11459,
43015,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
11459,
43015,
12502,
526,
15931,
628,
198,
4871,
4149,
11280,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
4149,
11280,
12502,
526,
15931,
628,
220,
220,
220,
825,
2099,
62,
392,
62,
34555,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
2099,
290,
16216,
286,
262,
1255,
25235,
28348,
389,
976,
355,
262,
2099,
290,
16216,
286,
262,
1280,
5396,
886,
13,
198,
944,
13,
9654,
12915,
3419,
3784,
1640,
3237,
7,
4906,
28,
20274,
13,
4906,
290,
318,
35422,
1068,
28,
20274,
13,
271,
35422,
1068,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2099,
62,
392,
62,
34555,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
11670,
62,
47945,
8467,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
15082,
8467,
286,
262,
1280,
5396,
886,
1276,
307,
11670,
351,
262,
15082,
8467,
286,
262,
1255,
25235,
28348,
13,
198,
944,
13,
9654,
12915,
3419,
3784,
11085,
22446,
38532,
3152,
7,
20274,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
11670,
62,
47945,
8467,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
20742,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
15854,
2247,
286,
262,
1280,
886,
1276,
1249,
1895,
422,
262,
2134,
9489,
262,
2223,
13,
198,
1616,
1280,
12915,
1058,
14161,
796,
2116,
13,
9654,
12915,
3419,
3784,
11085,
3419,
287,
198,
220,
1280,
12915,
13,
4703,
2247,
796,
6911,
2247,
35854,
3712,
11377,
393,
198,
220,
886,
6601,
3784,
1069,
1023,
7,
78,
276,
930,
198,
220,
220,
220,
267,
276,
13,
437,
27,
29,
9654,
12915,
290,
198,
220,
220,
220,
44104,
6,
22866,
6,
796,
267,
276,
13,
437,
13,
4906,
393,
198,
220,
220,
220,
220,
220,
357,
9654,
12915,
13,
4703,
2247,
796,
6911,
2247,
35854,
3712,
24326,
290,
198,
220,
220,
220,
220,
220,
220,
220,
4808,
6,
22866,
4458,
1102,
23914,
2514,
7,
78,
276,
13,
437,
13,
4906,
13,
38679,
1722,
6030,
7,
9487,
7483,
4008,
22305,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
20742,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
530,
62,
9654,
62,
437,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
47173,
530,
2792,
12915,
6601,
20855,
357,
10215,
5546,
278,
284,
262,
366,
9654,
1,
886,
8,
1276,
407,
423,
281,
1988,
23412,
28348,
13,
198,
944,
13,
9654,
12915,
3419,
3784,
7857,
3419,
796,
352,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
530,
62,
9654,
62,
437,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
20436,
540,
62,
9654,
62,
437,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
1280,
886,
1276,
307,
20436,
540,
13,
198,
944,
13,
9654,
12915,
3419,
3784,
11085,
22446,
271,
30575,
328,
540,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
20436,
540,
62,
9654,
62,
437,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
1280,
62,
437,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
35561,
262,
5645,
11188,
284,
886,
6601,
351,
645,
1988,
23412,
28348,
13,
357,
32,
880,
12,
12214,
4149,
11280,
12502,
318,
31070,
284,
423,
691,
530,
286,
777,
2014,
198,
20274,
796,
357,
437,
6601,
3784,
19738,
7,
8367,
28,
8423,
737,
437,
3784,
292,
35422,
1068,
7248,
28955,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
32,
2733,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
1280,
62,
437,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
4149,
44909,
1523,
38816,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
4149,
44909,
1523,
38816,
12502,
526,
15931,
628,
220,
220,
220,
825,
2099,
62,
392,
62,
34555,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
2099,
290,
16216,
286,
262,
1255,
25235,
28348,
389,
262,
976,
355,
262,
2099,
290,
16216,
286,
262,
32112,
1523,
38816,
13,
198,
20274,
13,
4906,
796,
7249,
1523,
38816,
13,
4906,
290,
198,
20274,
13,
271,
35422,
1068,
796,
13204,
38816,
13,
271,
35422,
1068,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2099,
62,
392,
62,
34555,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
4149,
43015,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
4149,
43015,
12502,
526,
15931,
628,
220,
220,
220,
825,
2099,
62,
392,
62,
34555,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
2099,
290,
16216,
286,
262,
1255,
25235,
28348,
389,
262,
976,
355,
262,
2099,
290,
16216,
286,
262,
7885,
13,
198,
20274,
13,
4906,
796,
45286,
13,
4906,
290,
198,
20274,
13,
271,
35422,
1068,
796,
7885,
13,
271,
35422,
1068,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2099,
62,
392,
62,
34555,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
11670,
62,
47945,
8467,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
15082,
8467,
286,
262,
7885,
1276,
307,
11670,
351,
262,
15082,
8467,
286,
262,
5072,
6757,
13,
198,
45286,
13,
38532,
3152,
7,
20274,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
11670,
62,
47945,
8467,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
16290,
10267,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
16290,
10267,
12502,
526,
15931,
628,
220,
220,
220,
825,
2099,
62,
16793,
62,
11635,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
319,
13924,
318,
407,
6565,
11,
262,
4347,
1813,
416,
319,
13924,
1276,
307,
281,
6898,
393,
19552,
3895,
286,
262,
2099,
286,
262,
2496,
23412,
28348,
13,
198,
261,
13924,
27,
29,
8423,
15565,
2496,
13,
4906,
13,
38679,
1722,
6030,
7,
9487,
7483,
737,
439,
23595,
3419,
3784,
42813,
7,
261,
13924,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
2099,
62,
16793,
62,
11635,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
16290,
11712,
282,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
16290,
11712,
282,
12502,
526,
15931,
628,
220,
220,
220,
825,
2099,
62,
34555,
62,
47945,
8467,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
2099,
11,
16216,
11,
290,
15082,
8467,
286,
281,
4578,
23412,
28348,
1276,
307,
262,
976,
355,
262,
11188,
11688,
286,
262,
6737,
13,
198,
1616,
11688,
25,
14230,
1068,
7248,
7,
21746,
8,
796,
6737,
13,
439,
29021,
3419,
287,
198,
44015,
594,
90,
16,
492,
49140,
3784,
7857,
3419,
92,
3784,
1640,
3237,
7,
72,
930,
198,
220,
220,
220,
220,
220,
220,
220,
4578,
3784,
265,
7,
72,
737,
4906,
13,
1102,
23914,
2514,
7,
42348,
3784,
265,
7,
72,
737,
4906,
8,
290,
198,
220,
220,
220,
220,
220,
220,
220,
4578,
3784,
265,
7,
72,
737,
271,
35422,
1068,
796,
11688,
3784,
265,
7,
72,
737,
271,
35422,
1068,
290,
198,
220,
220,
220,
220,
220,
220,
220,
4578,
3784,
265,
7,
72,
737,
38532,
3152,
7,
42348,
3784,
265,
7,
72,
22305,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2099,
62,
34555,
62,
47945,
8467,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
1271,
62,
2875,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
1271,
290,
1502,
286,
4578,
23412,
47,
1040,
1276,
307,
262,
976,
355,
262,
1271,
290,
1502,
286,
12608,
286,
262,
6737,
13,
198,
49140,
3784,
7857,
3419,
28,
12683,
282,
13,
439,
29021,
3419,
3784,
7857,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
1271,
62,
2875,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
2099,
62,
16793,
62,
11635,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
319,
13924,
318,
407,
6565,
11,
262,
4347,
1813,
416,
319,
13924,
1276,
307,
281,
6898,
393,
19552,
3895,
286,
262,
2099,
286,
262,
2496,
23412,
28348,
13,
198,
1662,
319,
13924,
3784,
271,
40613,
3419,
15565,
2496,
13,
4906,
13,
38679,
1722,
6030,
7,
9487,
7483,
737,
439,
23595,
3419,
3784,
42813,
7,
261,
13924,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
2099,
62,
16793,
62,
11635,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
6060,
22658,
19667,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
6060,
22658,
19667,
526,
15931,
628,
198,
4871,
10407,
15820,
1850,
9487,
7483,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
10407,
15820,
1850,
9487,
7483,
526,
15931,
628,
220,
220,
220,
825,
1398,
62,
46571,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
257,
4069,
318,
1398,
7483,
4069,
11,
340,
857,
407,
423,
257,
20855,
13,
198,
4871,
7483,
25267,
15759,
3784,
1662,
40613,
3419,
15565,
1398,
7483,
25267,
15759,
13,
16684,
2649,
3784,
271,
40613,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
1398,
62,
46571,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
651,
62,
439,
62,
320,
1154,
12061,
62,
3849,
32186,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
477,
262,
20314,
319,
543,
428,
6598,
1850,
1398,
7483,
393,
597,
286,
663,
3397,
468,
281,
7071,
23258,
20203,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
439,
62,
320,
1154,
12061,
62,
3849,
32186,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
320,
1154,
12061,
62,
3849,
32186,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
20314,
319,
543,
428,
6598,
1850,
1398,
7483,
468,
281,
7071,
23258,
20203,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
320,
1154,
12061,
62,
3849,
32186,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
6060,
6030,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
6060,
6030,
526,
15931,
628,
220,
220,
220,
825,
2251,
62,
11990,
62,
42348,
7,
944,
11,
1438,
28,
14202,
11,
2099,
28,
14202,
11,
2793,
28,
14202,
11,
6727,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
16719,
274,
257,
3119,
351,
262,
7368,
1438,
11,
2099,
11,
2793,
5421,
11,
290,
6727,
5421,
355,
281,
6898,
11688,
286,
428,
1366,
2099,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2251,
62,
11990,
62,
42348,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2251,
62,
11990,
62,
27184,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
1438,
28,
14202,
11,
11507,
36690,
28,
14202,
11,
11507,
31431,
28,
14202,
11,
1441,
6030,
28,
14202,
198,
220,
220,
220,
15179,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
16719,
274,
281,
4905,
351,
262,
7368,
1438,
11,
11507,
3891,
11,
11507,
3858,
11,
290,
1441,
2099,
357,
273,
9242,
8,
355,
281,
6898,
4905,
286,
428,
1366,
2099,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2251,
62,
11990,
62,
27184,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
26491,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
26491,
526,
15931,
628,
220,
220,
220,
825,
20742,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
20742,
286,
477,
17571,
6898,
416,
281,
26491,
1276,
307,
1171,
13,
198,
30053,
3784,
1640,
3237,
7,
4703,
2247,
796,
6911,
2247,
35854,
3712,
11377,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
20742,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
2251,
62,
11990,
62,
42348,
7,
944,
11,
1438,
28,
14202,
11,
2099,
28,
14202,
11,
2793,
28,
14202,
11,
6727,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
16719,
274,
257,
3119,
351,
262,
7368,
1438,
11,
2099,
11,
2793,
5421,
11,
290,
6727,
5421,
355,
281,
6898,
11688,
286,
428,
7071,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2251,
62,
11990,
62,
42348,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2251,
62,
11990,
62,
27184,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
1438,
28,
14202,
11,
11507,
36690,
28,
14202,
11,
11507,
31431,
28,
14202,
11,
1441,
6030,
28,
14202,
198,
220,
220,
220,
15179,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
16719,
274,
281,
4905,
351,
262,
7368,
1438,
11,
11507,
3891,
11,
11507,
3858,
11,
290,
1441,
2099,
357,
273,
9242,
8,
355,
281,
6898,
4905,
286,
428,
7071,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2251,
62,
11990,
62,
27184,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
26484,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
26484,
526,
15931,
628,
220,
220,
220,
825,
2251,
62,
11990,
62,
42348,
7,
944,
11,
1438,
28,
14202,
11,
2099,
28,
14202,
11,
2793,
28,
14202,
11,
6727,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
16719,
274,
257,
3119,
351,
262,
7368,
1438,
11,
2099,
11,
2793,
5421,
11,
290,
6727,
5421,
355,
281,
6898,
11688,
286,
428,
6737,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2251,
62,
11990,
62,
42348,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
628,
198,
4871,
32112,
1522,
9487,
7483,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
32112,
1522,
9487,
7483,
526,
15931,
628,
220,
220,
220,
825,
2251,
62,
11990,
62,
42348,
7,
944,
11,
1438,
28,
14202,
11,
2099,
28,
14202,
11,
2793,
28,
14202,
11,
6727,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
16719,
274,
257,
3119,
351,
262,
7368,
1438,
11,
2099,
11,
2793,
5421,
11,
290,
6727,
5421,
355,
281,
6898,
11688,
286,
428,
20793,
1398,
7483,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2251,
62,
11990,
62,
42348,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
42632,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
28532,
26939,
329,
32112,
1522,
9487,
7483,
3712,
14,
3911,
198,
20274,
796,
357,
11990,
33682,
3784,
19738,
7,
271,
5377,
1930,
578,
8,
3784,
292,
7248,
28955,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
44909,
1522,
9487,
13350,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
42632,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
477,
62,
305,
829,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
3237,
3033,
286,
2099,
8113,
540,
20180,
11,
7548,
284,
477,
1277,
290,
19552,
9176,
13,
198,
20274,
796,
357,
439,
23595,
3419,
3784,
19738,
7,
38679,
3792,
35854,
5189,
7,
13313,
540,
20180,
4008,
3784,
33327,
7,
38679,
1722,
6030,
7,
13313,
540,
20180,
4008,
3784,
292,
7248,
28955,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
44909,
1522,
9487,
13350,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
477,
62,
305,
829,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
24944,
2738,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
24944,
2738,
526,
15931,
628,
198,
4871,
26491,
15633,
1634,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
26491,
15633,
1634,
526,
15931,
628,
198,
4871,
32112,
1522,
16516,
19667,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
32112,
1522,
16516,
19667,
526,
15931,
628,
220,
220,
220,
825,
5072,
62,
11635,
62,
276,
3212,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
28181,
24641,
7407,
3212,
286,
262,
25235,
47,
1040,
286,
257,
32112,
1522,
16516,
19667,
1276,
423,
6670,
326,
389,
407,
1626,
262,
32112,
1522,
16516,
19667,
13,
198,
22915,
13,
448,
5146,
13,
16793,
3784,
1069,
13955,
3237,
7,
439,
23858,
276,
45,
4147,
3419,
12,
15414,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
5072,
62,
11635,
62,
276,
3212,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
13015,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
13015,
286,
257,
32112,
1522,
16516,
19667,
389,
477,
262,
24641,
7407,
3212,
351,
2723,
290,
2496,
24641,
45,
4147,
7763,
3264,
393,
20762,
1626,
262,
32112,
1522,
16516,
19667,
290,
379,
1551,
530,
286,
262,
2723,
393,
2496,
407,
7763,
287,
597,
517,
7744,
28376,
32112,
1522,
16516,
19667,
13,
198,
14907,
28,
944,
13,
10459,
45,
4147,
22446,
448,
5146,
3784,
3849,
5458,
7,
944,
13,
439,
23858,
276,
45,
4147,
22446,
259,
4976,
8,
3784,
198,
220,
220,
220,
220,
220,
220,
220,
6441,
7,
944,
13,
16793,
45,
4147,
22446,
259,
4976,
3784,
3849,
5458,
7,
944,
13,
439,
23858,
276,
45,
4147,
22446,
448,
5146,
4008,
3784,
292,
7248,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
13015,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
5128,
62,
11635,
62,
276,
3212,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
15619,
24641,
7407,
3212,
286,
281,
23412,
28348,
286,
257,
32112,
1522,
16516,
19667,
1276,
423,
4237,
326,
389,
407,
1626,
262,
32112,
1522,
16516,
19667,
13,
198,
15414,
13,
259,
4976,
13,
10459,
3784,
1069,
13955,
3237,
7,
439,
23858,
276,
45,
4147,
3419,
12,
22915,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
5128,
62,
11635,
62,
276,
3212,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
2723,
62,
77,
4147,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
13615,
883,
24641,
45,
4147,
7763,
3393,
1626,
262,
32112,
1522,
16516,
19667,
326,
743,
719,
355,
4237,
286,
13015,
6898,
416,
262,
32112,
1522,
16516,
19667,
13,
198,
20274,
796,
357,
17440,
3784,
24592,
7,
15414,
13,
38679,
1722,
6030,
7,
16516,
19667,
8,
3784,
292,
7248,
28955,
3784,
198,
220,
6441,
7,
17440,
3784,
19738,
7,
38679,
3792,
35854,
5189,
7,
12502,
29720,
38679,
1722,
6030,
7,
12502,
737,
22915,
8,
3784,
292,
7248,
28955,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
32,
2733,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
2723,
62,
77,
4147,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
2496,
62,
77,
4147,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
13615,
883,
24641,
45,
4147,
7763,
3393,
1626,
262,
32112,
1522,
16516,
19667,
326,
743,
719,
355,
6670,
286,
13015,
6898,
416,
262,
32112,
1522,
16516,
19667,
13,
198,
20274,
796,
357,
17440,
3784,
24592,
7,
22915,
13,
38679,
1722,
6030,
7,
16516,
19667,
8,
3784,
292,
7248,
28955,
3784,
198,
220,
6441,
7,
17440,
3784,
19738,
7,
38679,
3792,
35854,
5189,
7,
12502,
29720,
38679,
1722,
6030,
7,
12502,
737,
15414,
8,
3784,
292,
7248,
28955,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
32,
2733,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
2496,
62,
77,
4147,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
23412,
28348,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
23412,
28348,
526,
15931,
628,
220,
220,
220,
825,
28181,
62,
276,
3212,
62,
7249,
1522,
62,
8807,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2025,
23412,
28348,
743,
423,
28181,
24641,
7407,
3212,
691,
618,
340,
318,
6898,
416,
257,
32112,
1522,
16516,
19667,
11,
290,
777,
13015,
1276,
2496,
257,
10139,
7763,
357,
12942,
306,
393,
20762,
8,
287,
262,
23107,
32112,
1522,
16516,
19667,
13,
198,
448,
5146,
3784,
1662,
40613,
3419,
15565,
198,
220,
220,
220,
220,
220,
220,
220,
2223,
27,
29,
8423,
290,
198,
220,
220,
220,
220,
220,
220,
220,
2223,
13,
38679,
3792,
35854,
5189,
7,
44909,
1522,
16516,
19667,
8,
290,
198,
220,
220,
220,
220,
220,
220,
220,
2223,
13,
38679,
1722,
6030,
7,
44909,
1522,
16516,
19667,
737,
439,
23858,
276,
45,
4147,
3419,
3784,
42813,
3237,
7,
448,
5146,
13,
16793,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
28181,
62,
276,
3212,
62,
7249,
1522,
62,
8807,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
25235,
28348,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
25235,
28348,
526,
15931,
628,
220,
220,
220,
825,
15619,
62,
276,
3212,
62,
7249,
1522,
62,
8807,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2025,
25235,
28348,
743,
423,
15619,
24641,
7407,
3212,
691,
618,
340,
318,
6898,
416,
257,
32112,
1522,
16516,
19667,
11,
290,
777,
13015,
1276,
423,
4237,
7763,
357,
12942,
306,
393,
20762,
8,
287,
262,
23107,
32112,
1522,
16516,
19667,
13,
198,
259,
4976,
3784,
1662,
40613,
3419,
15565,
198,
220,
220,
220,
220,
220,
220,
220,
2223,
27,
29,
8423,
290,
198,
220,
220,
220,
220,
220,
220,
220,
2223,
13,
38679,
3792,
35854,
5189,
7,
44909,
1522,
16516,
19667,
8,
290,
198,
220,
220,
220,
220,
220,
220,
220,
2223,
13,
38679,
1722,
6030,
7,
44909,
1522,
16516,
19667,
737,
439,
23858,
276,
45,
4147,
3419,
3784,
42813,
3237,
7,
259,
4976,
13,
10459,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
15619,
62,
276,
3212,
62,
7249,
1522,
62,
8807,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
3060,
44909,
1523,
38816,
11395,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
3060,
44909,
1523,
38816,
11395,
12502,
526,
15931,
628,
220,
220,
220,
825,
2672,
62,
8367,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
1988,
23412,
28348,
318,
2672,
13,
198,
8367,
27,
29,
8423,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
2672,
62,
8367,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
7550,
62,
265,
62,
11635,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
4550,
44909,
1523,
38816,
32,
2733,
4375,
257,
1988,
284,
6149,
32112,
1523,
23595,
1276,
423,
257,
2060,
23412,
28348,
329,
262,
36075,
966,
351,
2099,
26774,
35364,
290,
15082,
8467,
286,
352,
492,
16,
611,
318,
3041,
5372,
3237,
28,
9562,
11,
290,
1276,
423,
645,
23412,
13727,
329,
262,
36075,
966,
618,
262,
32112,
1523,
38816,
318,
555,
24071,
13,
198,
361,
407,
13204,
38816,
13,
271,
35422,
1068,
788,
7550,
2953,
796,
9242,
198,
17772,
198,
220,
407,
318,
3041,
5372,
3237,
15565,
198,
220,
220,
220,
220,
220,
220,
220,
7550,
2953,
27,
29,
8423,
290,
198,
220,
220,
220,
220,
220,
220,
220,
7550,
2953,
3784,
1640,
3237,
7,
4906,
28,
3118,
10698,
35364,
290,
318,
7,
16,
11,
16,
13,
38679,
1722,
6030,
7,
3118,
10698,
35364,
22305,
198,
32088,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
7550,
62,
265,
62,
11635,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
3060,
43015,
11395,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
3060,
43015,
11395,
12502,
526,
15931,
628,
220,
220,
220,
825,
2672,
62,
8367,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
1988,
23412,
28348,
318,
2672,
13,
198,
8367,
1279,
29,
9242,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
2672,
62,
8367,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
7550,
62,
265,
62,
11635,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
4550,
43015,
11395,
32,
2733,
329,
6149,
15965,
2977,
1276,
423,
257,
2060,
23412,
28348,
329,
262,
36075,
966,
351,
2099,
791,
2475,
1513,
35364,
290,
15082,
8467,
286,
352,
492,
16,
611,
318,
3041,
5372,
3237,
28,
9562,
11,
4306,
262,
7561,
468,
645,
23412,
28348,
329,
262,
36075,
966,
13,
198,
361,
407,
7885,
13,
271,
35422,
1068,
788,
7550,
2953,
796,
9242,
198,
17772,
198,
220,
407,
318,
3041,
5372,
3237,
15565,
198,
220,
220,
220,
220,
220,
220,
220,
7550,
2953,
27,
29,
8423,
290,
198,
220,
220,
220,
220,
220,
220,
220,
7550,
2953,
3784,
1640,
3237,
7,
4906,
28,
3118,
10698,
35364,
290,
318,
7,
16,
11,
16,
13,
38679,
1722,
6030,
7,
3118,
10698,
35364,
22305,
198,
32088,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
7550,
62,
265,
62,
11635,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
4889,
25267,
15759,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
4889,
25267,
15759,
12502,
526,
15931,
628,
220,
220,
220,
825,
645,
62,
261,
634,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
4889,
25267,
15759,
12502,
743,
407,
11986,
319,
13924,
13,
198,
261,
13924,
28,
8423,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
645,
62,
261,
634,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
4889,
32180,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
4889,
32180,
12502,
526,
15931,
628,
220,
220,
220,
825,
2099,
62,
16793,
62,
11635,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
319,
13924,
468,
645,
1988,
11,
262,
4905,
1276,
307,
281,
6898,
393,
19552,
3895,
286,
262,
2099,
286,
262,
2496,
23412,
28348,
11,
4306,
262,
4347,
1813,
416,
319,
13924,
1276,
307,
281,
6898,
393,
19552,
3895,
286,
262,
2099,
286,
262,
2496,
23412,
28348,
11,
290,
262,
4347,
1276,
423,
257,
2672,
393,
2810,
26491,
351,
262,
4905,
355,
281,
6898,
393,
19552,
3895,
13,
198,
361,
319,
13924,
28,
8423,
788,
220,
2496,
13,
4906,
13,
38679,
1722,
6030,
7,
9487,
7483,
737,
439,
23595,
3419,
3784,
42813,
7,
27184,
8,
198,
17772,
2496,
13,
4906,
13,
38679,
1722,
6030,
7,
9487,
7483,
737,
439,
23595,
3419,
3784,
42813,
7,
261,
13924,
8,
290,
319,
13924,
13,
41279,
3784,
24592,
7,
261,
13924,
13,
35827,
737,
439,
23595,
3419,
3784,
42813,
7,
27184,
8,
198,
32088,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
2099,
62,
16793,
62,
11635,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
13610,
11280,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
13610,
11280,
12502,
526,
15931,
628,
220,
220,
220,
825,
8112,
62,
1662,
62,
397,
8709,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
5396,
2314,
307,
281,
12531,
5016,
7483,
13,
198,
1662,
2116,
13,
562,
41003,
22446,
271,
23839,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
8112,
62,
1662,
62,
397,
8709,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
19448,
11280,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
19448,
11280,
12502,
526,
15931,
628,
198,
4871,
17220,
44909,
1523,
38816,
11395,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
17220,
44909,
1523,
38816,
11395,
12502,
526,
15931,
628,
220,
220,
220,
825,
4781,
62,
265,
62,
392,
62,
8367,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
27914,
44909,
1523,
38816,
11395,
32,
2733,
10829,
257,
1988,
422,
6149,
11,
1729,
12,
34642,
32112,
1523,
23595,
1276,
423,
257,
2060,
4781,
2953,
23412,
28348,
290,
645,
1988,
23412,
28348,
11,
611,
318,
27914,
35660,
489,
16856,
318,
3991,
13,
383,
4781,
2953,
23412,
28348,
1276,
307,
286,
2099,
26774,
12068,
351,
15082,
8467,
352,
492,
16,
13,
15323,
11,
262,
7561,
468,
257,
1988,
23412,
28348,
290,
645,
4781,
2953,
23412,
28348,
13,
198,
361,
13204,
38816,
13,
271,
35422,
1068,
290,
407,
13204,
38816,
13,
271,
40257,
290,
220,
407,
318,
27914,
35660,
489,
16856,
788,
198,
220,
1988,
796,
9242,
290,
198,
220,
4781,
2953,
1279,
29,
9242,
290,
198,
220,
4781,
2953,
13,
4906,
796,
26774,
35364,
290,
198,
220,
4781,
2953,
13,
271,
7,
16,
11,
16,
8,
198,
17772,
198,
220,
4781,
2953,
796,
9242,
290,
1988,
1279,
29,
9242,
198,
32088,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
4781,
62,
265,
62,
392,
62,
8367,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
17220,
43015,
11395,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
17220,
43015,
11395,
12502,
526,
15931,
628,
220,
220,
220,
825,
4781,
62,
265,
62,
392,
62,
8367,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
5569,
43015,
32,
2733,
10829,
257,
1988,
422,
6149,
11,
1729,
12,
34642,
15965,
2977,
1276,
423,
257,
2060,
4781,
2953,
23412,
28348,
290,
645,
1988,
23412,
28348,
11,
611,
318,
27914,
35660,
489,
16856,
318,
3991,
13,
383,
4781,
2953,
23412,
28348,
1276,
307,
286,
2099,
26774,
12068,
351,
15082,
8467,
352,
492,
16,
13,
15323,
11,
262,
7561,
468,
257,
1988,
23412,
28348,
290,
645,
4781,
2953,
23412,
28348,
13,
198,
361,
220,
7885,
13,
271,
35422,
1068,
290,
407,
7885,
13,
271,
40257,
290,
407,
318,
27914,
35660,
489,
16856,
788,
198,
220,
1988,
796,
9242,
290,
198,
220,
4781,
2953,
1279,
29,
9242,
290,
198,
220,
4781,
2953,
13,
4906,
796,
26774,
35364,
290,
198,
220,
4781,
2953,
13,
271,
7,
16,
11,
16,
8,
198,
17772,
198,
220,
4781,
2953,
796,
9242,
290,
1988,
1279,
29,
9242,
198,
32088,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
4781,
62,
265,
62,
392,
62,
8367,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
7253,
10267,
25267,
15759,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
7253,
10267,
25267,
15759,
12502,
526,
15931,
628,
220,
220,
220,
825,
15082,
8467,
62,
1659,
62,
15252,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
15082,
8467,
286,
262,
2134,
23412,
28348,
1276,
307,
352,
492,
16,
13,
198,
15252,
13,
271,
7,
16,
11,
16,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
15082,
8467,
62,
1659,
62,
15252,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2099,
62,
1659,
62,
15252,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
2099,
286,
262,
2134,
23412,
28348,
1276,
307,
2035,
257,
20181,
393,
257,
10407,
15820,
1850,
9487,
7483,
351,
257,
1398,
7483,
25267,
15759,
13,
198,
944,
13,
46571,
3419,
27,
29,
8423,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
2099,
62,
1659,
62,
15252,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
645,
62,
261,
634,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
7253,
10267,
25267,
15759,
12502,
743,
407,
11986,
319,
13924,
13,
198,
261,
13924,
3784,
271,
40613,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
645,
62,
261,
634,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
4069,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
262,
2099,
286,
262,
2134,
23412,
28348,
318,
257,
20181,
11,
788,
326,
20181,
13,
15323,
11,
611,
262,
2099,
286,
262,
2134,
23412,
28348,
318,
257,
10407,
15820,
1850,
9487,
7483,
11,
788,
262,
1398,
7483,
25267,
15759,
286,
326,
10407,
15820,
1850,
9487,
7483,
13,
198,
20274,
796,
357,
361,
2134,
13,
4906,
13,
38679,
3792,
35854,
5189,
7,
25267,
15759,
8,
788,
198,
220,
2134,
13,
4906,
13,
38679,
1722,
6030,
7,
25267,
15759,
8,
198,
17772,
611,
2134,
13,
4906,
13,
38679,
3792,
35854,
5189,
7,
25267,
15820,
1850,
9487,
7483,
8,
788,
198,
220,
2134,
13,
4906,
13,
38679,
1722,
6030,
7,
25267,
15820,
1850,
9487,
7483,
737,
4871,
7483,
25267,
15759,
198,
17772,
198,
220,
9242,
198,
32088,
198,
32088,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
32,
2733,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
4069,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
6188,
7449,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
6188,
7449,
526,
15931,
628,
220,
220,
220,
825,
4237,
62,
392,
62,
83,
853,
1039,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
4237,
290,
6670,
286,
281,
1321,
2378,
357,
896,
3519,
1321,
15623,
8,
1276,
32781,
6352,
1039,
286,
262,
4237,
290,
6670,
286,
262,
10552,
1321,
2378,
11,
611,
597,
13,
383,
5016,
13350,
326,
460,
6537,
281,
1321,
2378,
460,
691,
307,
286,
262,
1708,
1611,
25,
5016,
11,
26491,
11,
6188,
7449,
11,
26484,
11,
35100,
13,
198,
7,
944,
13,
33469,
3784,
19738,
7,
38679,
3792,
35854,
5189,
7,
21918,
7449,
4008,
3784,
1640,
3237,
7,
79,
930,
198,
220,
279,
13,
1102,
303,
1112,
37535,
13,
10459,
3784,
1640,
3237,
7,
80,
930,
2116,
13,
1102,
303,
1112,
37535,
13,
10459,
3784,
42813,
7,
80,
4008,
290,
198,
220,
220,
220,
279,
13,
1102,
303,
1112,
37535,
13,
16793,
3784,
1640,
3237,
7,
80,
930,
2116,
13,
1102,
303,
1112,
37535,
13,
16793,
3784,
42813,
7,
80,
35514,
290,
198,
220,
220,
220,
220,
220,
357,
944,
13,
33469,
3784,
1640,
3237,
7,
38679,
3792,
35854,
5189,
7,
9487,
8,
393,
267,
565,
3792,
35854,
5189,
7,
39317,
8,
393,
198,
220,
220,
220,
220,
220,
220,
220,
267,
565,
3792,
35854,
5189,
7,
21918,
7449,
8,
393,
267,
565,
3792,
35854,
5189,
7,
11712,
282,
8,
393,
267,
565,
3792,
35854,
5189,
7,
21950,
22305,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
4237,
62,
392,
62,
83,
853,
1039,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
468,
62,
3919,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2025,
1321,
7449,
468,
645,
3895,
11,
645,
2276,
1634,
11,
290,
645,
15814,
13,
198,
944,
13,
24622,
1634,
3784,
271,
40613,
3419,
290,
2116,
13,
30053,
3784,
271,
40613,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
468,
62,
3919,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
407,
62,
8625,
415,
3379,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1026,
318,
407,
9113,
3379,
13,
198,
271,
23839,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
407,
62,
8625,
415,
3379,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
35100,
15633,
1634,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
35100,
15633,
1634,
526,
15931,
628,
198,
198,
4871,
5396,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
5396,
526,
15931,
628,
220,
220,
220,
825,
16976,
62,
437,
62,
17618,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2025,
5396,
40847,
1194,
5396,
468,
262,
976,
1271,
286,
5645,
355,
262,
584,
5396,
13,
198,
23743,
3419,
3784,
19738,
7,
38679,
3792,
35854,
5189,
7,
8021,
41003,
29720,
38679,
1722,
6030,
7,
8021,
41003,
8,
3784,
1640,
3237,
7,
79,
930,
279,
13,
19522,
12915,
3784,
7857,
3419,
796,
2116,
13,
19522,
12915,
3784,
7857,
28955,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
16976,
62,
437,
62,
17618,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
16976,
62,
437,
62,
19199,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2215,
281,
5396,
29786,
1194,
5396,
11,
790,
886,
286,
262,
2176,
5396,
24866,
284,
281,
886,
286,
262,
2276,
5396,
11,
290,
262,
2176,
886,
12229,
262,
976,
2099,
393,
257,
850,
4906,
286,
262,
11188,
2276,
886,
13,
198,
44015,
594,
90,
16,
492,
19522,
12915,
3784,
7857,
3419,
92,
3784,
198,
220,
220,
220,
220,
220,
220,
220,
329,
3237,
7,
72,
930,
2276,
3784,
19738,
7,
38679,
3792,
35854,
5189,
7,
8021,
41003,
29720,
38679,
1722,
6030,
7,
8021,
41003,
8,
3784,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
3237,
7,
4908,
930,
2116,
13,
19522,
12915,
3784,
265,
7,
72,
737,
4906,
13,
1102,
23914,
2514,
7,
4908,
13,
19522,
12915,
3784,
265,
7,
72,
737,
4906,
22305,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
16976,
62,
437,
62,
19199,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
13934,
62,
562,
1733,
602,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
10049,
13934,
3928,
602,
460,
307,
13262,
602,
13,
198,
19522,
12915,
3784,
1069,
1023,
7,
9460,
43068,
1279,
29,
19015,
43068,
35854,
3712,
23108,
8,
15565,
357,
19522,
12915,
3784,
7857,
3419,
796,
362,
290,
2888,
12915,
3784,
1069,
1023,
7,
9460,
43068,
796,
19015,
43068,
35854,
3712,
23108,
4008,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
13934,
62,
562,
1733,
602,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
8112,
62,
2412,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
12915,
82,
286,
3928,
602,
351,
517,
621,
734,
5645,
1276,
307,
6898,
416,
262,
5396,
2346,
13,
198,
19522,
12915,
3784,
7857,
3419,
1875,
362,
15565,
6898,
12915,
3784,
42813,
3237,
7,
19522,
12915,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
8112,
62,
2412,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
5645,
62,
27238,
62,
1350,
62,
774,
9124,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
19522,
12915,
3784,
1640,
3237,
7,
4906,
3784,
1662,
40613,
28955,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
5645,
62,
27238,
62,
1350,
62,
774,
9124,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
318,
62,
39491,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
35,
13221,
274,
1771,
428,
8112,
318,
257,
13934,
8112,
11,
1312,
13,
68,
13,
1771,
340,
468,
3446,
734,
2888,
5645,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
318,
62,
39491,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
651,
62,
437,
62,
19199,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
437,
6030,
318,
10944,
422,
262,
3858,
286,
262,
2888,
5645,
13,
198,
20274,
796,
357,
19522,
12915,
3784,
33327,
7,
4906,
8,
3784,
292,
7248,
28955,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
44909,
1522,
9487,
13350,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
437,
62,
19199,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
14161,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
14161,
526,
15931,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
2488,
12286,
13,
2617,
353,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
2488,
271,
5377,
1930,
578,
13,
2617,
353,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
2488,
10365,
5971,
13,
2617,
353,
628,
220,
220,
220,
825,
24637,
889,
62,
22866,
62,
1102,
23914,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
7004,
33990,
743,
691,
3051,
618,
262,
4732,
286,
262,
24637,
889,
3119,
17216,
82,
284,
262,
4732,
286,
262,
24637,
1513,
3119,
13,
198,
7266,
2617,
1513,
21746,
3784,
1662,
40613,
3419,
15565,
198,
220,
357,
7266,
33990,
21947,
3419,
3784,
1662,
40613,
3419,
290,
24637,
889,
21947,
3419,
3784,
1640,
3237,
357,
1416,
930,
198,
220,
220,
220,
24637,
1513,
21746,
3784,
1640,
3237,
7,
2777,
930,
198,
220,
220,
220,
220,
220,
599,
13,
7266,
33990,
21947,
3419,
3784,
1069,
1023,
7,
66,
930,
629,
13,
1102,
23914,
2514,
7,
66,
4008,
22305,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
24637,
889,
62,
22866,
62,
1102,
23914,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
10944,
62,
24592,
62,
271,
62,
961,
62,
8807,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
10944,
6441,
318,
1100,
691,
13,
198,
271,
28532,
1572,
38176,
15565,
318,
5569,
10049,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
10944,
62,
24592,
62,
271,
62,
961,
62,
8807,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
15082,
8467,
62,
1659,
62,
785,
1930,
578,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
15082,
8467,
319,
262,
49760,
886,
286,
257,
24185,
46500,
1276,
407,
423,
281,
6727,
5421,
3744,
621,
352,
13,
198,
271,
5377,
1930,
578,
290,
8112,
1279,
29,
9242,
15565,
6697,
13,
45828,
49646,
3419,
19841,
352,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
15082,
8467,
62,
1659,
62,
785,
1930,
578,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2266,
18156,
62,
26745,
62,
259,
372,
863,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
2266,
18156,
14161,
1276,
307,
19552,
422,
257,
517,
2276,
5016,
7483,
13,
198,
7,
445,
18156,
21746,
3784,
1662,
40613,
28955,
15565,
198,
220,
357,
445,
891,
17750,
21947,
3784,
1662,
40613,
3419,
290,
198,
220,
220,
220,
220,
220,
2266,
18156,
21746,
3784,
1640,
3237,
7,
81,
79,
91,
198,
220,
220,
220,
220,
220,
220,
220,
14808,
445,
891,
17750,
21947,
3784,
33327,
7,
16072,
91,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
277,
66,
13,
439,
42969,
3419,
4008,
3784,
292,
7248,
28955,
3784,
33327,
7,
66,
91,
269,
13,
439,
23595,
28955,
3784,
292,
7248,
3419,
3784,
42813,
7,
81,
79,
22305,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2266,
18156,
62,
26745,
62,
259,
372,
863,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
24637,
889,
62,
38785,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
24637,
889,
14161,
743,
12160,
262,
2099,
286,
262,
24637,
1513,
14161,
11,
290,
663,
6727,
5421,
743,
307,
1342,
13,
198,
7266,
2617,
1513,
21746,
3784,
1640,
3237,
7,
2777,
930,
198,
220,
2116,
13,
4906,
13,
1102,
23914,
2514,
7,
2777,
13,
4906,
8,
290,
198,
220,
220,
220,
14808,
944,
13,
45828,
49646,
3419,
3784,
1662,
40613,
3419,
290,
599,
13,
45828,
49646,
3419,
3784,
1662,
40613,
28955,
15565,
198,
220,
220,
220,
220,
220,
2116,
13,
45828,
49646,
3419,
19841,
599,
13,
45828,
49646,
3419,
15306,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
24637,
889,
62,
38785,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
12765,
62,
1462,
62,
42348,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
12765,
286,
257,
14161,
30800,
36301,
10200,
281,
11688,
1276,
307,
284,
281,
11688,
13,
198,
7,
944,
13,
271,
33682,
3419,
198,
392,
357,
28243,
36301,
7004,
301,
2738,
3784,
1662,
40613,
28955,
198,
23928,
444,
357,
28243,
36301,
7004,
301,
2738,
3784,
1640,
3237,
7,
912,
930,
198,
220,
220,
220,
40379,
13,
687,
282,
13,
38679,
3792,
35854,
5189,
7,
21746,
8,
198,
220,
220,
220,
290,
40379,
13,
687,
282,
13,
38679,
1722,
6030,
7,
21746,
737,
271,
33682,
3419,
22305,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
12765,
62,
1462,
62,
42348,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
10944,
62,
24592,
62,
271,
62,
34631,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
10944,
6441,
318,
10944,
13,
198,
271,
28532,
1572,
38176,
15565,
318,
28532,
1572,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
10944,
62,
24592,
62,
271,
62,
34631,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
14833,
62,
16793,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
14161,
460,
307,
257,
34706,
434,
21745,
611,
340,
318,
257,
1611,
286,
19081,
290,
5499,
355,
257,
636,
287,
262,
5387,
4645,
286,
281,
20504,
19696,
19081,
13,
198,
2934,
1420,
434,
3784,
1662,
40613,
3419,
15565,
4870,
13,
38679,
3792,
35854,
5189,
7,
19667,
8,
290,
19081,
13,
439,
6310,
1817,
3419,
3784,
1069,
1023,
7,
77,
930,
299,
13,
3911,
3784,
1069,
1023,
7,
79,
930,
279,
796,
2116,
4008,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
14833,
62,
16793,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
24637,
1513,
62,
26745,
62,
14933,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
14161,
743,
407,
24637,
257,
14161,
351,
262,
976,
1438,
13,
198,
7266,
2617,
1513,
21746,
3784,
1640,
3237,
7,
2777,
930,
599,
13,
3672,
1279,
29,
1438,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
24637,
1513,
62,
26745,
62,
14933,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2099,
62,
1659,
62,
10365,
5971,
62,
437,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
257,
14161,
318,
257,
1398,
7483,
12,
11990,
886,
286,
257,
13934,
5396,
11,
663,
4870,
1276,
307,
262,
2099,
286,
262,
6697,
886,
13,
198,
7,
10365,
5971,
3784,
1662,
40613,
3419,
290,
23107,
8021,
41003,
3784,
271,
40613,
28955,
15565,
1398,
7483,
796,
6697,
13,
4906,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2099,
62,
1659,
62,
10365,
5971,
62,
437,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
10617,
62,
271,
62,
562,
41003,
62,
437,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
3237,
10617,
24946,
1276,
307,
5396,
5645,
198,
13255,
7483,
3784,
1662,
40613,
3419,
15565,
8112,
3784,
1662,
40613,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
10617,
62,
271,
62,
562,
41003,
62,
437,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
12286,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
257,
4731,
10552,
286,
262,
4277,
1988,
329,
428,
3119,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
12286,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
651,
62,
847,
62,
437,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
584,
886,
286,
262,
357,
39491,
8,
8112,
287,
543,
428,
3119,
318,
257,
2888,
886,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
847,
62,
437,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
900,
62,
2127,
21052,
62,
12286,
62,
8367,
7,
944,
11,
1988,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
50,
1039,
262,
4277,
1988,
329,
428,
3119,
284,
262,
7368,
41146,
1988,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
900,
62,
2127,
21052,
62,
12286,
62,
8367,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
900,
62,
12286,
7,
944,
11,
649,
19463,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
50,
1039,
262,
4277,
1988,
329,
428,
3119,
1912,
319,
262,
7368,
4731,
10552,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
900,
62,
12286,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
900,
62,
41433,
62,
12286,
62,
8367,
7,
944,
11,
1988,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
50,
1039,
262,
4277,
1988,
329,
428,
3119,
284,
262,
7368,
18253,
1988,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
900,
62,
41433,
62,
12286,
62,
8367,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
900,
62,
271,
62,
28341,
328,
540,
7,
944,
11,
318,
30575,
328,
540,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
50,
1039,
262,
20436,
1799,
286,
428,
3119,
355,
8203,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
900,
62,
271,
62,
28341,
328,
540,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
900,
62,
8423,
62,
12286,
62,
8367,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
50,
1039,
262,
4277,
1988,
329,
428,
3119,
284,
262,
9242,
1988,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
900,
62,
8423,
62,
12286,
62,
8367,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
900,
62,
5305,
62,
12286,
62,
8367,
7,
944,
11,
1988,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
50,
1039,
262,
4277,
1988,
329,
428,
3119,
284,
262,
7368,
1103,
1988,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
900,
62,
5305,
62,
12286,
62,
8367,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
900,
62,
8841,
62,
12286,
62,
8367,
7,
944,
11,
1988,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
50,
1039,
262,
4277,
1988,
329,
428,
3119,
284,
262,
7368,
4731,
1988,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
900,
62,
8841,
62,
12286,
62,
8367,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
900,
62,
403,
10698,
62,
11802,
62,
12286,
62,
8367,
7,
944,
11,
1988,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
50,
1039,
262,
4277,
1988,
329,
428,
3119,
284,
262,
7368,
15822,
3288,
1988,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
900,
62,
403,
10698,
62,
11802,
62,
12286,
62,
8367,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
318,
62,
42348,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
318,
33682,
3419,
318,
2081,
611,
262,
14161,
318,
5447,
355,
281,
11688,
286,
617,
5016,
7483,
13,
198,
20274,
796,
357,
1662,
1398,
7483,
3784,
271,
40613,
28955,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9487,
2649,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
318,
62,
42348,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
318,
62,
785,
1930,
578,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
1988,
286,
318,
5377,
1930,
578,
318,
2081,
691,
611,
46500,
318,
24185,
13,
198,
20274,
796,
357,
9460,
43068,
796,
19015,
43068,
35854,
3712,
785,
1930,
578,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9487,
2649,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
271,
5377,
1930,
578,
628,
220,
220,
220,
825,
318,
62,
28341,
328,
540,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
318,
30575,
328,
540,
3419,
9217,
1771,
340,
318,
1744,
284,
16500,
1973,
262,
3119,
13,
198,
20274,
796,
357,
1662,
1398,
7483,
3784,
271,
40613,
3419,
393,
8112,
13,
28341,
328,
540,
23858,
276,
12915,
3784,
42813,
7,
944,
4008,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9487,
2649,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
318,
62,
28341,
328,
540,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
651,
62,
10365,
5971,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
428,
3119,
318,
257,
2888,
12915,
286,
257,
13934,
8112,
11,
788,
6697,
3607,
262,
584,
886,
13,
198,
20274,
796,
357,
361,
8112,
1279,
29,
9242,
290,
8112,
13,
19522,
12915,
3784,
7857,
3419,
796,
362,
198,
8524,
198,
220,
220,
220,
8112,
13,
19522,
12915,
3784,
1092,
7,
68,
930,
304,
1279,
29,
2116,
8,
198,
17772,
198,
220,
220,
220,
9242,
198,
32088,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9487,
2649,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
10365,
5971,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
24637,
889,
62,
22866,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
24637,
889,
21947,
3419,
3607,
262,
4732,
329,
24637,
889,
257,
14161,
13,
632,
10874,
11,
287,
262,
1339,
286,
281,
11688,
11,
286,
262,
11188,
5016,
7483,
11,
290,
287,
262,
1339,
286,
281,
8112,
886,
11,
477,
286,
262,
5016,
13350,
379,
262,
584,
5645,
13,
198,
20274,
796,
357,
361,
8112,
1279,
29,
9242,
198,
8524,
8112,
13,
19522,
12915,
3784,
42218,
7,
944,
8,
3784,
33327,
7,
4906,
8,
3784,
292,
7248,
3419,
198,
17772,
198,
220,
611,
1398,
7483,
27,
29,
8423,
198,
220,
788,
1398,
7483,
3784,
292,
7248,
3419,
198,
220,
2073,
5345,
90,
92,
198,
220,
45762,
198,
32088,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9487,
2649,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
24637,
889,
62,
22866,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
45908,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
45908,
526,
15931,
628,
220,
220,
220,
825,
2251,
62,
11990,
62,
42348,
7,
944,
11,
1438,
28,
14202,
11,
2099,
28,
14202,
11,
2793,
28,
14202,
11,
6727,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
16719,
274,
257,
3119,
351,
262,
7368,
1438,
11,
2099,
11,
2793,
5421,
11,
290,
6727,
5421,
355,
281,
6898,
11688,
286,
428,
24127,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2251,
62,
11990,
62,
42348,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2251,
62,
11990,
62,
27184,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
1438,
28,
14202,
11,
11507,
36690,
28,
14202,
11,
11507,
31431,
28,
14202,
11,
1441,
6030,
28,
14202,
198,
220,
220,
220,
15179,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
16719,
274,
281,
4905,
351,
262,
7368,
1438,
11,
11507,
3891,
11,
11507,
3858,
11,
290,
1441,
2099,
357,
273,
9242,
8,
355,
281,
6898,
4905,
286,
428,
24127,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2251,
62,
11990,
62,
27184,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
2039,
6975,
341,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
2039,
6975,
341,
526,
15931,
628,
220,
220,
220,
825,
40139,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
11990,
33682,
3784,
1640,
3237,
7,
271,
5569,
10049,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
40139,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
11460,
1800,
6030,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
11460,
1800,
6030,
526,
15931,
628,
198,
4871,
5765,
20448,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
5765,
20448,
526,
15931,
628,
220,
220,
220,
825,
13934,
62,
562,
1733,
602,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
11041,
34,
1386,
460,
691,
307,
2950,
287,
13934,
3928,
602,
13,
198,
8021,
41003,
13,
439,
6310,
1817,
3419,
3784,
1640,
3237,
7,
64,
930,
257,
13,
19522,
12915,
13,
4906,
3784,
42813,
7,
944,
8,
15565,
257,
13,
19522,
12915,
3784,
7857,
3419,
796,
362,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
13934,
62,
562,
1733,
602,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
645,
62,
562,
41003,
62,
1462,
62,
1904,
62,
7442,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
11041,
34,
1386,
2314,
423,
3928,
602,
284,
5765,
34,
1386,
31577,
262,
976,
2426,
13,
198,
8021,
41003,
13,
439,
6310,
1817,
3419,
3784,
1640,
3237,
7,
64,
930,
257,
13,
19522,
12915,
13,
4906,
3784,
42813,
7,
944,
8,
15565,
198,
220,
220,
357,
198,
220,
220,
1309,
779,
33964,
25,
5345,
7,
11041,
20448,
8,
796,
257,
13,
19522,
12915,
13,
4906,
3784,
19738,
7,
38679,
3792,
35854,
5189,
7,
11041,
20448,
4008,
3784,
33327,
7,
38679,
1722,
6030,
7,
11041,
20448,
4008,
3784,
292,
7248,
3419,
287,
198,
220,
220,
779,
33964,
3784,
7857,
3419,
1875,
352,
15565,
779,
33964,
3784,
33327,
7,
32796,
8,
3784,
7857,
3419,
1875,
352,
198,
220,
220,
1267,
198,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
645,
62,
562,
41003,
62,
1462,
62,
1904,
62,
7442,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2314,
62,
17256,
62,
944,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
5765,
20448,
2314,
2291,
5765,
34,
1386,
326,
3264,
393,
20762,
2291,
340,
13,
198,
1662,
477,
818,
10341,
11041,
34,
1386,
3419,
3784,
42813,
7,
944,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2314,
62,
17256,
62,
944,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
1276,
62,
14150,
62,
3672,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
5765,
20448,
1276,
423,
257,
1438,
13,
198,
3672,
4613,
407,
40613,
7499,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
1276,
62,
14150,
62,
3672,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
477,
62,
259,
10341,
62,
1904,
62,
33964,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
477,
818,
10341,
11041,
34,
1386,
3419,
5860,
262,
1007,
1800,
16512,
286,
477,
5765,
34,
1386,
357,
12942,
306,
393,
20762,
8,
3017,
416,
428,
5765,
20448,
13,
198,
20274,
796,
357,
944,
13,
17256,
13,
2860,
653,
3784,
24592,
7,
944,
13,
17256,
13,
2860,
653,
3784,
33327,
7,
1229,
930,
334,
66,
13,
439,
818,
10341,
11041,
34,
1386,
3419,
4008,
3784,
292,
7248,
28955,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
11041,
34,
1386,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
477,
62,
259,
10341,
62,
1904,
62,
33964,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
198,
4871,
14711,
1686,
4817,
9487,
7483,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
14711,
1686,
4817,
9487,
7483,
526,
15931,
628,
220,
220,
220,
825,
651,
62,
11990,
62,
3742,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
28532,
26939,
329,
14711,
1686,
4817,
9487,
7483,
3712,
14,
11990,
13924,
1058,
4347,
198,
20274,
796,
357,
11990,
33682,
3784,
19738,
7,
38679,
3792,
35854,
5189,
7,
13924,
4008,
3784,
33327,
7,
38679,
1722,
6030,
7,
13924,
4008,
3784,
292,
35422,
1068,
7248,
28955,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
44909,
1522,
9487,
13350,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
11990,
62,
3742,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
7561,
20560,
28348,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
7561,
20560,
28348,
526,
15931,
628,
220,
220,
220,
825,
5128,
62,
11635,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
422,
12502,
286,
281,
7561,
20560,
28348,
1276,
691,
423,
7561,
20560,
47,
1040,
355,
23412,
47,
1040,
13,
198,
6738,
12502,
13,
15414,
3784,
1640,
3237,
7,
38679,
3792,
35854,
5189,
7,
12502,
20560,
28348,
4008,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
5128,
62,
11635,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
530,
62,
22915,
62,
11635,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
422,
12502,
286,
281,
7561,
20560,
28348,
1276,
423,
3446,
530,
25235,
28348,
13,
198,
6738,
12502,
13,
22915,
3784,
7857,
3419,
796,
352,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
530,
62,
22915,
62,
11635,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
645,
62,
13716,
62,
273,
62,
15252,
62,
11125,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
422,
12502,
286,
281,
7561,
20560,
28348,
2314,
423,
24641,
7407,
3212,
2406,
656,
393,
503,
286,
340,
393,
663,
350,
1040,
13,
198,
6738,
12502,
13,
259,
4976,
3784,
24592,
7,
448,
5146,
8,
3784,
271,
40613,
3419,
290,
198,
6738,
12502,
13,
15414,
13,
259,
4976,
3784,
271,
40613,
3419,
290,
198,
6738,
12502,
13,
22915,
13,
448,
5146,
3784,
271,
40613,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
645,
62,
13716,
62,
273,
62,
15252,
62,
11125,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
9724,
1859,
19667,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
9724,
1859,
19667,
526,
15931,
628,
220,
220,
220,
825,
1255,
62,
3919,
62,
259,
4976,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
1255,
25235,
47,
1040,
423,
645,
15619,
13015,
13,
198,
20274,
13,
259,
4976,
3784,
271,
40613,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
1255,
62,
3919,
62,
259,
4976,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
645,
62,
15414,
62,
49556,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
9724,
1859,
19667,
468,
645,
23412,
47,
1040,
13,
198,
15414,
3784,
271,
40613,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
645,
62,
15414,
62,
49556,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
530,
62,
565,
682,
62,
4480,
62,
18558,
18187,
62,
17440,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2949,
8393,
18187,
19667,
287,
262,
24295,
19667,
743,
1656,
287,
262,
1332,
393,
1767,
636,
286,
517,
621,
530,
13444,
286,
257,
9724,
1859,
19667,
13,
198,
17440,
3784,
19738,
7,
38679,
3792,
35854,
5189,
7,
23002,
18187,
19667,
29720,
38679,
1722,
6030,
7,
23002,
18187,
19667,
8,
3784,
1640,
3237,
7,
77,
930,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
565,
682,
3784,
19738,
7,
9288,
3784,
24592,
28264,
6,
2618,
11537,
3784,
42813,
7,
77,
4008,
3784,
7857,
3419,
28,
16,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
530,
62,
565,
682,
62,
4480,
62,
18558,
18187,
62,
17440,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
12336,
62,
22915,
62,
49556,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
10871,
13444,
286,
257,
9724,
1859,
19667,
1276,
423,
262,
976,
1271,
286,
1767,
26410,
20567,
355,
262,
9724,
1859,
19667,
468,
1255,
25235,
47,
1040,
11,
290,
1123,
13444,
1767,
26410,
13727,
1276,
307,
11670,
351,
262,
11188,
1255,
25235,
28348,
357,
1525,
45203,
1502,
8,
287,
2099,
11,
15082,
8467,
11,
16216,
11,
290,
49650,
13,
198,
565,
682,
3784,
1640,
3237,
7,
198,
220,
220,
220,
220,
220,
220,
220,
1767,
26410,
3784,
7857,
3419,
28,
944,
13,
20274,
3784,
7857,
3419,
290,
198,
220,
220,
220,
220,
220,
220,
220,
45835,
90,
16,
492,
944,
13,
20274,
3784,
7857,
3419,
92,
3784,
1640,
3237,
7,
72,
930,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1767,
26410,
3784,
265,
7,
72,
737,
4906,
13,
1102,
23914,
2514,
7,
20274,
3784,
265,
7,
72,
737,
4906,
8,
290,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1767,
26410,
3784,
265,
7,
72,
737,
271,
35422,
1068,
796,
1255,
3784,
265,
7,
72,
737,
271,
35422,
1068,
290,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1767,
26410,
3784,
265,
7,
72,
737,
271,
40257,
796,
1255,
3784,
265,
7,
72,
737,
271,
40257,
290,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1767,
26410,
3784,
265,
7,
72,
737,
38532,
3152,
7,
20274,
3784,
265,
7,
72,
35514,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
12336,
62,
22915,
62,
49556,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
28883,
62,
77,
4147,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
6441,
286,
262,
8393,
18187,
45,
4147,
287,
262,
1332,
290,
1767,
3354,
286,
477,
31485,
1276,
307,
262,
976,
355,
262,
24637,
286,
13760,
7763,
287,
262,
9724,
1859,
19667,
357,
5936,
3089,
355,
257,
32112,
1522,
16516,
19667,
8,
326,
389,
8393,
18187,
45,
4147,
13,
198,
565,
682,
13,
9288,
3784,
24592,
7,
565,
682,
13557,
6,
2618,
11537,
796,
10139,
3784,
19738,
7,
38679,
3792,
35854,
5189,
7,
23002,
18187,
19667,
29720,
38679,
1722,
6030,
7,
23002,
18187,
19667,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
28883,
62,
77,
4147,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
13444,
62,
3919,
62,
28764,
721,
5987,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2949,
734,
31485,
1626,
257,
9724,
1859,
19667,
743,
307,
18476,
47404,
2664,
286,
1123,
584,
11,
2035,
3264,
393,
20762,
13,
198,
565,
682,
3784,
17966,
7,
28764,
721,
5987,
2601,
682,
8,
3784,
3849,
5458,
7,
565,
682,
8,
3784,
271,
40613,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
13444,
62,
3919,
62,
28764,
721,
5987,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
13610,
11280,
10267,
12502,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
13610,
11280,
10267,
12502,
526,
15931,
628,
220,
220,
220,
825,
15082,
8467,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
15082,
8467,
286,
262,
25235,
28348,
318,
352,
492,
16,
13,
198,
20274,
13,
271,
7,
16,
11,
16,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
15082,
8467,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
2099,
62,
1659,
62,
20274,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
2099,
286,
262,
1255,
25235,
28348,
1276,
307,
262,
976,
355,
262,
5396,
286,
262,
13610,
11280,
10267,
12502,
13,
198,
20274,
13,
4906,
796,
8112,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
2099,
62,
1659,
62,
20274,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
8112,
62,
4871,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
5396,
1276,
307,
281,
5396,
9487,
13,
198,
944,
13,
562,
41003,
22446,
38679,
3792,
35854,
5189,
7,
8021,
41003,
9487,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
8112,
62,
4871,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
25042,
47371,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
25042,
47371,
526,
15931,
628,
198,
4871,
26304,
19667,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
26304,
19667,
526,
15931,
628,
220,
220,
220,
825,
1255,
62,
3919,
62,
259,
4976,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
1255,
25235,
47,
1040,
423,
645,
15619,
13015,
13,
198,
20274,
13,
259,
4976,
3784,
271,
40613,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
1255,
62,
3919,
62,
259,
4976,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
5128,
62,
276,
3212,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
9052,
43015,
20560,
82,
1276,
407,
423,
28181,
13015,
13,
198,
26268,
43015,
20560,
13,
448,
5146,
3784,
271,
40613,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
5128,
62,
276,
3212,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
28883,
62,
77,
4147,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
6441,
286,
262,
8393,
18187,
45,
4147,
287,
262,
9058,
7841,
11,
1332,
290,
1767,
7841,
286,
257,
26304,
19667,
1276,
307,
262,
976,
355,
262,
24637,
286,
13760,
7763,
287,
262,
26304,
19667,
357,
5936,
3089,
355,
257,
32112,
1522,
16516,
19667,
8,
326,
389,
8393,
18187,
45,
4147,
13,
198,
40406,
7841,
3784,
24592,
7,
9288,
8,
3784,
24592,
7,
2618,
7841,
47505,
17440,
3784,
19738,
7,
38679,
3792,
35854,
5189,
7,
23002,
18187,
19667,
29720,
38679,
1722,
6030,
7,
23002,
18187,
19667,
8,
3784,
292,
7248,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
28883,
62,
77,
4147,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
1767,
62,
22915,
62,
49556,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
1767,
26410,
20567,
389,
25235,
47,
1040,
319,
24439,
287,
262,
1767,
286,
262,
26304,
19667,
13,
198,
2618,
7841,
13,
38679,
1722,
6030,
7,
12502,
737,
439,
32,
2733,
22446,
22915,
3784,
42813,
3237,
7,
2618,
26410,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
1767,
62,
22915,
62,
49556,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
9058,
62,
9288,
62,
392,
62,
2618,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
1332,
290,
1767,
3354,
286,
257,
9724,
1859,
19667,
1276,
307,
595,
73,
1563,
351,
1123,
584,
13,
198,
40406,
7841,
3784,
3849,
5458,
7,
9288,
8,
3784,
271,
40613,
3419,
290,
198,
40406,
7841,
3784,
3849,
5458,
7,
2618,
7841,
8,
3784,
271,
40613,
3419,
290,
198,
9288,
3784,
3849,
5458,
7,
2618,
7841,
8,
3784,
271,
40613,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
9058,
62,
9288,
62,
392,
62,
2618,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
12336,
62,
22915,
62,
49556,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
26304,
19667,
1276,
423,
262,
976,
1271,
286,
1767,
26410,
350,
1040,
355,
9052,
23907,
2977,
11,
290,
1123,
1767,
26410,
13727,
1276,
307,
11670,
351,
262,
11188,
9052,
43015,
357,
1525,
45203,
1502,
8,
287,
2099,
11,
15082,
8467,
11,
16216,
290,
49650,
13,
198,
2618,
26410,
3784,
7857,
3419,
28,
26268,
43015,
3784,
7857,
3419,
290,
198,
44015,
594,
90,
16,
492,
26268,
43015,
3784,
7857,
3419,
92,
3784,
1640,
3237,
7,
72,
930,
198,
220,
220,
220,
220,
220,
220,
220,
1767,
26410,
3784,
265,
7,
72,
737,
4906,
13,
1102,
23914,
2514,
7,
26268,
43015,
3784,
265,
7,
72,
737,
4906,
8,
290,
198,
220,
220,
220,
220,
220,
220,
220,
1767,
26410,
3784,
265,
7,
72,
737,
271,
35422,
1068,
796,
9052,
43015,
3784,
265,
7,
72,
737,
271,
35422,
1068,
290,
198,
220,
220,
220,
220,
220,
220,
220,
1767,
26410,
3784,
265,
7,
72,
737,
271,
40257,
796,
9052,
43015,
3784,
265,
7,
72,
737,
271,
40257,
290,
198,
220,
220,
220,
220,
220,
220,
220,
9052,
43015,
3784,
265,
7,
72,
737,
42813,
15205,
24705,
8467,
7,
2618,
26410,
3784,
265,
7,
72,
22305,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
12336,
62,
22915,
62,
49556,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
12336,
62,
26268,
62,
25641,
2977,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
26304,
19667,
1276,
423,
262,
976,
1271,
286,
9052,
43015,
20560,
82,
290,
9052,
23907,
2977,
11,
290,
484,
1276,
2872,
287,
2099,
11,
49650,
290,
15082,
8467,
13,
198,
26268,
43015,
20560,
3784,
7857,
3419,
28,
26268,
43015,
3784,
7857,
3419,
290,
198,
26268,
43015,
20560,
13,
4906,
28,
26268,
43015,
13,
4906,
290,
198,
26268,
43015,
20560,
13,
271,
40257,
28,
26268,
43015,
13,
271,
40257,
290,
198,
26268,
43015,
20560,
13,
21037,
28,
26268,
43015,
13,
21037,
290,
198,
26268,
43015,
20560,
13,
45828,
28,
26268,
43015,
13,
45828,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
12336,
62,
26268,
62,
25641,
2977,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
12336,
62,
20274,
62,
49556,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
26304,
19667,
1276,
423,
262,
976,
1271,
286,
1255,
25235,
47,
1040,
290,
9052,
23907,
2977,
11,
290,
484,
1276,
2872,
287,
2099,
11,
49650,
290,
15082,
8467,
13,
198,
20274,
3784,
7857,
3419,
28,
26268,
43015,
3784,
7857,
3419,
290,
198,
20274,
13,
4906,
28,
26268,
43015,
13,
4906,
290,
198,
20274,
13,
271,
40257,
28,
26268,
43015,
13,
271,
40257,
290,
198,
20274,
13,
21037,
28,
26268,
43015,
13,
21037,
290,
198,
20274,
13,
45828,
28,
26268,
43015,
13,
45828,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
12336,
62,
20274,
62,
49556,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
9052,
62,
45286,
62,
448,
5146,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
3237,
24641,
7407,
3212,
28181,
422,
9052,
43015,
25235,
47,
1040,
1276,
423,
6670,
1626,
262,
26304,
19667,
13,
198,
439,
23858,
276,
45,
4147,
3419,
3784,
42813,
3237,
7,
26268,
43015,
13,
448,
5146,
13,
16793,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
9052,
62,
45286,
62,
448,
5146,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
45835,
19667,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
45835,
19667,
526,
15931,
628,
198,
4871,
11052,
28348,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
11052,
28348,
526,
15931,
628,
220,
220,
220,
825,
645,
62,
259,
4976,
62,
276,
3212,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
11052,
28348,
743,
423,
645,
15619,
24641,
7407,
3212,
13,
198,
259,
4976,
3784,
271,
40613,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
645,
62,
259,
4976,
62,
276,
3212,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
11670,
62,
4906,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
2099,
286,
262,
1988,
11052,
22882,
2649,
1276,
17216,
284,
262,
2099,
286,
262,
11052,
28348,
13,
198,
8367,
13,
4906,
13,
1102,
23914,
2514,
7,
4906,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
11670,
62,
4906,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
27274,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
27274,
526,
15931,
628,
220,
220,
220,
825,
15814,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2025,
27274,
460,
691,
423,
3928,
602,
284,
5765,
34,
1386,
11,
36109,
11,
290,
38884,
13,
11399,
777,
3928,
602,
1276,
307,
13934,
13,
198,
8021,
41003,
13,
439,
6310,
1817,
3419,
3784,
1640,
3237,
7,
257,
930,
198,
220,
257,
13,
19522,
12915,
3784,
33327,
7,
4906,
8,
3784,
42813,
7,
944,
8,
15565,
198,
220,
357,
198,
220,
220,
220,
257,
13,
19522,
12915,
3784,
7857,
3419,
796,
362,
290,
198,
220,
220,
220,
1309,
8674,
12915,
1058,
14161,
796,
257,
13,
19522,
12915,
3784,
1092,
7,
4906,
796,
2116,
8,
287,
198,
220,
220,
220,
220,
220,
8674,
12915,
13,
10365,
5971,
13,
4871,
13,
38679,
3792,
35854,
5189,
7,
11041,
20448,
8,
393,
198,
220,
220,
220,
220,
220,
357,
8674,
12915,
13,
10365,
5971,
13,
4871,
13,
38679,
3792,
35854,
5189,
7,
9487,
8,
290,
407,
198,
220,
220,
220,
220,
220,
220,
220,
220,
8674,
12915,
13,
10365,
5971,
13,
4871,
13,
38679,
3792,
35854,
5189,
7,
25267,
15759,
4008,
198,
220,
220,
220,
220,
220,
1267,
198,
220,
1267,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
15814,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
1276,
62,
14150,
62,
3672,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2025,
27274,
1276,
423,
257,
1438,
13,
198,
3672,
3784,
1662,
40613,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
1276,
62,
14150,
62,
3672,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
34706,
434,
22882,
2649,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
34706,
434,
22882,
2649,
526,
15931,
628,
220,
220,
220,
825,
14833,
62,
16793,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
34706,
434,
21745,
286,
257,
34706,
434,
22882,
2649,
318,
257,
1611,
286,
37497,
31441,
13,
198,
2934,
1420,
434,
3784,
1640,
3237,
357,
24886,
13,
38679,
3792,
35854,
5189,
7,
23002,
1009,
31441,
4008,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
14833,
62,
16793,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
12380,
62,
68,
3639,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12380,
36,
3639,
286,
257,
34706,
434,
21745,
326,
389,
2950,
287,
257,
34706,
434,
326,
468,
281,
3917,
34706,
434,
12,
22882,
2649,
318,
257,
1611,
286,
35100,
357,
72,
13,
68,
1539,
262,
17839,
6805,
737,
198,
2934,
1420,
434,
3784,
1640,
3237,
357,
24886,
13,
2934,
1420,
276,
20180,
3784,
1640,
3237,
357,
38679,
3792,
35854,
5189,
7,
21950,
22305,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
12380,
62,
68,
3639,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
628,
198,
4871,
4347,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
4347,
526,
15931,
628,
220,
220,
220,
825,
2493,
62,
9460,
43068,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
13924,
13,
9460,
43068,
1276,
307,
24185,
13,
198,
9460,
43068,
796,
19015,
43068,
35854,
3712,
785,
1930,
578,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
2493,
62,
9460,
43068,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
4277,
62,
8367,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
4277,
11395,
329,
2493,
2314,
307,
7368,
618,
262,
2099,
286,
262,
4347,
318,
281,
26491,
13,
198,
4906,
13,
38679,
3792,
35854,
5189,
7,
39317,
8,
15565,
4277,
11395,
3784,
271,
40613,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
4277,
62,
8367,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
32652,
4817,
62,
18403,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
3237,
30824,
389,
6898,
416,
281,
14711,
1686,
4817,
9487,
7483,
13,
198,
18403,
796,
32652,
4817,
9487,
7483,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
32652,
4817,
62,
18403,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
41279,
82,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
28532,
26939,
329,
4347,
3712,
14,
41279,
198,
20274,
796,
357,
361,
318,
3103,
31761,
515,
788,
4096,
37374,
3419,
2073,
4096,
15946,
1384,
3419,
45762,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
44909,
1522,
9487,
13350,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
41279,
82,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
651,
62,
35827,
82,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
28532,
26939,
329,
4347,
3712,
14,
35827,
198,
20274,
796,
357,
361,
318,
3103,
31761,
515,
788,
4096,
15946,
1384,
3419,
2073,
4096,
37374,
3419,
45762,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
44909,
1522,
9487,
13350,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
35827,
82,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
4096,
62,
41279,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
6441,
286,
262,
5621,
286,
4225,
32186,
6939,
416,
262,
2099,
286,
262,
4347,
290,
663,
2208,
19199,
11,
393,
3264,
262,
2099,
286,
262,
4347,
611,
262,
4347,
318,
25683,
416,
281,
26491,
13,
198,
20274,
796,
357,
361,
2099,
13,
38679,
3792,
35854,
5189,
7,
39317,
8,
198,
8524,
2099,
13,
38679,
1722,
6030,
7,
39317,
8,
3784,
292,
7248,
3419,
198,
17772,
2099,
13,
38679,
1722,
6030,
7,
9487,
7483,
737,
439,
15633,
1143,
9492,
32186,
3419,
198,
32088,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
44909,
1522,
9487,
13350,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
4096,
62,
41279,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
4096,
62,
35827,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
6441,
286,
262,
5621,
286,
4225,
32186,
973,
416,
262,
2099,
286,
262,
4347,
290,
663,
2208,
19199,
13,
198,
20274,
796,
357,
2099,
13,
38679,
1722,
6030,
7,
9487,
7483,
737,
439,
38052,
9492,
32186,
3419,
1267,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
44909,
1522,
9487,
13350,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
4096,
62,
35827,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
27995,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
27995,
526,
15931,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
825,
1729,
62,
11990,
62,
437,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
1729,
12,
11990,
886,
286,
281,
27995,
318,
25683,
416,
257,
5016,
13,
198,
4164,
330,
31172,
12915,
3419,
3784,
1662,
40613,
3419,
290,
1138,
330,
31172,
12915,
22446,
4906,
13,
38679,
3792,
35854,
5189,
7,
9487,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
1729,
62,
11990,
62,
437,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
318,
62,
39491,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2025,
27995,
318,
13934,
11,
1312,
13,
68,
1539,
340,
468,
691,
734,
2888,
12915,
82,
13,
198,
19522,
12915,
3784,
7857,
3419,
796,
362,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
318,
62,
39491,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
651,
62,
301,
567,
8690,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
31240,
326,
14582,
257,
1138,
330,
31172,
832,
428,
7552,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
301,
567,
8690,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
651,
62,
301,
567,
8690,
62,
437,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
7552,
886,
326,
318,
25683,
416,
257,
31240,
357,
292,
6886,
284,
257,
1138,
330,
31172,
21387,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
301,
567,
8690,
62,
437,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
318,
62,
35827,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
318,
37374,
3419,
318,
2081,
611,
262,
6898,
886,
468,
257,
15082,
8467,
351,
262,
2793,
5421,
286,
352,
13,
198,
20274,
796,
357,
11990,
12915,
13,
21037,
49646,
3419,
796,
352,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
11869,
1095,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
318,
62,
35827,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
651,
62,
4164,
330,
31172,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
1138,
330,
31172,
3419,
5860,
262,
1138,
330,
31172,
326,
318,
852,
7083,
357,
292,
6886,
284,
262,
16610,
31240,
737,
198,
20274,
796,
357,
4164,
330,
31172,
12915,
22446,
4906,
13,
38679,
1722,
6030,
7,
9487,
4008,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
11869,
1095,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
4164,
330,
31172,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
1138,
330,
31172,
62,
437,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
1138,
330,
31172,
12915,
3419,
5860,
262,
14161,
326,
318,
25683,
416,
257,
1138,
330,
31172,
357,
292,
6886,
284,
257,
31240,
737,
198,
20274,
796,
357,
19522,
12915,
3784,
260,
752,
7,
79,
930,
6898,
12915,
3784,
42813,
7,
79,
13,
38679,
1722,
6030,
7,
11627,
3004,
12915,
22305,
3784,
1092,
7,
7942,
4008,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
11869,
1095,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
1138,
330,
31172,
62,
437,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
27995,
12915,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
27995,
12915,
526,
15931,
628,
220,
220,
220,
825,
15082,
8467,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
15082,
8467,
286,
27995,
12915,
318,
657,
492,
16,
393,
352,
13,
198,
7,
21037,
49646,
3419,
796,
657,
393,
2793,
49646,
3419,
796,
352,
8,
290,
6727,
49646,
3419,
796,
352,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
15082,
8467,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
46500,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
46500,
286,
281,
27995,
12915,
318,
24185,
13,
198,
944,
13,
9460,
43068,
796,
19015,
43068,
35854,
3712,
785,
1930,
578,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
46500,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
37322,
341,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
37322,
341,
526,
15931,
628,
198,
4871,
26117,
15235,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
26117,
15235,
526,
15931,
628,
628,
198,
4871,
5016,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
5016,
526,
15931,
628,
220,
220,
220,
825,
14513,
62,
4871,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
10049,
281,
4075,
5016,
743,
898,
797,
11755,
290,
423,
257,
1398,
7483,
25267,
15759,
13,
198,
1662,
318,
13739,
15565,
357,
11990,
3041,
4516,
3784,
271,
40613,
3419,
290,
1398,
7483,
25267,
15759,
796,
9242,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
14513,
62,
4871,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
2251,
62,
11990,
62,
27184,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
1438,
28,
14202,
11,
11507,
36690,
28,
14202,
11,
11507,
31431,
28,
14202,
11,
1441,
6030,
28,
14202,
198,
220,
220,
220,
15179,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
16719,
274,
281,
4905,
351,
262,
7368,
1438,
11,
11507,
3891,
11,
11507,
3858,
11,
290,
1441,
2099,
357,
273,
9242,
8,
355,
281,
6898,
4905,
286,
428,
1398,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2251,
62,
11990,
62,
27184,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
2302,
5736,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
28532,
26939,
329,
5016,
3712,
14,
2302,
3004,
1058,
27995,
198,
20274,
796,
357,
11627,
3004,
13,
439,
6310,
1817,
3419,
3784,
19738,
7,
2302,
930,
198,
220,
1309,
886,
31431,
1058,
45835,
7,
9487,
7483,
8,
796,
1070,
13,
19522,
12915,
3784,
33327,
7,
4906,
13,
38679,
1722,
6030,
7,
9487,
7483,
4008,
287,
198,
220,
886,
31431,
3784,
42813,
7,
944,
8,
393,
886,
31431,
13,
439,
42969,
3419,
3784,
42813,
7,
944,
8,
15306,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
44909,
1522,
9487,
13350,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
2302,
5736,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
651,
62,
16668,
62,
37724,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
28532,
26939,
329,
5016,
3712,
14,
16668,
9487,
1058,
5016,
198,
20274,
796,
357,
944,
13,
24622,
3419,
3784,
19738,
7,
38679,
3792,
35854,
5189,
7,
9487,
4008,
3784,
33327,
7,
38679,
1722,
6030,
7,
9487,
4008,
3784,
292,
7248,
28955,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
44909,
1522,
9487,
13350,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
16668,
9487,
628,
198,
4871,
20181,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
20181,
526,
15931,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
825,
749,
62,
505,
62,
46571,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1858,
743,
307,
379,
749,
530,
20181,
329,
257,
1813,
27356,
286,
10407,
15820,
1850,
9487,
7483,
357,
292,
4870,
286,
262,
20181,
8,
290,
38483,
38816,
357,
292,
20855,
286,
262,
20181,
737,
198,
16684,
2649,
1279,
29,
9242,
15565,
4808,
6,
22866,
4458,
11990,
25267,
15759,
3784,
19738,
7,
16684,
2649,
28,
944,
13,
16684,
2649,
8,
3784,
7857,
3419,
796,
352,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
749,
62,
505,
62,
46571,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
10007,
62,
15699,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
257,
20181,
468,
257,
20855,
38483,
38816,
11,
788,
340,
1276,
423,
262,
976,
1271,
286,
6898,
48944,
355,
663,
20855,
13,
383,
20181,
40117,
1276,
635,
366,
15699,
1,
262,
38483,
36301,
40117,
11,
475,
262,
2748,
5359,
329,
428,
12336,
389,
407,
8766,
1143,
13,
198,
16684,
2649,
1279,
29,
9242,
15565,
6898,
36301,
3784,
7857,
3419,
796,
20855,
13,
11990,
36301,
3784,
7857,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
10007,
62,
15699,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
3895,
62,
1659,
62,
22866,
62,
4871,
7483,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
20855,
38483,
38816,
1276,
307,
257,
3895,
357,
39363,
19552,
8,
286,
262,
4732,
10407,
15820,
1850,
9487,
7483,
286,
262,
20181,
13,
198,
62,
6,
22866,
4458,
30053,
3784,
42813,
7,
16684,
2649,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
3895,
62,
1659,
62,
22866,
62,
4871,
7483,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
22866,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
20181,
326,
318,
3264,
6898,
355,
257,
28376,
9487,
7483,
857,
407,
423,
257,
4732,
13,
15323,
11,
284,
5004,
262,
4732,
286,
257,
20181,
11,
1064,
262,
717,
10407,
15820,
1850,
9487,
7483,
4251,
416,
1708,
262,
6333,
286,
4870,
6958,
422,
262,
20181,
11,
611,
597,
13,
1002,
612,
318,
884,
257,
10407,
15820,
1850,
9487,
7483,
11,
788,
340,
318,
262,
4732,
11,
4556,
340,
318,
2346,
257,
20181,
351,
257,
1729,
12,
28920,
4732,
11,
287,
543,
1339,
326,
318,
635,
262,
4732,
329,
262,
2656,
20181,
13,
198,
20274,
796,
357,
361,
46282,
9487,
1279,
29,
9242,
788,
198,
220,
220,
220,
9242,
198,
17772,
198,
220,
220,
220,
1309,
275,
25,
25267,
15820,
1850,
9487,
7483,
796,
2116,
13,
20709,
15820,
1850,
9487,
7483,
7,
944,
13,
18403,
8,
287,
198,
220,
220,
220,
611,
275,
13,
38679,
3792,
35854,
5189,
7,
25267,
15759,
8,
290,
275,
13,
38679,
1722,
6030,
7,
25267,
15759,
737,
62,
6,
22866,
6,
1279,
29,
9242,
788,
198,
220,
220,
220,
220,
220,
220,
220,
275,
13,
38679,
1722,
6030,
7,
25267,
15759,
737,
62,
6,
22866,
6,
198,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
275,
198,
220,
220,
220,
45762,
198,
32088,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
17227,
25267,
15759,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
22866,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
6598,
1850,
62,
4871,
7483,
7,
944,
11,
422,
62,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
717,
10407,
15820,
1850,
9487,
7483,
4251,
416,
1708,
262,
6333,
286,
4870,
6958,
422,
262,
20181,
11,
611,
597,
13,
198,
361,
422,
13,
38679,
3792,
35854,
5189,
7,
25267,
15820,
1850,
9487,
7483,
8,
788,
198,
220,
220,
220,
422,
13,
38679,
1722,
6030,
7,
25267,
15820,
1850,
9487,
7483,
8,
198,
17772,
611,
422,
13,
18403,
796,
9242,
788,
198,
220,
220,
220,
9242,
198,
17772,
198,
220,
220,
220,
2116,
13,
20709,
15820,
1850,
9487,
7483,
7,
6738,
13,
18403,
8,
198,
32088,
198,
32088,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
17227,
25267,
15759,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
6598,
1850,
62,
4871,
7483,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
5128,
62,
17143,
7307,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
287,
290,
287,
448,
6898,
48944,
286,
262,
20181,
13,
198,
20274,
796,
357,
11990,
36301,
3784,
19738,
7,
37295,
28,
36301,
35,
4154,
35854,
3712,
62,
6,
259,
6,
393,
4571,
28,
36301,
35,
4154,
35854,
3712,
259,
448,
4008,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
17227,
25267,
15759,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
5128,
62,
17143,
7307,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
5072,
62,
17143,
7307,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
503,
11,
287,
448,
290,
1441,
6898,
48944,
13,
198,
20274,
796,
357,
11990,
36301,
3784,
19738,
7,
37295,
28,
36301,
35,
4154,
35854,
3712,
448,
393,
4571,
28,
36301,
35,
4154,
35854,
3712,
259,
448,
393,
4571,
28,
36301,
35,
4154,
35854,
3712,
7783,
4008,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
17227,
25267,
15759,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
5072,
62,
17143,
7307,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
520,
567,
8690,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
520,
567,
8690,
526,
15931,
628,
220,
220,
220,
2488,
26745,
628,
220,
220,
220,
825,
13934,
62,
562,
1733,
602,
62,
8807,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1273,
567,
13567,
743,
691,
8277,
287,
13934,
15814,
13,
198,
11990,
33682,
13,
562,
41003,
3784,
1640,
3237,
7,
19522,
12915,
3784,
7857,
3419,
28,
17,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
13934,
62,
562,
1733,
602,
62,
8807,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2276,
1096,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
520,
567,
8690,
743,
691,
2276,
1096,
393,
39868,
1194,
520,
567,
8690,
13,
198,
439,
42969,
3419,
3784,
1640,
3237,
7,
38679,
3792,
35854,
5189,
7,
1273,
567,
8690,
4008,
198,
392,
5016,
7483,
13,
439,
6310,
1817,
3419,
3784,
1640,
3237,
7,
66,
930,
269,
13,
439,
42969,
3419,
3784,
1069,
1023,
7,
38679,
3792,
35854,
5189,
7,
1273,
567,
8690,
4008,
15565,
269,
13,
38679,
3792,
35854,
5189,
7,
1273,
567,
8690,
4008,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
2276,
1096,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
1438,
62,
1662,
62,
565,
1077,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1273,
567,
8690,
3891,
815,
407,
19122,
351,
21179,
3891,
329,
262,
7083,
2746,
5002,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
1438,
62,
1662,
62,
565,
1077,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
8112,
62,
437,
62,
15605,
1056,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
8496,
257,
31240,
447,
247,
82,
3119,
318,
281,
8112,
886,
329,
281,
8112,
584,
621,
257,
1611,
286,
7552,
11,
290,
262,
584,
886,
318,
407,
257,
31240,
11,
262,
584,
886,
1276,
307,
6898,
416,
262,
8112,
2346,
13,
198,
11990,
33682,
198,
3784,
19738,
7,
562,
41003,
3784,
1662,
40613,
3419,
290,
407,
8112,
13,
38679,
3792,
35854,
5189,
7,
11627,
3004,
8,
290,
407,
2099,
13,
38679,
3792,
35854,
5189,
7,
1273,
567,
8690,
4008,
198,
3784,
1640,
3237,
7,
10365,
5971,
13,
18403,
796,
8112,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
8112,
62,
437,
62,
15605,
1056,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2779,
62,
26745,
62,
45828,
62,
7784,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
6727,
5421,
286,
2779,
12,
48310,
318,
3446,
352,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2779,
62,
26745,
62,
45828,
62,
7784,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2779,
62,
26745,
62,
47945,
8467,
62,
29762,
62,
2302,
3004,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
198,
220,
220,
220,
15179,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
257,
520,
567,
8690,
14582,
691,
530,
1138,
330,
31172,
11,
262,
15082,
8467,
286,
262,
11188,
2779,
12,
26745,
2236,
307,
352,
492,
16,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2779,
62,
26745,
62,
47945,
8467,
62,
29762,
62,
2302,
3004,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2779,
62,
26745,
62,
47945,
8467,
62,
48101,
62,
2302,
3004,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
198,
220,
220,
220,
15179,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1532,
257,
520,
567,
8690,
14582,
517,
621,
530,
1138,
330,
31172,
11,
262,
15082,
8467,
286,
262,
11188,
2779,
12,
48310,
2236,
307,
685,
15,
492,
16,
4083,
1629,
597,
966,
287,
640,
11,
691,
530,
286,
777,
2779,
12,
48310,
460,
3994,
257,
1138,
330,
31172,
4554,
1141,
19124,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2779,
62,
26745,
62,
47945,
8467,
62,
48101,
62,
2302,
3004,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2251,
62,
2302,
3004,
7,
944,
11,
1138,
330,
31172,
28,
14202,
11,
318,
37374,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
16719,
274,
257,
7,
77,
8,
357,
35827,
8,
7552,
286,
262,
7368,
1138,
330,
31172,
351,
428,
31240,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
2251,
62,
2302,
3004,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
2251,
62,
4749,
7,
944,
11,
4067,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
16719,
274,
281,
7196,
351,
262,
7368,
4067,
329,
428,
31240,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
2251,
62,
4749,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
2251,
62,
4749,
7,
944,
11,
5794,
28,
14202,
11,
2695,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
16719,
274,
281,
7196,
351,
262,
7368,
5794,
290,
2695,
329,
428,
31240,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
2251,
62,
4749,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
651,
62,
439,
62,
2302,
1631,
62,
4164,
330,
28958,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
477,
262,
1138,
330,
28958,
7083,
416,
428,
31240,
11,
1390,
262,
1138,
330,
28958,
7083,
416,
663,
23510,
567,
13567,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
439,
62,
2302,
1631,
62,
4164,
330,
28958,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
46758,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
1459,
6770,
357,
36,
7295,
10552,
8,
286,
428,
31240,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
46758,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
651,
62,
2302,
1631,
62,
4164,
330,
28958,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
1138,
330,
28958,
7083,
416,
428,
31240,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
2302,
1631,
62,
4164,
330,
28958,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
2539,
4775,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
36618,
21179,
329,
428,
31240,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
2539,
4775,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
651,
62,
2539,
4775,
7,
944,
11,
1957,
1096,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
21179,
329,
428,
31240,
11,
36618,
611,
8203,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
2539,
4775,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
7268,
62,
13317,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
7268,
37046,
5860,
262,
11706,
7034,
3264,
393,
20762,
7268,
428,
31240,
13,
198,
20274,
796,
357,
944,
13,
14933,
10223,
13,
38679,
1722,
6030,
7,
27813,
737,
38301,
37046,
28955,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
11869,
1095,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
7268,
62,
13317,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
13317,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
31240,
1276,
307,
7763,
11,
3264,
393,
20762,
11,
287,
257,
7034,
13,
198,
20274,
796,
357,
944,
13,
38301,
37046,
28955,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
11869,
1095,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
13317,
7,
23029,
407,
1865,
9177,
4943,
628,
628,
198,
4871,
35100,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
35100,
526,
15931,
628,
220,
220,
220,
825,
645,
62,
77,
7287,
62,
4871,
13350,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
35100,
2314,
16343,
5016,
13350,
13,
198,
77,
7287,
9487,
7483,
3784,
271,
40613,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
645,
62,
77,
7287,
62,
4871,
13350,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
645,
62,
8002,
1886,
62,
68,
3639,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
35100,
28376,
287,
257,
5016,
2314,
423,
597,
25555,
4847,
13,
198,
77,
37761,
9487,
1279,
29,
9242,
15565,
25555,
20180,
3784,
271,
40613,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
645,
62,
8002,
1886,
62,
68,
3639,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2251,
62,
11990,
62,
4871,
7,
944,
11,
1438,
28,
14202,
11,
318,
23839,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
16719,
274,
257,
7,
77,
8,
357,
397,
8709,
8,
1398,
351,
262,
7368,
1438,
355,
257,
25555,
5002,
286,
428,
7515,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2251,
62,
11990,
62,
4871,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2251,
62,
11990,
62,
268,
6975,
341,
7,
944,
11,
1438,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
16719,
274,
257,
27056,
341,
351,
262,
7368,
1438,
355,
257,
25555,
5002,
286,
428,
7515,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2251,
62,
11990,
62,
268,
6975,
341,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2251,
62,
11990,
62,
39994,
7,
944,
11,
1438,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
16719,
274,
281,
7071,
351,
262,
7368,
1438,
355,
257,
25555,
5002,
286,
428,
7515,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2251,
62,
11990,
62,
39994,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2251,
62,
11990,
62,
19795,
1800,
62,
4906,
7,
944,
11,
1438,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
16719,
274,
257,
20049,
2099,
351,
262,
7368,
1438,
355,
257,
25555,
5002,
286,
428,
7515,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2251,
62,
11990,
62,
19795,
1800,
62,
4906,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
41279,
82,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
28532,
26939,
329,
35100,
3712,
14,
41279,
198,
20274,
796,
357,
1616,
220,
197,
2442,
1058,
5345,
7,
39317,
8,
796,
477,
15633,
1143,
9492,
32186,
22784,
198,
220,
220,
220,
220,
220,
220,
220,
20060,
9487,
13350,
1058,
5345,
7,
9487,
7483,
8,
796,
220,
2116,
13,
5305,
1634,
13,
5305,
2890,
9487,
7483,
3784,
24592,
7,
944,
13,
439,
42969,
3419,
3784,
33327,
7,
5305,
1634,
13,
5305,
2890,
9487,
7483,
4008,
3784,
292,
7248,
22784,
198,
220,
220,
220,
220,
220,
220,
220,
477,
15633,
2890,
9487,
13350,
1058,
5345,
7,
9487,
7483,
8,
796,
20060,
9487,
13350,
3784,
24592,
7,
5305,
2890,
9487,
13350,
13,
439,
42969,
28955,
3784,
292,
7248,
22784,
198,
220,
220,
220,
220,
220,
220,
220,
20060,
9487,
7483,
9492,
32186,
1058,
5345,
7,
39317,
8,
796,
477,
15633,
2890,
9487,
13350,
3784,
2676,
378,
7,
66,
26,
374,
979,
1058,
5345,
7,
39317,
8,
796,
5345,
90,
92,
930,
374,
979,
3784,
24592,
7,
66,
13,
439,
15633,
1143,
9492,
32186,
28955,
828,
198,
220,
220,
220,
220,
220,
220,
220,
14090,
1058,
5345,
7,
13924,
8,
796,
2116,
13,
11990,
13924,
3784,
24592,
7,
439,
42969,
3419,
3784,
33327,
7,
11990,
13924,
4008,
3784,
292,
7248,
22784,
198,
220,
220,
220,
220,
220,
220,
220,
2810,
3886,
47,
2096,
1058,
5345,
7,
39317,
8,
796,
14090,
13,
41279,
3784,
292,
7248,
3419,
198,
259,
220,
220,
220,
220,
6106,
3784,
24592,
7,
5305,
2890,
9487,
7483,
9492,
32186,
8,
4613,
24592,
7,
41279,
3886,
47,
2096,
8,
3784,
292,
7248,
28955,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
44909,
1522,
9487,
13350,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
41279,
82,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
651,
62,
35827,
82,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
28532,
26939,
329,
35100,
3712,
14,
35827,
198,
20274,
796,
357,
1616,
220,
197,
84,
271,
1058,
5345,
7,
39317,
8,
796,
477,
38052,
9492,
32186,
22784,
198,
220,
220,
220,
220,
220,
220,
220,
20060,
9487,
13350,
1058,
5345,
7,
9487,
7483,
8,
796,
2116,
13,
5305,
1634,
13,
5305,
2890,
9487,
7483,
3784,
24592,
7,
944,
13,
439,
42969,
3419,
3784,
33327,
7,
5305,
1634,
13,
5305,
2890,
9487,
7483,
4008,
3784,
292,
7248,
22784,
198,
220,
220,
220,
220,
220,
220,
220,
477,
15633,
2890,
9487,
13350,
1058,
5345,
7,
9487,
7483,
8,
796,
20060,
9487,
13350,
3784,
24592,
7,
5305,
2890,
9487,
13350,
13,
439,
42969,
28955,
3784,
292,
7248,
22784,
198,
220,
220,
220,
220,
220,
220,
220,
20060,
9487,
7483,
9492,
32186,
1058,
5345,
7,
39317,
8,
796,
477,
15633,
2890,
9487,
13350,
3784,
2676,
378,
7,
66,
26,
374,
979,
1058,
5345,
7,
39317,
8,
796,
5345,
90,
92,
930,
374,
979,
3784,
24592,
7,
66,
13,
439,
38052,
9492,
32186,
28955,
828,
198,
220,
220,
220,
220,
220,
220,
220,
14090,
1058,
5345,
7,
13924,
8,
796,
2116,
13,
11990,
13924,
3784,
24592,
7,
439,
42969,
3419,
3784,
33327,
7,
11990,
13924,
4008,
3784,
292,
7248,
22784,
198,
220,
220,
220,
220,
220,
220,
220,
973,
3886,
47,
2096,
1058,
5345,
7,
39317,
8,
796,
14090,
13,
35827,
3784,
292,
7248,
3419,
198,
259,
197,
220,
220,
220,
334,
271,
3784,
24592,
7,
5305,
2890,
9487,
7483,
9492,
32186,
8,
3784,
24592,
7,
1484,
3886,
47,
2096,
8,
3784,
292,
7248,
3419,
198,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
44909,
1522,
9487,
13350,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
651,
62,
35827,
82,
7,
23029,
407,
1865,
9177,
4943,
628,
628,
198,
4871,
24641,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
24641,
526,
15931,
628,
220,
220,
220,
825,
5415,
62,
505,
62,
17143,
2357,
62,
17440,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
25139,
2357,
351,
4571,
584,
621,
287,
448,
1276,
423,
3446,
530,
24641,
36301,
19667,
287,
281,
24641,
13,
198,
11990,
36301,
3784,
1640,
3237,
7,
79,
930,
198,
220,
220,
279,
13,
37295,
1279,
29,
25139,
2357,
35,
4154,
35854,
3712,
259,
448,
15565,
10139,
3784,
19738,
7,
198,
220,
220,
220,
220,
220,
220,
267,
565,
3792,
35854,
5189,
7,
16516,
36301,
19667,
8,
290,
267,
565,
1722,
6030,
7,
16516,
36301,
19667,
737,
17143,
2357,
796,
279,
8,
3784,
7857,
3419,
28,
352,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
5415,
62,
505,
62,
17143,
2357,
62,
17440,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
5415,
62,
11545,
62,
17143,
2357,
62,
77,
4147,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
25139,
2357,
351,
4571,
287,
448,
1276,
423,
3446,
734,
24641,
36301,
45,
4147,
287,
281,
24641,
11,
379,
749,
530,
351,
15619,
24641,
7407,
3212,
290,
379,
749,
530,
351,
28181,
24641,
7407,
3212,
13,
198,
11990,
36301,
3784,
1640,
3237,
7,
79,
930,
198,
79,
13,
37295,
796,
25139,
2357,
35,
4154,
35854,
3712,
259,
448,
15565,
198,
1616,
3917,
45,
4147,
1058,
5345,
7,
16516,
19667,
8,
796,
10139,
3784,
19738,
7,
198,
220,
220,
220,
220,
220,
220,
267,
565,
3792,
35854,
5189,
7,
16516,
36301,
19667,
8,
290,
267,
565,
1722,
6030,
7,
16516,
36301,
19667,
737,
17143,
2357,
796,
279,
8,
287,
198,
220,
3917,
45,
4147,
3784,
7857,
3419,
28,
17,
290,
198,
220,
3917,
45,
4147,
3784,
19738,
7,
259,
4976,
3784,
1662,
40613,
28955,
3784,
7857,
3419,
27,
28,
16,
290,
198,
220,
3917,
45,
4147,
3784,
19738,
7,
448,
5146,
3784,
1662,
40613,
28955,
3784,
7857,
3419,
27,
28,
16,
198,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
5415,
62,
11545,
62,
17143,
2357,
62,
77,
4147,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
1812,
37573,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
1812,
37573,
526,
15931,
628,
220,
220,
220,
825,
4637,
62,
13033,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
4637,
2173,
286,
257,
1812,
37573,
389,
49693,
463,
455,
689,
286,
1611,
5726,
966,
393,
8420,
966,
13,
198,
38659,
12727,
3784,
1640,
3237,
357,
11031,
796,
49693,
463,
455,
378,
35854,
3712,
13000,
12727,
393,
1611,
796,
49693,
463,
455,
378,
35854,
3712,
37023,
12727,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
4637,
62,
13033,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
1398,
7483,
62,
22866,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
5016,
7483,
4732,
286,
257,
1812,
37573,
2314,
307,
281,
26491,
13,
198,
62,
6,
22866,
6,
1279,
29,
9242,
15565,
407,
4808,
6,
22866,
4458,
38679,
3792,
35854,
5189,
7,
39317,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
1398,
7483,
62,
22866,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2446,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
1812,
37573,
355,
262,
2446,
329,
257,
38483,
38816,
2314,
423,
5726,
14,
37023,
4637,
2173,
13,
198,
16684,
2649,
1279,
29,
9242,
15565,
4637,
12727,
3784,
271,
40613,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
2446,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
4732,
62,
4871,
7483,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
4732,
5016,
7483,
286,
262,
2446,
1812,
37573,
286,
257,
38483,
38816,
1276,
307,
262,
5016,
7483,
326,
12216,
262,
38483,
38816,
13,
198,
16684,
2649,
1279,
29,
9242,
15565,
357,
4808,
6,
22866,
6,
1279,
29,
9242,
290,
20855,
13,
27594,
870,
9487,
7483,
3784,
1069,
1023,
7,
66,
930,
269,
796,
4808,
6,
22866,
6,
4008,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
4732,
62,
4871,
7483,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
300,
6888,
7,
944,
11,
264,
16,
28,
14202,
11,
264,
17,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
4905,
406,
8141,
7,
82,
16,
11,
82,
17,
8,
5860,
262,
17718,
326,
318,
262,
1551,
2219,
198,
220,
220,
220,
220,
220,
220,
220,
31836,
286,
24417,
1063,
264,
16,
290,
264,
17,
11,
1912,
319,
262,
1812,
37573,
37149,
18911,
13,
198,
20274,
796,
357,
361,
31836,
7,
82,
16,
11,
264,
17,
8,
788,
198,
220,
220,
220,
264,
17,
13,
34924,
198,
17772,
198,
220,
220,
220,
220,
220,
220,
220,
611,
31836,
7,
82,
17,
11,
264,
16,
8,
788,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
264,
16,
13,
34924,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
406,
8141,
7,
82,
16,
13,
34924,
13,
5219,
11,
264,
17,
13,
34924,
13,
5219,
8,
198,
220,
220,
220,
220,
220,
220,
220,
45762,
198,
32088,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9012,
49999,
1127,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
300,
6888,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
31836,
7,
944,
11,
264,
16,
28,
14202,
11,
264,
17,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
12405,
31836,
7,
82,
16,
11,
264,
17,
8,
8794,
1771,
4643,
16886,
264,
17,
318,
281,
31836,
286,
4643,
16886,
264,
16,
13,
198,
20274,
796,
357,
361,
357,
82,
17,
796,
264,
16,
8,
788,
198,
220,
220,
220,
220,
220,
220,
220,
2081,
198,
17772,
198,
220,
220,
220,
220,
220,
220,
220,
611,
264,
16,
13,
34924,
13,
5219,
37573,
3784,
1662,
40613,
3419,
788,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2081,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
264,
17,
13,
34924,
13,
5219,
37573,
3784,
1662,
40613,
3419,
788,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3991,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
31836,
7,
82,
16,
11,
264,
17,
13,
34924,
13,
5219,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
45762,
198,
220,
220,
220,
220,
220,
220,
220,
220,
45762,
198,
32088,
220,
1267,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9012,
49999,
1127,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
31836,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
300,
6888,
62,
5219,
7,
944,
11,
410,
16,
28,
14202,
11,
410,
17,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
1212,
10361,
25439,
37752,
318,
588,
262,
406,
8141,
11,
2845,
326,
340,
5860,
262,
16936,
24185,
1812,
326,
4909,
1111,
5128,
24417,
1063,
13,
198,
20274,
796,
357,
361,
410,
17,
13,
38679,
3792,
6030,
5189,
7,
9012,
8,
290,
31836,
7,
85,
16,
11,
410,
17,
8,
788,
198,
220,
220,
220,
220,
220,
220,
220,
410,
17,
13,
38679,
1722,
6030,
7,
9012,
8,
198,
17772,
611,
410,
16,
13,
38679,
3792,
6030,
5189,
7,
9012,
8,
290,
31836,
7,
85,
17,
11,
410,
16,
8,
788,
198,
220,
220,
220,
220,
220,
220,
220,
410,
16,
13,
38679,
1722,
6030,
7,
9012,
8,
198,
17772,
611,
357,
85,
16,
13,
34924,
13,
5219,
3784,
271,
40613,
3419,
393,
410,
17,
13,
34924,
13,
5219,
3784,
271,
40613,
28955,
788,
198,
220,
220,
220,
220,
220,
220,
220,
9242,
13,
38679,
1722,
6030,
7,
9012,
8,
198,
17772,
406,
8141,
9012,
7,
85,
16,
13,
34924,
13,
5219,
11,
410,
17,
13,
34924,
13,
5219,
8,
198,
32088,
45762,
45762,
8,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
9012,
49999,
1127,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
300,
6888,
62,
5219,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
8670,
18251,
25267,
15759,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
8670,
18251,
25267,
15759,
526,
15931,
628,
198,
4871,
19081,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
19081,
526,
15931,
628,
220,
220,
220,
825,
5387,
62,
301,
5620,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
5387,
4645,
286,
257,
19081,
357,
361,
5447,
8,
10874,
9944,
286,
3354,
286,
2099,
19081,
13,
198,
3911,
3784,
1640,
3237,
7,
38679,
3792,
35854,
5189,
7,
19667,
4008,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
5387,
62,
301,
5620,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
2251,
62,
32560,
62,
6978,
7,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
11,
198,
220,
220,
220,
220,
220,
220,
220,
886,
16,
3792,
30575,
328,
540,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
886,
16,
46384,
43068,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
886,
16,
5376,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
886,
16,
31426,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
886,
16,
52,
2848,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
886,
16,
19667,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
886,
17,
3792,
30575,
328,
540,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
886,
17,
46384,
43068,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
886,
17,
5376,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
886,
17,
31426,
28,
14202,
11,
198,
220,
220,
220,
220,
220,
220,
220,
886,
17,
52,
2848,
28,
14202,
11,
198,
220,
220,
220,
15179,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
16719,
274,
257,
357,
39491,
8,
6946,
3108,
1022,
428,
10139,
290,
262,
7368,
198,
220,
220,
220,
220,
220,
220,
220,
584,
10139,
11,
351,
262,
7368,
20436,
5738,
11,
13262,
602,
11,
3891,
11,
198,
220,
220,
220,
220,
220,
220,
220,
2793,
22303,
11,
290,
6727,
22303,
11,
290,
6898,
416,
428,
10139,
338,
16936,
5301,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2251,
62,
32560,
62,
6978,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
651,
62,
32560,
62,
6978,
82,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
9781,
5034,
1158,
262,
6946,
13532,
287,
543,
428,
10139,
318,
2950,
526,
15931,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
651,
62,
32560,
62,
6978,
82,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
20497,
9012,
37573,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
20497,
9012,
37573,
526,
15931,
628,
220,
220,
220,
825,
2769,
62,
273,
62,
1477,
12154,
62,
23569,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
19703,
4668,
9012,
49999,
1127,
2314,
423,
2769,
393,
19337,
2106,
49693,
463,
455,
689,
13,
198,
36996,
3784,
1640,
3237,
357,
81,
930,
374,
13,
7266,
332,
16886,
3784,
1640,
3237,
357,
85,
930,
410,
13,
38679,
3792,
35854,
5189,
7,
47,
325,
463,
455,
378,
8,
15565,
198,
19510,
85,
13,
38679,
1722,
6030,
7,
47,
325,
463,
455,
378,
737,
11031,
1279,
29,
220,
49693,
463,
455,
378,
35854,
3712,
22089,
18122,
8,
290,
357,
85,
13,
38679,
1722,
6030,
7,
47,
325,
463,
455,
378,
737,
11031,
1279,
29,
49693,
463,
455,
378,
35854,
3712,
1477,
12154,
18122,
35514,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2769,
62,
273,
62,
1477,
12154,
62,
23569,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
5726,
62,
37023,
62,
4598,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
2585,
286,
257,
20497,
9012,
37573,
2314,
423,
5726,
11,
8420,
11,
393,
466,
3842,
10407,
615,
12706,
13,
198,
36996,
3784,
1640,
3237,
7,
81,
930,
374,
13,
7266,
332,
16886,
3784,
1640,
3237,
7,
85,
930,
410,
13,
38679,
3792,
35854,
5189,
7,
9012,
8,
15565,
198,
7,
85,
13,
38679,
1722,
6030,
7,
9012,
737,
13000,
3784,
271,
40613,
3419,
290,
410,
13,
38679,
1722,
6030,
7,
9012,
737,
37023,
3784,
271,
40613,
3419,
290,
410,
13,
38679,
1722,
6030,
7,
9012,
737,
4598,
16516,
3784,
271,
40613,
3419,
22305,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
5726,
62,
37023,
62,
4598,
7,
23029,
407,
1865,
9177,
4943,
628,
220,
220,
220,
825,
8435,
62,
7645,
1756,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
3237,
3602,
1756,
286,
257,
20497,
9012,
37573,
1276,
307,
20497,
8291,
1756,
13,
198,
36996,
3784,
1640,
3237,
7,
81,
930,
374,
13,
7645,
653,
3784,
1640,
3237,
7,
83,
930,
256,
13,
38679,
3792,
6030,
5189,
7,
19703,
4668,
8291,
653,
22305,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
8435,
62,
7645,
1756,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
15553,
25267,
15759,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
15553,
25267,
15759,
526,
15931,
628,
220,
220,
220,
825,
530,
62,
22915,
62,
17143,
2357,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
32,
15553,
25267,
15759,
468,
379,
1551,
530,
5072,
25139,
2357,
13,
198,
944,
13,
11990,
36301,
3784,
198,
220,
2922,
7,
79,
930,
279,
13,
37295,
796,
25139,
2357,
35,
4154,
35854,
3712,
448,
393,
279,
13,
37295,
28,
25139,
2357,
35,
4154,
35854,
3712,
259,
448,
393,
279,
13,
37295,
28,
25139,
2357,
35,
4154,
35854,
3712,
7783,
8,
3784,
7857,
3419,
18189,
352,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
530,
62,
22915,
62,
17143,
2357,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
3858,
62,
1659,
62,
17143,
7307,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
3858,
286,
262,
6898,
48944,
389,
477,
6060,
31431,
11,
543,
743,
407,
16343,
1997,
475,
584,
6060,
31431,
13,
198,
11990,
36301,
3784,
1640,
3237,
7,
79,
930,
279,
13,
4906,
1279,
29,
9242,
290,
198,
220,
279,
13,
4906,
13,
38679,
3792,
6030,
5189,
7,
6601,
6030,
8,
290,
468,
3237,
6601,
6030,
29021,
7,
79,
13,
4906,
13,
38679,
1722,
6030,
7,
6601,
6030,
22305,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
3858,
62,
1659,
62,
17143,
7307,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
468,
62,
439,
62,
7890,
62,
4906,
62,
1078,
7657,
7,
944,
11,
288,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
468,
3237,
6601,
6030,
29021,
12405,
5254,
1771,
262,
3858,
286,
262,
12608,
286,
262,
1813,
6060,
6030,
389,
477,
6060,
31431,
11,
290,
12470,
329,
477,
883,
6060,
31431,
13,
198,
20274,
796,
357,
67,
13,
11990,
33682,
3784,
1640,
3237,
7,
64,
930,
198,
220,
220,
220,
257,
13,
4906,
13,
38679,
3792,
35854,
5189,
7,
6601,
6030,
8,
290,
198,
220,
220,
220,
220,
220,
468,
3237,
6601,
6030,
29021,
7,
64,
13,
4906,
13,
38679,
1722,
6030,
7,
6601,
6030,
35514,
198,
27,
79,
29,
4863,
5301,
471,
5805,
3712,
17227,
25267,
15759,
25970,
79,
29,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
468,
62,
439,
62,
7890,
62,
4906,
62,
1078,
7657,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
198,
4871,
16232,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
16232,
526,
15931,
628,
198,
4871,
37497,
31441,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
37497,
31441,
526,
15931,
628,
198,
4871,
4225,
2673,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
4225,
2673,
526,
15931,
628,
220,
220,
220,
825,
407,
62,
45964,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2025,
4225,
2673,
4554,
1276,
407,
307,
7763,
1626,
1194,
4225,
2673,
4554,
13,
198,
268,
565,
2752,
9492,
2673,
3784,
271,
40613,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7203,
27184,
407,
62,
45964,
7,
23029,
407,
1865,
9177,
4943,
628,
198,
4871,
5396,
9487,
35608,
259,
7,
15252,
2599,
198,
220,
220,
220,
37227,
12982,
5447,
5022,
259,
1398,
329,
5396,
9487,
526,
15931,
628,
220,
220,
220,
825,
2314,
62,
1350,
62,
23211,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
2025,
5396,
9487,
2314,
307,
5447,
1022,
2346,
290,
1223,
2073,
13,
198,
944,
13,
437,
6030,
3419,
3784,
1069,
13955,
7,
944,
8,
290,
2116,
13,
437,
6030,
3419,
3784,
33327,
7,
316,
91,
316,
13,
38679,
1722,
6030,
7,
9487,
7483,
737,
439,
42969,
28955,
3784,
2704,
41769,
3419,
3784,
1069,
13955,
7,
944,
8,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
2314,
62,
1350,
62,
23211,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
825,
595,
73,
1563,
62,
1078,
7657,
62,
2412,
7,
944,
11,
6689,
34558,
28,
14202,
11,
4732,
28,
14202,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
464,
6898,
12608,
290,
6898,
5645,
286,
281,
5396,
9487,
389,
595,
73,
1563,
13,
198,
11990,
33682,
3784,
3849,
5458,
7,
11990,
12915,
8,
3784,
271,
40613,
3419,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
27184,
595,
73,
1563,
62,
1078,
7657,
62,
2412,
7,
23029,
407,
1865,
9177,
1,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198
] | 3.023129 | 104,762 |
__all__ = ["Nation", "Region", "Telegrams", "WorldAssembly", "World", "TradingCards", "APICall"]
| [
834,
439,
834,
796,
14631,
46108,
1600,
366,
47371,
1600,
366,
6767,
1455,
9474,
1600,
366,
10603,
49670,
1600,
366,
10603,
1600,
366,
2898,
4980,
34,
1371,
1600,
366,
2969,
2149,
439,
8973,
198
] | 2.852941 | 34 |
# -*- coding: utf-8 -*-
# Copyright 2020 Google LLC
#
# 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 proto # type: ignore
from google.ads.googleads.v6.common.types import bidding
from google.ads.googleads.v6.common.types import custom_parameter
from google.ads.googleads.v6.common.types import frequency_cap
from google.ads.googleads.v6.common.types import (
real_time_bidding_setting as gagc_real_time_bidding_setting,
)
from google.ads.googleads.v6.common.types import (
targeting_setting as gagc_targeting_setting,
)
from google.ads.googleads.v6.enums.types import (
ad_serving_optimization_status as gage_ad_serving_optimization_status,
)
from google.ads.googleads.v6.enums.types import (
advertising_channel_sub_type as gage_advertising_channel_sub_type,
)
from google.ads.googleads.v6.enums.types import (
advertising_channel_type as gage_advertising_channel_type,
)
from google.ads.googleads.v6.enums.types import app_campaign_app_store
from google.ads.googleads.v6.enums.types import (
app_campaign_bidding_strategy_goal_type,
)
from google.ads.googleads.v6.enums.types import (
bidding_strategy_type as gage_bidding_strategy_type,
)
from google.ads.googleads.v6.enums.types import brand_safety_suitability
from google.ads.googleads.v6.enums.types import campaign_experiment_type
from google.ads.googleads.v6.enums.types import campaign_serving_status
from google.ads.googleads.v6.enums.types import campaign_status
from google.ads.googleads.v6.enums.types import (
location_source_type as gage_location_source_type,
)
from google.ads.googleads.v6.enums.types import (
negative_geo_target_type as gage_negative_geo_target_type,
)
from google.ads.googleads.v6.enums.types import optimization_goal_type
from google.ads.googleads.v6.enums.types import (
payment_mode as gage_payment_mode,
)
from google.ads.googleads.v6.enums.types import (
positive_geo_target_type as gage_positive_geo_target_type,
)
from google.ads.googleads.v6.enums.types import (
vanity_pharma_display_url_mode as gage_vanity_pharma_display_url_mode,
)
from google.ads.googleads.v6.enums.types import (
vanity_pharma_text as gage_vanity_pharma_text,
)
__protobuf__ = proto.module(
package="google.ads.googleads.v6.resources",
marshal="google.ads.googleads.v6",
manifest={"Campaign",},
)
class Campaign(proto.Message):
r"""A campaign.
Attributes:
resource_name (str):
Immutable. The resource name of the campaign. Campaign
resource names have the form:
``customers/{customer_id}/campaigns/{campaign_id}``
id (int):
Output only. The ID of the campaign.
name (str):
The name of the campaign.
This field is required and should not be empty
when creating new campaigns.
It must not contain any null (code point 0x0),
NL line feed (code point 0xA) or carriage return
(code point 0xD) characters.
status (google.ads.googleads.v6.enums.types.CampaignStatusEnum.CampaignStatus):
The status of the campaign.
When a new campaign is added, the status
defaults to ENABLED.
serving_status (google.ads.googleads.v6.enums.types.CampaignServingStatusEnum.CampaignServingStatus):
Output only. The ad serving status of the
campaign.
ad_serving_optimization_status (google.ads.googleads.v6.enums.types.AdServingOptimizationStatusEnum.AdServingOptimizationStatus):
The ad serving optimization status of the
campaign.
advertising_channel_type (google.ads.googleads.v6.enums.types.AdvertisingChannelTypeEnum.AdvertisingChannelType):
Immutable. The primary serving target for ads within the
campaign. The targeting options can be refined in
``network_settings``.
This field is required and should not be empty when creating
new campaigns.
Can be set only when creating campaigns. After the campaign
is created, the field can not be changed.
advertising_channel_sub_type (google.ads.googleads.v6.enums.types.AdvertisingChannelSubTypeEnum.AdvertisingChannelSubType):
Immutable. Optional refinement to
``advertising_channel_type``. Must be a valid sub-type of
the parent channel type.
Can be set only when creating campaigns. After campaign is
created, the field can not be changed.
tracking_url_template (str):
The URL template for constructing a tracking
URL.
url_custom_parameters (Sequence[google.ads.googleads.v6.common.types.CustomParameter]):
The list of mappings used to substitute custom parameter
tags in a ``tracking_url_template``, ``final_urls``, or
``mobile_final_urls``.
real_time_bidding_setting (google.ads.googleads.v6.common.types.RealTimeBiddingSetting):
Settings for Real-Time Bidding, a feature
only available for campaigns targeting the Ad
Exchange network.
network_settings (google.ads.googleads.v6.resources.types.Campaign.NetworkSettings):
The network settings for the campaign.
hotel_setting (google.ads.googleads.v6.resources.types.Campaign.HotelSettingInfo):
Immutable. The hotel setting for the
campaign.
dynamic_search_ads_setting (google.ads.googleads.v6.resources.types.Campaign.DynamicSearchAdsSetting):
The setting for controlling Dynamic Search
Ads (DSA).
shopping_setting (google.ads.googleads.v6.resources.types.Campaign.ShoppingSetting):
The setting for controlling Shopping
campaigns.
targeting_setting (google.ads.googleads.v6.common.types.TargetingSetting):
Setting for targeting related features.
geo_target_type_setting (google.ads.googleads.v6.resources.types.Campaign.GeoTargetTypeSetting):
The setting for ads geotargeting.
local_campaign_setting (google.ads.googleads.v6.resources.types.Campaign.LocalCampaignSetting):
The setting for local campaign.
app_campaign_setting (google.ads.googleads.v6.resources.types.Campaign.AppCampaignSetting):
The setting related to App Campaign.
labels (Sequence[str]):
Output only. The resource names of labels
attached to this campaign.
experiment_type (google.ads.googleads.v6.enums.types.CampaignExperimentTypeEnum.CampaignExperimentType):
Output only. The type of campaign: normal,
draft, or experiment.
base_campaign (str):
Output only. The resource name of the base campaign of a
draft or experiment campaign. For base campaigns, this is
equal to ``resource_name``.
This field is read-only.
campaign_budget (str):
The budget of the campaign.
bidding_strategy_type (google.ads.googleads.v6.enums.types.BiddingStrategyTypeEnum.BiddingStrategyType):
Output only. The type of bidding strategy.
A bidding strategy can be created by setting either the
bidding scheme to create a standard bidding strategy or the
``bidding_strategy`` field to create a portfolio bidding
strategy.
This field is read-only.
start_date (str):
The date when campaign started.
end_date (str):
The last day of the campaign.
final_url_suffix (str):
Suffix used to append query parameters to
landing pages that are served with parallel
tracking.
frequency_caps (Sequence[google.ads.googleads.v6.common.types.FrequencyCapEntry]):
A list that limits how often each user will
see this campaign's ads.
video_brand_safety_suitability (google.ads.googleads.v6.enums.types.BrandSafetySuitabilityEnum.BrandSafetySuitability):
Output only. 3-Tier Brand Safety setting for
the campaign.
vanity_pharma (google.ads.googleads.v6.resources.types.Campaign.VanityPharma):
Describes how unbranded pharma ads will be
displayed.
selective_optimization (google.ads.googleads.v6.resources.types.Campaign.SelectiveOptimization):
Selective optimization setting for this
campaign, which includes a set of conversion
actions to optimize this campaign towards.
optimization_goal_setting (google.ads.googleads.v6.resources.types.Campaign.OptimizationGoalSetting):
Optimization goal setting for this campaign,
which includes a set of optimization goal types.
tracking_setting (google.ads.googleads.v6.resources.types.Campaign.TrackingSetting):
Output only. Campaign-level settings for
tracking information.
payment_mode (google.ads.googleads.v6.enums.types.PaymentModeEnum.PaymentMode):
Payment mode for the campaign.
optimization_score (float):
Output only. Optimization score of the
campaign.
Optimization score is an estimate of how well a
campaign is set to perform. It ranges from 0%
(0.0) to 100% (1.0), with 100% indicating that
the campaign is performing at full potential.
This field is null for unscored campaigns.
See "About optimization score" at
https://support.google.com/google-
ads/answer/9061546.
This field is read-only.
bidding_strategy (str):
Portfolio bidding strategy used by campaign.
commission (google.ads.googleads.v6.common.types.Commission):
Commission is an automatic bidding strategy
in which the advertiser pays a certain portion
of the conversion value.
manual_cpc (google.ads.googleads.v6.common.types.ManualCpc):
Standard Manual CPC bidding strategy.
Manual click-based bidding where user pays per
click.
manual_cpm (google.ads.googleads.v6.common.types.ManualCpm):
Standard Manual CPM bidding strategy.
Manual impression-based bidding where user pays
per thousand impressions.
manual_cpv (google.ads.googleads.v6.common.types.ManualCpv):
Output only. A bidding strategy that pays a
configurable amount per video view.
maximize_conversions (google.ads.googleads.v6.common.types.MaximizeConversions):
Standard Maximize Conversions bidding
strategy that automatically maximizes number of
conversions while spending your budget.
maximize_conversion_value (google.ads.googleads.v6.common.types.MaximizeConversionValue):
Standard Maximize Conversion Value bidding
strategy that automatically sets bids to
maximize revenue while spending your budget.
target_cpa (google.ads.googleads.v6.common.types.TargetCpa):
Standard Target CPA bidding strategy that
automatically sets bids to help get as many
conversions as possible at the target cost-per-
acquisition (CPA) you set.
target_impression_share (google.ads.googleads.v6.common.types.TargetImpressionShare):
Target Impression Share bidding strategy. An
automated bidding strategy that sets bids to
achieve a desired percentage of impressions.
target_roas (google.ads.googleads.v6.common.types.TargetRoas):
Standard Target ROAS bidding strategy that
automatically maximizes revenue while averaging
a specific target return on ad spend (ROAS).
target_spend (google.ads.googleads.v6.common.types.TargetSpend):
Standard Target Spend bidding strategy that
automatically sets your bids to help get as many
clicks as possible within your budget.
percent_cpc (google.ads.googleads.v6.common.types.PercentCpc):
Standard Percent Cpc bidding strategy where
bids are a fraction of the advertised price for
some good or service.
target_cpm (google.ads.googleads.v6.common.types.TargetCpm):
A bidding strategy that automatically
optimizes cost per thousand impressions.
"""
class NetworkSettings(proto.Message):
r"""The network settings for the campaign.
Attributes:
target_google_search (bool):
Whether ads will be served with google.com
search results.
target_search_network (bool):
Whether ads will be served on partner sites in the Google
Search Network (requires ``target_google_search`` to also be
``true``).
target_content_network (bool):
Whether ads will be served on specified
placements in the Google Display Network.
Placements are specified using the Placement
criterion.
target_partner_search_network (bool):
Whether ads will be served on the Google
Partner Network. This is available only to some
select Google partner accounts.
"""
target_google_search = proto.Field(proto.BOOL, number=5, optional=True)
target_search_network = proto.Field(proto.BOOL, number=6, optional=True)
target_content_network = proto.Field(
proto.BOOL, number=7, optional=True
)
target_partner_search_network = proto.Field(
proto.BOOL, number=8, optional=True
)
class HotelSettingInfo(proto.Message):
r"""Campaign-level settings for hotel ads.
Attributes:
hotel_center_id (int):
Immutable. The linked Hotel Center account.
"""
hotel_center_id = proto.Field(proto.INT64, number=2, optional=True)
class VanityPharma(proto.Message):
r"""Describes how unbranded pharma ads will be displayed.
Attributes:
vanity_pharma_display_url_mode (google.ads.googleads.v6.enums.types.VanityPharmaDisplayUrlModeEnum.VanityPharmaDisplayUrlMode):
The display mode for vanity pharma URLs.
vanity_pharma_text (google.ads.googleads.v6.enums.types.VanityPharmaTextEnum.VanityPharmaText):
The text that will be displayed in display
URL of the text ad when website description is
the selected display mode for vanity pharma
URLs.
"""
vanity_pharma_display_url_mode = proto.Field(
proto.ENUM,
number=1,
enum=gage_vanity_pharma_display_url_mode.VanityPharmaDisplayUrlModeEnum.VanityPharmaDisplayUrlMode,
)
vanity_pharma_text = proto.Field(
proto.ENUM,
number=2,
enum=gage_vanity_pharma_text.VanityPharmaTextEnum.VanityPharmaText,
)
class DynamicSearchAdsSetting(proto.Message):
r"""The setting for controlling Dynamic Search Ads (DSA).
Attributes:
domain_name (str):
Required. The Internet domain name that this
setting represents, e.g., "google.com" or
"www.google.com".
language_code (str):
Required. The language code specifying the
language of the domain, e.g., "en".
use_supplied_urls_only (bool):
Whether the campaign uses advertiser supplied
URLs exclusively.
feeds (Sequence[str]):
The list of page feeds associated with the
campaign.
"""
domain_name = proto.Field(proto.STRING, number=6)
language_code = proto.Field(proto.STRING, number=7)
use_supplied_urls_only = proto.Field(
proto.BOOL, number=8, optional=True
)
feeds = proto.RepeatedField(proto.STRING, number=9)
class SelectiveOptimization(proto.Message):
r"""Selective optimization setting for this campaign, which
includes a set of conversion actions to optimize this campaign
towards.
Attributes:
conversion_actions (Sequence[str]):
The selected set of conversion actions for
optimizing this campaign.
"""
conversion_actions = proto.RepeatedField(proto.STRING, number=2)
class AppCampaignSetting(proto.Message):
r"""Campaign-level settings for App Campaigns.
Attributes:
bidding_strategy_goal_type (google.ads.googleads.v6.enums.types.AppCampaignBiddingStrategyGoalTypeEnum.AppCampaignBiddingStrategyGoalType):
Represents the goal which the bidding
strategy of this app campaign should optimize
towards.
app_id (str):
Immutable. A string that uniquely identifies
a mobile application.
app_store (google.ads.googleads.v6.enums.types.AppCampaignAppStoreEnum.AppCampaignAppStore):
Immutable. The application store that
distributes this specific app.
"""
bidding_strategy_goal_type = proto.Field(
proto.ENUM,
number=1,
enum=app_campaign_bidding_strategy_goal_type.AppCampaignBiddingStrategyGoalTypeEnum.AppCampaignBiddingStrategyGoalType,
)
app_id = proto.Field(proto.STRING, number=4, optional=True)
app_store = proto.Field(
proto.ENUM,
number=3,
enum=app_campaign_app_store.AppCampaignAppStoreEnum.AppCampaignAppStore,
)
class ShoppingSetting(proto.Message):
r"""The setting for Shopping campaigns. Defines the universe of
products that can be advertised by the campaign, and how this
campaign interacts with other Shopping campaigns.
Attributes:
merchant_id (int):
Immutable. ID of the Merchant Center account.
This field is required for create operations.
This field is immutable for Shopping campaigns.
sales_country (str):
Immutable. Sales country of products to
include in the campaign. This field is required
for Shopping campaigns. This field is immutable.
This field is optional for non-Shopping
campaigns, but it must be equal to 'ZZ' if set.
campaign_priority (int):
Priority of the campaign. Campaigns with
numerically higher priorities take precedence
over those with lower priorities. This field is
required for Shopping campaigns, with values
between 0 and 2, inclusive.
This field is optional for Smart Shopping
campaigns, but must be equal to 3 if set.
enable_local (bool):
Whether to include local products.
"""
merchant_id = proto.Field(proto.INT64, number=5, optional=True)
sales_country = proto.Field(proto.STRING, number=6, optional=True)
campaign_priority = proto.Field(proto.INT32, number=7, optional=True)
enable_local = proto.Field(proto.BOOL, number=8, optional=True)
class TrackingSetting(proto.Message):
r"""Campaign-level settings for tracking information.
Attributes:
tracking_url (str):
Output only. The url used for dynamic
tracking.
"""
tracking_url = proto.Field(proto.STRING, number=2, optional=True)
class GeoTargetTypeSetting(proto.Message):
r"""Represents a collection of settings related to ads
geotargeting.
Attributes:
positive_geo_target_type (google.ads.googleads.v6.enums.types.PositiveGeoTargetTypeEnum.PositiveGeoTargetType):
The setting used for positive geotargeting in
this particular campaign.
negative_geo_target_type (google.ads.googleads.v6.enums.types.NegativeGeoTargetTypeEnum.NegativeGeoTargetType):
The setting used for negative geotargeting in
this particular campaign.
"""
positive_geo_target_type = proto.Field(
proto.ENUM,
number=1,
enum=gage_positive_geo_target_type.PositiveGeoTargetTypeEnum.PositiveGeoTargetType,
)
negative_geo_target_type = proto.Field(
proto.ENUM,
number=2,
enum=gage_negative_geo_target_type.NegativeGeoTargetTypeEnum.NegativeGeoTargetType,
)
class LocalCampaignSetting(proto.Message):
r"""Campaign setting for local campaigns.
Attributes:
location_source_type (google.ads.googleads.v6.enums.types.LocationSourceTypeEnum.LocationSourceType):
The location source type for this local
campaign.
"""
location_source_type = proto.Field(
proto.ENUM,
number=1,
enum=gage_location_source_type.LocationSourceTypeEnum.LocationSourceType,
)
class OptimizationGoalSetting(proto.Message):
r"""Optimization goal setting for this campaign, which includes a
set of optimization goal types.
Attributes:
optimization_goal_types (Sequence[google.ads.googleads.v6.enums.types.OptimizationGoalTypeEnum.OptimizationGoalType]):
The list of optimization goal types.
"""
optimization_goal_types = proto.RepeatedField(
proto.ENUM,
number=1,
enum=optimization_goal_type.OptimizationGoalTypeEnum.OptimizationGoalType,
)
resource_name = proto.Field(proto.STRING, number=1)
id = proto.Field(proto.INT64, number=59, optional=True)
name = proto.Field(proto.STRING, number=58, optional=True)
status = proto.Field(
proto.ENUM,
number=5,
enum=campaign_status.CampaignStatusEnum.CampaignStatus,
)
serving_status = proto.Field(
proto.ENUM,
number=21,
enum=campaign_serving_status.CampaignServingStatusEnum.CampaignServingStatus,
)
ad_serving_optimization_status = proto.Field(
proto.ENUM,
number=8,
enum=gage_ad_serving_optimization_status.AdServingOptimizationStatusEnum.AdServingOptimizationStatus,
)
advertising_channel_type = proto.Field(
proto.ENUM,
number=9,
enum=gage_advertising_channel_type.AdvertisingChannelTypeEnum.AdvertisingChannelType,
)
advertising_channel_sub_type = proto.Field(
proto.ENUM,
number=10,
enum=gage_advertising_channel_sub_type.AdvertisingChannelSubTypeEnum.AdvertisingChannelSubType,
)
tracking_url_template = proto.Field(proto.STRING, number=60, optional=True)
url_custom_parameters = proto.RepeatedField(
proto.MESSAGE, number=12, message=custom_parameter.CustomParameter,
)
real_time_bidding_setting = proto.Field(
proto.MESSAGE,
number=39,
message=gagc_real_time_bidding_setting.RealTimeBiddingSetting,
)
network_settings = proto.Field(
proto.MESSAGE, number=14, message=NetworkSettings,
)
hotel_setting = proto.Field(
proto.MESSAGE, number=32, message=HotelSettingInfo,
)
dynamic_search_ads_setting = proto.Field(
proto.MESSAGE, number=33, message=DynamicSearchAdsSetting,
)
shopping_setting = proto.Field(
proto.MESSAGE, number=36, message=ShoppingSetting,
)
targeting_setting = proto.Field(
proto.MESSAGE,
number=43,
message=gagc_targeting_setting.TargetingSetting,
)
geo_target_type_setting = proto.Field(
proto.MESSAGE, number=47, message=GeoTargetTypeSetting,
)
local_campaign_setting = proto.Field(
proto.MESSAGE, number=50, message=LocalCampaignSetting,
)
app_campaign_setting = proto.Field(
proto.MESSAGE, number=51, message=AppCampaignSetting,
)
labels = proto.RepeatedField(proto.STRING, number=61)
experiment_type = proto.Field(
proto.ENUM,
number=17,
enum=campaign_experiment_type.CampaignExperimentTypeEnum.CampaignExperimentType,
)
base_campaign = proto.Field(proto.STRING, number=56, optional=True)
campaign_budget = proto.Field(proto.STRING, number=62, optional=True)
bidding_strategy_type = proto.Field(
proto.ENUM,
number=22,
enum=gage_bidding_strategy_type.BiddingStrategyTypeEnum.BiddingStrategyType,
)
start_date = proto.Field(proto.STRING, number=63, optional=True)
end_date = proto.Field(proto.STRING, number=64, optional=True)
final_url_suffix = proto.Field(proto.STRING, number=65, optional=True)
frequency_caps = proto.RepeatedField(
proto.MESSAGE, number=40, message=frequency_cap.FrequencyCapEntry,
)
video_brand_safety_suitability = proto.Field(
proto.ENUM,
number=42,
enum=brand_safety_suitability.BrandSafetySuitabilityEnum.BrandSafetySuitability,
)
vanity_pharma = proto.Field(proto.MESSAGE, number=44, message=VanityPharma,)
selective_optimization = proto.Field(
proto.MESSAGE, number=45, message=SelectiveOptimization,
)
optimization_goal_setting = proto.Field(
proto.MESSAGE, number=54, message=OptimizationGoalSetting,
)
tracking_setting = proto.Field(
proto.MESSAGE, number=46, message=TrackingSetting,
)
payment_mode = proto.Field(
proto.ENUM,
number=52,
enum=gage_payment_mode.PaymentModeEnum.PaymentMode,
)
optimization_score = proto.Field(proto.DOUBLE, number=66, optional=True)
bidding_strategy = proto.Field(
proto.STRING, number=67, oneof="campaign_bidding_strategy"
)
commission = proto.Field(
proto.MESSAGE,
number=49,
oneof="campaign_bidding_strategy",
message=bidding.Commission,
)
manual_cpc = proto.Field(
proto.MESSAGE,
number=24,
oneof="campaign_bidding_strategy",
message=bidding.ManualCpc,
)
manual_cpm = proto.Field(
proto.MESSAGE,
number=25,
oneof="campaign_bidding_strategy",
message=bidding.ManualCpm,
)
manual_cpv = proto.Field(
proto.MESSAGE,
number=37,
oneof="campaign_bidding_strategy",
message=bidding.ManualCpv,
)
maximize_conversions = proto.Field(
proto.MESSAGE,
number=30,
oneof="campaign_bidding_strategy",
message=bidding.MaximizeConversions,
)
maximize_conversion_value = proto.Field(
proto.MESSAGE,
number=31,
oneof="campaign_bidding_strategy",
message=bidding.MaximizeConversionValue,
)
target_cpa = proto.Field(
proto.MESSAGE,
number=26,
oneof="campaign_bidding_strategy",
message=bidding.TargetCpa,
)
target_impression_share = proto.Field(
proto.MESSAGE,
number=48,
oneof="campaign_bidding_strategy",
message=bidding.TargetImpressionShare,
)
target_roas = proto.Field(
proto.MESSAGE,
number=29,
oneof="campaign_bidding_strategy",
message=bidding.TargetRoas,
)
target_spend = proto.Field(
proto.MESSAGE,
number=27,
oneof="campaign_bidding_strategy",
message=bidding.TargetSpend,
)
percent_cpc = proto.Field(
proto.MESSAGE,
number=34,
oneof="campaign_bidding_strategy",
message=bidding.PercentCpc,
)
target_cpm = proto.Field(
proto.MESSAGE,
number=41,
oneof="campaign_bidding_strategy",
message=bidding.TargetCpm,
)
__all__ = tuple(sorted(__protobuf__.manifest))
| [
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
198,
2,
15069,
12131,
3012,
11419,
198,
2,
198,
2,
49962,
739,
262,
24843,
13789,
11,
10628,
362,
13,
15,
357,
1169,
366,
34156,
15341,
198,
2,
345,
743,
407,
779,
428,
2393,
2845,
287,
11846,
351,
262,
13789,
13,
198,
2,
921,
743,
7330,
257,
4866,
286,
262,
13789,
379,
198,
2,
198,
2,
220,
220,
220,
220,
2638,
1378,
2503,
13,
43073,
13,
2398,
14,
677,
4541,
14,
43,
2149,
24290,
12,
17,
13,
15,
198,
2,
198,
2,
17486,
2672,
416,
9723,
1099,
393,
4987,
284,
287,
3597,
11,
3788,
198,
2,
9387,
739,
262,
13789,
318,
9387,
319,
281,
366,
1921,
3180,
1,
29809,
1797,
11,
198,
2,
42881,
34764,
11015,
6375,
7102,
49828,
11053,
3963,
15529,
509,
12115,
11,
2035,
4911,
393,
17142,
13,
198,
2,
4091,
262,
13789,
329,
262,
2176,
3303,
15030,
21627,
290,
198,
2,
11247,
739,
262,
13789,
13,
198,
2,
198,
198,
11748,
44876,
220,
1303,
2099,
25,
8856,
628,
198,
6738,
23645,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
11321,
13,
19199,
1330,
23829,
198,
6738,
23645,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
11321,
13,
19199,
1330,
2183,
62,
17143,
2357,
198,
6738,
23645,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
11321,
13,
19199,
1330,
8373,
62,
11128,
198,
6738,
23645,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
11321,
13,
19199,
1330,
357,
198,
220,
220,
220,
1103,
62,
2435,
62,
65,
13494,
62,
33990,
355,
32261,
66,
62,
5305,
62,
2435,
62,
65,
13494,
62,
33990,
11,
198,
8,
198,
6738,
23645,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
11321,
13,
19199,
1330,
357,
198,
220,
220,
220,
10822,
62,
33990,
355,
32261,
66,
62,
16793,
278,
62,
33990,
11,
198,
8,
198,
6738,
23645,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
268,
5700,
13,
19199,
1330,
357,
198,
220,
220,
220,
512,
62,
31293,
62,
40085,
1634,
62,
13376,
355,
308,
496,
62,
324,
62,
31293,
62,
40085,
1634,
62,
13376,
11,
198,
8,
198,
6738,
23645,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
268,
5700,
13,
19199,
1330,
357,
198,
220,
220,
220,
8560,
62,
17620,
62,
7266,
62,
4906,
355,
308,
496,
62,
34442,
62,
17620,
62,
7266,
62,
4906,
11,
198,
8,
198,
6738,
23645,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
268,
5700,
13,
19199,
1330,
357,
198,
220,
220,
220,
8560,
62,
17620,
62,
4906,
355,
308,
496,
62,
34442,
62,
17620,
62,
4906,
11,
198,
8,
198,
6738,
23645,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
268,
5700,
13,
19199,
1330,
598,
62,
35012,
62,
1324,
62,
8095,
198,
6738,
23645,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
268,
5700,
13,
19199,
1330,
357,
198,
220,
220,
220,
598,
62,
35012,
62,
65,
13494,
62,
2536,
4338,
62,
35231,
62,
4906,
11,
198,
8,
198,
6738,
23645,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
268,
5700,
13,
19199,
1330,
357,
198,
220,
220,
220,
23829,
62,
2536,
4338,
62,
4906,
355,
308,
496,
62,
65,
13494,
62,
2536,
4338,
62,
4906,
11,
198,
8,
198,
6738,
23645,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
268,
5700,
13,
19199,
1330,
4508,
62,
44708,
62,
6063,
1799,
198,
6738,
23645,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
268,
5700,
13,
19199,
1330,
1923,
62,
23100,
3681,
62,
4906,
198,
6738,
23645,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
268,
5700,
13,
19199,
1330,
1923,
62,
31293,
62,
13376,
198,
6738,
23645,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
268,
5700,
13,
19199,
1330,
1923,
62,
13376,
198,
6738,
23645,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
268,
5700,
13,
19199,
1330,
357,
198,
220,
220,
220,
4067,
62,
10459,
62,
4906,
355,
308,
496,
62,
24886,
62,
10459,
62,
4906,
11,
198,
8,
198,
6738,
23645,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
268,
5700,
13,
19199,
1330,
357,
198,
220,
220,
220,
4633,
62,
469,
78,
62,
16793,
62,
4906,
355,
308,
496,
62,
31591,
62,
469,
78,
62,
16793,
62,
4906,
11,
198,
8,
198,
6738,
23645,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
268,
5700,
13,
19199,
1330,
23989,
62,
35231,
62,
4906,
198,
6738,
23645,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
268,
5700,
13,
19199,
1330,
357,
198,
220,
220,
220,
6074,
62,
14171,
355,
308,
496,
62,
37301,
62,
14171,
11,
198,
8,
198,
6738,
23645,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
268,
5700,
13,
19199,
1330,
357,
198,
220,
220,
220,
3967,
62,
469,
78,
62,
16793,
62,
4906,
355,
308,
496,
62,
24561,
62,
469,
78,
62,
16793,
62,
4906,
11,
198,
8,
198,
6738,
23645,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
268,
5700,
13,
19199,
1330,
357,
198,
220,
220,
220,
39609,
62,
746,
10961,
62,
13812,
62,
6371,
62,
14171,
355,
308,
496,
62,
10438,
414,
62,
746,
10961,
62,
13812,
62,
6371,
62,
14171,
11,
198,
8,
198,
6738,
23645,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
268,
5700,
13,
19199,
1330,
357,
198,
220,
220,
220,
39609,
62,
746,
10961,
62,
5239,
355,
308,
496,
62,
10438,
414,
62,
746,
10961,
62,
5239,
11,
198,
8,
628,
198,
834,
11235,
672,
3046,
834,
796,
44876,
13,
21412,
7,
198,
220,
220,
220,
5301,
2625,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
37540,
1600,
198,
220,
220,
220,
22397,
282,
2625,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
1600,
198,
220,
220,
220,
10561,
28,
4895,
46102,
1600,
5512,
198,
8,
628,
198,
4871,
13718,
7,
1676,
1462,
13,
12837,
2599,
198,
220,
220,
220,
374,
37811,
32,
1923,
13,
628,
220,
220,
220,
49213,
25,
198,
220,
220,
220,
220,
220,
220,
220,
8271,
62,
3672,
357,
2536,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9543,
18187,
13,
383,
8271,
1438,
286,
262,
1923,
13,
13718,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8271,
3891,
423,
262,
1296,
25,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7559,
23144,
364,
14,
90,
23144,
263,
62,
312,
92,
14,
35012,
82,
14,
90,
35012,
62,
312,
92,
15506,
198,
220,
220,
220,
220,
220,
220,
220,
4686,
357,
600,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25235,
691,
13,
383,
4522,
286,
262,
1923,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1438,
357,
2536,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
383,
1438,
286,
262,
1923,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
770,
2214,
318,
2672,
290,
815,
407,
307,
6565,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
618,
4441,
649,
9964,
13,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
632,
1276,
407,
3994,
597,
9242,
357,
8189,
966,
657,
87,
15,
828,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
22879,
1627,
3745,
357,
8189,
966,
657,
87,
32,
8,
393,
25739,
1441,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
8189,
966,
657,
87,
35,
8,
3435,
13,
198,
220,
220,
220,
220,
220,
220,
220,
3722,
357,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
268,
5700,
13,
19199,
13,
46102,
19580,
4834,
388,
13,
46102,
19580,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
383,
3722,
286,
262,
1923,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1649,
257,
649,
1923,
318,
2087,
11,
262,
3722,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
26235,
284,
412,
4535,
9148,
1961,
13,
198,
220,
220,
220,
220,
220,
220,
220,
7351,
62,
13376,
357,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
268,
5700,
13,
19199,
13,
46102,
11838,
278,
19580,
4834,
388,
13,
46102,
11838,
278,
19580,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25235,
691,
13,
383,
512,
7351,
3722,
286,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1923,
13,
198,
220,
220,
220,
220,
220,
220,
220,
512,
62,
31293,
62,
40085,
1634,
62,
13376,
357,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
268,
5700,
13,
19199,
13,
2782,
11838,
278,
27871,
320,
1634,
19580,
4834,
388,
13,
2782,
11838,
278,
27871,
320,
1634,
19580,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
383,
512,
7351,
23989,
3722,
286,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1923,
13,
198,
220,
220,
220,
220,
220,
220,
220,
8560,
62,
17620,
62,
4906,
357,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
268,
5700,
13,
19199,
13,
2782,
31809,
29239,
6030,
4834,
388,
13,
2782,
31809,
29239,
6030,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9543,
18187,
13,
383,
4165,
7351,
2496,
329,
9011,
1626,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1923,
13,
383,
10822,
3689,
460,
307,
20449,
287,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7559,
27349,
62,
33692,
15506,
13,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
770,
2214,
318,
2672,
290,
815,
407,
307,
6565,
618,
4441,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
649,
9964,
13,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1680,
307,
900,
691,
618,
4441,
9964,
13,
2293,
262,
1923,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
318,
2727,
11,
262,
2214,
460,
407,
307,
3421,
13,
198,
220,
220,
220,
220,
220,
220,
220,
8560,
62,
17620,
62,
7266,
62,
4906,
357,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
268,
5700,
13,
19199,
13,
2782,
31809,
29239,
7004,
6030,
4834,
388,
13,
2782,
31809,
29239,
7004,
6030,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9543,
18187,
13,
32233,
47517,
284,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7559,
34442,
62,
17620,
62,
4906,
15506,
13,
12039,
307,
257,
4938,
850,
12,
4906,
286,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
262,
2560,
6518,
2099,
13,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1680,
307,
900,
691,
618,
4441,
9964,
13,
2293,
1923,
318,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2727,
11,
262,
2214,
460,
407,
307,
3421,
13,
198,
220,
220,
220,
220,
220,
220,
220,
9646,
62,
6371,
62,
28243,
357,
2536,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
383,
10289,
11055,
329,
30580,
257,
9646,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10289,
13,
198,
220,
220,
220,
220,
220,
220,
220,
19016,
62,
23144,
62,
17143,
7307,
357,
44015,
594,
58,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
11321,
13,
19199,
13,
15022,
36301,
60,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
383,
1351,
286,
285,
39242,
973,
284,
15373,
2183,
11507,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15940,
287,
257,
7559,
36280,
62,
6371,
62,
28243,
15506,
11,
7559,
20311,
62,
6371,
82,
15506,
11,
393,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7559,
24896,
62,
20311,
62,
6371,
82,
15506,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1103,
62,
2435,
62,
65,
13494,
62,
33990,
357,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
11321,
13,
19199,
13,
15633,
7575,
33,
13494,
34149,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16163,
329,
6416,
12,
7575,
347,
13494,
11,
257,
3895,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
691,
1695,
329,
9964,
10822,
262,
1215,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12516,
3127,
13,
198,
220,
220,
220,
220,
220,
220,
220,
3127,
62,
33692,
357,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
37540,
13,
19199,
13,
46102,
13,
26245,
26232,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
383,
3127,
6460,
329,
262,
1923,
13,
198,
220,
220,
220,
220,
220,
220,
220,
7541,
62,
33990,
357,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
37540,
13,
19199,
13,
46102,
13,
21352,
417,
34149,
12360,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9543,
18187,
13,
383,
7541,
4634,
329,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1923,
13,
198,
220,
220,
220,
220,
220,
220,
220,
8925,
62,
12947,
62,
5643,
62,
33990,
357,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
37540,
13,
19199,
13,
46102,
13,
44090,
18243,
2782,
82,
34149,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
383,
4634,
329,
12755,
26977,
11140,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
47442,
357,
35,
4090,
737,
198,
220,
220,
220,
220,
220,
220,
220,
9735,
62,
33990,
357,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
37540,
13,
19199,
13,
46102,
13,
2484,
33307,
34149,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
383,
4634,
329,
12755,
39109,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9964,
13,
198,
220,
220,
220,
220,
220,
220,
220,
10822,
62,
33990,
357,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
11321,
13,
19199,
13,
21745,
278,
34149,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25700,
329,
10822,
3519,
3033,
13,
198,
220,
220,
220,
220,
220,
220,
220,
40087,
62,
16793,
62,
4906,
62,
33990,
357,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
37540,
13,
19199,
13,
46102,
13,
10082,
78,
21745,
6030,
34149,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
383,
4634,
329,
9011,
4903,
313,
7641,
278,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1957,
62,
35012,
62,
33990,
357,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
37540,
13,
19199,
13,
46102,
13,
14565,
46102,
34149,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
383,
4634,
329,
1957,
1923,
13,
198,
220,
220,
220,
220,
220,
220,
220,
598,
62,
35012,
62,
33990,
357,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
37540,
13,
19199,
13,
46102,
13,
4677,
46102,
34149,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
383,
4634,
3519,
284,
2034,
13718,
13,
198,
220,
220,
220,
220,
220,
220,
220,
14722,
357,
44015,
594,
58,
2536,
60,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25235,
691,
13,
383,
8271,
3891,
286,
14722,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7223,
284,
428,
1923,
13,
198,
220,
220,
220,
220,
220,
220,
220,
6306,
62,
4906,
357,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
268,
5700,
13,
19199,
13,
46102,
20468,
3681,
6030,
4834,
388,
13,
46102,
20468,
3681,
6030,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25235,
691,
13,
383,
2099,
286,
1923,
25,
3487,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4538,
11,
393,
6306,
13,
198,
220,
220,
220,
220,
220,
220,
220,
2779,
62,
35012,
357,
2536,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25235,
691,
13,
383,
8271,
1438,
286,
262,
2779,
1923,
286,
257,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4538,
393,
6306,
1923,
13,
1114,
2779,
9964,
11,
428,
318,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4961,
284,
7559,
31092,
62,
3672,
15506,
13,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
770,
2214,
318,
1100,
12,
8807,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1923,
62,
37315,
357,
2536,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
383,
4466,
286,
262,
1923,
13,
198,
220,
220,
220,
220,
220,
220,
220,
23829,
62,
2536,
4338,
62,
4906,
357,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
268,
5700,
13,
19199,
13,
33,
13494,
13290,
4338,
6030,
4834,
388,
13,
33,
13494,
13290,
4338,
6030,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25235,
691,
13,
383,
2099,
286,
23829,
4811,
13,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
317,
23829,
4811,
460,
307,
2727,
416,
4634,
2035,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
23829,
7791,
284,
2251,
257,
3210,
23829,
4811,
393,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7559,
65,
13494,
62,
2536,
4338,
15506,
2214,
284,
2251,
257,
15320,
23829,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4811,
13,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
770,
2214,
318,
1100,
12,
8807,
13,
198,
220,
220,
220,
220,
220,
220,
220,
923,
62,
4475,
357,
2536,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
383,
3128,
618,
1923,
2067,
13,
198,
220,
220,
220,
220,
220,
220,
220,
886,
62,
4475,
357,
2536,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
383,
938,
1110,
286,
262,
1923,
13,
198,
220,
220,
220,
220,
220,
220,
220,
2457,
62,
6371,
62,
37333,
844,
357,
2536,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
24974,
844,
973,
284,
24443,
12405,
10007,
284,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9581,
5468,
326,
389,
4983,
351,
10730,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9646,
13,
198,
220,
220,
220,
220,
220,
220,
220,
8373,
62,
27979,
357,
44015,
594,
58,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
11321,
13,
19199,
13,
37,
28707,
15610,
30150,
60,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
317,
1351,
326,
7095,
703,
1690,
1123,
2836,
481,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
766,
428,
1923,
338,
9011,
13,
198,
220,
220,
220,
220,
220,
220,
220,
2008,
62,
17938,
62,
44708,
62,
6063,
1799,
357,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
268,
5700,
13,
19199,
13,
38416,
45372,
50,
5013,
1799,
4834,
388,
13,
38416,
45372,
50,
5013,
1799,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25235,
691,
13,
513,
12,
35252,
13512,
11233,
4634,
329,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
262,
1923,
13,
198,
220,
220,
220,
220,
220,
220,
220,
39609,
62,
746,
10961,
357,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
37540,
13,
19199,
13,
46102,
13,
53,
19689,
2725,
10961,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
39373,
22090,
703,
555,
35559,
10113,
64,
9011,
481,
307,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9066,
13,
198,
220,
220,
220,
220,
220,
220,
220,
21792,
62,
40085,
1634,
357,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
37540,
13,
19199,
13,
46102,
13,
17563,
425,
27871,
320,
1634,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9683,
425,
23989,
4634,
329,
428,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1923,
11,
543,
3407,
257,
900,
286,
11315,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4028,
284,
27183,
428,
1923,
3371,
13,
198,
220,
220,
220,
220,
220,
220,
220,
23989,
62,
35231,
62,
33990,
357,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
37540,
13,
19199,
13,
46102,
13,
27871,
320,
1634,
49045,
34149,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
30011,
1634,
3061,
4634,
329,
428,
1923,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
543,
3407,
257,
900,
286,
23989,
3061,
3858,
13,
198,
220,
220,
220,
220,
220,
220,
220,
9646,
62,
33990,
357,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
37540,
13,
19199,
13,
46102,
13,
2898,
5430,
34149,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25235,
691,
13,
13718,
12,
5715,
6460,
329,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9646,
1321,
13,
198,
220,
220,
220,
220,
220,
220,
220,
6074,
62,
14171,
357,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
268,
5700,
13,
19199,
13,
19197,
434,
19076,
4834,
388,
13,
19197,
434,
19076,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
28784,
4235,
329,
262,
1923,
13,
198,
220,
220,
220,
220,
220,
220,
220,
23989,
62,
26675,
357,
22468,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25235,
691,
13,
30011,
1634,
4776,
286,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1923,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
30011,
1634,
4776,
318,
281,
8636,
286,
703,
880,
257,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1923,
318,
900,
284,
1620,
13,
632,
16069,
422,
657,
4,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
357,
15,
13,
15,
8,
284,
1802,
4,
357,
16,
13,
15,
828,
351,
1802,
4,
12739,
326,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
262,
1923,
318,
9489,
379,
1336,
2785,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
770,
2214,
318,
9242,
329,
28594,
1850,
9964,
13,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4091,
366,
8585,
23989,
4776,
1,
379,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3740,
1378,
11284,
13,
13297,
13,
785,
14,
13297,
12,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9011,
14,
41484,
14,
24,
3312,
1314,
3510,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
770,
2214,
318,
1100,
12,
8807,
13,
198,
220,
220,
220,
220,
220,
220,
220,
23829,
62,
2536,
4338,
357,
2536,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4347,
13652,
23829,
4811,
973,
416,
1923,
13,
198,
220,
220,
220,
220,
220,
220,
220,
5810,
357,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
11321,
13,
19199,
13,
50246,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4513,
318,
281,
11353,
23829,
4811,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
287,
543,
262,
23789,
263,
13831,
257,
1728,
6903,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
286,
262,
11315,
1988,
13,
198,
220,
220,
220,
220,
220,
220,
220,
10107,
62,
13155,
66,
357,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
11321,
13,
19199,
13,
5124,
723,
34,
14751,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8997,
17969,
41190,
23829,
4811,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
17969,
3904,
12,
3106,
23829,
810,
2836,
13831,
583,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3904,
13,
198,
220,
220,
220,
220,
220,
220,
220,
10107,
62,
66,
4426,
357,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
11321,
13,
19199,
13,
5124,
723,
34,
4426,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8997,
17969,
327,
5868,
23829,
4811,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
17969,
10647,
12,
3106,
23829,
810,
2836,
13831,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
583,
7319,
25885,
13,
198,
220,
220,
220,
220,
220,
220,
220,
10107,
62,
13155,
85,
357,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
11321,
13,
19199,
13,
5124,
723,
34,
79,
85,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25235,
691,
13,
317,
23829,
4811,
326,
13831,
257,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4566,
11970,
2033,
583,
2008,
1570,
13,
198,
220,
220,
220,
220,
220,
220,
220,
20487,
62,
1102,
47178,
357,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
11321,
13,
19199,
13,
11518,
48439,
3103,
47178,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8997,
38962,
1096,
32200,
507,
23829,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4811,
326,
6338,
12991,
4340,
1271,
286,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32626,
981,
4581,
534,
4466,
13,
198,
220,
220,
220,
220,
220,
220,
220,
20487,
62,
1102,
9641,
62,
8367,
357,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
11321,
13,
19199,
13,
11518,
48439,
3103,
9641,
11395,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8997,
38962,
1096,
44101,
11052,
23829,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4811,
326,
6338,
5621,
27837,
284,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20487,
6426,
981,
4581,
534,
4466,
13,
198,
220,
220,
220,
220,
220,
220,
220,
2496,
62,
66,
8957,
357,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
11321,
13,
19199,
13,
21745,
34,
8957,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8997,
12744,
327,
4537,
23829,
4811,
326,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6338,
5621,
27837,
284,
1037,
651,
355,
867,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32626,
355,
1744,
379,
262,
2496,
1575,
12,
525,
12,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12673,
357,
34,
4537,
8,
345,
900,
13,
198,
220,
220,
220,
220,
220,
220,
220,
2496,
62,
11011,
2234,
62,
20077,
357,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
11321,
13,
19199,
13,
21745,
26950,
2234,
11649,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
12744,
9855,
2234,
8734,
23829,
4811,
13,
1052,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16359,
23829,
4811,
326,
5621,
27837,
284,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4620,
257,
10348,
5873,
286,
25885,
13,
198,
220,
220,
220,
220,
220,
220,
220,
2496,
62,
305,
292,
357,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
11321,
13,
19199,
13,
21745,
15450,
292,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8997,
12744,
15107,
1921,
23829,
4811,
326,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6338,
12991,
4340,
6426,
981,
20430,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
257,
2176,
2496,
1441,
319,
512,
4341,
357,
13252,
1921,
737,
198,
220,
220,
220,
220,
220,
220,
220,
2496,
62,
2777,
437,
357,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
11321,
13,
19199,
13,
21745,
4561,
437,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8997,
12744,
48293,
23829,
4811,
326,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6338,
5621,
534,
27837,
284,
1037,
651,
355,
867,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25785,
355,
1744,
1626,
534,
4466,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1411,
62,
13155,
66,
357,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
11321,
13,
19199,
13,
31905,
34,
14751,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8997,
22512,
327,
14751,
23829,
4811,
810,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
27837,
389,
257,
13390,
286,
262,
23944,
2756,
329,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
617,
922,
393,
2139,
13,
198,
220,
220,
220,
220,
220,
220,
220,
2496,
62,
66,
4426,
357,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
11321,
13,
19199,
13,
21745,
34,
4426,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
317,
23829,
4811,
326,
6338,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6436,
4340,
1575,
583,
7319,
25885,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
1398,
7311,
26232,
7,
1676,
1462,
13,
12837,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
374,
37811,
464,
3127,
6460,
329,
262,
1923,
13,
628,
220,
220,
220,
220,
220,
220,
220,
49213,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2496,
62,
13297,
62,
12947,
357,
30388,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10127,
9011,
481,
307,
4983,
351,
23645,
13,
785,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2989,
2482,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2496,
62,
12947,
62,
27349,
357,
30388,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10127,
9011,
481,
307,
4983,
319,
5212,
5043,
287,
262,
3012,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
11140,
7311,
357,
47911,
7559,
16793,
62,
13297,
62,
12947,
15506,
284,
635,
307,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7559,
7942,
15506,
737,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2496,
62,
11299,
62,
27349,
357,
30388,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10127,
9011,
481,
307,
4983,
319,
7368,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
21957,
3196,
287,
262,
3012,
16531,
7311,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1345,
28613,
389,
7368,
1262,
262,
1345,
5592,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
34054,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2496,
62,
3911,
1008,
62,
12947,
62,
27349,
357,
30388,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10127,
9011,
481,
307,
4983,
319,
262,
3012,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
35532,
7311,
13,
770,
318,
1695,
691,
284,
617,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2922,
3012,
5212,
5504,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
2496,
62,
13297,
62,
12947,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
8202,
3535,
11,
1271,
28,
20,
11,
11902,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2496,
62,
12947,
62,
27349,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
8202,
3535,
11,
1271,
28,
21,
11,
11902,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2496,
62,
11299,
62,
27349,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
8202,
3535,
11,
1271,
28,
22,
11,
11902,
28,
17821,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
2496,
62,
3911,
1008,
62,
12947,
62,
27349,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
8202,
3535,
11,
1271,
28,
23,
11,
11902,
28,
17821,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
1398,
12696,
34149,
12360,
7,
1676,
1462,
13,
12837,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
374,
37811,
46102,
12,
5715,
6460,
329,
7541,
9011,
13,
628,
220,
220,
220,
220,
220,
220,
220,
49213,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7541,
62,
16159,
62,
312,
357,
600,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9543,
18187,
13,
383,
6692,
12696,
3337,
1848,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
7541,
62,
16159,
62,
312,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
12394,
2414,
11,
1271,
28,
17,
11,
11902,
28,
17821,
8,
628,
220,
220,
220,
1398,
46584,
2725,
10961,
7,
1676,
1462,
13,
12837,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
374,
37811,
24564,
22090,
703,
555,
35559,
10113,
64,
9011,
481,
307,
9066,
13,
628,
220,
220,
220,
220,
220,
220,
220,
49213,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
39609,
62,
746,
10961,
62,
13812,
62,
6371,
62,
14171,
357,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
268,
5700,
13,
19199,
13,
53,
19689,
2725,
10961,
23114,
28165,
19076,
4834,
388,
13,
53,
19689,
2725,
10961,
23114,
28165,
19076,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
383,
3359,
4235,
329,
39609,
10113,
64,
32336,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
39609,
62,
746,
10961,
62,
5239,
357,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
268,
5700,
13,
19199,
13,
53,
19689,
2725,
10961,
8206,
4834,
388,
13,
53,
19689,
2725,
10961,
8206,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
383,
2420,
326,
481,
307,
9066,
287,
3359,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10289,
286,
262,
2420,
512,
618,
3052,
6764,
318,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
262,
6163,
3359,
4235,
329,
39609,
10113,
64,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32336,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
39609,
62,
746,
10961,
62,
13812,
62,
6371,
62,
14171,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
1677,
5883,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
33829,
28,
10502,
62,
10438,
414,
62,
746,
10961,
62,
13812,
62,
6371,
62,
14171,
13,
53,
19689,
2725,
10961,
23114,
28165,
19076,
4834,
388,
13,
53,
19689,
2725,
10961,
23114,
28165,
19076,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
39609,
62,
746,
10961,
62,
5239,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
1677,
5883,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
17,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
33829,
28,
10502,
62,
10438,
414,
62,
746,
10961,
62,
5239,
13,
53,
19689,
2725,
10961,
8206,
4834,
388,
13,
53,
19689,
2725,
10961,
8206,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
1398,
26977,
18243,
2782,
82,
34149,
7,
1676,
1462,
13,
12837,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
374,
37811,
464,
4634,
329,
12755,
26977,
11140,
47442,
357,
35,
4090,
737,
628,
220,
220,
220,
220,
220,
220,
220,
49213,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7386,
62,
3672,
357,
2536,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20906,
13,
383,
4455,
7386,
1438,
326,
428,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4634,
6870,
11,
304,
13,
70,
1539,
366,
13297,
13,
785,
1,
393,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
366,
2503,
13,
13297,
13,
785,
1911,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3303,
62,
8189,
357,
2536,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20906,
13,
383,
3303,
2438,
31577,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3303,
286,
262,
7386,
11,
304,
13,
70,
1539,
366,
268,
1911,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
779,
62,
18608,
18511,
62,
6371,
82,
62,
8807,
357,
30388,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10127,
262,
1923,
3544,
23789,
263,
14275,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
32336,
11541,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
21318,
357,
44015,
594,
58,
2536,
60,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
383,
1351,
286,
2443,
21318,
3917,
351,
262,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1923,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
7386,
62,
3672,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
18601,
2751,
11,
1271,
28,
21,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3303,
62,
8189,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
18601,
2751,
11,
1271,
28,
22,
8,
198,
220,
220,
220,
220,
220,
220,
220,
779,
62,
18608,
18511,
62,
6371,
82,
62,
8807,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
8202,
3535,
11,
1271,
28,
23,
11,
11902,
28,
17821,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
21318,
796,
44876,
13,
47541,
515,
15878,
7,
1676,
1462,
13,
18601,
2751,
11,
1271,
28,
24,
8,
628,
220,
220,
220,
1398,
9683,
425,
27871,
320,
1634,
7,
1676,
1462,
13,
12837,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
374,
37811,
17563,
425,
23989,
4634,
329,
428,
1923,
11,
543,
198,
220,
220,
220,
220,
220,
220,
220,
3407,
257,
900,
286,
11315,
4028,
284,
27183,
428,
1923,
198,
220,
220,
220,
220,
220,
220,
220,
3371,
13,
628,
220,
220,
220,
220,
220,
220,
220,
49213,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
11315,
62,
4658,
357,
44015,
594,
58,
2536,
60,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
383,
6163,
900,
286,
11315,
4028,
329,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
45780,
428,
1923,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
11315,
62,
4658,
796,
44876,
13,
47541,
515,
15878,
7,
1676,
1462,
13,
18601,
2751,
11,
1271,
28,
17,
8,
628,
220,
220,
220,
1398,
2034,
46102,
34149,
7,
1676,
1462,
13,
12837,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
374,
37811,
46102,
12,
5715,
6460,
329,
2034,
13718,
82,
13,
628,
220,
220,
220,
220,
220,
220,
220,
49213,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
23829,
62,
2536,
4338,
62,
35231,
62,
4906,
357,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
268,
5700,
13,
19199,
13,
4677,
46102,
33,
13494,
13290,
4338,
49045,
6030,
4834,
388,
13,
4677,
46102,
33,
13494,
13290,
4338,
49045,
6030,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1432,
6629,
262,
3061,
543,
262,
23829,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4811,
286,
428,
598,
1923,
815,
27183,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3371,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
598,
62,
312,
357,
2536,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9543,
18187,
13,
317,
4731,
326,
24139,
21079,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
257,
5175,
3586,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
598,
62,
8095,
357,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
268,
5700,
13,
19199,
13,
4677,
46102,
4677,
22658,
4834,
388,
13,
4677,
46102,
4677,
22658,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9543,
18187,
13,
383,
3586,
3650,
326,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1233,
7657,
428,
2176,
598,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
23829,
62,
2536,
4338,
62,
35231,
62,
4906,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
1677,
5883,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
33829,
28,
1324,
62,
35012,
62,
65,
13494,
62,
2536,
4338,
62,
35231,
62,
4906,
13,
4677,
46102,
33,
13494,
13290,
4338,
49045,
6030,
4834,
388,
13,
4677,
46102,
33,
13494,
13290,
4338,
49045,
6030,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
598,
62,
312,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
18601,
2751,
11,
1271,
28,
19,
11,
11902,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
598,
62,
8095,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
1677,
5883,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
18,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
33829,
28,
1324,
62,
35012,
62,
1324,
62,
8095,
13,
4677,
46102,
4677,
22658,
4834,
388,
13,
4677,
46102,
4677,
22658,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
1398,
39109,
34149,
7,
1676,
1462,
13,
12837,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
374,
37811,
464,
4634,
329,
39109,
9964,
13,
2896,
1127,
262,
6881,
286,
198,
220,
220,
220,
220,
220,
220,
220,
3186,
326,
460,
307,
23944,
416,
262,
1923,
11,
290,
703,
428,
198,
220,
220,
220,
220,
220,
220,
220,
1923,
44020,
351,
584,
39109,
9964,
13,
628,
220,
220,
220,
220,
220,
220,
220,
49213,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
20729,
62,
312,
357,
600,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9543,
18187,
13,
4522,
286,
262,
33508,
3337,
1848,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
770,
2214,
318,
2672,
329,
2251,
4560,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
770,
2214,
318,
40139,
329,
39109,
9964,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4200,
62,
19315,
357,
2536,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9543,
18187,
13,
17329,
1499,
286,
3186,
284,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2291,
287,
262,
1923,
13,
770,
2214,
318,
2672,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
39109,
9964,
13,
770,
2214,
318,
40139,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
770,
2214,
318,
11902,
329,
1729,
12,
2484,
33307,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9964,
11,
475,
340,
1276,
307,
4961,
284,
705,
30148,
6,
611,
900,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1923,
62,
49336,
357,
600,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
34416,
286,
262,
1923,
13,
13718,
82,
351,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5470,
1146,
2440,
15369,
1011,
38177,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
625,
883,
351,
2793,
15369,
13,
770,
2214,
318,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2672,
329,
39109,
9964,
11,
351,
3815,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1022,
657,
290,
362,
11,
19889,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
770,
2214,
318,
11902,
329,
10880,
39109,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9964,
11,
475,
1276,
307,
4961,
284,
513,
611,
900,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
7139,
62,
12001,
357,
30388,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10127,
284,
2291,
1957,
3186,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
20729,
62,
312,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
12394,
2414,
11,
1271,
28,
20,
11,
11902,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
4200,
62,
19315,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
18601,
2751,
11,
1271,
28,
21,
11,
11902,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1923,
62,
49336,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
12394,
2624,
11,
1271,
28,
22,
11,
11902,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
7139,
62,
12001,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
8202,
3535,
11,
1271,
28,
23,
11,
11902,
28,
17821,
8,
628,
220,
220,
220,
1398,
37169,
34149,
7,
1676,
1462,
13,
12837,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
374,
37811,
46102,
12,
5715,
6460,
329,
9646,
1321,
13,
628,
220,
220,
220,
220,
220,
220,
220,
49213,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9646,
62,
6371,
357,
2536,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25235,
691,
13,
383,
19016,
973,
329,
8925,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
9646,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
9646,
62,
6371,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
18601,
2751,
11,
1271,
28,
17,
11,
11902,
28,
17821,
8,
628,
220,
220,
220,
1398,
32960,
21745,
6030,
34149,
7,
1676,
1462,
13,
12837,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
374,
37811,
6207,
6629,
257,
4947,
286,
6460,
3519,
284,
9011,
198,
220,
220,
220,
220,
220,
220,
220,
4903,
313,
7641,
278,
13,
628,
220,
220,
220,
220,
220,
220,
220,
49213,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3967,
62,
469,
78,
62,
16793,
62,
4906,
357,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
268,
5700,
13,
19199,
13,
21604,
1800,
10082,
78,
21745,
6030,
4834,
388,
13,
21604,
1800,
10082,
78,
21745,
6030,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
383,
4634,
973,
329,
3967,
4903,
313,
7641,
278,
287,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
428,
1948,
1923,
13,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4633,
62,
469,
78,
62,
16793,
62,
4906,
357,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
268,
5700,
13,
19199,
13,
32863,
876,
10082,
78,
21745,
6030,
4834,
388,
13,
32863,
876,
10082,
78,
21745,
6030,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
383,
4634,
973,
329,
4633,
4903,
313,
7641,
278,
287,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
428,
1948,
1923,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
3967,
62,
469,
78,
62,
16793,
62,
4906,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
1677,
5883,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
33829,
28,
10502,
62,
24561,
62,
469,
78,
62,
16793,
62,
4906,
13,
21604,
1800,
10082,
78,
21745,
6030,
4834,
388,
13,
21604,
1800,
10082,
78,
21745,
6030,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
4633,
62,
469,
78,
62,
16793,
62,
4906,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
1677,
5883,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
17,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
33829,
28,
10502,
62,
31591,
62,
469,
78,
62,
16793,
62,
4906,
13,
32863,
876,
10082,
78,
21745,
6030,
4834,
388,
13,
32863,
876,
10082,
78,
21745,
6030,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
1398,
10714,
46102,
34149,
7,
1676,
1462,
13,
12837,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
374,
37811,
46102,
4634,
329,
1957,
9964,
13,
628,
220,
220,
220,
220,
220,
220,
220,
49213,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4067,
62,
10459,
62,
4906,
357,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
268,
5700,
13,
19199,
13,
14749,
7416,
6030,
4834,
388,
13,
14749,
7416,
6030,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
383,
4067,
2723,
2099,
329,
428,
1957,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1923,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
4067,
62,
10459,
62,
4906,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
1677,
5883,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
33829,
28,
10502,
62,
24886,
62,
10459,
62,
4906,
13,
14749,
7416,
6030,
4834,
388,
13,
14749,
7416,
6030,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
1398,
30011,
1634,
49045,
34149,
7,
1676,
1462,
13,
12837,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
374,
37811,
27871,
320,
1634,
3061,
4634,
329,
428,
1923,
11,
543,
3407,
257,
198,
220,
220,
220,
220,
220,
220,
220,
900,
286,
23989,
3061,
3858,
13,
628,
220,
220,
220,
220,
220,
220,
220,
49213,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
23989,
62,
35231,
62,
19199,
357,
44015,
594,
58,
13297,
13,
5643,
13,
13297,
5643,
13,
85,
21,
13,
268,
5700,
13,
19199,
13,
27871,
320,
1634,
49045,
6030,
4834,
388,
13,
27871,
320,
1634,
49045,
6030,
60,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
383,
1351,
286,
23989,
3061,
3858,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
23989,
62,
35231,
62,
19199,
796,
44876,
13,
47541,
515,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
1677,
5883,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
16,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
33829,
28,
40085,
1634,
62,
35231,
62,
4906,
13,
27871,
320,
1634,
49045,
6030,
4834,
388,
13,
27871,
320,
1634,
49045,
6030,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1267,
628,
220,
220,
220,
8271,
62,
3672,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
18601,
2751,
11,
1271,
28,
16,
8,
198,
220,
220,
220,
4686,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
12394,
2414,
11,
1271,
28,
3270,
11,
11902,
28,
17821,
8,
198,
220,
220,
220,
1438,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
18601,
2751,
11,
1271,
28,
3365,
11,
11902,
28,
17821,
8,
198,
220,
220,
220,
3722,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
1677,
5883,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
20,
11,
198,
220,
220,
220,
220,
220,
220,
220,
33829,
28,
35012,
62,
13376,
13,
46102,
19580,
4834,
388,
13,
46102,
19580,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
7351,
62,
13376,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
1677,
5883,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
2481,
11,
198,
220,
220,
220,
220,
220,
220,
220,
33829,
28,
35012,
62,
31293,
62,
13376,
13,
46102,
11838,
278,
19580,
4834,
388,
13,
46102,
11838,
278,
19580,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
512,
62,
31293,
62,
40085,
1634,
62,
13376,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
1677,
5883,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
23,
11,
198,
220,
220,
220,
220,
220,
220,
220,
33829,
28,
10502,
62,
324,
62,
31293,
62,
40085,
1634,
62,
13376,
13,
2782,
11838,
278,
27871,
320,
1634,
19580,
4834,
388,
13,
2782,
11838,
278,
27871,
320,
1634,
19580,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
8560,
62,
17620,
62,
4906,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
1677,
5883,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
24,
11,
198,
220,
220,
220,
220,
220,
220,
220,
33829,
28,
10502,
62,
34442,
62,
17620,
62,
4906,
13,
2782,
31809,
29239,
6030,
4834,
388,
13,
2782,
31809,
29239,
6030,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
8560,
62,
17620,
62,
7266,
62,
4906,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
1677,
5883,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
940,
11,
198,
220,
220,
220,
220,
220,
220,
220,
33829,
28,
10502,
62,
34442,
62,
17620,
62,
7266,
62,
4906,
13,
2782,
31809,
29239,
7004,
6030,
4834,
388,
13,
2782,
31809,
29239,
7004,
6030,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
9646,
62,
6371,
62,
28243,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
18601,
2751,
11,
1271,
28,
1899,
11,
11902,
28,
17821,
8,
198,
220,
220,
220,
19016,
62,
23144,
62,
17143,
7307,
796,
44876,
13,
47541,
515,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
44,
1546,
4090,
8264,
11,
1271,
28,
1065,
11,
3275,
28,
23144,
62,
17143,
2357,
13,
15022,
36301,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
1103,
62,
2435,
62,
65,
13494,
62,
33990,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
44,
1546,
4090,
8264,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
2670,
11,
198,
220,
220,
220,
220,
220,
220,
220,
3275,
28,
70,
363,
66,
62,
5305,
62,
2435,
62,
65,
13494,
62,
33990,
13,
15633,
7575,
33,
13494,
34149,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
3127,
62,
33692,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
44,
1546,
4090,
8264,
11,
1271,
28,
1415,
11,
3275,
28,
26245,
26232,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
7541,
62,
33990,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
44,
1546,
4090,
8264,
11,
1271,
28,
2624,
11,
3275,
28,
21352,
417,
34149,
12360,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
8925,
62,
12947,
62,
5643,
62,
33990,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
44,
1546,
4090,
8264,
11,
1271,
28,
2091,
11,
3275,
28,
44090,
18243,
2782,
82,
34149,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
9735,
62,
33990,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
44,
1546,
4090,
8264,
11,
1271,
28,
2623,
11,
3275,
28,
2484,
33307,
34149,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
10822,
62,
33990,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
44,
1546,
4090,
8264,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
3559,
11,
198,
220,
220,
220,
220,
220,
220,
220,
3275,
28,
70,
363,
66,
62,
16793,
278,
62,
33990,
13,
21745,
278,
34149,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
40087,
62,
16793,
62,
4906,
62,
33990,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
44,
1546,
4090,
8264,
11,
1271,
28,
2857,
11,
3275,
28,
10082,
78,
21745,
6030,
34149,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
1957,
62,
35012,
62,
33990,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
44,
1546,
4090,
8264,
11,
1271,
28,
1120,
11,
3275,
28,
14565,
46102,
34149,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
598,
62,
35012,
62,
33990,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
44,
1546,
4090,
8264,
11,
1271,
28,
4349,
11,
3275,
28,
4677,
46102,
34149,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
14722,
796,
44876,
13,
47541,
515,
15878,
7,
1676,
1462,
13,
18601,
2751,
11,
1271,
28,
5333,
8,
198,
220,
220,
220,
6306,
62,
4906,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
1677,
5883,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
1558,
11,
198,
220,
220,
220,
220,
220,
220,
220,
33829,
28,
35012,
62,
23100,
3681,
62,
4906,
13,
46102,
20468,
3681,
6030,
4834,
388,
13,
46102,
20468,
3681,
6030,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
2779,
62,
35012,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
18601,
2751,
11,
1271,
28,
3980,
11,
11902,
28,
17821,
8,
198,
220,
220,
220,
1923,
62,
37315,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
18601,
2751,
11,
1271,
28,
5237,
11,
11902,
28,
17821,
8,
198,
220,
220,
220,
23829,
62,
2536,
4338,
62,
4906,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
1677,
5883,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
1828,
11,
198,
220,
220,
220,
220,
220,
220,
220,
33829,
28,
10502,
62,
65,
13494,
62,
2536,
4338,
62,
4906,
13,
33,
13494,
13290,
4338,
6030,
4834,
388,
13,
33,
13494,
13290,
4338,
6030,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
923,
62,
4475,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
18601,
2751,
11,
1271,
28,
5066,
11,
11902,
28,
17821,
8,
198,
220,
220,
220,
886,
62,
4475,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
18601,
2751,
11,
1271,
28,
2414,
11,
11902,
28,
17821,
8,
198,
220,
220,
220,
2457,
62,
6371,
62,
37333,
844,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
18601,
2751,
11,
1271,
28,
2996,
11,
11902,
28,
17821,
8,
198,
220,
220,
220,
8373,
62,
27979,
796,
44876,
13,
47541,
515,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
44,
1546,
4090,
8264,
11,
1271,
28,
1821,
11,
3275,
28,
35324,
62,
11128,
13,
37,
28707,
15610,
30150,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
2008,
62,
17938,
62,
44708,
62,
6063,
1799,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
1677,
5883,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
3682,
11,
198,
220,
220,
220,
220,
220,
220,
220,
33829,
28,
17938,
62,
44708,
62,
6063,
1799,
13,
38416,
45372,
50,
5013,
1799,
4834,
388,
13,
38416,
45372,
50,
5013,
1799,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
39609,
62,
746,
10961,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
44,
1546,
4090,
8264,
11,
1271,
28,
2598,
11,
3275,
28,
53,
19689,
2725,
10961,
35751,
198,
220,
220,
220,
21792,
62,
40085,
1634,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
44,
1546,
4090,
8264,
11,
1271,
28,
2231,
11,
3275,
28,
17563,
425,
27871,
320,
1634,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
23989,
62,
35231,
62,
33990,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
44,
1546,
4090,
8264,
11,
1271,
28,
4051,
11,
3275,
28,
27871,
320,
1634,
49045,
34149,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
9646,
62,
33990,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
44,
1546,
4090,
8264,
11,
1271,
28,
3510,
11,
3275,
28,
2898,
5430,
34149,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
6074,
62,
14171,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
1677,
5883,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
4309,
11,
198,
220,
220,
220,
220,
220,
220,
220,
33829,
28,
10502,
62,
37301,
62,
14171,
13,
19197,
434,
19076,
4834,
388,
13,
19197,
434,
19076,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
23989,
62,
26675,
796,
44876,
13,
15878,
7,
1676,
1462,
13,
35,
2606,
19146,
11,
1271,
28,
2791,
11,
11902,
28,
17821,
8,
198,
220,
220,
220,
23829,
62,
2536,
4338,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
18601,
2751,
11,
1271,
28,
3134,
11,
530,
1659,
2625,
35012,
62,
65,
13494,
62,
2536,
4338,
1,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
5810,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
44,
1546,
4090,
8264,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
2920,
11,
198,
220,
220,
220,
220,
220,
220,
220,
530,
1659,
2625,
35012,
62,
65,
13494,
62,
2536,
4338,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
3275,
28,
65,
13494,
13,
50246,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
10107,
62,
13155,
66,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
44,
1546,
4090,
8264,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
1731,
11,
198,
220,
220,
220,
220,
220,
220,
220,
530,
1659,
2625,
35012,
62,
65,
13494,
62,
2536,
4338,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
3275,
28,
65,
13494,
13,
5124,
723,
34,
14751,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
10107,
62,
66,
4426,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
44,
1546,
4090,
8264,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
1495,
11,
198,
220,
220,
220,
220,
220,
220,
220,
530,
1659,
2625,
35012,
62,
65,
13494,
62,
2536,
4338,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
3275,
28,
65,
13494,
13,
5124,
723,
34,
4426,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
10107,
62,
13155,
85,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
44,
1546,
4090,
8264,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
2718,
11,
198,
220,
220,
220,
220,
220,
220,
220,
530,
1659,
2625,
35012,
62,
65,
13494,
62,
2536,
4338,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
3275,
28,
65,
13494,
13,
5124,
723,
34,
79,
85,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
20487,
62,
1102,
47178,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
44,
1546,
4090,
8264,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
1270,
11,
198,
220,
220,
220,
220,
220,
220,
220,
530,
1659,
2625,
35012,
62,
65,
13494,
62,
2536,
4338,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
3275,
28,
65,
13494,
13,
11518,
48439,
3103,
47178,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
20487,
62,
1102,
9641,
62,
8367,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
44,
1546,
4090,
8264,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
3132,
11,
198,
220,
220,
220,
220,
220,
220,
220,
530,
1659,
2625,
35012,
62,
65,
13494,
62,
2536,
4338,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
3275,
28,
65,
13494,
13,
11518,
48439,
3103,
9641,
11395,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
2496,
62,
66,
8957,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
44,
1546,
4090,
8264,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
2075,
11,
198,
220,
220,
220,
220,
220,
220,
220,
530,
1659,
2625,
35012,
62,
65,
13494,
62,
2536,
4338,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
3275,
28,
65,
13494,
13,
21745,
34,
8957,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
2496,
62,
11011,
2234,
62,
20077,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
44,
1546,
4090,
8264,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
2780,
11,
198,
220,
220,
220,
220,
220,
220,
220,
530,
1659,
2625,
35012,
62,
65,
13494,
62,
2536,
4338,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
3275,
28,
65,
13494,
13,
21745,
26950,
2234,
11649,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
2496,
62,
305,
292,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
44,
1546,
4090,
8264,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
1959,
11,
198,
220,
220,
220,
220,
220,
220,
220,
530,
1659,
2625,
35012,
62,
65,
13494,
62,
2536,
4338,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
3275,
28,
65,
13494,
13,
21745,
15450,
292,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
2496,
62,
2777,
437,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
44,
1546,
4090,
8264,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
1983,
11,
198,
220,
220,
220,
220,
220,
220,
220,
530,
1659,
2625,
35012,
62,
65,
13494,
62,
2536,
4338,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
3275,
28,
65,
13494,
13,
21745,
4561,
437,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
1411,
62,
13155,
66,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
44,
1546,
4090,
8264,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
2682,
11,
198,
220,
220,
220,
220,
220,
220,
220,
530,
1659,
2625,
35012,
62,
65,
13494,
62,
2536,
4338,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
3275,
28,
65,
13494,
13,
31905,
34,
14751,
11,
198,
220,
220,
220,
1267,
198,
220,
220,
220,
2496,
62,
66,
4426,
796,
44876,
13,
15878,
7,
198,
220,
220,
220,
220,
220,
220,
220,
44876,
13,
44,
1546,
4090,
8264,
11,
198,
220,
220,
220,
220,
220,
220,
220,
1271,
28,
3901,
11,
198,
220,
220,
220,
220,
220,
220,
220,
530,
1659,
2625,
35012,
62,
65,
13494,
62,
2536,
4338,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
3275,
28,
65,
13494,
13,
21745,
34,
4426,
11,
198,
220,
220,
220,
1267,
628,
198,
834,
439,
834,
796,
46545,
7,
82,
9741,
7,
834,
11235,
672,
3046,
834,
13,
805,
8409,
4008,
198
] | 2.423958 | 11,829 |
from rest_framework import generics, permissions
from TvFY.account.serializers import AccountSerializer, CreateAccountSerializer
| [
6738,
1334,
62,
30604,
1330,
1152,
873,
11,
21627,
198,
198,
6738,
309,
85,
43833,
13,
23317,
13,
46911,
11341,
1330,
10781,
32634,
7509,
11,
13610,
30116,
32634,
7509,
628,
198
] | 4.258065 | 31 |
#!/usr/bin/python3
import chainer
import numpy as np
import onnx_chainer
import large_models
if __name__ == '__main__':
main()
| [
2,
48443,
14629,
14,
8800,
14,
29412,
18,
198,
198,
11748,
6333,
263,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
319,
77,
87,
62,
7983,
263,
198,
198,
11748,
1588,
62,
27530,
628,
628,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
1388,
3419,
198
] | 2.555556 | 54 |
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
INSTALL_REQUIRES = ['neo4j-driver>=4.1.1',
'tqdm==4.48.2']
setuptools.setup(
name="pedgraph",
version="0.0.1",
author="Ólavur Mortensen",
author_email="[email protected]",
description="PedGraph -- Multidimensional network database for pedigree analysis",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/olavurmortensen/pedgraph",
packages=setuptools.find_packages(),
install_requires=INSTALL_REQUIRES,
python_requires='>=3.6',
)
| [
11748,
900,
37623,
10141,
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,
198,
38604,
7036,
62,
2200,
10917,
4663,
1546,
796,
37250,
710,
78,
19,
73,
12,
26230,
29,
28,
19,
13,
16,
13,
16,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
705,
83,
80,
36020,
855,
19,
13,
2780,
13,
17,
20520,
198,
198,
2617,
37623,
10141,
13,
40406,
7,
198,
220,
220,
220,
1438,
2625,
9124,
34960,
1600,
198,
220,
220,
220,
2196,
2625,
15,
13,
15,
13,
16,
1600,
198,
220,
220,
220,
1772,
2625,
127,
241,
18809,
333,
10788,
18756,
1600,
198,
220,
220,
220,
1772,
62,
12888,
2625,
349,
615,
333,
30171,
18756,
31,
14816,
13,
785,
1600,
198,
220,
220,
220,
6764,
2625,
43468,
37065,
1377,
7854,
312,
16198,
3127,
6831,
329,
46895,
3781,
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,
349,
615,
333,
30171,
18756,
14,
9124,
34960,
1600,
198,
220,
220,
220,
10392,
28,
2617,
37623,
10141,
13,
19796,
62,
43789,
22784,
198,
220,
220,
220,
2721,
62,
47911,
28,
38604,
7036,
62,
2200,
10917,
4663,
1546,
11,
198,
220,
220,
220,
21015,
62,
47911,
11639,
29,
28,
18,
13,
21,
3256,
198,
8,
198
] | 2.445283 | 265 |
"""
Q380
Insert Delete GetRandom O(1)
Medium
Array; Hash Table; Design.
Design a data structure that supports all following operations in average O(1) time.
1. insert(val): Inserts an item val to the set if not already present.
2. remove(val): Removes an item val from the set if present.
3. getRandom: Returns a random element from current set of elements.
Each element must have the same probability of being returned.
Your RandomizedSet object will be instantiated and called as such:
obj = RandomizedSet()
param_1 = obj.insert(val)
param_2 = obj.remove(val)
param_3 = obj.getRandom()
"""
import random
randomSet = RandomizedSet()
print(randomSet.insert(1))
print(randomSet.insert(1))
print(randomSet.remove(2))
print(randomSet.insert(2))
print(randomSet.getRandom())
print(randomSet.getRandom())
| [
37811,
198,
48,
23734,
198,
44402,
23520,
3497,
29531,
440,
7,
16,
8,
198,
31205,
198,
198,
19182,
26,
21059,
8655,
26,
8495,
13,
198,
198,
23067,
257,
1366,
4645,
326,
6971,
477,
1708,
4560,
287,
2811,
440,
7,
16,
8,
640,
13,
198,
198,
16,
13,
7550,
7,
2100,
2599,
35835,
82,
281,
2378,
1188,
284,
262,
900,
611,
407,
1541,
1944,
13,
198,
17,
13,
4781,
7,
2100,
2599,
3982,
5241,
281,
2378,
1188,
422,
262,
900,
611,
1944,
13,
198,
18,
13,
651,
29531,
25,
16409,
257,
4738,
5002,
422,
1459,
900,
286,
4847,
13,
198,
220,
220,
220,
5501,
5002,
1276,
423,
262,
976,
12867,
286,
852,
4504,
13,
198,
198,
7120,
14534,
1143,
7248,
2134,
481,
307,
9113,
12931,
290,
1444,
355,
884,
25,
198,
26801,
796,
14534,
1143,
7248,
3419,
198,
17143,
62,
16,
796,
26181,
13,
28463,
7,
2100,
8,
198,
17143,
62,
17,
796,
26181,
13,
28956,
7,
2100,
8,
198,
17143,
62,
18,
796,
26181,
13,
1136,
29531,
3419,
198,
37811,
198,
198,
11748,
4738,
628,
628,
198,
25120,
7248,
796,
14534,
1143,
7248,
3419,
198,
4798,
7,
25120,
7248,
13,
28463,
7,
16,
4008,
198,
4798,
7,
25120,
7248,
13,
28463,
7,
16,
4008,
198,
4798,
7,
25120,
7248,
13,
28956,
7,
17,
4008,
198,
4798,
7,
25120,
7248,
13,
28463,
7,
17,
4008,
198,
4798,
7,
25120,
7248,
13,
1136,
29531,
28955,
198,
4798,
7,
25120,
7248,
13,
1136,
29531,
28955,
628,
628,
628
] | 3.338776 | 245 |
#!/usr/bin/python
#coding = utf-8
from RiskQuantLib.Security.base import base
from RiskQuantLib.Set.Security.Stock.stock import setStock
class stock(base,setStock):
"""
stock is one of the five basic classes.
"""
| [
2,
48443,
14629,
14,
8800,
14,
29412,
198,
2,
66,
7656,
796,
3384,
69,
12,
23,
198,
198,
6738,
19602,
24915,
25835,
13,
24074,
13,
8692,
1330,
2779,
198,
6738,
19602,
24915,
25835,
13,
7248,
13,
24074,
13,
26207,
13,
13578,
1330,
900,
26207,
198,
198,
4871,
4283,
7,
8692,
11,
2617,
26207,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
4283,
318,
530,
286,
262,
1936,
4096,
6097,
13,
198,
220,
220,
220,
37227,
628,
628,
628,
198
] | 2.876543 | 81 |
import tropo_mods.auto_sns as auto_sns
from troposphere import Template
test_sns_yaml = """\
Resources:
SNSTopic1:
Properties:
TopicName: my_new_topic
Type: AWS::SNS::Topic
"""
t = Template()
topic = auto_sns.AutoSNS(t, topic_name="my_new_topic", email="[email protected]")
assert test_sns_yaml == topic.print_to_yaml()
| [
11748,
14673,
78,
62,
24122,
13,
23736,
62,
82,
5907,
355,
8295,
62,
82,
5907,
198,
6738,
14673,
22829,
1330,
37350,
198,
198,
9288,
62,
82,
5907,
62,
88,
43695,
796,
37227,
59,
198,
33236,
25,
198,
220,
11346,
2257,
16603,
16,
25,
198,
220,
220,
220,
24946,
25,
198,
220,
220,
220,
220,
220,
47373,
5376,
25,
616,
62,
3605,
62,
26652,
198,
220,
220,
220,
5994,
25,
30865,
3712,
50,
8035,
3712,
33221,
198,
37811,
198,
198,
83,
796,
37350,
3419,
198,
26652,
796,
8295,
62,
82,
5907,
13,
27722,
50,
8035,
7,
83,
11,
7243,
62,
3672,
2625,
1820,
62,
3605,
62,
26652,
1600,
3053,
2625,
9288,
31,
1326,
13,
785,
4943,
198,
198,
30493,
1332,
62,
82,
5907,
62,
88,
43695,
6624,
7243,
13,
4798,
62,
1462,
62,
88,
43695,
3419,
198
] | 2.448529 | 136 |
#!/usr/bin/python
#Author: Jared Adolf-Bryfogle
import sys
from collections import defaultdict
from jade2.basic.path import *
from jade2.basic.threading.Threader import Threader
from jade2.basic.structure import Structure
from jade2.basic.path import *
#from jade2.antibody import util as ab_util
class PyMolScriptWriter:
"""
Class to help build PyMol scripts using arbitrary lists of PDBs.
Example for loading all top models into PyMol, aligning them to the native, and labeling them:
scripter = PyMolScriptWriter(outpath)
if native_path:
scripter.add_load_pdb(native_path, "native_"+os.path.basename(native_path))
scripter.add_load_pdbs(pdb_path_list, load_as_list)
scripter.add_align_all_to(scripter.get_final_names()[0])
scripter.add_show("cartoon")
scripter.add_line("center")
scripter.add_save_session(pse_path)
scripter.write_script("load_align_top.pml")
run_pymol_script(top_dir+"/"+"load_align_top.pml")
"""
def _read_colors(self, path):
"""
Reads PyMOl colors text file. Loads colors.
"""
INFILE = open(path, 'r')
color_type = ""
for line in INFILE:
line = line.strip()
if not line: continue
if line.startswith("#"): continue
lineSP = line.split()
if lineSP[0] == "TYPE":
color_type = lineSP[1].lower()
self.color_types[color_type] = []
continue
self.colors.append(lineSP[0])
self.color_types[color_type].append(lineSP[0])
INFILE.close()
print("Done reading PyMol color types")
####################################################################################################
## Helpful Functions
###################################################################################################
def get_final_names(self):
"""
Get the final names PyMOL will use after loading PDBs.
"""
return self.final_names
def get_sele(self, chain, resid_array):
"""
Get a a selection from an array of residue IDs and a particular chain.
If the residue Id is a two-element tupple, then add a selection between the first and last element
"""
if len(resid_array) == 1:
sele = "chain "+chain+" & "+get_entry(resid_array[0])
else:
sele = "chain "+chain+" & ( "+get_entry(resid_array[0])
for resi in resid_array[1:]:
sele = sele +" | "+get_entry(resi)
sele = sele+" )"
return sele
####################################################################################################
## Build PyMol Script:
###################################################################################################
def add_line(self, line):
"""
Add an arbitrary line to the script
"""
self.script_lines.append(line)
def add_save_session(self, session_path):
"""
Add a line to save the session to a FULL path
"""
if not re.search(".pse", session_path): session_path = session_path+".pse"
self.script_lines.append("cmd.save('"+session_path+"')")
####################################################################################################
## Load PDBs and Groups:
###################################################################################################
def add_load_pdb(self, pdb_path, load_as = None, group = None):
"""
Add line to load a PDB Path into PyMol
Optionally load them as a particular name
Will then set the final names PyMol uses to the object.
"""
#print "PDB"+repr(pdb_path)
self.pdbs.append(pdb_path)
name = os.path.basename(pdb_path)
name = "".join(name.split(".")[0:-1])
basenameSP = name.split('.')
if re.search(".pdb.gz", name):
basename = "".join(basenameSP[:len(basenameSP)-2])
else:
basename = "".join(basenameSP[:len(basenameSP)-1])
if not load_as:
self.final_names.append(name)
self.script_lines.append("load "+pdb_path)
else:
self.final_names.append(load_as)
self.script_lines.append("load "+pdb_path+", "+load_as)
if group:
self.add_group_object(self.final_names[-1], group)
def add_load_pdbs(self, pdb_paths, load_as = None, group = None):
"""
Add lines to load the list of PDB paths into PyMol
Optionally load them as a particular name
Will then set the final names PyMol uses to the object.
"""
i = 0
for path in pdb_paths:
print(path)
if load_as:
self.add_load_pdb(path, load_as = load_as[i], group = group)
else:
self.add_load_pdb(path, group = group)
i+=1
def add_group_object(self, name, new_group_name):
"""
Group a single object to another. Useful for meta-groups.
"""
self.script_lines.append("group "+new_group_name+", "+name)
def add_group_objects(self, names, new_group_name):
"""
Group a set of pre-loaded names to the new group.
"""
names_str = " ".join(names)
self.script_lines.append("group "+new_group_name+", "+names_str)
####################################################################################################
## Alignment :
###################################################################################################
def add_superimpose(self, sele1, sele2):
"""
Super impose two selections using the super command
"""
self.add_line("super "+sele1+", "+sele2)
def add_align_all(self, sele1 = "", sele2="", limit_to_bb=True, pair_fit = False):
"""
Align all to the first model
"""
for name in self.final_names[1:]:
self.add_align_to(name, self.final_names[0], sele1, sele2, limit_to_bb, pair_fit)
def add_align_all_to(self, model, sele1 = "", sele2="", limit_to_bb=True, pair_fit = False):
"""
Align all to a particular model
"""
for name in self.final_names:
if name !=model:
self.add_align_to(name, model, sele1, sele2, limit_to_bb)
def add_align_to(self, model1, model2, sele1="", sele2 = "", limit_to_bb = True, pair_fit = False):
"""
Align one model to another, optionally specifying a selection.
Recommended to use superimpose instead
"""
m1 = get_decoy_name(model1)
m2 = get_decoy_name(model2)
align = "align "
if pair_fit:
align = "pair_fit "
bb = ""
if limit_to_bb:
bb = " & name n+ca+c+o "
if not sele1:
self.script_lines.append(align + m1 + bb+","+m2 + bb)
else:
self.script_lines.append(align + m1+" & "+sele1+bb+", "+m2 +" &"+sele2+ bb)
####################################################################################################
## Misc. :
###################################################################################################
def add_show(self, vis_type, sele=""):
"""
Show a representation. Optionally with a particular selection
"""
if not vis_type in self.vis_options:
print(("Type "+vis_type+" not a known vis_option. Options are: \n"+repr(self.vis_options)))
if not sele:
self.script_lines.append("show "+vis_type)
else:
self.script_lines.append("show "+vis_type+", "+sele)
def add_hide(self, vis_type, sele=""):
"""
Hide a representation. Optionally with a particular selection.
"""
if not type in self.vis_options:
print(("Type "+vis_type+" not a known vis_option. Options are: \n"+repr(self.vis_options)))
if not sele:
self.script_lines.append("hide "+vis_type)
else:
self.script_lines.append("hide "+vis_type+", "+sele)
def add_color(self, sele, color):
"""
Add color to a selection.
sele: PyMol Selection
color: Particular color.
See Also self.colors
"""
if not color in self.colors:
sys.exit("Color not understood by PyMol: "+color+" See simple_pymol_colors for list of acceptable colors")
self.script_lines.append("color "+color+", "+sele)
def add_antibody_script(self):
"""
Add running the color cdrs pymol script. Antibody must be in AHO numbering
"""
color_cdrs_path = get_bin_path()+"/color_cdrs.pml"
self.add_line("@"+color_cdrs_path)
def run_script(self, script_outname = "pml_script.pml", delete_script = True, parellel_process = False):
"""
Save and Run the Pymol script
:param script_outname: str
"""
run_pymol_script(self.save_script(script_outname), delete_script = delete_script, parellel_process=parellel_process)
########################################################################################################################
## Helper Functions
########################################################################################################################
def run_pymol_script(script_path, run_gui = False, delete_script = False, parellel_process = True):
"""
Run the script of the given path.
"""
if not os.path.exists(script_path):
if os.path.exists(os.getcwd()+script_path):
script_path = os.getcwd()+script_path
elif os.path.exists(os.getcwd()+"/"+script_path):
script_path = os.getcwd()+"/"+script_path
else:
raise Exception(script_path +" does not exist...")
if run_gui:
cmd = "pymol "+script_path
else:
cmd = "pymol -c "+script_path
print("Running: "+cmd)
if parellel_process:
threader = Threader()
#threader.run_system_command(cmd)
threader.run_functions([lambda: os.system(cmd)])
else:
os.system(cmd)
if delete_script:
os.remove(script_path)
def make_pymol_session_on_top(pdb_path_list, load_as_list, script_dir, session_dir, out_name, top_num = None, native_path = None, antibody = True):
"""
Make a pymol session on a set of decoys. Usually an ordered decoy list.
:param top_dir:
:param pdb_path_list: List of PDB Paths
:param load_as_list: List of PDB Path names for pymol.
:param outdir:
:param out_name:
:param top_num:
:param native_path:
:return:
"""
if top_num:
pse_path = session_dir+"/"+out_name+"_top_"+str(top_num)+".pse"
else:
pse_path = session_dir+"/"+out_name+"_all"+".pse"
if os.path.exists(pse_path):
print("Overriding PSE: "+pse_path)
#return
if len(pdb_path_list) == 0:
print("PDB list path empty. Skipping creation of pymol session")
return
scripter = PyMolScriptWriter(script_dir)
if native_path:
scripter.add_load_pdb(native_path, "native_"+os.path.basename(native_path))
scripter.add_load_pdbs(pdb_path_list, load_as_list)
scripter.add_align_all_to(scripter.get_final_names()[0])
scripter.add_show("cartoon")
scripter.add_line("center")
scripter.add_line("hide lines")
scripter.add_line("group models, model*")
if antibody:
color_cdrs_path = get_bin_path()+"/color_cdrs.pml"
scripter.add_line("@"+color_cdrs_path)
scripter.add_save_session(pse_path)
scripter.write_script("load_align_top.pml")
run_pymol_script(script_dir+"/"+"load_align_top.pml")
def make_pymol_session_on_top_ab_include_native_cdrs(pdb_path_list, load_as_list, script_dir, session_dir, out_name, cdr_dir, top_num = None, native_path = None):
"""
Make a pymol session on a set of decoys. These decoys should have REMARK CDR_origin. These origin pdbs will be aligned and included in the pymol session
:param top_dir:
:param pdb_path_list: List of PDB Paths
:param load_as_list: List of PDB Path names for pymol.
:param cdr_dir: The directory of antibody CDRs from PyIgClassify.
:return:
"""
if top_num:
pse_path = session_dir+"/"+out_name+"_top_"+str(top_num)+".pse"
else:
pse_path = session_dir+"/"+out_name+"_all"+".pse"
if os.path.exists(pse_path):
print("Overriding PSE: "+pse_path)
#return
if len(pdb_path_list) == 0:
print("PDB list path empty. Skipping creation of pymol session")
return
scripter = PyMolScriptWriter(script_dir)
if native_path:
scripter.add_load_pdb(native_path, "native_"+os.path.basename(native_path))
scripter.add_load_pdbs(pdb_path_list, load_as_list)
scripter.add_align_all_to(scripter.get_final_names()[0])
scripter.add_line("group models, model*")
color_cdrs_path = get_bin_path()+"/color_cdrs.pml"
scripter.add_line("@"+color_cdrs_path)
#For each Model, we need to load and search for origin
origin_names = defaultdict(list)
sorted_origin_names = []
for pair in zip(pdb_path_list, load_as_list):
cdrs_to_align = defaultdict()
pdb_path = pair[0]
pdb_name = pair[1]
INFILE = open_file(pdb_path)
for line in INFILE:
line = line.strip()
if not line: continue
lineSP = line.split()
# REMARK L3_origin 5alcL_L3_0001 #
if len(lineSP) == 3 and lineSP[0] == "REMARK" and re.search('origin', lineSP[1]):
print(line)
cdrs_to_align[lineSP[1]] = lineSP[2]
else:
continue
INFILE.close()
#Group: L3_origin_pdb_id_model
for origin_type in cdrs_to_align:
model_num = os.path.basename(pdb_name).split("_")[1]; # model_1_scoretye_score
cdr_name = origin_type.split("_")[0]; #L3_origin
cdr_object = Structure.CDR(cdr_name)
pdbid = cdrs_to_align[ origin_type ].split("_")[0]; #pdbid_cdr_0001
cdr_path = cdr_dir+"/"+"_".join(cdrs_to_align[origin_type].split("_")[0:-1])+".pdb"
print("CDR Path: "+ cdr_path)
if not os.path.exists(cdr_path): sys.exit("CDR Path does not exist!! "+cdr_path)
stem_cdr_name = '_'.join(["ste", "mod", model_num, pdbid, cdr_name])
cdr_cdr_name = '_'.join(["cdr", "mod", model_num, pdbid, cdr_name])
all_cdr_name = '_'.join(["all", "mod", model_num, pdbid, cdr_name])
model_group = "_".join(["model", model_num, cdr_name])
sorted_origin_names.append(model_group)
origin_names[model_group].append(stem_cdr_name)
origin_names[model_group].append(cdr_cdr_name)
origin_names[model_group].append(all_cdr_name)
scripter.add_load_pdb(cdr_path, stem_cdr_name)
scripter.add_load_pdb(cdr_path, cdr_cdr_name)
scripter.add_load_pdb(cdr_path, all_cdr_name)
#SuperImpose stem
#overhang_sele = ab_util.get_overhang_sele(scripter, cdr_object, 3)
#scripter.add_superimpose(" ".join([stem_cdr_name, "and", overhang_sele]), " ".join([pdb_name, "and", overhang_sele]))
#SuperImpose CDR-only (no Stem!)
#cdr_only_sele = ab_util.get_all_cdr_sele(cdr_object, stem=0)
#scripter.add_superimpose(" ".join([cdr_cdr_name, "and", cdr_only_sele]), " ".join([pdb_name, "and", cdr_only_sele]))
#SuperImpose Stem+CDR
#cdr_and_stem_sele = ab_util.get_all_cdr_sele(cdr_object, stem=3)
#scripter.add_superimpose(" ".join([all_cdr_name, "and", cdr_and_stem_sele]), " ".join([pdb_name, "and", cdr_and_stem_sele]))
scripter.add_show("cartoon")
scripter.add_line("zoom full_paratope")
scripter.add_line("hide lines")
for origin_type in sorted_origin_names:
scripter.add_line("group "+origin_type+", "+" ".join(origin_names[origin_type]))
for object_name in origin_names[origin_type]:
scripter.add_line("disable "+origin_type); #Make them not show when we load pymol
scripter.add_line("group origin_cdrs, "+ " ".join(sorted_origin_names))
scripter.add_save_session(pse_path)
scripter.write_script("load_align_top.pml")
run_pymol_script(script_dir+"/"+"load_align_top.pml")
def make_pymol_session_on_top_scored(pdbpaths_scores, script_dir, session_dir, out_name, top_num = -1, native_path = None, antibody=True,
parellel = True,
super = "",
run_pymol = True,
prefixes=[],
copy_models=True,
align = True,
out_prefix = ""):
"""
Make a pymol session on a set of decoys with a tuple of [[score, pdb], ... ]
Optionally, it can be a 3 length tupple with model name to use as last:
[[score, pdb, model_name], ... ]
if run_pymol is False, will not run pymol.
Pymol names will be: model_n_RosettaModelNumber_score
Score will be truncated to two decimal places.
Returns configured PyMol Scripter for extra use.
:param pdbpaths_scores: tuple of [[score, pdb], ... ]
:param script_dir: Path to output PyMol script
:param session_dir: Path to output Session
:param out_name: name of the Pymol session
:param prefixes: Optional - Prefixes to use for model names. List. Must be indexed with pdbpaths_scores
:param top_num: Optional - Only output TOP N models
:param native_path: Optional - Path to any input native to add to pymol session
:param parellel: Optional - Run in parellel (so many pymol sessions can be created at once)
:param super: Optional - Super to THIS particular selection instead of align_all to.
:param run_pymol: Optional - Run Pymol using script? Default true
:param out_prefix: Optional - Prefix to use for copied output models.
:rtype: PyMolScriptWriter,names dict [decoy] = new name
"""
names = defaultdict()
out_name = out_name.replace(".pse", "")
if not os.path.exists(session_dir):
os.mkdir(session_dir)
if top_num != -1:
pse_path = session_dir+"/"+out_name+"_top_"+str(top_num)+".pse"
else:
pse_path = session_dir+"/"+out_name+"_all"+".pse"
if os.path.exists(pse_path):
print("Overriding PSE: "+pse_path)
#return
if len(pdbpaths_scores) == 0:
print("PDB list path empty. Skipping creation of pymol session")
return
print(pdbpaths_scores)
scripter = PyMolScriptWriter(script_dir)
print("Outputting script to: " +script_dir)
if native_path and os.path.exists(native_path):
scripter.add_load_pdb(native_path, "native_"+os.path.basename(native_path))
else:
print("No native path given or it does not exist...")
i = 1
for indx, score_pdb in enumerate(pdbpaths_scores):
print(indx)
print(repr(score_pdb))
decoy = get_decoy_path(score_pdb[1])
print("Decoy path: "+decoy)
ext = get_decoy_extension(decoy)
print(repr(decoy))
model_name = score_pdb[1].split("_")[-1]
if len(score_pdb) == 3:
model_name = score_pdb[2]
out_model_name = "model_"+repr(i)+"_"+model_name+"_%.2f"%(score_pdb[0])
out_model_name = out_model_name.replace(ext, "")
if prefixes:
out_model_name = prefixes[indx]+out_model_name
scripter.add_load_pdb(decoy, out_model_name)
names[os.path.basename(score_pdb[1])] = out_model_name
if (copy_models):
out = out_model_name.replace(ext, "")+ext
if out_prefix:
out = out_prefix.strip('_')+"_"+out
os.system('cp '+decoy+' '+session_dir+"/"+out)
i+=1
if super:
scripter.add_superimpose_all_to(scripter.get_final_names()[0], super, super)
elif align:
scripter.add_align_all_to(scripter.get_final_names()[0])
scripter.add_show("cartoon")
scripter.add_line("center")
scripter.add_line("hide lines")
if native_path:
scripter.add_line("group models, *model*")
if antibody:
color_cdrs_path = get_bin_path()+"/pymol_scripts/color_cdrs.pml"
scripter.add_line("@"+color_cdrs_path)
scripter.add_save_session(pse_path)
scripter.write_script("load_align_top.pml")
if run_pymol:
run_pymol_script(script_dir+"/"+"load_align_top.pml", parellel_process=parellel)
return scripter,names | [
2,
48443,
14629,
14,
8800,
14,
29412,
198,
2,
13838,
25,
19116,
35333,
12,
33,
563,
69,
2467,
198,
198,
11748,
25064,
198,
6738,
17268,
1330,
4277,
11600,
198,
198,
6738,
474,
671,
17,
13,
35487,
13,
6978,
1330,
1635,
198,
6738,
474,
671,
17,
13,
35487,
13,
16663,
278,
13,
16818,
263,
1330,
14122,
263,
198,
6738,
474,
671,
17,
13,
35487,
13,
301,
5620,
1330,
32522,
198,
6738,
474,
671,
17,
13,
35487,
13,
6978,
1330,
1635,
198,
2,
6738,
474,
671,
17,
13,
415,
571,
1118,
1330,
7736,
355,
450,
62,
22602,
628,
198,
4871,
9485,
44,
349,
7391,
34379,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
5016,
284,
1037,
1382,
9485,
44,
349,
14750,
1262,
14977,
8341,
286,
350,
11012,
82,
13,
628,
220,
220,
220,
17934,
329,
11046,
477,
1353,
4981,
656,
9485,
44,
349,
11,
10548,
278,
606,
284,
262,
6868,
11,
290,
27393,
606,
25,
628,
220,
220,
220,
220,
220,
220,
220,
629,
5528,
353,
796,
9485,
44,
349,
7391,
34379,
7,
448,
6978,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
6868,
62,
6978,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
629,
5528,
353,
13,
2860,
62,
2220,
62,
79,
9945,
7,
30191,
62,
6978,
11,
366,
30191,
62,
1,
10,
418,
13,
6978,
13,
12093,
12453,
7,
30191,
62,
6978,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
629,
5528,
353,
13,
2860,
62,
2220,
62,
30094,
1443,
7,
79,
9945,
62,
6978,
62,
4868,
11,
3440,
62,
292,
62,
4868,
8,
198,
220,
220,
220,
220,
220,
220,
220,
629,
5528,
353,
13,
2860,
62,
31494,
62,
439,
62,
1462,
7,
1416,
5528,
353,
13,
1136,
62,
20311,
62,
14933,
3419,
58,
15,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
629,
5528,
353,
13,
2860,
62,
12860,
7203,
26674,
2049,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
629,
5528,
353,
13,
2860,
62,
1370,
7203,
16159,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
629,
5528,
353,
13,
2860,
62,
21928,
62,
29891,
7,
7752,
62,
6978,
8,
198,
220,
220,
220,
220,
220,
220,
220,
629,
5528,
353,
13,
13564,
62,
12048,
7203,
2220,
62,
31494,
62,
4852,
13,
79,
4029,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
1057,
62,
79,
4948,
349,
62,
12048,
7,
4852,
62,
15908,
10,
1,
30487,
10,
1,
2220,
62,
31494,
62,
4852,
13,
79,
4029,
4943,
628,
220,
220,
220,
37227,
628,
220,
220,
220,
825,
4808,
961,
62,
4033,
669,
7,
944,
11,
3108,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
4149,
82,
9485,
11770,
75,
7577,
2420,
2393,
13,
220,
8778,
82,
7577,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3268,
25664,
796,
1280,
7,
6978,
11,
705,
81,
11537,
198,
220,
220,
220,
220,
220,
220,
220,
3124,
62,
4906,
796,
13538,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1627,
287,
3268,
25664,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1627,
796,
1627,
13,
36311,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
407,
1627,
25,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1627,
13,
9688,
2032,
342,
7203,
2,
1,
2599,
2555,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1627,
4303,
796,
1627,
13,
35312,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1627,
4303,
58,
15,
60,
6624,
366,
25216,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3124,
62,
4906,
796,
1627,
4303,
58,
16,
4083,
21037,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
8043,
62,
19199,
58,
8043,
62,
4906,
60,
796,
17635,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
4033,
669,
13,
33295,
7,
1370,
4303,
58,
15,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
8043,
62,
19199,
58,
8043,
62,
4906,
4083,
33295,
7,
1370,
4303,
58,
15,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
3268,
25664,
13,
19836,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
45677,
3555,
9485,
44,
349,
3124,
3858,
4943,
628,
220,
220,
220,
1303,
29113,
29113,
29113,
21017,
198,
220,
220,
220,
22492,
21656,
40480,
198,
220,
220,
220,
1303,
29113,
29113,
29113,
2235,
628,
220,
220,
220,
825,
651,
62,
20311,
62,
14933,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3497,
262,
2457,
3891,
9485,
44,
3535,
481,
779,
706,
11046,
350,
11012,
82,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
2116,
13,
20311,
62,
14933,
628,
220,
220,
220,
825,
651,
62,
325,
293,
7,
944,
11,
6333,
11,
15384,
62,
18747,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3497,
257,
257,
6356,
422,
281,
7177,
286,
35186,
32373,
290,
257,
1948,
6333,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1002,
262,
35186,
5121,
318,
257,
734,
12,
30854,
256,
7211,
293,
11,
788,
751,
257,
6356,
1022,
262,
717,
290,
938,
5002,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
611,
18896,
7,
411,
312,
62,
18747,
8,
6624,
352,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
384,
293,
796,
366,
7983,
43825,
7983,
10,
1,
1222,
43825,
1136,
62,
13000,
7,
411,
312,
62,
18747,
58,
15,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
384,
293,
796,
366,
7983,
43825,
7983,
10,
1,
1222,
357,
43825,
1136,
62,
13000,
7,
411,
312,
62,
18747,
58,
15,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
581,
72,
287,
15384,
62,
18747,
58,
16,
25,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
384,
293,
796,
384,
293,
1343,
1,
930,
43825,
1136,
62,
13000,
7,
411,
72,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
384,
293,
796,
384,
293,
10,
1,
1267,
1,
628,
220,
220,
220,
220,
220,
220,
220,
1441,
384,
293,
628,
628,
220,
220,
220,
1303,
29113,
29113,
29113,
21017,
198,
220,
220,
220,
22492,
10934,
9485,
44,
349,
12327,
25,
198,
220,
220,
220,
1303,
29113,
29113,
29113,
2235,
628,
220,
220,
220,
825,
751,
62,
1370,
7,
944,
11,
1627,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3060,
281,
14977,
1627,
284,
262,
4226,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12048,
62,
6615,
13,
33295,
7,
1370,
8,
628,
198,
220,
220,
220,
825,
751,
62,
21928,
62,
29891,
7,
944,
11,
6246,
62,
6978,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3060,
257,
1627,
284,
3613,
262,
6246,
284,
257,
34958,
3108,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
611,
407,
302,
13,
12947,
7,
1911,
7752,
1600,
6246,
62,
6978,
2599,
6246,
62,
6978,
796,
6246,
62,
6978,
10,
1911,
7752,
1,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12048,
62,
6615,
13,
33295,
7203,
28758,
13,
21928,
10786,
1,
10,
29891,
62,
6978,
10,
1,
11537,
4943,
628,
628,
220,
220,
220,
220,
220,
1303,
29113,
29113,
29113,
21017,
198,
220,
220,
220,
220,
220,
22492,
8778,
350,
11012,
82,
290,
27441,
25,
198,
220,
220,
220,
220,
220,
1303,
29113,
29113,
29113,
2235,
628,
198,
220,
220,
220,
825,
751,
62,
2220,
62,
79,
9945,
7,
944,
11,
279,
9945,
62,
6978,
11,
3440,
62,
292,
796,
6045,
11,
1448,
796,
6045,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3060,
1627,
284,
3440,
257,
350,
11012,
10644,
656,
9485,
44,
349,
198,
220,
220,
220,
220,
220,
220,
220,
16018,
453,
3440,
606,
355,
257,
1948,
1438,
198,
220,
220,
220,
220,
220,
220,
220,
2561,
788,
900,
262,
2457,
3891,
9485,
44,
349,
3544,
284,
262,
2134,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
4798,
366,
5760,
33,
1,
10,
260,
1050,
7,
79,
9945,
62,
6978,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
30094,
1443,
13,
33295,
7,
79,
9945,
62,
6978,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1438,
796,
28686,
13,
6978,
13,
12093,
12453,
7,
79,
9945,
62,
6978,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1438,
796,
366,
1911,
22179,
7,
3672,
13,
35312,
7203,
19570,
58,
15,
21912,
16,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
1615,
12453,
4303,
796,
1438,
13,
35312,
10786,
2637,
8,
198,
220,
220,
220,
220,
220,
220,
220,
611,
302,
13,
12947,
7,
1911,
79,
9945,
13,
34586,
1600,
1438,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1615,
12453,
796,
366,
1911,
22179,
7,
12093,
12453,
4303,
58,
25,
11925,
7,
12093,
12453,
4303,
13219,
17,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1615,
12453,
796,
366,
1911,
22179,
7,
12093,
12453,
4303,
58,
25,
11925,
7,
12093,
12453,
4303,
13219,
16,
12962,
628,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
3440,
62,
292,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
20311,
62,
14933,
13,
33295,
7,
3672,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12048,
62,
6615,
13,
33295,
7203,
2220,
43825,
79,
9945,
62,
6978,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
20311,
62,
14933,
13,
33295,
7,
2220,
62,
292,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12048,
62,
6615,
13,
33295,
7203,
2220,
43825,
79,
9945,
62,
6978,
10,
1600,
43825,
2220,
62,
292,
8,
628,
220,
220,
220,
220,
220,
220,
220,
611,
1448,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2860,
62,
8094,
62,
15252,
7,
944,
13,
20311,
62,
14933,
58,
12,
16,
4357,
1448,
8,
628,
220,
220,
220,
825,
751,
62,
2220,
62,
30094,
1443,
7,
944,
11,
279,
9945,
62,
6978,
82,
11,
3440,
62,
292,
796,
6045,
11,
1448,
796,
6045,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3060,
3951,
284,
3440,
262,
1351,
286,
350,
11012,
13532,
656,
9485,
44,
349,
198,
220,
220,
220,
220,
220,
220,
220,
16018,
453,
3440,
606,
355,
257,
1948,
1438,
198,
220,
220,
220,
220,
220,
220,
220,
2561,
788,
900,
262,
2457,
3891,
9485,
44,
349,
3544,
284,
262,
2134,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1312,
796,
657,
198,
220,
220,
220,
220,
220,
220,
220,
329,
3108,
287,
279,
9945,
62,
6978,
82,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
6978,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
3440,
62,
292,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2860,
62,
2220,
62,
79,
9945,
7,
6978,
11,
3440,
62,
292,
796,
3440,
62,
292,
58,
72,
4357,
1448,
796,
1448,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2860,
62,
2220,
62,
79,
9945,
7,
6978,
11,
1448,
796,
1448,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1312,
47932,
16,
628,
220,
220,
220,
825,
751,
62,
8094,
62,
15252,
7,
944,
11,
1438,
11,
649,
62,
8094,
62,
3672,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
4912,
257,
2060,
2134,
284,
1194,
13,
220,
49511,
329,
13634,
12,
24432,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12048,
62,
6615,
13,
33295,
7203,
8094,
43825,
3605,
62,
8094,
62,
3672,
10,
1600,
43825,
3672,
8,
628,
220,
220,
220,
825,
751,
62,
8094,
62,
48205,
7,
944,
11,
3891,
11,
649,
62,
8094,
62,
3672,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
4912,
257,
900,
286,
662,
12,
14578,
3891,
284,
262,
649,
1448,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3891,
62,
2536,
796,
366,
27071,
22179,
7,
14933,
8,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12048,
62,
6615,
13,
33295,
7203,
8094,
43825,
3605,
62,
8094,
62,
3672,
10,
1600,
43825,
14933,
62,
2536,
8,
628,
220,
220,
220,
220,
220,
1303,
29113,
29113,
29113,
21017,
198,
220,
220,
220,
220,
220,
22492,
978,
16747,
1058,
198,
220,
220,
220,
220,
220,
1303,
29113,
29113,
29113,
2235,
628,
198,
220,
220,
220,
825,
751,
62,
16668,
320,
3455,
7,
944,
11,
384,
293,
16,
11,
384,
293,
17,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3115,
13551,
734,
28224,
1262,
262,
2208,
3141,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2860,
62,
1370,
7203,
16668,
43825,
325,
293,
16,
10,
1600,
43825,
325,
293,
17,
8,
628,
198,
220,
220,
220,
825,
751,
62,
31494,
62,
439,
7,
944,
11,
384,
293,
16,
796,
366,
1600,
384,
293,
17,
2625,
1600,
4179,
62,
1462,
62,
11848,
28,
17821,
11,
5166,
62,
11147,
796,
10352,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
978,
570,
477,
284,
262,
717,
2746,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1438,
287,
2116,
13,
20311,
62,
14933,
58,
16,
25,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2860,
62,
31494,
62,
1462,
7,
3672,
11,
2116,
13,
20311,
62,
14933,
58,
15,
4357,
384,
293,
16,
11,
384,
293,
17,
11,
4179,
62,
1462,
62,
11848,
11,
5166,
62,
11147,
8,
628,
198,
220,
220,
220,
825,
751,
62,
31494,
62,
439,
62,
1462,
7,
944,
11,
2746,
11,
384,
293,
16,
796,
366,
1600,
384,
293,
17,
2625,
1600,
4179,
62,
1462,
62,
11848,
28,
17821,
11,
5166,
62,
11147,
796,
10352,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
978,
570,
477,
284,
257,
1948,
2746,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1438,
287,
2116,
13,
20311,
62,
14933,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
1438,
14512,
19849,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2860,
62,
31494,
62,
1462,
7,
3672,
11,
2746,
11,
384,
293,
16,
11,
384,
293,
17,
11,
4179,
62,
1462,
62,
11848,
8,
628,
198,
220,
220,
220,
825,
751,
62,
31494,
62,
1462,
7,
944,
11,
2746,
16,
11,
2746,
17,
11,
384,
293,
16,
2625,
1600,
384,
293,
17,
796,
366,
1600,
4179,
62,
1462,
62,
11848,
796,
6407,
11,
5166,
62,
11147,
796,
10352,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
978,
570,
530,
2746,
284,
1194,
11,
42976,
31577,
257,
6356,
13,
198,
220,
220,
220,
220,
220,
220,
220,
31117,
284,
779,
2208,
320,
3455,
2427,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
628,
220,
220,
220,
220,
220,
220,
220,
285,
16,
796,
651,
62,
12501,
726,
62,
3672,
7,
19849,
16,
8,
198,
220,
220,
220,
220,
220,
220,
220,
285,
17,
796,
651,
62,
12501,
726,
62,
3672,
7,
19849,
17,
8,
628,
220,
220,
220,
220,
220,
220,
220,
10548,
796,
366,
31494,
366,
198,
220,
220,
220,
220,
220,
220,
220,
611,
5166,
62,
11147,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10548,
796,
366,
24874,
62,
11147,
366,
628,
220,
220,
220,
220,
220,
220,
220,
275,
65,
796,
13538,
198,
220,
220,
220,
220,
220,
220,
220,
611,
4179,
62,
1462,
62,
11848,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
275,
65,
796,
366,
1222,
1438,
299,
10,
6888,
10,
66,
10,
78,
366,
628,
220,
220,
220,
220,
220,
220,
220,
611,
407,
384,
293,
16,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12048,
62,
6615,
13,
33295,
7,
31494,
1343,
285,
16,
1343,
275,
65,
10,
2430,
10,
76,
17,
1343,
275,
65,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12048,
62,
6615,
13,
33295,
7,
31494,
1343,
285,
16,
10,
1,
1222,
43825,
325,
293,
16,
10,
11848,
10,
1600,
43825,
76,
17,
1343,
1,
1222,
1,
10,
325,
293,
17,
10,
220,
275,
65,
8,
628,
198,
220,
220,
220,
220,
220,
1303,
29113,
29113,
29113,
21017,
198,
220,
220,
220,
220,
220,
22492,
29882,
13,
1058,
198,
220,
220,
220,
220,
220,
1303,
29113,
29113,
29113,
2235,
628,
220,
220,
220,
825,
751,
62,
12860,
7,
944,
11,
1490,
62,
4906,
11,
384,
293,
33151,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
5438,
257,
10552,
13,
220,
16018,
453,
351,
257,
1948,
6356,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
1490,
62,
4906,
287,
2116,
13,
4703,
62,
25811,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
7203,
6030,
43825,
4703,
62,
4906,
10,
1,
407,
257,
1900,
1490,
62,
18076,
13,
220,
18634,
389,
25,
3467,
77,
1,
10,
260,
1050,
7,
944,
13,
4703,
62,
25811,
22305,
628,
220,
220,
220,
220,
220,
220,
220,
611,
407,
384,
293,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12048,
62,
6615,
13,
33295,
7203,
12860,
43825,
4703,
62,
4906,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12048,
62,
6615,
13,
33295,
7203,
12860,
43825,
4703,
62,
4906,
10,
1600,
43825,
325,
293,
8,
628,
220,
220,
220,
825,
751,
62,
24717,
7,
944,
11,
1490,
62,
4906,
11,
384,
293,
33151,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
10415,
257,
10552,
13,
220,
16018,
453,
351,
257,
1948,
6356,
13,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
2099,
287,
2116,
13,
4703,
62,
25811,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
7203,
6030,
43825,
4703,
62,
4906,
10,
1,
407,
257,
1900,
1490,
62,
18076,
13,
220,
18634,
389,
25,
3467,
77,
1,
10,
260,
1050,
7,
944,
13,
4703,
62,
25811,
22305,
628,
220,
220,
220,
220,
220,
220,
220,
611,
407,
384,
293,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12048,
62,
6615,
13,
33295,
7203,
24717,
43825,
4703,
62,
4906,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12048,
62,
6615,
13,
33295,
7203,
24717,
43825,
4703,
62,
4906,
10,
1600,
43825,
325,
293,
8,
628,
220,
220,
220,
825,
751,
62,
8043,
7,
944,
11,
384,
293,
11,
3124,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3060,
3124,
284,
257,
6356,
13,
198,
220,
220,
220,
220,
220,
220,
220,
384,
293,
25,
9485,
44,
349,
29538,
198,
220,
220,
220,
220,
220,
220,
220,
3124,
25,
2142,
13174,
3124,
13,
628,
220,
220,
220,
220,
220,
220,
220,
4091,
4418,
2116,
13,
4033,
669,
628,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
611,
407,
3124,
287,
2116,
13,
4033,
669,
25,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
25064,
13,
37023,
7203,
10258,
407,
7247,
416,
9485,
44,
349,
25,
43825,
8043,
10,
1,
4091,
2829,
62,
79,
4948,
349,
62,
4033,
669,
329,
1351,
286,
10909,
7577,
4943,
628,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
12048,
62,
6615,
13,
33295,
7203,
8043,
43825,
8043,
10,
1600,
43825,
325,
293,
8,
628,
220,
220,
220,
825,
751,
62,
415,
571,
1118,
62,
12048,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3060,
2491,
262,
3124,
22927,
3808,
279,
4948,
349,
4226,
13,
220,
3738,
571,
1118,
1276,
307,
287,
28159,
46,
47622,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
3124,
62,
10210,
3808,
62,
6978,
796,
651,
62,
8800,
62,
6978,
3419,
10,
1,
14,
8043,
62,
10210,
3808,
13,
79,
4029,
1,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
2860,
62,
1370,
7203,
31,
1,
10,
8043,
62,
10210,
3808,
62,
6978,
8,
628,
220,
220,
220,
825,
1057,
62,
12048,
7,
944,
11,
4226,
62,
448,
3672,
796,
366,
79,
4029,
62,
12048,
13,
79,
4029,
1600,
12233,
62,
12048,
796,
6407,
11,
279,
20318,
293,
75,
62,
14681,
796,
10352,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
12793,
290,
5660,
262,
350,
4948,
349,
4226,
198,
220,
220,
220,
220,
220,
220,
220,
1058,
17143,
4226,
62,
448,
3672,
25,
965,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
198,
220,
220,
220,
220,
220,
220,
220,
1057,
62,
79,
4948,
349,
62,
12048,
7,
944,
13,
21928,
62,
12048,
7,
12048,
62,
448,
3672,
828,
12233,
62,
12048,
796,
12233,
62,
12048,
11,
279,
20318,
293,
75,
62,
14681,
28,
79,
20318,
293,
75,
62,
14681,
8,
628,
628,
628,
198,
198,
29113,
29113,
29113,
14468,
7804,
198,
2235,
5053,
525,
40480,
198,
29113,
29113,
29113,
14468,
7804,
198,
198,
4299,
1057,
62,
79,
4948,
349,
62,
12048,
7,
12048,
62,
6978,
11,
1057,
62,
48317,
796,
10352,
11,
12233,
62,
12048,
796,
10352,
11,
279,
20318,
293,
75,
62,
14681,
796,
6407,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
5660,
262,
4226,
286,
262,
1813,
3108,
13,
198,
220,
220,
220,
37227,
628,
220,
220,
220,
611,
407,
28686,
13,
6978,
13,
1069,
1023,
7,
12048,
62,
6978,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
611,
28686,
13,
6978,
13,
1069,
1023,
7,
418,
13,
1136,
66,
16993,
3419,
10,
12048,
62,
6978,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4226,
62,
6978,
796,
28686,
13,
1136,
66,
16993,
3419,
10,
12048,
62,
6978,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
28686,
13,
6978,
13,
1069,
1023,
7,
418,
13,
1136,
66,
16993,
3419,
10,
1,
30487,
10,
12048,
62,
6978,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4226,
62,
6978,
796,
28686,
13,
1136,
66,
16993,
3419,
10,
1,
30487,
10,
12048,
62,
6978,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
35528,
7,
12048,
62,
6978,
1343,
1,
857,
407,
2152,
9313,
8,
628,
198,
220,
220,
220,
611,
1057,
62,
48317,
25,
198,
220,
220,
220,
220,
220,
220,
220,
23991,
796,
366,
79,
4948,
349,
43825,
12048,
62,
6978,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
23991,
796,
366,
79,
4948,
349,
532,
66,
43825,
12048,
62,
6978,
628,
220,
220,
220,
3601,
7203,
28768,
25,
43825,
28758,
8,
198,
220,
220,
220,
611,
279,
20318,
293,
75,
62,
14681,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4704,
263,
796,
14122,
263,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
16663,
263,
13,
5143,
62,
10057,
62,
21812,
7,
28758,
8,
198,
220,
220,
220,
220,
220,
220,
220,
4704,
263,
13,
5143,
62,
12543,
2733,
26933,
50033,
25,
28686,
13,
10057,
7,
28758,
8,
12962,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
28686,
13,
10057,
7,
28758,
8,
628,
220,
220,
220,
611,
12233,
62,
12048,
25,
198,
220,
220,
220,
220,
220,
220,
220,
28686,
13,
28956,
7,
12048,
62,
6978,
8,
628,
198,
4299,
787,
62,
79,
4948,
349,
62,
29891,
62,
261,
62,
4852,
7,
79,
9945,
62,
6978,
62,
4868,
11,
3440,
62,
292,
62,
4868,
11,
4226,
62,
15908,
11,
6246,
62,
15908,
11,
503,
62,
3672,
11,
1353,
62,
22510,
796,
6045,
11,
6868,
62,
6978,
796,
6045,
11,
35757,
796,
6407,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
6889,
257,
279,
4948,
349,
6246,
319,
257,
900,
286,
875,
19417,
13,
220,
19672,
281,
6149,
875,
726,
1351,
13,
198,
220,
220,
220,
1058,
17143,
1353,
62,
15908,
25,
198,
220,
220,
220,
1058,
17143,
279,
9945,
62,
6978,
62,
4868,
25,
7343,
286,
350,
11012,
10644,
82,
198,
220,
220,
220,
1058,
17143,
3440,
62,
292,
62,
4868,
25,
7343,
286,
350,
11012,
10644,
3891,
329,
279,
4948,
349,
13,
198,
220,
220,
220,
1058,
17143,
503,
15908,
25,
198,
220,
220,
220,
1058,
17143,
503,
62,
3672,
25,
198,
220,
220,
220,
1058,
17143,
1353,
62,
22510,
25,
198,
220,
220,
220,
1058,
17143,
6868,
62,
6978,
25,
198,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
1353,
62,
22510,
25,
198,
220,
220,
220,
220,
220,
220,
220,
15838,
62,
6978,
796,
6246,
62,
15908,
10,
1,
30487,
10,
448,
62,
3672,
10,
1,
62,
4852,
62,
1,
10,
2536,
7,
4852,
62,
22510,
47762,
1911,
7752,
1,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
15838,
62,
6978,
796,
6246,
62,
15908,
10,
1,
30487,
10,
448,
62,
3672,
10,
1,
62,
439,
1,
10,
1911,
7752,
1,
198,
220,
220,
220,
611,
28686,
13,
6978,
13,
1069,
1023,
7,
7752,
62,
6978,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
5886,
81,
2530,
350,
5188,
25,
43825,
7752,
62,
6978,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
7783,
628,
220,
220,
220,
611,
18896,
7,
79,
9945,
62,
6978,
62,
4868,
8,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
5760,
33,
1351,
3108,
6565,
13,
220,
3661,
4501,
6282,
286,
279,
4948,
349,
6246,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
628,
220,
220,
220,
629,
5528,
353,
796,
9485,
44,
349,
7391,
34379,
7,
12048,
62,
15908,
8,
628,
220,
220,
220,
611,
6868,
62,
6978,
25,
198,
220,
220,
220,
220,
220,
220,
220,
629,
5528,
353,
13,
2860,
62,
2220,
62,
79,
9945,
7,
30191,
62,
6978,
11,
366,
30191,
62,
1,
10,
418,
13,
6978,
13,
12093,
12453,
7,
30191,
62,
6978,
4008,
628,
220,
220,
220,
629,
5528,
353,
13,
2860,
62,
2220,
62,
30094,
1443,
7,
79,
9945,
62,
6978,
62,
4868,
11,
3440,
62,
292,
62,
4868,
8,
198,
220,
220,
220,
629,
5528,
353,
13,
2860,
62,
31494,
62,
439,
62,
1462,
7,
1416,
5528,
353,
13,
1136,
62,
20311,
62,
14933,
3419,
58,
15,
12962,
198,
220,
220,
220,
629,
5528,
353,
13,
2860,
62,
12860,
7203,
26674,
2049,
4943,
198,
220,
220,
220,
629,
5528,
353,
13,
2860,
62,
1370,
7203,
16159,
4943,
198,
220,
220,
220,
629,
5528,
353,
13,
2860,
62,
1370,
7203,
24717,
3951,
4943,
198,
220,
220,
220,
629,
5528,
353,
13,
2860,
62,
1370,
7203,
8094,
4981,
11,
2746,
9,
4943,
198,
220,
220,
220,
611,
35757,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3124,
62,
10210,
3808,
62,
6978,
796,
651,
62,
8800,
62,
6978,
3419,
10,
1,
14,
8043,
62,
10210,
3808,
13,
79,
4029,
1,
198,
220,
220,
220,
220,
220,
220,
220,
629,
5528,
353,
13,
2860,
62,
1370,
7203,
31,
1,
10,
8043,
62,
10210,
3808,
62,
6978,
8,
198,
220,
220,
220,
629,
5528,
353,
13,
2860,
62,
21928,
62,
29891,
7,
7752,
62,
6978,
8,
198,
220,
220,
220,
629,
5528,
353,
13,
13564,
62,
12048,
7203,
2220,
62,
31494,
62,
4852,
13,
79,
4029,
4943,
198,
220,
220,
220,
1057,
62,
79,
4948,
349,
62,
12048,
7,
12048,
62,
15908,
10,
1,
30487,
10,
1,
2220,
62,
31494,
62,
4852,
13,
79,
4029,
4943,
198,
198,
4299,
787,
62,
79,
4948,
349,
62,
29891,
62,
261,
62,
4852,
62,
397,
62,
17256,
62,
30191,
62,
10210,
3808,
7,
79,
9945,
62,
6978,
62,
4868,
11,
3440,
62,
292,
62,
4868,
11,
4226,
62,
15908,
11,
6246,
62,
15908,
11,
503,
62,
3672,
11,
269,
7109,
62,
15908,
11,
1353,
62,
22510,
796,
6045,
11,
6868,
62,
6978,
796,
6045,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
6889,
257,
279,
4948,
349,
6246,
319,
257,
900,
286,
875,
19417,
13,
220,
2312,
875,
19417,
815,
423,
22657,
14175,
6458,
49,
62,
47103,
13,
220,
2312,
8159,
279,
67,
1443,
481,
307,
19874,
290,
3017,
287,
262,
279,
4948,
349,
6246,
198,
220,
220,
220,
1058,
17143,
1353,
62,
15908,
25,
198,
220,
220,
220,
1058,
17143,
279,
9945,
62,
6978,
62,
4868,
25,
7343,
286,
350,
11012,
10644,
82,
198,
220,
220,
220,
1058,
17143,
3440,
62,
292,
62,
4868,
25,
7343,
286,
350,
11012,
10644,
3891,
329,
279,
4948,
349,
13,
198,
220,
220,
220,
1058,
17143,
269,
7109,
62,
15908,
25,
383,
8619,
286,
35757,
6458,
31273,
422,
9485,
40,
70,
9487,
1958,
13,
198,
220,
220,
220,
1058,
7783,
25,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
611,
1353,
62,
22510,
25,
198,
220,
220,
220,
220,
220,
220,
220,
15838,
62,
6978,
796,
6246,
62,
15908,
10,
1,
30487,
10,
448,
62,
3672,
10,
1,
62,
4852,
62,
1,
10,
2536,
7,
4852,
62,
22510,
47762,
1911,
7752,
1,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
15838,
62,
6978,
796,
6246,
62,
15908,
10,
1,
30487,
10,
448,
62,
3672,
10,
1,
62,
439,
1,
10,
1911,
7752,
1,
198,
220,
220,
220,
611,
28686,
13,
6978,
13,
1069,
1023,
7,
7752,
62,
6978,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
5886,
81,
2530,
350,
5188,
25,
43825,
7752,
62,
6978,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
7783,
628,
220,
220,
220,
611,
18896,
7,
79,
9945,
62,
6978,
62,
4868,
8,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
5760,
33,
1351,
3108,
6565,
13,
220,
3661,
4501,
6282,
286,
279,
4948,
349,
6246,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
628,
220,
220,
220,
629,
5528,
353,
796,
9485,
44,
349,
7391,
34379,
7,
12048,
62,
15908,
8,
628,
220,
220,
220,
611,
6868,
62,
6978,
25,
198,
220,
220,
220,
220,
220,
220,
220,
629,
5528,
353,
13,
2860,
62,
2220,
62,
79,
9945,
7,
30191,
62,
6978,
11,
366,
30191,
62,
1,
10,
418,
13,
6978,
13,
12093,
12453,
7,
30191,
62,
6978,
4008,
628,
220,
220,
220,
629,
5528,
353,
13,
2860,
62,
2220,
62,
30094,
1443,
7,
79,
9945,
62,
6978,
62,
4868,
11,
3440,
62,
292,
62,
4868,
8,
198,
220,
220,
220,
629,
5528,
353,
13,
2860,
62,
31494,
62,
439,
62,
1462,
7,
1416,
5528,
353,
13,
1136,
62,
20311,
62,
14933,
3419,
58,
15,
12962,
628,
220,
220,
220,
629,
5528,
353,
13,
2860,
62,
1370,
7203,
8094,
4981,
11,
2746,
9,
4943,
198,
220,
220,
220,
3124,
62,
10210,
3808,
62,
6978,
796,
651,
62,
8800,
62,
6978,
3419,
10,
1,
14,
8043,
62,
10210,
3808,
13,
79,
4029,
1,
198,
220,
220,
220,
629,
5528,
353,
13,
2860,
62,
1370,
7203,
31,
1,
10,
8043,
62,
10210,
3808,
62,
6978,
8,
628,
220,
220,
220,
1303,
1890,
1123,
9104,
11,
356,
761,
284,
3440,
290,
2989,
329,
8159,
628,
220,
220,
220,
8159,
62,
14933,
796,
4277,
11600,
7,
4868,
8,
198,
220,
220,
220,
23243,
62,
47103,
62,
14933,
796,
17635,
198,
220,
220,
220,
329,
5166,
287,
19974,
7,
79,
9945,
62,
6978,
62,
4868,
11,
3440,
62,
292,
62,
4868,
2599,
628,
220,
220,
220,
220,
220,
220,
220,
22927,
3808,
62,
1462,
62,
31494,
796,
4277,
11600,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
279,
9945,
62,
6978,
796,
5166,
58,
15,
60,
198,
220,
220,
220,
220,
220,
220,
220,
279,
9945,
62,
3672,
796,
5166,
58,
16,
60,
628,
220,
220,
220,
220,
220,
220,
220,
3268,
25664,
796,
1280,
62,
7753,
7,
79,
9945,
62,
6978,
8,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1627,
287,
3268,
25664,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1627,
796,
1627,
13,
36311,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
407,
1627,
25,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1627,
4303,
796,
1627,
13,
35312,
3419,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
22657,
14175,
406,
18,
62,
47103,
642,
282,
66,
43,
62,
43,
18,
62,
18005,
1303,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
18896,
7,
1370,
4303,
8,
6624,
513,
290,
1627,
4303,
58,
15,
60,
6624,
366,
40726,
14175,
1,
290,
302,
13,
12947,
10786,
47103,
3256,
1627,
4303,
58,
16,
60,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
1370,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
22927,
3808,
62,
1462,
62,
31494,
58,
1370,
4303,
58,
16,
11907,
796,
1627,
4303,
58,
17,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2555,
198,
220,
220,
220,
220,
220,
220,
220,
3268,
25664,
13,
19836,
3419,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
13247,
25,
406,
18,
62,
47103,
62,
79,
9945,
62,
312,
62,
19849,
198,
220,
220,
220,
220,
220,
220,
220,
329,
8159,
62,
4906,
287,
22927,
3808,
62,
1462,
62,
31494,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2746,
62,
22510,
796,
28686,
13,
6978,
13,
12093,
12453,
7,
79,
9945,
62,
3672,
737,
35312,
7203,
62,
4943,
58,
16,
11208,
1303,
2746,
62,
16,
62,
26675,
774,
68,
62,
26675,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
269,
7109,
62,
3672,
796,
8159,
62,
4906,
13,
35312,
7203,
62,
4943,
58,
15,
11208,
1303,
43,
18,
62,
47103,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
269,
7109,
62,
15252,
796,
32522,
13,
34,
7707,
7,
66,
7109,
62,
3672,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
279,
9945,
312,
796,
22927,
3808,
62,
1462,
62,
31494,
58,
8159,
62,
4906,
20740,
35312,
7203,
62,
4943,
58,
15,
11208,
1303,
79,
9945,
312,
62,
66,
7109,
62,
18005,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
269,
7109,
62,
6978,
796,
269,
7109,
62,
15908,
10,
1,
30487,
10,
1,
62,
1911,
22179,
7,
10210,
3808,
62,
1462,
62,
31494,
58,
47103,
62,
4906,
4083,
35312,
7203,
62,
4943,
58,
15,
21912,
16,
12962,
10,
1911,
79,
9945,
1,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
34,
7707,
10644,
25,
43825,
269,
7109,
62,
6978,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
407,
28686,
13,
6978,
13,
1069,
1023,
7,
66,
7109,
62,
6978,
2599,
25064,
13,
37023,
7203,
34,
7707,
10644,
857,
407,
2152,
3228,
43825,
66,
7109,
62,
6978,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10717,
62,
66,
7109,
62,
3672,
796,
705,
62,
4458,
22179,
7,
14692,
4169,
1600,
366,
4666,
1600,
2746,
62,
22510,
11,
279,
9945,
312,
11,
269,
7109,
62,
3672,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
269,
7109,
62,
66,
7109,
62,
3672,
796,
705,
62,
4458,
22179,
7,
14692,
66,
7109,
1600,
366,
4666,
1600,
2746,
62,
22510,
11,
279,
9945,
312,
11,
269,
7109,
62,
3672,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
477,
62,
66,
7109,
62,
3672,
796,
705,
62,
4458,
22179,
7,
14692,
439,
1600,
366,
4666,
1600,
2746,
62,
22510,
11,
279,
9945,
312,
11,
269,
7109,
62,
3672,
12962,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2746,
62,
8094,
796,
45434,
1911,
22179,
7,
14692,
19849,
1600,
2746,
62,
22510,
11,
269,
7109,
62,
3672,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
23243,
62,
47103,
62,
14933,
13,
33295,
7,
19849,
62,
8094,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8159,
62,
14933,
58,
19849,
62,
8094,
4083,
33295,
7,
927,
62,
66,
7109,
62,
3672,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8159,
62,
14933,
58,
19849,
62,
8094,
4083,
33295,
7,
66,
7109,
62,
66,
7109,
62,
3672,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
8159,
62,
14933,
58,
19849,
62,
8094,
4083,
33295,
7,
439,
62,
66,
7109,
62,
3672,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
629,
5528,
353,
13,
2860,
62,
2220,
62,
79,
9945,
7,
66,
7109,
62,
6978,
11,
220,
10717,
62,
66,
7109,
62,
3672,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
629,
5528,
353,
13,
2860,
62,
2220,
62,
79,
9945,
7,
66,
7109,
62,
6978,
11,
220,
269,
7109,
62,
66,
7109,
62,
3672,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
629,
5528,
353,
13,
2860,
62,
2220,
62,
79,
9945,
7,
66,
7109,
62,
6978,
11,
220,
477,
62,
66,
7109,
62,
3672,
8,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
12442,
26950,
577,
10717,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
2502,
33255,
62,
325,
293,
796,
450,
62,
22602,
13,
1136,
62,
2502,
33255,
62,
325,
293,
7,
1416,
5528,
353,
11,
269,
7109,
62,
15252,
11,
513,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1416,
5528,
353,
13,
2860,
62,
16668,
320,
3455,
7203,
27071,
22179,
26933,
927,
62,
66,
7109,
62,
3672,
11,
366,
392,
1600,
625,
33255,
62,
325,
293,
46570,
366,
27071,
22179,
26933,
79,
9945,
62,
3672,
11,
366,
392,
1600,
625,
33255,
62,
325,
293,
60,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
12442,
26950,
577,
6458,
49,
12,
8807,
357,
3919,
520,
368,
8133,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
66,
7109,
62,
8807,
62,
325,
293,
796,
450,
62,
22602,
13,
1136,
62,
439,
62,
66,
7109,
62,
325,
293,
7,
66,
7109,
62,
15252,
11,
10717,
28,
15,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1416,
5528,
353,
13,
2860,
62,
16668,
320,
3455,
7203,
27071,
22179,
26933,
66,
7109,
62,
66,
7109,
62,
3672,
11,
366,
392,
1600,
269,
7109,
62,
8807,
62,
325,
293,
46570,
366,
27071,
22179,
26933,
79,
9945,
62,
3672,
11,
366,
392,
1600,
269,
7109,
62,
8807,
62,
325,
293,
60,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
12442,
26950,
577,
520,
368,
10,
34,
7707,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
66,
7109,
62,
392,
62,
927,
62,
325,
293,
796,
450,
62,
22602,
13,
1136,
62,
439,
62,
66,
7109,
62,
325,
293,
7,
66,
7109,
62,
15252,
11,
10717,
28,
18,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
1416,
5528,
353,
13,
2860,
62,
16668,
320,
3455,
7203,
27071,
22179,
26933,
439,
62,
66,
7109,
62,
3672,
11,
366,
392,
1600,
269,
7109,
62,
392,
62,
927,
62,
325,
293,
46570,
366,
27071,
22179,
26933,
79,
9945,
62,
3672,
11,
366,
392,
1600,
269,
7109,
62,
392,
62,
927,
62,
325,
293,
60,
4008,
628,
220,
220,
220,
629,
5528,
353,
13,
2860,
62,
12860,
7203,
26674,
2049,
4943,
198,
220,
220,
220,
629,
5528,
353,
13,
2860,
62,
1370,
7203,
89,
4207,
1336,
62,
1845,
265,
3008,
4943,
198,
220,
220,
220,
629,
5528,
353,
13,
2860,
62,
1370,
7203,
24717,
3951,
4943,
628,
220,
220,
220,
329,
8159,
62,
4906,
287,
23243,
62,
47103,
62,
14933,
25,
198,
220,
220,
220,
220,
220,
220,
220,
629,
5528,
353,
13,
2860,
62,
1370,
7203,
8094,
43825,
47103,
62,
4906,
10,
1600,
43825,
1,
27071,
22179,
7,
47103,
62,
14933,
58,
47103,
62,
4906,
60,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
329,
2134,
62,
3672,
287,
8159,
62,
14933,
58,
47103,
62,
4906,
5974,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
629,
5528,
353,
13,
2860,
62,
1370,
7203,
40223,
43825,
47103,
62,
4906,
1776,
1303,
12050,
606,
407,
905,
618,
356,
3440,
279,
4948,
349,
198,
220,
220,
220,
629,
5528,
353,
13,
2860,
62,
1370,
7203,
8094,
8159,
62,
10210,
3808,
11,
43825,
366,
27071,
22179,
7,
82,
9741,
62,
47103,
62,
14933,
4008,
198,
220,
220,
220,
629,
5528,
353,
13,
2860,
62,
21928,
62,
29891,
7,
7752,
62,
6978,
8,
198,
220,
220,
220,
629,
5528,
353,
13,
13564,
62,
12048,
7203,
2220,
62,
31494,
62,
4852,
13,
79,
4029,
4943,
198,
220,
220,
220,
1057,
62,
79,
4948,
349,
62,
12048,
7,
12048,
62,
15908,
10,
1,
30487,
10,
1,
2220,
62,
31494,
62,
4852,
13,
79,
4029,
4943,
198,
198,
4299,
787,
62,
79,
4948,
349,
62,
29891,
62,
261,
62,
4852,
62,
1416,
1850,
7,
79,
9945,
6978,
82,
62,
1416,
2850,
11,
4226,
62,
15908,
11,
6246,
62,
15908,
11,
503,
62,
3672,
11,
1353,
62,
22510,
796,
532,
16,
11,
6868,
62,
6978,
796,
6045,
11,
35757,
28,
17821,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
279,
20318,
293,
75,
796,
6407,
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,
2208,
796,
366,
1600,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1057,
62,
79,
4948,
349,
796,
6407,
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,
21231,
274,
41888,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4866,
62,
27530,
28,
17821,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
10548,
796,
6407,
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,
503,
62,
40290,
796,
13538,
2599,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
6889,
257,
279,
4948,
349,
6246,
319,
257,
900,
286,
875,
19417,
351,
257,
46545,
286,
16410,
26675,
11,
279,
9945,
4357,
2644,
2361,
198,
220,
220,
220,
16018,
453,
11,
340,
460,
307,
257,
513,
4129,
256,
7211,
293,
351,
2746,
1438,
284,
779,
355,
938,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
16410,
26675,
11,
279,
9945,
11,
2746,
62,
3672,
4357,
2644,
2361,
198,
220,
220,
220,
220,
628,
220,
220,
220,
611,
1057,
62,
79,
4948,
349,
318,
10352,
11,
481,
407,
1057,
279,
4948,
349,
13,
628,
220,
220,
220,
350,
4948,
349,
3891,
481,
307,
25,
2746,
62,
77,
62,
35740,
15253,
17633,
15057,
62,
26675,
198,
220,
220,
220,
15178,
481,
307,
40122,
515,
284,
734,
32465,
4113,
13,
628,
220,
220,
220,
16409,
17839,
9485,
44,
349,
1446,
5528,
353,
329,
3131,
779,
13,
628,
220,
220,
220,
1058,
17143,
279,
9945,
6978,
82,
62,
1416,
2850,
25,
46545,
286,
16410,
26675,
11,
279,
9945,
4357,
2644,
2361,
198,
220,
220,
220,
1058,
17143,
4226,
62,
15908,
25,
220,
220,
10644,
284,
5072,
9485,
44,
349,
4226,
198,
220,
220,
220,
1058,
17143,
6246,
62,
15908,
25,
220,
10644,
284,
5072,
23575,
198,
220,
220,
220,
1058,
17143,
503,
62,
3672,
25,
220,
220,
220,
220,
1438,
286,
262,
350,
4948,
349,
6246,
198,
220,
220,
220,
1058,
17143,
21231,
274,
25,
220,
220,
220,
220,
32233,
532,
3771,
42624,
284,
779,
329,
2746,
3891,
13,
220,
7343,
13,
220,
12039,
307,
41497,
351,
279,
9945,
6978,
82,
62,
1416,
2850,
198,
220,
220,
220,
1058,
17143,
1353,
62,
22510,
25,
220,
220,
220,
220,
220,
32233,
532,
5514,
5072,
28662,
399,
4981,
198,
220,
220,
220,
1058,
17143,
6868,
62,
6978,
25,
220,
32233,
532,
10644,
284,
597,
5128,
6868,
284,
751,
284,
279,
4948,
349,
6246,
198,
220,
220,
220,
1058,
17143,
279,
20318,
293,
75,
25,
220,
220,
220,
220,
32233,
532,
5660,
287,
279,
20318,
293,
75,
357,
568,
867,
279,
4948,
349,
10991,
460,
307,
2727,
379,
1752,
8,
198,
220,
220,
220,
1058,
17143,
2208,
25,
220,
220,
220,
220,
220,
220,
220,
32233,
532,
3115,
284,
12680,
1948,
6356,
2427,
286,
10548,
62,
439,
284,
13,
198,
220,
220,
220,
1058,
17143,
1057,
62,
79,
4948,
349,
25,
220,
220,
220,
32233,
532,
5660,
350,
4948,
349,
1262,
4226,
30,
220,
15161,
2081,
198,
220,
220,
220,
1058,
17143,
503,
62,
40290,
25,
220,
220,
32233,
532,
3771,
13049,
284,
779,
329,
18984,
5072,
4981,
13,
198,
220,
220,
220,
1058,
81,
4906,
25,
9485,
44,
349,
7391,
34379,
11,
14933,
8633,
685,
12501,
726,
60,
796,
649,
1438,
198,
220,
220,
220,
37227,
198,
220,
220,
220,
3891,
796,
4277,
11600,
3419,
628,
220,
220,
220,
503,
62,
3672,
796,
503,
62,
3672,
13,
33491,
7,
1911,
7752,
1600,
366,
4943,
198,
220,
220,
220,
611,
407,
28686,
13,
6978,
13,
1069,
1023,
7,
29891,
62,
15908,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
28686,
13,
28015,
15908,
7,
29891,
62,
15908,
8,
628,
220,
220,
220,
611,
1353,
62,
22510,
14512,
532,
16,
25,
198,
220,
220,
220,
220,
220,
220,
220,
15838,
62,
6978,
796,
6246,
62,
15908,
10,
1,
30487,
10,
448,
62,
3672,
10,
1,
62,
4852,
62,
1,
10,
2536,
7,
4852,
62,
22510,
47762,
1911,
7752,
1,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
15838,
62,
6978,
796,
6246,
62,
15908,
10,
1,
30487,
10,
448,
62,
3672,
10,
1,
62,
439,
1,
10,
1911,
7752,
1,
198,
220,
220,
220,
611,
28686,
13,
6978,
13,
1069,
1023,
7,
7752,
62,
6978,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
5886,
81,
2530,
350,
5188,
25,
43825,
7752,
62,
6978,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
7783,
628,
220,
220,
220,
611,
18896,
7,
79,
9945,
6978,
82,
62,
1416,
2850,
8,
6624,
657,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
5760,
33,
1351,
3108,
6565,
13,
220,
3661,
4501,
6282,
286,
279,
4948,
349,
6246,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
1441,
198,
220,
220,
220,
3601,
7,
79,
9945,
6978,
82,
62,
1416,
2850,
8,
198,
220,
220,
220,
629,
5528,
353,
796,
9485,
44,
349,
7391,
34379,
7,
12048,
62,
15908,
8,
198,
220,
220,
220,
3601,
7203,
26410,
889,
4226,
284,
25,
366,
1343,
12048,
62,
15908,
8,
628,
220,
220,
220,
611,
6868,
62,
6978,
290,
28686,
13,
6978,
13,
1069,
1023,
7,
30191,
62,
6978,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
629,
5528,
353,
13,
2860,
62,
2220,
62,
79,
9945,
7,
30191,
62,
6978,
11,
366,
30191,
62,
1,
10,
418,
13,
6978,
13,
12093,
12453,
7,
30191,
62,
6978,
4008,
198,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
2949,
6868,
3108,
1813,
393,
340,
857,
407,
2152,
9313,
8,
628,
220,
220,
220,
1312,
796,
352,
198,
220,
220,
220,
329,
773,
87,
11,
4776,
62,
79,
9945,
287,
27056,
378,
7,
79,
9945,
6978,
82,
62,
1416,
2850,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
521,
87,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
260,
1050,
7,
26675,
62,
79,
9945,
4008,
198,
220,
220,
220,
220,
220,
220,
220,
875,
726,
796,
651,
62,
12501,
726,
62,
6978,
7,
26675,
62,
79,
9945,
58,
16,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7203,
10707,
726,
3108,
25,
43825,
12501,
726,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1070,
796,
651,
62,
12501,
726,
62,
2302,
3004,
7,
12501,
726,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
260,
1050,
7,
12501,
726,
4008,
628,
220,
220,
220,
220,
220,
220,
220,
2746,
62,
3672,
796,
4776,
62,
79,
9945,
58,
16,
4083,
35312,
7203,
62,
4943,
58,
12,
16,
60,
198,
220,
220,
220,
220,
220,
220,
220,
611,
18896,
7,
26675,
62,
79,
9945,
8,
6624,
513,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2746,
62,
3672,
796,
4776,
62,
79,
9945,
58,
17,
60,
628,
220,
220,
220,
220,
220,
220,
220,
503,
62,
19849,
62,
3672,
796,
366,
19849,
62,
1,
10,
260,
1050,
7,
72,
47762,
1,
62,
1,
10,
19849,
62,
3672,
10,
1,
62,
7225,
17,
69,
1,
4,
7,
26675,
62,
79,
9945,
58,
15,
12962,
198,
220,
220,
220,
220,
220,
220,
220,
503,
62,
19849,
62,
3672,
796,
503,
62,
19849,
62,
3672,
13,
33491,
7,
2302,
11,
366,
4943,
198,
220,
220,
220,
220,
220,
220,
220,
611,
21231,
274,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
503,
62,
19849,
62,
3672,
796,
21231,
274,
58,
521,
87,
48688,
448,
62,
19849,
62,
3672,
198,
220,
220,
220,
220,
220,
220,
220,
629,
5528,
353,
13,
2860,
62,
2220,
62,
79,
9945,
7,
12501,
726,
11,
503,
62,
19849,
62,
3672,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3891,
58,
418,
13,
6978,
13,
12093,
12453,
7,
26675,
62,
79,
9945,
58,
16,
12962,
60,
796,
503,
62,
19849,
62,
3672,
628,
220,
220,
220,
220,
220,
220,
220,
611,
357,
30073,
62,
27530,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
503,
796,
503,
62,
19849,
62,
3672,
13,
33491,
7,
2302,
11,
366,
4943,
10,
2302,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
611,
503,
62,
40290,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
503,
796,
503,
62,
40290,
13,
36311,
10786,
62,
11537,
10,
1,
62,
1,
10,
448,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
28686,
13,
10057,
10786,
13155,
705,
10,
12501,
726,
10,
6,
705,
10,
29891,
62,
15908,
10,
1,
30487,
10,
448,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1312,
47932,
16,
628,
220,
220,
220,
611,
2208,
25,
198,
220,
220,
220,
220,
220,
220,
220,
629,
5528,
353,
13,
2860,
62,
16668,
320,
3455,
62,
439,
62,
1462,
7,
1416,
5528,
353,
13,
1136,
62,
20311,
62,
14933,
3419,
58,
15,
4357,
2208,
11,
2208,
8,
198,
220,
220,
220,
1288,
361,
10548,
25,
198,
220,
220,
220,
220,
220,
220,
220,
629,
5528,
353,
13,
2860,
62,
31494,
62,
439,
62,
1462,
7,
1416,
5528,
353,
13,
1136,
62,
20311,
62,
14933,
3419,
58,
15,
12962,
628,
220,
220,
220,
629,
5528,
353,
13,
2860,
62,
12860,
7203,
26674,
2049,
4943,
198,
220,
220,
220,
629,
5528,
353,
13,
2860,
62,
1370,
7203,
16159,
4943,
198,
220,
220,
220,
629,
5528,
353,
13,
2860,
62,
1370,
7203,
24717,
3951,
4943,
198,
220,
220,
220,
611,
6868,
62,
6978,
25,
198,
220,
220,
220,
220,
220,
220,
220,
629,
5528,
353,
13,
2860,
62,
1370,
7203,
8094,
4981,
11,
1635,
19849,
9,
4943,
198,
220,
220,
220,
611,
35757,
25,
198,
220,
220,
220,
220,
220,
220,
220,
3124,
62,
10210,
3808,
62,
6978,
796,
651,
62,
8800,
62,
6978,
3419,
10,
1,
14,
79,
4948,
349,
62,
46521,
14,
8043,
62,
10210,
3808,
13,
79,
4029,
1,
198,
220,
220,
220,
220,
220,
220,
220,
629,
5528,
353,
13,
2860,
62,
1370,
7203,
31,
1,
10,
8043,
62,
10210,
3808,
62,
6978,
8,
628,
220,
220,
220,
629,
5528,
353,
13,
2860,
62,
21928,
62,
29891,
7,
7752,
62,
6978,
8,
198,
220,
220,
220,
629,
5528,
353,
13,
13564,
62,
12048,
7203,
2220,
62,
31494,
62,
4852,
13,
79,
4029,
4943,
628,
220,
220,
220,
611,
1057,
62,
79,
4948,
349,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1057,
62,
79,
4948,
349,
62,
12048,
7,
12048,
62,
15908,
10,
1,
30487,
10,
1,
2220,
62,
31494,
62,
4852,
13,
79,
4029,
1600,
279,
20318,
293,
75,
62,
14681,
28,
79,
20318,
293,
75,
8,
628,
220,
220,
220,
1441,
629,
5528,
353,
11,
14933
] | 2.226863 | 9,433 |
"""This module alters the testing system path to provide access to app."""
| [
37811,
1212,
8265,
40866,
262,
4856,
1080,
3108,
284,
2148,
1895,
284,
598,
526,
15931,
198
] | 4.6875 | 16 |
import os
import sys
import gridfs
from sleeplearning.lib.models.single_chan_expert import SingleChanExpert
root_dir = os.path.abspath(os.path.join(os.path.dirname('__file__'), '..'))
sys.path.insert(0, root_dir)
from pymongo import MongoClient
from torch import nn
from torch.nn.init import xavier_normal_ as xavier_normal
from cfg.config import mongo_url
import torch
import torch.nn.functional as F
import sleeplearning.lib.base
client = MongoClient(mongo_url)
db = client.sacred
# db.collection_names(include_system_collections=False)
files = db.fs.files
| [
11748,
28686,
198,
11748,
25064,
198,
198,
11748,
10706,
9501,
198,
198,
6738,
3993,
40684,
13,
8019,
13,
27530,
13,
29762,
62,
3147,
62,
1069,
11766,
1330,
14206,
48407,
3109,
11766,
198,
198,
15763,
62,
15908,
796,
28686,
13,
6978,
13,
397,
2777,
776,
7,
418,
13,
6978,
13,
22179,
7,
418,
13,
6978,
13,
15908,
3672,
10786,
834,
7753,
834,
33809,
705,
492,
6,
4008,
198,
17597,
13,
6978,
13,
28463,
7,
15,
11,
6808,
62,
15908,
8,
198,
6738,
279,
4948,
25162,
1330,
42591,
11792,
198,
6738,
28034,
1330,
299,
77,
198,
6738,
28034,
13,
20471,
13,
15003,
1330,
2124,
19492,
62,
11265,
62,
355,
2124,
19492,
62,
11265,
198,
6738,
30218,
70,
13,
11250,
1330,
285,
25162,
62,
6371,
198,
11748,
28034,
198,
11748,
28034,
13,
20471,
13,
45124,
355,
376,
198,
11748,
3993,
40684,
13,
8019,
13,
8692,
628,
198,
16366,
796,
42591,
11792,
7,
76,
25162,
62,
6371,
8,
198,
9945,
796,
5456,
13,
30584,
445,
198,
2,
20613,
13,
43681,
62,
14933,
7,
17256,
62,
10057,
62,
4033,
26448,
28,
25101,
8,
198,
16624,
796,
20613,
13,
9501,
13,
16624,
628,
628
] | 3.015957 | 188 |
import os
import sys
import boto3
from linebot import LineBotApi, WebhookHandler
| [
11748,
28686,
198,
11748,
25064,
198,
11748,
275,
2069,
18,
198,
198,
6738,
1627,
13645,
1330,
6910,
20630,
32,
14415,
11,
5313,
25480,
25060,
628,
198
] | 3.230769 | 26 |
from bokeh.plotting import figure, show, output_file
from bokeh.models import ColumnDataSource, Range1d, LabelSet, Label
output_file("label.html", title="label.py example")
source = ColumnDataSource(data=dict(height=[66, 71, 72, 68, 58, 62],
weight=[165, 189, 220, 141, 260, 174],
names=['Mark', 'Amir', 'Matt', 'Greg',
'Owen', 'Juan']))
p = figure(title='Dist. of 10th Grade Students at Lee High',
x_range=Range1d(140, 275))
p.scatter(x='weight', y='height', size=8, source=source)
p.xaxis[0].axis_label = 'Weight (lbs)'
p.yaxis[0].axis_label = 'Height (in)'
labels = LabelSet(x='weight', y='height', text='names', level='glyph',
x_offset=5, y_offset=5, source=source, render_mode='canvas')
citation = Label(x=70, y=70, x_units='screen', y_units='screen',
text='Collected by Luke C. 2016-04-01', render_mode='css',
border_line_color='black', border_line_alpha=1.0,
background_fill_color='white', background_fill_alpha=1.0)
p.add_layout(labels)
p.add_layout(citation)
show(p)
| [
6738,
1489,
365,
71,
13,
29487,
889,
1330,
3785,
11,
905,
11,
5072,
62,
7753,
198,
6738,
1489,
365,
71,
13,
27530,
1330,
29201,
6601,
7416,
11,
13667,
16,
67,
11,
36052,
7248,
11,
36052,
198,
198,
22915,
62,
7753,
7203,
18242,
13,
6494,
1600,
3670,
2625,
18242,
13,
9078,
1672,
4943,
198,
198,
10459,
796,
29201,
6601,
7416,
7,
7890,
28,
11600,
7,
17015,
41888,
2791,
11,
9166,
11,
7724,
11,
8257,
11,
7618,
11,
8190,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3463,
41888,
20986,
11,
27230,
11,
15629,
11,
25500,
11,
21148,
11,
27621,
4357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
3891,
28,
17816,
9704,
3256,
705,
5840,
343,
3256,
705,
13448,
3256,
705,
25025,
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,
220,
220,
220,
705,
46,
21006,
3256,
705,
41,
7258,
20520,
4008,
198,
198,
79,
796,
3785,
7,
7839,
11639,
20344,
13,
286,
838,
400,
22653,
14882,
379,
5741,
3334,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2124,
62,
9521,
28,
17257,
16,
67,
7,
15187,
11,
25829,
4008,
198,
79,
13,
1416,
1436,
7,
87,
11639,
6551,
3256,
331,
11639,
17015,
3256,
2546,
28,
23,
11,
2723,
28,
10459,
8,
198,
79,
13,
87,
22704,
58,
15,
4083,
22704,
62,
18242,
796,
705,
25844,
357,
32133,
33047,
198,
79,
13,
88,
22704,
58,
15,
4083,
22704,
62,
18242,
796,
705,
23106,
357,
259,
33047,
198,
198,
23912,
1424,
796,
36052,
7248,
7,
87,
11639,
6551,
3256,
331,
11639,
17015,
3256,
2420,
11639,
14933,
3256,
1241,
11639,
10853,
746,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2124,
62,
28968,
28,
20,
11,
331,
62,
28968,
28,
20,
11,
2723,
28,
10459,
11,
8543,
62,
14171,
11639,
5171,
11017,
11537,
198,
198,
66,
3780,
796,
36052,
7,
87,
28,
2154,
11,
331,
28,
2154,
11,
2124,
62,
41667,
11639,
9612,
3256,
331,
62,
41667,
11639,
9612,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2420,
11639,
5216,
12609,
416,
11336,
327,
13,
1584,
12,
3023,
12,
486,
3256,
8543,
62,
14171,
11639,
25471,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4865,
62,
1370,
62,
8043,
11639,
13424,
3256,
4865,
62,
1370,
62,
26591,
28,
16,
13,
15,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4469,
62,
20797,
62,
8043,
11639,
11186,
3256,
4469,
62,
20797,
62,
26591,
28,
16,
13,
15,
8,
198,
198,
79,
13,
2860,
62,
39786,
7,
23912,
1424,
8,
198,
79,
13,
2860,
62,
39786,
7,
66,
3780,
8,
198,
12860,
7,
79,
8,
198
] | 2.125 | 552 |
import os
from os.path import basename
import sys
import json
import requests
import matplotlib.pyplot as plt
from PIL import Image
from io import BytesIO
# import cv2
import numpy as np
# import config_own
import logging
########## To-Do ##########
### optimization ### warping ###
### the shot-raw-img is needed to be warpped
### or the coin and shoes will be in inaccurate scales
# def img_warping():
# to scale the main_obj size by a NT$10 coin
# NT$10 coin's diameter = 26mm
######### TO-DO ##########
### 台灣/歐/美/日 各式尺寸轉換 ###
#def scaling_type_transform():
if __name__ == "__main__":
try:
# load the needed keys
subscription_key = sys.argv[2] #####################################
endpoint = sys.argv[3] #####################################
# shot_cv2() # take pics #####################################################
input_json = img_transfer_json(endpoint)
obj_scale = scaling(input_json)
print( "{}".format(obj_scale))
except:
logging.exception("Message")
| [
11748,
28686,
198,
6738,
28686,
13,
6978,
1330,
1615,
12453,
198,
11748,
25064,
198,
11748,
33918,
198,
11748,
7007,
198,
11748,
2603,
29487,
8019,
13,
9078,
29487,
355,
458,
83,
198,
6738,
350,
4146,
1330,
7412,
198,
6738,
33245,
1330,
2750,
4879,
9399,
198,
2,
1330,
269,
85,
17,
198,
11748,
299,
32152,
355,
45941,
198,
2,
1330,
4566,
62,
593,
198,
11748,
18931,
628,
198,
7804,
2235,
1675,
12,
5211,
1303,
7804,
2,
198,
21017,
23989,
44386,
1175,
13886,
44386,
198,
21017,
262,
2823,
12,
1831,
12,
9600,
318,
2622,
284,
307,
1175,
1496,
198,
21017,
393,
262,
10752,
290,
10012,
481,
307,
287,
21873,
16252,
198,
2,
825,
33705,
62,
86,
5117,
278,
33529,
628,
198,
2,
284,
5046,
262,
1388,
62,
26801,
2546,
416,
257,
24563,
3,
940,
10752,
198,
2,
24563,
3,
940,
10752,
338,
14753,
796,
2608,
3020,
628,
198,
7804,
2,
5390,
12,
18227,
1303,
7804,
2,
198,
21017,
10263,
237,
108,
163,
223,
96,
14,
29826,
238,
14,
163,
122,
236,
14,
33768,
98,
10263,
238,
226,
28156,
237,
22887,
118,
43380,
116,
164,
121,
231,
162,
237,
249,
44386,
198,
2,
4299,
20796,
62,
4906,
62,
35636,
33529,
628,
198,
361,
11593,
3672,
834,
6624,
366,
834,
12417,
834,
1298,
198,
220,
220,
220,
1949,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
3440,
262,
2622,
8251,
198,
220,
220,
220,
220,
220,
220,
220,
14569,
62,
2539,
796,
25064,
13,
853,
85,
58,
17,
60,
1303,
29113,
4242,
198,
220,
220,
220,
220,
220,
220,
220,
36123,
796,
25064,
13,
853,
85,
58,
18,
60,
1303,
29113,
4242,
628,
220,
220,
220,
220,
220,
220,
220,
1303,
2823,
62,
33967,
17,
3419,
1303,
1011,
27618,
1303,
29113,
14468,
4242,
198,
220,
220,
220,
220,
220,
220,
220,
5128,
62,
17752,
796,
33705,
62,
39437,
62,
17752,
7,
437,
4122,
8,
198,
220,
220,
220,
220,
220,
220,
220,
26181,
62,
9888,
796,
20796,
7,
15414,
62,
17752,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
45144,
92,
1911,
18982,
7,
26801,
62,
9888,
4008,
198,
220,
220,
220,
2845,
25,
198,
220,
220,
220,
220,
220,
220,
220,
18931,
13,
1069,
4516,
7203,
12837,
4943,
198
] | 2.832432 | 370 |
'''
Created on 2018. 4. 26.
@author: lsm
'''
name = ["이상면", "Tom", "Jerry", "Mike", "이상면", "Tom"]
print(find_same_name(name))
name = ["이상면", "Tom", "Jerry", "Mike", "이상면", "Mike"]
print(find_same_name(name))
name = ["이상면", "Tom", "Jerry", "Mike", "Mike", "Jerry", "tom"]
print(find_same_name(name))
| [
7061,
6,
198,
41972,
319,
2864,
13,
604,
13,
2608,
13,
198,
198,
31,
9800,
25,
300,
5796,
198,
7061,
6,
198,
198,
3672,
796,
14631,
35975,
112,
168,
225,
223,
167,
102,
112,
1600,
366,
13787,
1600,
366,
43462,
1600,
366,
16073,
1600,
366,
35975,
112,
168,
225,
223,
167,
102,
112,
1600,
366,
13787,
8973,
198,
4798,
7,
19796,
62,
31642,
62,
3672,
7,
3672,
4008,
198,
198,
3672,
796,
14631,
35975,
112,
168,
225,
223,
167,
102,
112,
1600,
366,
13787,
1600,
366,
43462,
1600,
366,
16073,
1600,
366,
35975,
112,
168,
225,
223,
167,
102,
112,
1600,
366,
16073,
8973,
198,
4798,
7,
19796,
62,
31642,
62,
3672,
7,
3672,
4008,
198,
198,
3672,
796,
14631,
35975,
112,
168,
225,
223,
167,
102,
112,
1600,
366,
13787,
1600,
366,
43462,
1600,
366,
16073,
1600,
366,
16073,
1600,
366,
43462,
1600,
366,
39532,
8973,
198,
4798,
7,
19796,
62,
31642,
62,
3672,
7,
3672,
4008,
198
] | 1.90566 | 159 |
"""
To easily reproduce experiments, and avoid passing several command line arguments, we implemented
a curriculum utility. Parameters can be set in a curriculum dictionary.
Curriculum Schema:
Numerical keys in the curriculum specify an upsample step. When the current step matches the upsample step,
the values in the corresponding dict be updated in the curriculum. Common curriculum values specified at upsamples:
batch_size: Batch Size.
num_steps: Number of samples along ray.
img_size: Generated image resolution.
batch_split: Integer number over which to divide batches and aggregate sequentially. (Used due to memory constraints)
gen_lr: Generator learnig rate.
disc_lr: Discriminator learning rate.
fov: Camera field of view
ray_start: Near clipping for camera rays.
ray_end: Far clipping for camera rays.
fade_steps: Number of steps to fade in new layer on discriminator after upsample.
h_stddev: Stddev of camera yaw in radians.
v_stddev: Stddev of camera pitch in radians.
h_mean: Mean of camera yaw in radians.
v_mean: Mean of camera pitch in radians.
sample_dist: Type of camera pose distribution. (gaussian | spherical_uniform | uniform)
topk_interval: Interval over which to fade the top k ratio.
topk_v: Minimum fraction of a batch to keep during top k training.
betas: Beta parameters for Adam.
unique_lr: Whether to use reduced LRs for mapping network.
weight_decay: Weight decay parameter.
r1_lambda: R1 regularization parameter.
latent_dim: Latent dim for Siren network in generator.
grad_clip: Grad clipping parameter.
model: Siren architecture used in generator. (SPATIALSIRENBASELINE | TALLSIREN)
generator: Generator class. (ImplicitGenerator3d)
discriminator: Discriminator class. (ProgressiveEncoderDiscriminator | ProgressiveDiscriminator)
dataset: Training dataset. (CelebA | Carla | Cats)
clamp_mode: Clamping function for Siren density output. (relu | softplus)
z_dist: Latent vector distributiion. (gaussian | uniform)
hierarchical_sample: Flag to enable hierarchical_sampling from NeRF algorithm. (Doubles the number of sampled points)
z_labmda: Weight for experimental latent code positional consistency loss.
pos_lambda: Weight parameter for experimental positional consistency loss.
last_back: Flag to fill in background color with last sampled color on ray.
"""
import math
LSUN = {
0: {
"batch_size": 20,
"num_steps": 12,
"img_size": 32,
"batch_split": 1,
"gen_lr": 0.0002,
"disc_lr": 0.002,
},
int(150e3): {
"batch_size": 10,
"num_steps": 12,
"img_size": 64,
"batch_split": 1,
"gen_lr": 5e-5,
"disc_lr": 5e-4,
},
int(400e3): {
"batch_size": 1,
"num_steps": 48,
"img_size": 128,
"batch_split": 1,
"gen_lr": 10e-6,
"disc_lr": 10e-5,
},
int(600e3): {},
# int(55e3): {'batch_size': 1, 'num_steps': 48, 'img_size': 128, 'batch_split': 5, 'gen_lr': 10e-6, 'disc_lr': 10e-5},
# int(200e3): {},
"dataset_path": "/h/edwardl/datasets/LSUN/cars/combined/*.webp",
# "dataset_path": "/h/edwardl/datasets/carla/images/*.png",
"fov": 30,
"ray_start": 0.7,
"ray_end": 1.3,
"fade_steps": 10000,
"sample_dist": "spherical_uniform",
"h_stddev": math.pi,
"v_stddev": math.pi / 4 * 85 / 90,
"h_mean": math.pi * 0.5,
"v_mean": math.pi / 4 * 85 / 90,
"topk_interval": 1000,
"topk_v": 1,
"betas": (0, 0.9),
"unique_lr": False,
"weight_decay": 0,
"r1_lambda": 10,
"latent_dim": 256,
"grad_clip": 10,
"generator": "CIPSGeneratorNerfINR",
"discriminator": "MultiScaleAuxDiscriminatorConfig",
"INR": "CIPSNetINRConfig",
"siren": "ShallowSIRENConfig",
"inr_mapping": "INRMultiHeadMappingConfig",
"siren_mapping": "SirenMultiHeadMappingConfig",
"dataset": "LSUNCars",
# "dataset": "Carla",
"white_back": True,
"clamp_mode": "relu",
"z_dist": "gaussian",
"hierarchical_sample": True,
"z_lambda": 0,
"pos_lambda": 0,
"learnable_dist": False,
"use_amp_G": False,
"use_amp_D": False,
"forward_points": 256,
"train_aux_img": True,
"aux_img_interval": 1,
"d_reg_interval": 1,
"batch_size_eval": 16,
"grad_points": 256,
}
CelebA = {
0: {
"batch_size": 4,
"num_steps": 12,
"img_size": 32,
"batch_split": 1,
"gen_lr": 0.0002,
"disc_lr": 0.002,
},
int(50e3): {
"batch_size": 10,
"num_steps": 12,
"img_size": 64,
"batch_split": 1,
"gen_lr": 5e-5,
"disc_lr": 5e-4,
},
int(300e3): {},
"dataset_path": "/scratch/ssd002/datasets/celeba/Img/img_align_celeba/*.jpg",
"fov": 12,
"ray_start": 0.88,
"ray_end": 1.12,
"fade_steps": 10000,
"sample_dist": "gaussian",
"h_stddev": 0.3,
"v_stddev": 0.155,
"h_mean": math.pi * 0.5,
"v_mean": math.pi / 4 * 85 / 90,
"topk_interval": 1000,
"topk_v": 1,
"betas": (0, 0.9),
"unique_lr": False,
"weight_decay": 0,
"r1_lambda": 10,
"latent_dim": 256,
"grad_clip": 10,
"generator": "CIPSGeneratorNerfINR",
"discriminator": "MultiScaleAuxDiscriminatorConfig",
"INR": "CIPSNetINRConfig",
"siren": "ShallowSIRENConfig",
"inr_mapping": "INRMultiHeadMappingConfig",
"siren_mapping": "SirenMultiHeadMappingConfig",
"dataset": "CelebA",
"white_back": True,
"clamp_mode": "relu",
"z_dist": "gaussian",
"hierarchical_sample": True,
"z_lambda": 0,
"pos_lambda": 0,
"learnable_dist": False,
"use_amp_G": False,
"use_amp_D": False,
"forward_points": 256,
"train_aux_img": True,
"aux_img_interval": 1,
"d_reg_interval": 1,
"batch_size_eval": 16,
"grad_points": 256,
}
| [
37811,
198,
2514,
3538,
22919,
10256,
11,
290,
3368,
6427,
1811,
3141,
1627,
7159,
11,
356,
9177,
198,
64,
20583,
10361,
13,
40117,
460,
307,
900,
287,
257,
20583,
22155,
13,
198,
198,
26628,
1173,
14452,
10011,
2611,
25,
628,
220,
220,
220,
399,
6975,
605,
8251,
287,
262,
20583,
11986,
281,
19649,
1403,
2239,
13,
1649,
262,
1459,
2239,
7466,
262,
19649,
1403,
2239,
11,
198,
220,
220,
220,
262,
3815,
287,
262,
11188,
8633,
307,
6153,
287,
262,
20583,
13,
8070,
20583,
3815,
7368,
379,
19649,
12629,
25,
198,
220,
220,
220,
220,
220,
220,
220,
15458,
62,
7857,
25,
347,
963,
12849,
13,
198,
220,
220,
220,
220,
220,
220,
220,
997,
62,
20214,
25,
7913,
286,
8405,
1863,
26842,
13,
198,
220,
220,
220,
220,
220,
220,
220,
33705,
62,
7857,
25,
2980,
515,
2939,
6323,
13,
198,
220,
220,
220,
220,
220,
220,
220,
15458,
62,
35312,
25,
34142,
1271,
625,
543,
284,
14083,
37830,
290,
19406,
4726,
3746,
13,
357,
38052,
2233,
284,
4088,
17778,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2429,
62,
14050,
25,
35986,
2193,
328,
2494,
13,
198,
220,
220,
220,
220,
220,
220,
220,
1221,
62,
14050,
25,
8444,
3036,
20900,
4673,
2494,
13,
628,
220,
220,
220,
277,
709,
25,
20432,
2214,
286,
1570,
198,
220,
220,
220,
26842,
62,
9688,
25,
20173,
45013,
329,
4676,
24823,
13,
198,
220,
220,
220,
26842,
62,
437,
25,
6755,
45013,
329,
4676,
24823,
13,
198,
220,
220,
220,
22100,
62,
20214,
25,
7913,
286,
4831,
284,
22100,
287,
649,
7679,
319,
6534,
20900,
706,
19649,
1403,
13,
198,
220,
220,
220,
289,
62,
301,
1860,
1990,
25,
520,
1860,
1990,
286,
4676,
331,
707,
287,
2511,
1547,
13,
198,
220,
220,
220,
410,
62,
301,
1860,
1990,
25,
520,
1860,
1990,
286,
4676,
7078,
287,
2511,
1547,
13,
198,
220,
220,
220,
289,
62,
32604,
25,
220,
22728,
286,
4676,
331,
707,
287,
2511,
1547,
13,
198,
220,
220,
220,
410,
62,
32604,
25,
22728,
286,
4676,
7078,
287,
2511,
1547,
13,
198,
220,
220,
220,
6291,
62,
17080,
25,
5994,
286,
4676,
12705,
6082,
13,
357,
4908,
31562,
930,
43180,
62,
403,
6933,
930,
8187,
8,
198,
220,
220,
220,
1353,
74,
62,
3849,
2100,
25,
4225,
2100,
625,
543,
284,
22100,
262,
1353,
479,
8064,
13,
198,
220,
220,
220,
1353,
74,
62,
85,
25,
26265,
13390,
286,
257,
15458,
284,
1394,
1141,
1353,
479,
3047,
13,
198,
220,
220,
220,
731,
292,
25,
17993,
10007,
329,
7244,
13,
198,
220,
220,
220,
3748,
62,
14050,
25,
10127,
284,
779,
5322,
406,
31273,
329,
16855,
3127,
13,
198,
220,
220,
220,
3463,
62,
12501,
323,
25,
14331,
22119,
11507,
13,
198,
220,
220,
220,
374,
16,
62,
50033,
25,
371,
16,
3218,
1634,
11507,
13,
198,
220,
220,
220,
41270,
62,
27740,
25,
5476,
298,
5391,
329,
43904,
3127,
220,
287,
17301,
13,
198,
220,
220,
220,
3915,
62,
15036,
25,
17701,
45013,
11507,
13,
198,
220,
220,
220,
2746,
25,
43904,
10959,
973,
287,
17301,
13,
357,
4303,
1404,
12576,
50,
4663,
1677,
33,
1921,
3698,
8881,
930,
309,
1847,
6561,
4663,
1677,
8,
198,
220,
220,
220,
17301,
25,
35986,
1398,
13,
357,
29710,
3628,
8645,
1352,
18,
67,
8,
198,
220,
220,
220,
6534,
20900,
25,
8444,
3036,
20900,
1398,
13,
357,
2964,
19741,
27195,
12342,
15642,
3036,
20900,
930,
25852,
15642,
3036,
20900,
8,
198,
220,
220,
220,
27039,
25,
13614,
27039,
13,
357,
42741,
65,
32,
930,
1879,
5031,
930,
28997,
8,
198,
220,
220,
220,
29405,
62,
14171,
25,
1012,
37843,
2163,
329,
43904,
12109,
5072,
13,
357,
260,
2290,
930,
2705,
9541,
8,
198,
220,
220,
220,
1976,
62,
17080,
25,
5476,
298,
15879,
11309,
72,
295,
13,
357,
4908,
31562,
930,
8187,
8,
198,
220,
220,
220,
38958,
62,
39873,
25,
19762,
284,
7139,
38958,
62,
37687,
11347,
422,
3169,
32754,
11862,
13,
357,
40287,
7689,
262,
1271,
286,
35846,
2173,
8,
198,
220,
220,
220,
1976,
62,
23912,
76,
6814,
25,
14331,
329,
11992,
41270,
2438,
45203,
15794,
2994,
13,
198,
220,
220,
220,
1426,
62,
50033,
25,
14331,
11507,
329,
11992,
45203,
15794,
2994,
13,
198,
220,
220,
220,
938,
62,
1891,
25,
19762,
284,
6070,
287,
4469,
3124,
351,
938,
35846,
3124,
319,
26842,
13,
198,
37811,
198,
198,
11748,
10688,
628,
628,
628,
198,
6561,
4944,
796,
1391,
198,
220,
220,
220,
657,
25,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
43501,
62,
7857,
1298,
1160,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
22510,
62,
20214,
1298,
1105,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
9600,
62,
7857,
1298,
3933,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
43501,
62,
35312,
1298,
352,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
5235,
62,
14050,
1298,
657,
13,
34215,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
15410,
62,
14050,
1298,
657,
13,
21601,
11,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
493,
7,
8628,
68,
18,
2599,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
43501,
62,
7857,
1298,
838,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
22510,
62,
20214,
1298,
1105,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
9600,
62,
7857,
1298,
5598,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
43501,
62,
35312,
1298,
352,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
5235,
62,
14050,
1298,
642,
68,
12,
20,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
15410,
62,
14050,
1298,
642,
68,
12,
19,
11,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
493,
7,
7029,
68,
18,
2599,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
43501,
62,
7857,
1298,
352,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
22510,
62,
20214,
1298,
4764,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
9600,
62,
7857,
1298,
13108,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
43501,
62,
35312,
1298,
352,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
5235,
62,
14050,
1298,
838,
68,
12,
21,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
15410,
62,
14050,
1298,
838,
68,
12,
20,
11,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
493,
7,
8054,
68,
18,
2599,
1391,
5512,
198,
220,
220,
220,
1303,
493,
7,
2816,
68,
18,
2599,
1391,
6,
43501,
62,
7857,
10354,
352,
11,
705,
22510,
62,
20214,
10354,
4764,
11,
705,
9600,
62,
7857,
10354,
13108,
11,
705,
43501,
62,
35312,
10354,
642,
11,
705,
5235,
62,
14050,
10354,
838,
68,
12,
21,
11,
705,
15410,
62,
14050,
10354,
838,
68,
12,
20,
5512,
198,
220,
220,
220,
1303,
493,
7,
2167,
68,
18,
2599,
1391,
5512,
198,
220,
220,
220,
366,
19608,
292,
316,
62,
6978,
1298,
12813,
71,
14,
276,
904,
75,
14,
19608,
292,
1039,
14,
6561,
4944,
14,
37993,
14,
24011,
1389,
15211,
13,
12384,
79,
1600,
198,
220,
220,
220,
1303,
366,
19608,
292,
316,
62,
6978,
1298,
12813,
71,
14,
276,
904,
75,
14,
19608,
292,
1039,
14,
7718,
5031,
14,
17566,
15211,
13,
11134,
1600,
198,
220,
220,
220,
366,
69,
709,
1298,
1542,
11,
198,
220,
220,
220,
366,
2433,
62,
9688,
1298,
657,
13,
22,
11,
198,
220,
220,
220,
366,
2433,
62,
437,
1298,
352,
13,
18,
11,
198,
220,
220,
220,
366,
69,
671,
62,
20214,
1298,
33028,
11,
198,
220,
220,
220,
366,
39873,
62,
17080,
1298,
366,
2777,
37910,
62,
403,
6933,
1600,
198,
220,
220,
220,
366,
71,
62,
301,
1860,
1990,
1298,
10688,
13,
14415,
11,
198,
220,
220,
220,
366,
85,
62,
301,
1860,
1990,
1298,
10688,
13,
14415,
1220,
604,
1635,
7600,
1220,
4101,
11,
198,
220,
220,
220,
366,
71,
62,
32604,
1298,
10688,
13,
14415,
1635,
657,
13,
20,
11,
198,
220,
220,
220,
366,
85,
62,
32604,
1298,
10688,
13,
14415,
1220,
604,
1635,
7600,
1220,
4101,
11,
198,
220,
220,
220,
366,
4852,
74,
62,
3849,
2100,
1298,
8576,
11,
198,
220,
220,
220,
366,
4852,
74,
62,
85,
1298,
352,
11,
198,
220,
220,
220,
366,
11181,
292,
1298,
357,
15,
11,
657,
13,
24,
828,
198,
220,
220,
220,
366,
34642,
62,
14050,
1298,
10352,
11,
198,
220,
220,
220,
366,
6551,
62,
12501,
323,
1298,
657,
11,
198,
220,
220,
220,
366,
81,
16,
62,
50033,
1298,
838,
11,
198,
220,
220,
220,
366,
15460,
298,
62,
27740,
1298,
17759,
11,
198,
220,
220,
220,
366,
9744,
62,
15036,
1298,
838,
11,
198,
220,
220,
220,
366,
8612,
1352,
1298,
366,
25690,
3705,
8645,
1352,
45,
263,
69,
1268,
49,
1600,
198,
220,
220,
220,
366,
15410,
3036,
20900,
1298,
366,
29800,
29990,
32,
2821,
15642,
3036,
20900,
16934,
1600,
198,
220,
220,
220,
366,
1268,
49,
1298,
366,
25690,
3705,
7934,
1268,
49,
16934,
1600,
198,
220,
220,
220,
366,
82,
24080,
1298,
366,
2484,
12154,
50,
4663,
1677,
16934,
1600,
198,
220,
220,
220,
366,
259,
81,
62,
76,
5912,
1298,
366,
1268,
49,
29800,
13847,
44,
5912,
16934,
1600,
198,
220,
220,
220,
366,
82,
24080,
62,
76,
5912,
1298,
366,
50,
24080,
29800,
13847,
44,
5912,
16934,
1600,
198,
220,
220,
220,
366,
19608,
292,
316,
1298,
366,
6561,
4944,
34,
945,
1600,
198,
220,
220,
220,
1303,
366,
19608,
292,
316,
1298,
366,
9914,
5031,
1600,
198,
220,
220,
220,
366,
11186,
62,
1891,
1298,
6407,
11,
198,
220,
220,
220,
366,
565,
696,
62,
14171,
1298,
366,
260,
2290,
1600,
198,
220,
220,
220,
366,
89,
62,
17080,
1298,
366,
4908,
31562,
1600,
198,
220,
220,
220,
366,
71,
959,
998,
605,
62,
39873,
1298,
6407,
11,
198,
220,
220,
220,
366,
89,
62,
50033,
1298,
657,
11,
198,
220,
220,
220,
366,
1930,
62,
50033,
1298,
657,
11,
198,
220,
220,
220,
366,
35720,
540,
62,
17080,
1298,
10352,
11,
198,
220,
220,
220,
366,
1904,
62,
696,
62,
38,
1298,
10352,
11,
198,
220,
220,
220,
366,
1904,
62,
696,
62,
35,
1298,
10352,
11,
198,
220,
220,
220,
366,
11813,
62,
13033,
1298,
17759,
11,
198,
220,
220,
220,
366,
27432,
62,
14644,
62,
9600,
1298,
6407,
11,
198,
220,
220,
220,
366,
14644,
62,
9600,
62,
3849,
2100,
1298,
352,
11,
198,
220,
220,
220,
366,
67,
62,
2301,
62,
3849,
2100,
1298,
352,
11,
198,
220,
220,
220,
366,
43501,
62,
7857,
62,
18206,
1298,
1467,
11,
198,
220,
220,
220,
366,
9744,
62,
13033,
1298,
17759,
11,
198,
92,
198,
198,
42741,
65,
32,
796,
1391,
198,
220,
220,
220,
657,
25,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
43501,
62,
7857,
1298,
604,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
22510,
62,
20214,
1298,
1105,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
9600,
62,
7857,
1298,
3933,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
43501,
62,
35312,
1298,
352,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
5235,
62,
14050,
1298,
657,
13,
34215,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
15410,
62,
14050,
1298,
657,
13,
21601,
11,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
493,
7,
1120,
68,
18,
2599,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
366,
43501,
62,
7857,
1298,
838,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
22510,
62,
20214,
1298,
1105,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
9600,
62,
7857,
1298,
5598,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
43501,
62,
35312,
1298,
352,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
5235,
62,
14050,
1298,
642,
68,
12,
20,
11,
198,
220,
220,
220,
220,
220,
220,
220,
366,
15410,
62,
14050,
1298,
642,
68,
12,
19,
11,
198,
220,
220,
220,
8964,
198,
220,
220,
220,
493,
7,
6200,
68,
18,
2599,
1391,
5512,
198,
220,
220,
220,
366,
19608,
292,
316,
62,
6978,
1298,
12813,
1416,
36722,
14,
824,
67,
21601,
14,
19608,
292,
1039,
14,
49840,
7012,
14,
3546,
70,
14,
9600,
62,
31494,
62,
49840,
7012,
15211,
13,
9479,
1600,
198,
220,
220,
220,
366,
69,
709,
1298,
1105,
11,
198,
220,
220,
220,
366,
2433,
62,
9688,
1298,
657,
13,
3459,
11,
198,
220,
220,
220,
366,
2433,
62,
437,
1298,
352,
13,
1065,
11,
198,
220,
220,
220,
366,
69,
671,
62,
20214,
1298,
33028,
11,
198,
220,
220,
220,
366,
39873,
62,
17080,
1298,
366,
4908,
31562,
1600,
198,
220,
220,
220,
366,
71,
62,
301,
1860,
1990,
1298,
657,
13,
18,
11,
198,
220,
220,
220,
366,
85,
62,
301,
1860,
1990,
1298,
657,
13,
18742,
11,
198,
220,
220,
220,
366,
71,
62,
32604,
1298,
10688,
13,
14415,
1635,
657,
13,
20,
11,
198,
220,
220,
220,
366,
85,
62,
32604,
1298,
10688,
13,
14415,
1220,
604,
1635,
7600,
1220,
4101,
11,
198,
220,
220,
220,
366,
4852,
74,
62,
3849,
2100,
1298,
8576,
11,
198,
220,
220,
220,
366,
4852,
74,
62,
85,
1298,
352,
11,
198,
220,
220,
220,
366,
11181,
292,
1298,
357,
15,
11,
657,
13,
24,
828,
198,
220,
220,
220,
366,
34642,
62,
14050,
1298,
10352,
11,
198,
220,
220,
220,
366,
6551,
62,
12501,
323,
1298,
657,
11,
198,
220,
220,
220,
366,
81,
16,
62,
50033,
1298,
838,
11,
198,
220,
220,
220,
366,
15460,
298,
62,
27740,
1298,
17759,
11,
198,
220,
220,
220,
366,
9744,
62,
15036,
1298,
838,
11,
198,
220,
220,
220,
366,
8612,
1352,
1298,
366,
25690,
3705,
8645,
1352,
45,
263,
69,
1268,
49,
1600,
198,
220,
220,
220,
366,
15410,
3036,
20900,
1298,
366,
29800,
29990,
32,
2821,
15642,
3036,
20900,
16934,
1600,
198,
220,
220,
220,
366,
1268,
49,
1298,
366,
25690,
3705,
7934,
1268,
49,
16934,
1600,
198,
220,
220,
220,
366,
82,
24080,
1298,
366,
2484,
12154,
50,
4663,
1677,
16934,
1600,
198,
220,
220,
220,
366,
259,
81,
62,
76,
5912,
1298,
366,
1268,
49,
29800,
13847,
44,
5912,
16934,
1600,
198,
220,
220,
220,
366,
82,
24080,
62,
76,
5912,
1298,
366,
50,
24080,
29800,
13847,
44,
5912,
16934,
1600,
198,
220,
220,
220,
366,
19608,
292,
316,
1298,
366,
42741,
65,
32,
1600,
198,
220,
220,
220,
366,
11186,
62,
1891,
1298,
6407,
11,
198,
220,
220,
220,
366,
565,
696,
62,
14171,
1298,
366,
260,
2290,
1600,
198,
220,
220,
220,
366,
89,
62,
17080,
1298,
366,
4908,
31562,
1600,
198,
220,
220,
220,
366,
71,
959,
998,
605,
62,
39873,
1298,
6407,
11,
198,
220,
220,
220,
366,
89,
62,
50033,
1298,
657,
11,
198,
220,
220,
220,
366,
1930,
62,
50033,
1298,
657,
11,
198,
220,
220,
220,
366,
35720,
540,
62,
17080,
1298,
10352,
11,
198,
220,
220,
220,
366,
1904,
62,
696,
62,
38,
1298,
10352,
11,
198,
220,
220,
220,
366,
1904,
62,
696,
62,
35,
1298,
10352,
11,
198,
220,
220,
220,
366,
11813,
62,
13033,
1298,
17759,
11,
198,
220,
220,
220,
366,
27432,
62,
14644,
62,
9600,
1298,
6407,
11,
198,
220,
220,
220,
366,
14644,
62,
9600,
62,
3849,
2100,
1298,
352,
11,
198,
220,
220,
220,
366,
67,
62,
2301,
62,
3849,
2100,
1298,
352,
11,
198,
220,
220,
220,
366,
43501,
62,
7857,
62,
18206,
1298,
1467,
11,
198,
220,
220,
220,
366,
9744,
62,
13033,
1298,
17759,
11,
198,
92,
198
] | 2.306595 | 2,593 |
#!/usr/bin/python3
# -*- encoding: utf-8 -*-
#
from sys import argv
import random
import os.path
import hashlib
import time
import stolas.stolas
import stolas.protocol
from stolas.betterui import pprint as print
from network import manual_stolas_prompt
from common import network_collapse, mean
if __name__ == '__main__':
if len(argv) == 1:
print("Tell me?")
pass
if argv[1] == "cluster":
stolas_cluster()
elif argv[1] == "gigacluster":
stolas_gigacluster()
elif argv[1] == "simple":
stolas_simple()
elif argv[1] == "transmission":
test_transmission()
else:
print("¯\_(ツ)_/¯")
| [
2,
48443,
14629,
14,
8800,
14,
29412,
18,
198,
2,
532,
9,
12,
21004,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
2,
198,
198,
6738,
25064,
1330,
1822,
85,
198,
11748,
4738,
198,
11748,
28686,
13,
6978,
198,
11748,
12234,
8019,
198,
11748,
640,
198,
198,
11748,
336,
12456,
13,
301,
12456,
198,
11748,
336,
12456,
13,
11235,
4668,
198,
6738,
336,
12456,
13,
27903,
9019,
1330,
279,
4798,
355,
3601,
198,
198,
6738,
3127,
1330,
10107,
62,
301,
12456,
62,
16963,
457,
198,
6738,
2219,
1330,
3127,
62,
26000,
7512,
11,
1612,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
197,
361,
18896,
7,
853,
85,
8,
6624,
352,
25,
198,
197,
197,
4798,
7203,
24446,
502,
1701,
8,
198,
197,
197,
6603,
628,
197,
361,
1822,
85,
58,
16,
60,
6624,
366,
565,
5819,
1298,
198,
197,
197,
301,
12456,
62,
565,
5819,
3419,
628,
197,
417,
361,
1822,
85,
58,
16,
60,
6624,
366,
70,
328,
37779,
5819,
1298,
198,
197,
197,
301,
12456,
62,
70,
328,
37779,
5819,
3419,
628,
197,
417,
361,
1822,
85,
58,
16,
60,
6624,
366,
36439,
1298,
198,
197,
197,
301,
12456,
62,
36439,
3419,
628,
197,
417,
361,
1822,
85,
58,
16,
60,
6624,
366,
7645,
3411,
1298,
198,
197,
197,
9288,
62,
7645,
3411,
3419,
628,
197,
17772,
25,
198,
197,
197,
4798,
7203,
5196,
59,
41052,
41115,
8,
62,
14,
5196,
4943,
198
] | 2.504132 | 242 |
'''
Comparing single layer MLP with deep MLP (using TensorFlow)
'''
import tensorflow as tf
import numpy as np
import pickle
import timeit
start = timeit.default_timer()
# Create model
# Add more hidden layers to create deeper networks
# Remember to connect the final hidden layer to the out_layer
# Do not change this
# Parameters
learning_rate = 0.0001
training_epochs = 100
batch_size = 100
# Construct model
pred,x,y = create_multilayer_perceptron()
# Define loss and optimizer
cost = tf.reduce_mean(tf.nn.softmax_cross_entropy_with_logits(logits=pred, labels=y))
optimizer = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(cost)
timer =1
# Initializing the variables
init = tf.global_variables_initializer()
# load data
train_features, train_labels, valid_features, valid_labels, test_features, test_labels = preprocess()
# Launch the graph
with tf.Session() as sess:
sess.run(init)
# Training cycle
for epoch in range(training_epochs):
print(timer)
timer = timer +1
avg_cost = 0.
total_batch = int(train_features.shape[0] / batch_size)
# Loop over all batches
for i in range(total_batch):
batch_x, batch_y = train_features[i * batch_size: (i + 1) * batch_size], train_labels[i * batch_size: (i + 1) * batch_size]
# Run optimization op (backprop) and cost op (to get loss value)
_, c = sess.run([optimizer, cost], feed_dict={x: batch_x, y: batch_y})
# Compute average loss
avg_cost += c / total_batch
print("Optimization Finished!")
correct_prediction = tf.equal(tf.argmax(pred, 1), tf.argmax(y, 1))
accuracy = tf.reduce_mean(tf.cast(correct_prediction, "float"))
print("Accuracy:", accuracy.eval({x: test_features, y: test_labels}))
stop = timeit.default_timer()
print('\n Time Taken: ' + str(stop - start))
| [
7061,
6,
198,
7293,
1723,
2060,
7679,
10373,
47,
351,
2769,
10373,
47,
357,
3500,
309,
22854,
37535,
8,
198,
7061,
6,
198,
198,
11748,
11192,
273,
11125,
355,
48700,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
2298,
293,
198,
11748,
640,
270,
198,
9688,
796,
640,
270,
13,
12286,
62,
45016,
3419,
198,
198,
2,
13610,
2746,
198,
2,
3060,
517,
7104,
11685,
284,
2251,
9211,
7686,
198,
2,
11436,
284,
2018,
262,
2457,
7104,
7679,
284,
262,
503,
62,
29289,
198,
198,
2,
2141,
407,
1487,
428,
628,
198,
2,
40117,
198,
40684,
62,
4873,
796,
657,
13,
18005,
198,
34409,
62,
538,
5374,
82,
796,
1802,
198,
43501,
62,
7857,
796,
1802,
198,
198,
2,
28407,
2746,
198,
28764,
11,
87,
11,
88,
796,
2251,
62,
16680,
346,
2794,
62,
525,
984,
1313,
3419,
198,
198,
2,
2896,
500,
2994,
290,
6436,
7509,
198,
15805,
796,
48700,
13,
445,
7234,
62,
32604,
7,
27110,
13,
20471,
13,
4215,
9806,
62,
19692,
62,
298,
28338,
62,
4480,
62,
6404,
896,
7,
6404,
896,
28,
28764,
11,
14722,
28,
88,
4008,
198,
40085,
7509,
796,
48700,
13,
27432,
13,
23159,
27871,
320,
7509,
7,
40684,
62,
4873,
28,
40684,
62,
4873,
737,
1084,
48439,
7,
15805,
8,
198,
45016,
796,
16,
198,
2,
20768,
2890,
262,
9633,
198,
15003,
796,
48700,
13,
20541,
62,
25641,
2977,
62,
36733,
7509,
3419,
198,
198,
2,
3440,
1366,
198,
27432,
62,
40890,
11,
4512,
62,
23912,
1424,
11,
4938,
62,
40890,
11,
4938,
62,
23912,
1424,
11,
1332,
62,
40890,
11,
1332,
62,
23912,
1424,
796,
662,
14681,
3419,
198,
2,
21225,
262,
4823,
198,
4480,
48700,
13,
36044,
3419,
355,
264,
408,
25,
198,
220,
220,
220,
264,
408,
13,
5143,
7,
15003,
8,
198,
220,
220,
220,
220,
198,
220,
220,
220,
1303,
13614,
6772,
198,
220,
220,
220,
329,
36835,
287,
2837,
7,
34409,
62,
538,
5374,
82,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
3601,
7,
45016,
8,
198,
220,
220,
220,
220,
220,
220,
220,
19781,
796,
19781,
1343,
16,
198,
220,
220,
220,
220,
220,
220,
220,
42781,
62,
15805,
796,
657,
13,
198,
220,
220,
220,
220,
220,
220,
220,
2472,
62,
43501,
796,
493,
7,
27432,
62,
40890,
13,
43358,
58,
15,
60,
1220,
15458,
62,
7857,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1303,
26304,
625,
477,
37830,
198,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
287,
2837,
7,
23350,
62,
43501,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
15458,
62,
87,
11,
15458,
62,
88,
796,
4512,
62,
40890,
58,
72,
1635,
15458,
62,
7857,
25,
357,
72,
1343,
352,
8,
1635,
15458,
62,
7857,
4357,
4512,
62,
23912,
1424,
58,
72,
1635,
15458,
62,
7857,
25,
357,
72,
1343,
352,
8,
1635,
15458,
62,
7857,
60,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
5660,
23989,
1034,
357,
1891,
22930,
8,
290,
1575,
1034,
357,
1462,
651,
2994,
1988,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4808,
11,
269,
796,
264,
408,
13,
5143,
26933,
40085,
7509,
11,
1575,
4357,
3745,
62,
11600,
34758,
87,
25,
15458,
62,
87,
11,
331,
25,
15458,
62,
88,
30072,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1303,
3082,
1133,
2811,
2994,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
42781,
62,
15805,
15853,
269,
1220,
2472,
62,
43501,
198,
220,
220,
220,
3601,
7203,
27871,
320,
1634,
42931,
2474,
8,
198,
220,
220,
220,
3376,
62,
28764,
2867,
796,
48700,
13,
40496,
7,
27110,
13,
853,
9806,
7,
28764,
11,
352,
828,
48700,
13,
853,
9806,
7,
88,
11,
352,
4008,
198,
220,
220,
220,
9922,
796,
48700,
13,
445,
7234,
62,
32604,
7,
27110,
13,
2701,
7,
30283,
62,
28764,
2867,
11,
366,
22468,
48774,
198,
220,
220,
220,
3601,
7203,
17320,
23843,
25,
1600,
9922,
13,
18206,
15090,
87,
25,
1332,
62,
40890,
11,
331,
25,
1332,
62,
23912,
1424,
92,
4008,
198,
220,
220,
220,
220,
198,
220,
220,
220,
220,
198,
11338,
796,
640,
270,
13,
12286,
62,
45016,
3419,
198,
198,
4798,
10786,
59,
77,
3862,
30222,
25,
705,
1343,
965,
7,
11338,
532,
923,
4008,
198
] | 2.617198 | 721 |
import torch.nn as nn | [
11748,
28034,
13,
20471,
355,
299,
77
] | 3 | 7 |
if __name__ == '__main__':
keys = [
'she',
'sells',
'seashells',
'by',
'the',
'seashore',
'the',
'shells',
'she',
'sells',
'are',
'surely',
'seashells',
]
expected = sorted(keys[:])
assert keys != expected
sort(keys)
assert keys == expected
| [
628,
198,
198,
361,
11593,
3672,
834,
6624,
705,
834,
12417,
834,
10354,
198,
220,
220,
220,
8251,
796,
685,
198,
220,
220,
220,
220,
220,
220,
220,
705,
7091,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
7255,
82,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
325,
292,
12758,
82,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
1525,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
1169,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
325,
1077,
382,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
1169,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
29149,
82,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
7091,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
7255,
82,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
533,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
19532,
306,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
705,
325,
292,
12758,
82,
3256,
198,
220,
220,
220,
2361,
628,
220,
220,
220,
2938,
796,
23243,
7,
13083,
58,
25,
12962,
198,
220,
220,
220,
6818,
8251,
14512,
2938,
628,
220,
220,
220,
3297,
7,
13083,
8,
198,
220,
220,
220,
6818,
8251,
6624,
2938,
628,
198
] | 1.729358 | 218 |
#! /usr/bin/env python3
# -*- coding: utf-8 -*-
# vim:fenc=utf-8
#
# Copyright © 2019 Malcolm Ramsay <[email protected]>
#
# Distributed under terms of the MIT license.
"""Module for reading and processing input files."""
from ._util import TrackedMotion
from .dynamics import Dynamics
from .relaxations import LastMolecularRelaxation, MolecularRelaxation, Relaxations
__all__ = [
"Dynamics",
"TrackedMotion",
"LastMolecularRelaxation",
"MolecularRelaxation",
"Relaxations",
]
| [
2,
0,
1220,
14629,
14,
8800,
14,
24330,
21015,
18,
198,
2,
532,
9,
12,
19617,
25,
3384,
69,
12,
23,
532,
9,
12,
198,
2,
43907,
25,
69,
12685,
28,
40477,
12,
23,
198,
2,
198,
2,
15069,
10673,
13130,
20002,
47959,
1279,
7617,
9474,
323,
2414,
31,
14816,
13,
785,
29,
198,
2,
198,
2,
4307,
6169,
739,
2846,
286,
262,
17168,
5964,
13,
198,
198,
37811,
26796,
329,
3555,
290,
7587,
5128,
3696,
526,
15931,
628,
198,
6738,
47540,
22602,
1330,
833,
6021,
45740,
198,
6738,
764,
67,
4989,
873,
1330,
33806,
198,
6738,
764,
2411,
897,
602,
1330,
4586,
44,
2305,
10440,
6892,
897,
341,
11,
38275,
6892,
897,
341,
11,
46883,
602,
198,
198,
834,
439,
834,
796,
685,
198,
220,
220,
220,
366,
35,
4989,
873,
1600,
198,
220,
220,
220,
366,
2898,
6021,
45740,
1600,
198,
220,
220,
220,
366,
5956,
44,
2305,
10440,
6892,
897,
341,
1600,
198,
220,
220,
220,
366,
44,
2305,
10440,
6892,
897,
341,
1600,
198,
220,
220,
220,
366,
6892,
897,
602,
1600,
198,
60,
198
] | 2.821229 | 179 |
import json
import logging
import os
logger = logging.getLogger(__name__)
| [
11748,
33918,
198,
11748,
18931,
198,
11748,
28686,
198,
198,
6404,
1362,
796,
18931,
13,
1136,
11187,
1362,
7,
834,
3672,
834,
8,
628
] | 3.166667 | 24 |
import click
import string
import random
import time
import pandas as pd
from faker import Faker
fake = Faker('en')
class anon(object):
'''Initialize a df as an anon object.
Args:
df: pandas dataframe
Returns:
anon object
'''
def anon_name(self, col):
''' Replace entries in name column with fake names generated
from faker.
Args:
col: column containing name data
Returns:
anon object with replaced name col
'''
unique = self.df[col].unique()
map_dict = {_: fake.name() for _ in unique}
self.df[col] = self.df[col].map(map_dict)
def anon_id(self, col):
''' Replace entries in id column with fake uuid generated
from faker.
Args:
col: column containing id data
Returns:
anon object with replaced id col
'''
unique = self.df[col].unique()
map_dict = {_: fake.uuid4() for _ in unique}
self.df[col] = self.df[col].map(map_dict)
def anon_discrete_num(self, col):
''' Replace entries in column with whole nums to random whole
nums in the same range.
Args:
col: column containing whole number data
Returns:
anon object with replaced discrete col
'''
X_std = (self.df[col] - self.df[col].min()) / (
self.df[col].max() - self.df[col].min())
X_scaled = (X_std * (10 - 1) + 1)
X_scaled_randomized = (X_scaled * random.randint(1, 10)).astype(int)
self.df[col] = X_scaled_randomized
def anon_continuous_num(self, col):
''' Replace entries in columns with continuous nums to random whole
nums in the same range.
Args:
col: column containing continuous number data
Returns:
anon object with replaced continuous col
'''
X_std = (self.df[col] - self.df[col].min()) / (
self.df[col].max() - self.df[col].min())
X_scaled = (X_std * (10 - 1) + 1)
X_scaled_randomized = round(X_scaled * random.randint(1, 10), 3)
self.df[col] = X_scaled_randomized
def anon_category(self, col):
''' Replace entries in column with categorical data to
anonymized category.
Args:
col: column containing categorical data
Returns:
anon object with replaced categorical col
'''
unique = self.df[col].unique()
rand_ = random.randint(0, 1000)
map_dict = {
category: "Category_" + str(rand_) + " " + str(i)
for i, category in enumerate(unique)
}
self.df[col] = self.df[col].map(map_dict)
def anon_date(self, col):
''' Replace entries in date column with random date
in the same range.
Args:
col: column containing date data
Returns:
anon object with replaced date col
'''
self.df[col] = pd.to_datetime(
self.df[col], infer_datetime_format=True)
start_date = self.df[col].min()
end_date = self.df[col].max()
map_list = [fake.date_between(
start_date=start_date,
end_date=end_date) for i in range(self.df.shape[0])]
self.df[col] = map_list
def anon_email(self, col):
''' Replace entries in email column with random emails.
Args:
col: column containing email
Returns:
anon object with replaced email col
'''
unique = self.df[col].unique()
map_dict = {_: (''.join(random.choices(
string.ascii_lowercase + string.digits,
k=12)))+'@anonemail.com' for _ in unique}
self.df[col] = self.df[col].map(map_dict)
def save_anon_csv(self):
'''Save anon object to a csv file'''
self.df.to_csv(str(time.time())+'kohokoho.csv', index=False)
@click.command()
@click.option(
'--csv',
prompt='Enter location of CSV',
help='Enter a valid filepath or buffer')
| [
11748,
3904,
198,
11748,
4731,
198,
11748,
4738,
198,
11748,
640,
198,
11748,
19798,
292,
355,
279,
67,
198,
6738,
277,
3110,
1330,
376,
3110,
628,
198,
30706,
796,
376,
3110,
10786,
268,
11537,
628,
198,
4871,
281,
261,
7,
15252,
2599,
198,
220,
220,
220,
705,
7061,
24243,
1096,
257,
47764,
355,
281,
281,
261,
2134,
13,
198,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
47764,
25,
19798,
292,
1366,
14535,
198,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
281,
261,
2134,
198,
220,
220,
220,
705,
7061,
628,
220,
220,
220,
825,
281,
261,
62,
3672,
7,
944,
11,
951,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
40177,
12784,
287,
1438,
5721,
351,
8390,
3891,
7560,
198,
220,
220,
220,
220,
220,
220,
220,
422,
277,
3110,
13,
198,
220,
220,
220,
220,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
951,
25,
5721,
7268,
1438,
1366,
198,
220,
220,
220,
220,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
281,
261,
2134,
351,
6928,
1438,
951,
198,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
3748,
796,
2116,
13,
7568,
58,
4033,
4083,
34642,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
3975,
62,
11600,
796,
1391,
62,
25,
8390,
13,
3672,
3419,
329,
4808,
287,
3748,
92,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
7568,
58,
4033,
60,
796,
2116,
13,
7568,
58,
4033,
4083,
8899,
7,
8899,
62,
11600,
8,
628,
220,
220,
220,
825,
281,
261,
62,
312,
7,
944,
11,
951,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
40177,
12784,
287,
4686,
5721,
351,
8390,
334,
27112,
7560,
198,
220,
220,
220,
220,
220,
220,
220,
422,
277,
3110,
13,
198,
220,
220,
220,
220,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
951,
25,
5721,
7268,
4686,
1366,
198,
220,
220,
220,
220,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
281,
261,
2134,
351,
6928,
4686,
951,
198,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
3748,
796,
2116,
13,
7568,
58,
4033,
4083,
34642,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
3975,
62,
11600,
796,
1391,
62,
25,
8390,
13,
12303,
312,
19,
3419,
329,
4808,
287,
3748,
92,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
7568,
58,
4033,
60,
796,
2116,
13,
7568,
58,
4033,
4083,
8899,
7,
8899,
62,
11600,
8,
628,
220,
220,
220,
825,
281,
261,
62,
15410,
8374,
62,
22510,
7,
944,
11,
951,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
40177,
12784,
287,
5721,
351,
2187,
997,
82,
284,
4738,
2187,
198,
220,
220,
220,
220,
220,
220,
220,
997,
82,
287,
262,
976,
2837,
13,
198,
220,
220,
220,
220,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
951,
25,
5721,
7268,
2187,
1271,
1366,
198,
220,
220,
220,
220,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
281,
261,
2134,
351,
6928,
28810,
951,
198,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
19282,
796,
357,
944,
13,
7568,
58,
4033,
60,
532,
2116,
13,
7568,
58,
4033,
4083,
1084,
28955,
1220,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
7568,
58,
4033,
4083,
9806,
3419,
532,
2116,
13,
7568,
58,
4033,
4083,
1084,
28955,
198,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
1416,
3021,
796,
357,
55,
62,
19282,
1635,
357,
940,
532,
352,
8,
1343,
352,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
1416,
3021,
62,
25120,
1143,
796,
357,
55,
62,
1416,
3021,
1635,
4738,
13,
25192,
600,
7,
16,
11,
838,
29720,
459,
2981,
7,
600,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
7568,
58,
4033,
60,
796,
1395,
62,
1416,
3021,
62,
25120,
1143,
628,
220,
220,
220,
825,
281,
261,
62,
18487,
5623,
62,
22510,
7,
944,
11,
951,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
40177,
12784,
287,
15180,
351,
12948,
997,
82,
284,
4738,
2187,
198,
220,
220,
220,
220,
220,
220,
220,
997,
82,
287,
262,
976,
2837,
13,
198,
220,
220,
220,
220,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
951,
25,
5721,
7268,
12948,
1271,
1366,
198,
220,
220,
220,
220,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
281,
261,
2134,
351,
6928,
12948,
951,
198,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
19282,
796,
357,
944,
13,
7568,
58,
4033,
60,
532,
2116,
13,
7568,
58,
4033,
4083,
1084,
28955,
1220,
357,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
7568,
58,
4033,
4083,
9806,
3419,
532,
2116,
13,
7568,
58,
4033,
4083,
1084,
28955,
198,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
1416,
3021,
796,
357,
55,
62,
19282,
1635,
357,
940,
532,
352,
8,
1343,
352,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1395,
62,
1416,
3021,
62,
25120,
1143,
796,
2835,
7,
55,
62,
1416,
3021,
1635,
4738,
13,
25192,
600,
7,
16,
11,
838,
828,
513,
8,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
7568,
58,
4033,
60,
796,
1395,
62,
1416,
3021,
62,
25120,
1143,
628,
220,
220,
220,
825,
281,
261,
62,
22872,
7,
944,
11,
951,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
40177,
12784,
287,
5721,
351,
4253,
12409,
1366,
284,
198,
220,
220,
220,
220,
220,
220,
220,
14571,
1143,
6536,
13,
198,
220,
220,
220,
220,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
951,
25,
5721,
7268,
4253,
12409,
1366,
198,
220,
220,
220,
220,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
281,
261,
2134,
351,
6928,
4253,
12409,
951,
198,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
3748,
796,
2116,
13,
7568,
58,
4033,
4083,
34642,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
43720,
62,
796,
4738,
13,
25192,
600,
7,
15,
11,
8576,
8,
198,
220,
220,
220,
220,
220,
220,
220,
3975,
62,
11600,
796,
1391,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
6536,
25,
220,
366,
27313,
62,
1,
1343,
965,
7,
25192,
62,
8,
1343,
366,
366,
1343,
965,
7,
72,
8,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
329,
1312,
11,
6536,
287,
27056,
378,
7,
34642,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1782,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
7568,
58,
4033,
60,
796,
2116,
13,
7568,
58,
4033,
4083,
8899,
7,
8899,
62,
11600,
8,
628,
220,
220,
220,
825,
281,
261,
62,
4475,
7,
944,
11,
951,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
40177,
12784,
287,
3128,
5721,
351,
4738,
3128,
198,
220,
220,
220,
220,
220,
220,
220,
287,
262,
976,
2837,
13,
198,
220,
220,
220,
220,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
951,
25,
5721,
7268,
3128,
1366,
198,
220,
220,
220,
220,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
281,
261,
2134,
351,
6928,
3128,
951,
198,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
7568,
58,
4033,
60,
796,
279,
67,
13,
1462,
62,
19608,
8079,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
7568,
58,
4033,
4357,
13249,
62,
19608,
8079,
62,
18982,
28,
17821,
8,
198,
220,
220,
220,
220,
220,
220,
220,
923,
62,
4475,
796,
2116,
13,
7568,
58,
4033,
4083,
1084,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
886,
62,
4475,
796,
2116,
13,
7568,
58,
4033,
4083,
9806,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
3975,
62,
4868,
796,
685,
30706,
13,
4475,
62,
23395,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
923,
62,
4475,
28,
9688,
62,
4475,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
886,
62,
4475,
28,
437,
62,
4475,
8,
329,
1312,
287,
2837,
7,
944,
13,
7568,
13,
43358,
58,
15,
12962,
60,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
7568,
58,
4033,
60,
796,
3975,
62,
4868,
628,
220,
220,
220,
825,
281,
261,
62,
12888,
7,
944,
11,
951,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
40177,
12784,
287,
3053,
5721,
351,
4738,
7237,
13,
198,
220,
220,
220,
220,
220,
220,
220,
943,
14542,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
951,
25,
5721,
7268,
3053,
198,
220,
220,
220,
220,
220,
220,
220,
16409,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
281,
261,
2134,
351,
6928,
3053,
951,
198,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
198,
220,
220,
220,
220,
220,
220,
220,
3748,
796,
2116,
13,
7568,
58,
4033,
4083,
34642,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
3975,
62,
11600,
796,
1391,
62,
25,
19203,
4458,
22179,
7,
25120,
13,
6679,
1063,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
4731,
13,
292,
979,
72,
62,
21037,
7442,
1343,
4731,
13,
12894,
896,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
479,
28,
1065,
22305,
10,
6,
31,
36902,
12888,
13,
785,
6,
329,
4808,
287,
3748,
92,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
7568,
58,
4033,
60,
796,
2116,
13,
7568,
58,
4033,
4083,
8899,
7,
8899,
62,
11600,
8,
628,
220,
220,
220,
825,
3613,
62,
36902,
62,
40664,
7,
944,
2599,
198,
220,
220,
220,
220,
220,
220,
220,
705,
7061,
16928,
281,
261,
2134,
284,
257,
269,
21370,
2393,
7061,
6,
198,
220,
220,
220,
220,
220,
220,
220,
2116,
13,
7568,
13,
1462,
62,
40664,
7,
2536,
7,
2435,
13,
2435,
28955,
10,
6,
74,
1219,
482,
40950,
13,
40664,
3256,
6376,
28,
25101,
8,
628,
198,
31,
12976,
13,
21812,
3419,
198,
31,
12976,
13,
18076,
7,
198,
220,
220,
220,
705,
438,
40664,
3256,
198,
220,
220,
220,
6152,
11639,
17469,
4067,
286,
44189,
3256,
198,
220,
220,
220,
1037,
11639,
17469,
257,
4938,
2393,
6978,
393,
11876,
11537,
198
] | 2.150953 | 1,888 |
import gym
import numpy as np
import operator
env = gym.make('MountainCar-v0')
possible_actions = env.action_space.n
print 'Possible actions are {}'.format(possible_actions)
epsilonlearn = EpsilonGreedy()
for episode in xrange(epsilonlearn.episodes):
observation = env.reset()
while True:
env.render()
action = epsilonlearn.select_action(observation)
next_observation, reward, done, _ = env.step(action)
epsilonlearn.update_all(action, reward)
observation = next_observation
if done:
break
env.destroy()
| [
11748,
11550,
198,
11748,
299,
32152,
355,
45941,
198,
11748,
10088,
198,
198,
24330,
796,
11550,
13,
15883,
10786,
44,
18635,
9914,
12,
85,
15,
11537,
198,
79,
4733,
62,
4658,
796,
17365,
13,
2673,
62,
13200,
13,
77,
198,
4798,
705,
47,
4733,
4028,
389,
23884,
4458,
18982,
7,
79,
4733,
62,
4658,
8,
628,
198,
198,
538,
18217,
261,
35720,
796,
43427,
33576,
43887,
4716,
3419,
198,
1640,
4471,
287,
2124,
9521,
7,
538,
18217,
261,
35720,
13,
538,
8052,
2599,
198,
220,
220,
220,
13432,
796,
17365,
13,
42503,
3419,
198,
220,
220,
220,
981,
6407,
25,
198,
220,
220,
220,
220,
220,
220,
220,
17365,
13,
13287,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
2223,
796,
304,
862,
33576,
35720,
13,
19738,
62,
2673,
7,
672,
3168,
341,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1306,
62,
672,
3168,
341,
11,
6721,
11,
1760,
11,
4808,
796,
17365,
13,
9662,
7,
2673,
8,
198,
220,
220,
220,
220,
220,
220,
220,
304,
862,
33576,
35720,
13,
19119,
62,
439,
7,
2673,
11,
6721,
8,
198,
220,
220,
220,
220,
220,
220,
220,
13432,
796,
1306,
62,
672,
3168,
341,
198,
220,
220,
220,
220,
220,
220,
220,
611,
1760,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
2270,
198,
220,
220,
220,
220,
220,
220,
220,
17365,
13,
41659,
3419,
198
] | 2.495726 | 234 |
# vim: set fileencoding=utf-8
import unittest
import decimal
from eactivities import utils as utils
| [
2,
43907,
25,
900,
2393,
12685,
7656,
28,
40477,
12,
23,
198,
198,
11748,
555,
715,
395,
198,
11748,
32465,
198,
198,
6738,
304,
15791,
871,
1330,
3384,
4487,
355,
3384,
4487,
628,
628,
628,
198
] | 3 | 36 |
# Copyright 2020 Huawei Technologies Co., Ltd
#
# 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.
# ============================================================================
'''Remove after MindData merge to MindSpore '''
import numpy as np
from mindspore import Tensor
class MindData:
""" Stub for MindData """
@property
| [
2,
15069,
12131,
43208,
21852,
1766,
1539,
12052,
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,
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,
2,
38093,
2559,
18604,
198,
7061,
6,
27914,
706,
10175,
6601,
20121,
284,
10175,
4561,
382,
705,
7061,
198,
11748,
299,
32152,
355,
45941,
198,
198,
6738,
2000,
2777,
382,
1330,
309,
22854,
628,
198,
4871,
10175,
6601,
25,
198,
220,
220,
220,
37227,
41135,
329,
10175,
6601,
37227,
628,
220,
220,
220,
2488,
26745,
198
] | 4.073892 | 203 |
from datetime import datetime
from Training_Raw_data_validation.rawValidation import Raw_Data_validation
from DataTransform_Training.DataTransformation import dataTransform
from application_logging import logger | [
6738,
4818,
8079,
1330,
4818,
8079,
198,
6738,
13614,
62,
27369,
62,
7890,
62,
12102,
341,
13,
1831,
7762,
24765,
1330,
16089,
62,
6601,
62,
12102,
341,
198,
6738,
6060,
41762,
62,
44357,
13,
6601,
8291,
1161,
1330,
1366,
41762,
198,
6738,
3586,
62,
6404,
2667,
1330,
49706
] | 4.395833 | 48 |
from django.shortcuts import render
import json | [
6738,
42625,
14208,
13,
19509,
23779,
1330,
8543,
198,
11748,
33918
] | 4.272727 | 11 |
from models.net import Pipeline, full_loss | [
6738,
4981,
13,
3262,
1330,
37709,
11,
1336,
62,
22462
] | 4.2 | 10 |
# SPDX-License-Identifier: Apache-2.0
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from __future__ import unicode_literals
import numpy as np # type: ignore
import onnx
from ..base import Base
from . import expect
| [
2,
30628,
55,
12,
34156,
12,
33234,
7483,
25,
24843,
12,
17,
13,
15,
198,
198,
6738,
11593,
37443,
834,
1330,
4112,
62,
11748,
198,
6738,
11593,
37443,
834,
1330,
7297,
198,
6738,
11593,
37443,
834,
1330,
3601,
62,
8818,
198,
6738,
11593,
37443,
834,
1330,
28000,
1098,
62,
17201,
874,
198,
198,
11748,
299,
32152,
355,
45941,
220,
1303,
2099,
25,
8856,
198,
198,
11748,
319,
77,
87,
198,
6738,
11485,
8692,
1330,
7308,
198,
6738,
764,
1330,
1607,
628,
198
] | 3.463415 | 82 |
import functools
from collections import OrderedDict
from typing import Callable, Dict, List, Optional, Union
import gorilla
import torch
import torch.nn as nn
try:
import spconv
from spconv.modules import SparseModule
except:
pass
from .block import ResidualBlock, VGGBlock, AsymResidualBlock
| [
11748,
1257,
310,
10141,
198,
6738,
17268,
1330,
14230,
1068,
35,
713,
198,
6738,
19720,
1330,
4889,
540,
11,
360,
713,
11,
7343,
11,
32233,
11,
4479,
198,
198,
11748,
45314,
198,
11748,
28034,
198,
11748,
28034,
13,
20471,
355,
299,
77,
198,
198,
28311,
25,
198,
220,
220,
220,
1330,
599,
42946,
198,
220,
220,
220,
422,
599,
42946,
13,
18170,
1330,
1338,
17208,
26796,
198,
16341,
25,
198,
220,
220,
220,
1208,
198,
198,
6738,
764,
9967,
1330,
1874,
312,
723,
12235,
11,
569,
11190,
12235,
11,
1081,
4948,
4965,
312,
723,
12235,
628
] | 3.229167 | 96 |
import falcon
import skyline
import outlier
import backend
api = falcon.API()
# Skyline Resources
skyline_MedianAbsoluteDeviation = skyline.MedianAbsoluteDeviation()
skyline_Grubbs = skyline.Grubbs()
skyline_FirstHourAverage = skyline.FirstHourAverage()
skyline_HistogramBins = skyline.HistogramBins()
skyline_LeastSquares = skyline.LeastSquares()
skyline_MeanSubtractionCumulation = skyline.MeanSubtractionCumulation()
skyline_StddevFromAverage = skyline.StddevFromAverage()
skyline_StddevFromMovingAverage = skyline.StddevFromMovingAverage()
# Outlier Resources
outlier_Tukey = outlier.Tukey()
# Backend Resources
backend_AvailableBackends = backend.AvailableBackends()
# Skyline routes
api.add_route('/v1/algos/skyline/medianabsolutedeviation',
skyline_MedianAbsoluteDeviation)
api.add_route('/v1/algos/skyline/grubbs',
skyline_Grubbs)
api.add_route('/v1/algos/skyline/firsthouraverage',
skyline_FirstHourAverage)
api.add_route('/v1/algos/skyline/histogrambins',
skyline_HistogramBins)
api.add_route('/v1/algos/skyline/leastsquares',
skyline_LeastSquares)
api.add_route('/v1/algos/skyline/meansubtractioncumulation',
skyline_MeanSubtractionCumulation)
api.add_route('/v1/algos/skyline/stddevfromaverage',
skyline_StddevFromAverage)
api.add_route('/v1/algos/skyline/stddevfrommovingaverage',
skyline_StddevFromMovingAverage)
# Outlier routes
api.add_route('/v1/algos/outliers/tukey', outlier_Tukey)
# Backend routes
api.add_route('/v1/backends', backend_AvailableBackends)
| [
11748,
24215,
1102,
198,
11748,
47566,
198,
11748,
503,
2505,
198,
11748,
30203,
198,
198,
15042,
796,
24215,
1102,
13,
17614,
3419,
198,
198,
2,
5274,
1370,
13864,
198,
15688,
1370,
62,
9921,
666,
24849,
3552,
13603,
3920,
796,
47566,
13,
9921,
666,
24849,
3552,
13603,
3920,
3419,
198,
15688,
1370,
62,
8642,
549,
1443,
796,
47566,
13,
8642,
549,
1443,
3419,
198,
15688,
1370,
62,
5962,
43223,
26287,
796,
47566,
13,
5962,
43223,
26287,
3419,
198,
15688,
1370,
62,
13749,
21857,
33,
1040,
796,
47566,
13,
13749,
21857,
33,
1040,
3419,
198,
15688,
1370,
62,
3123,
459,
22266,
3565,
796,
47566,
13,
3123,
459,
22266,
3565,
3419,
198,
15688,
1370,
62,
5308,
272,
7004,
83,
7861,
34,
388,
1741,
796,
47566,
13,
5308,
272,
7004,
83,
7861,
34,
388,
1741,
3419,
198,
15688,
1370,
62,
1273,
1860,
1990,
4863,
26287,
796,
47566,
13,
1273,
1860,
1990,
4863,
26287,
3419,
198,
15688,
1370,
62,
1273,
1860,
1990,
4863,
33622,
26287,
796,
47566,
13,
1273,
1860,
1990,
4863,
33622,
26287,
3419,
198,
198,
2,
3806,
2505,
13864,
198,
448,
2505,
62,
47247,
2539,
796,
503,
2505,
13,
47247,
2539,
3419,
198,
198,
2,
5157,
437,
13864,
198,
1891,
437,
62,
10493,
7282,
2412,
796,
30203,
13,
10493,
7282,
2412,
3419,
198,
198,
2,
5274,
1370,
11926,
198,
15042,
13,
2860,
62,
38629,
10786,
14,
85,
16,
14,
14016,
418,
14,
15688,
1370,
14,
1150,
666,
8937,
349,
7241,
1990,
3920,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
47566,
62,
9921,
666,
24849,
3552,
13603,
3920,
8,
198,
198,
15042,
13,
2860,
62,
38629,
10786,
14,
85,
16,
14,
14016,
418,
14,
15688,
1370,
14,
2164,
549,
1443,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
47566,
62,
8642,
549,
1443,
8,
198,
198,
15042,
13,
2860,
62,
38629,
10786,
14,
85,
16,
14,
14016,
418,
14,
15688,
1370,
14,
11085,
15710,
430,
1857,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
47566,
62,
5962,
43223,
26287,
8,
198,
198,
15042,
13,
2860,
62,
38629,
10786,
14,
85,
16,
14,
14016,
418,
14,
15688,
1370,
14,
10034,
21857,
65,
1040,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
47566,
62,
13749,
21857,
33,
1040,
8,
198,
198,
15042,
13,
2860,
62,
38629,
10786,
14,
85,
16,
14,
14016,
418,
14,
15688,
1370,
14,
293,
5773,
421,
3565,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
47566,
62,
3123,
459,
22266,
3565,
8,
198,
198,
15042,
13,
2860,
62,
38629,
10786,
14,
85,
16,
14,
14016,
418,
14,
15688,
1370,
14,
1326,
504,
549,
83,
7861,
36340,
1741,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
47566,
62,
5308,
272,
7004,
83,
7861,
34,
388,
1741,
8,
198,
198,
15042,
13,
2860,
62,
38629,
10786,
14,
85,
16,
14,
14016,
418,
14,
15688,
1370,
14,
301,
1860,
1990,
6738,
23913,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
47566,
62,
1273,
1860,
1990,
4863,
26287,
8,
198,
198,
15042,
13,
2860,
62,
38629,
10786,
14,
85,
16,
14,
14016,
418,
14,
15688,
1370,
14,
301,
1860,
1990,
6738,
31462,
23913,
3256,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
47566,
62,
1273,
1860,
1990,
4863,
33622,
26287,
8,
628,
198,
2,
3806,
2505,
11926,
198,
15042,
13,
2860,
62,
38629,
10786,
14,
85,
16,
14,
14016,
418,
14,
448,
75,
3183,
14,
28047,
2539,
3256,
503,
2505,
62,
47247,
2539,
8,
198,
198,
2,
5157,
437,
11926,
198,
15042,
13,
2860,
62,
38629,
10786,
14,
85,
16,
14,
1891,
2412,
3256,
30203,
62,
10493,
7282,
2412,
8,
198
] | 2.49922 | 641 |
# Generated by Django 2.1.5 on 2019-03-05 07:35
from django.db import migrations, models
| [
2,
2980,
515,
416,
37770,
362,
13,
16,
13,
20,
319,
13130,
12,
3070,
12,
2713,
8753,
25,
2327,
198,
198,
6738,
42625,
14208,
13,
9945,
1330,
15720,
602,
11,
4981,
628
] | 2.84375 | 32 |
import json
from pathlib import Path
from typing import Dict, List, NewType, Tuple
ZoneKey = NewType("ZoneKey", str)
Point = NewType("Point", Tuple[float, float])
BoundingBox = NewType("BoundingBox", List[Point])
CONFIG_DIR = Path(__file__).parent.parent.parent.parent.joinpath("config").resolve()
# Read JOSN files
ZONES_CONFIG = json.load(open(CONFIG_DIR.joinpath("zones.json")))
EXCHANGES_CONFIG = json.load(open(CONFIG_DIR.joinpath("exchanges.json")))
CO2EQ_PARAMETERS_ALL = json.load(open(CONFIG_DIR.joinpath("co2eq_parameters_all.json")))
CO2EQ_PARAMETERS_LIFECYCLE = {
**CO2EQ_PARAMETERS_ALL,
**json.load(open(CONFIG_DIR.joinpath("co2eq_parameters_lifecycle.json")))
}
CO2EQ_PARAMETERS_DIRECT = {
**CO2EQ_PARAMETERS_ALL,
**json.load(open(CONFIG_DIR.joinpath("co2eq_parameters_direct.json")))
}
CO2EQ_PARAMETERS = CO2EQ_PARAMETERS_LIFECYCLE # Global LCA is the default
# Prepare zone bounding boxes
ZONE_BOUNDING_BOXES: Dict[ZoneKey, BoundingBox] = {}
for zone_id, zone_config in ZONES_CONFIG.items():
if "bounding_box" in zone_config:
ZONE_BOUNDING_BOXES[zone_id] = zone_config["bounding_box"]
# Prepare zone neighbours
ZONE_NEIGHBOURS: Dict[ZoneKey, List[ZoneKey]] = {}
for k, v in EXCHANGES_CONFIG.items():
zone_names = k.split("->")
pairs = [(zone_names[0], zone_names[1]), (zone_names[1], zone_names[0])]
for zone_name_1, zone_name_2 in pairs:
if zone_name_1 not in ZONE_NEIGHBOURS:
ZONE_NEIGHBOURS[zone_name_1] = set()
ZONE_NEIGHBOURS[zone_name_1].add(zone_name_2)
# we want neighbors to always be in the same order
for zone, neighbors in ZONE_NEIGHBOURS.items():
ZONE_NEIGHBOURS[zone] = sorted(neighbors)
| [
11748,
33918,
198,
6738,
3108,
8019,
1330,
10644,
198,
6738,
19720,
1330,
360,
713,
11,
7343,
11,
968,
6030,
11,
309,
29291,
198,
198,
26961,
9218,
796,
968,
6030,
7203,
26961,
9218,
1600,
965,
8,
198,
12727,
796,
968,
6030,
7203,
12727,
1600,
309,
29291,
58,
22468,
11,
12178,
12962,
198,
33,
9969,
14253,
796,
968,
6030,
7203,
33,
9969,
14253,
1600,
7343,
58,
12727,
12962,
198,
198,
10943,
16254,
62,
34720,
796,
10644,
7,
834,
7753,
834,
737,
8000,
13,
8000,
13,
8000,
13,
8000,
13,
22179,
6978,
7203,
11250,
11074,
411,
6442,
3419,
198,
198,
2,
4149,
449,
2640,
45,
3696,
198,
57,
39677,
62,
10943,
16254,
796,
33918,
13,
2220,
7,
9654,
7,
10943,
16254,
62,
34720,
13,
22179,
6978,
7203,
89,
1952,
13,
17752,
1,
22305,
198,
6369,
3398,
15567,
1546,
62,
10943,
16254,
796,
33918,
13,
2220,
7,
9654,
7,
10943,
16254,
62,
34720,
13,
22179,
6978,
7203,
1069,
36653,
13,
17752,
1,
22305,
198,
8220,
17,
36,
48,
62,
27082,
2390,
2767,
4877,
62,
7036,
796,
33918,
13,
2220,
7,
9654,
7,
10943,
16254,
62,
34720,
13,
22179,
6978,
7203,
1073,
17,
27363,
62,
17143,
7307,
62,
439,
13,
17752,
1,
22305,
198,
8220,
17,
36,
48,
62,
27082,
2390,
2767,
4877,
62,
43,
5064,
2943,
56,
29931,
796,
1391,
198,
220,
220,
220,
12429,
8220,
17,
36,
48,
62,
27082,
2390,
2767,
4877,
62,
7036,
11,
198,
220,
220,
220,
12429,
17752,
13,
2220,
7,
9654,
7,
10943,
16254,
62,
34720,
13,
22179,
6978,
7203,
1073,
17,
27363,
62,
17143,
7307,
62,
36195,
47510,
13,
17752,
1,
22305,
198,
220,
220,
220,
1782,
198,
8220,
17,
36,
48,
62,
27082,
2390,
2767,
4877,
62,
17931,
23988,
796,
1391,
198,
220,
220,
220,
12429,
8220,
17,
36,
48,
62,
27082,
2390,
2767,
4877,
62,
7036,
11,
198,
220,
220,
220,
12429,
17752,
13,
2220,
7,
9654,
7,
10943,
16254,
62,
34720,
13,
22179,
6978,
7203,
1073,
17,
27363,
62,
17143,
7307,
62,
12942,
13,
17752,
1,
22305,
198,
220,
220,
220,
1782,
198,
8220,
17,
36,
48,
62,
27082,
2390,
2767,
4877,
796,
7375,
17,
36,
48,
62,
27082,
2390,
2767,
4877,
62,
43,
5064,
2943,
56,
29931,
1303,
8060,
406,
8141,
318,
262,
4277,
198,
198,
2,
43426,
6516,
5421,
278,
10559,
198,
57,
11651,
62,
33,
15919,
2751,
62,
39758,
1546,
25,
360,
713,
58,
26961,
9218,
11,
347,
9969,
14253,
60,
796,
23884,
198,
1640,
6516,
62,
312,
11,
6516,
62,
11250,
287,
1168,
39677,
62,
10943,
16254,
13,
23814,
33529,
198,
220,
220,
220,
611,
366,
7784,
278,
62,
3524,
1,
287,
6516,
62,
11250,
25,
198,
220,
220,
220,
220,
220,
220,
220,
1168,
11651,
62,
33,
15919,
2751,
62,
39758,
1546,
58,
11340,
62,
312,
60,
796,
6516,
62,
11250,
14692,
7784,
278,
62,
3524,
8973,
198,
198,
2,
43426,
6516,
23788,
198,
57,
11651,
62,
12161,
18060,
33,
2606,
6998,
25,
360,
713,
58,
26961,
9218,
11,
7343,
58,
26961,
9218,
11907,
796,
23884,
198,
1640,
479,
11,
410,
287,
7788,
3398,
15567,
1546,
62,
10943,
16254,
13,
23814,
33529,
198,
220,
220,
220,
6516,
62,
14933,
796,
479,
13,
35312,
7203,
3784,
4943,
198,
220,
220,
220,
14729,
796,
47527,
11340,
62,
14933,
58,
15,
4357,
6516,
62,
14933,
58,
16,
46570,
357,
11340,
62,
14933,
58,
16,
4357,
6516,
62,
14933,
58,
15,
12962,
60,
198,
220,
220,
220,
329,
6516,
62,
3672,
62,
16,
11,
6516,
62,
3672,
62,
17,
287,
14729,
25,
198,
220,
220,
220,
220,
220,
220,
220,
611,
6516,
62,
3672,
62,
16,
407,
287,
1168,
11651,
62,
12161,
18060,
33,
2606,
6998,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1168,
11651,
62,
12161,
18060,
33,
2606,
6998,
58,
11340,
62,
3672,
62,
16,
60,
796,
900,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
1168,
11651,
62,
12161,
18060,
33,
2606,
6998,
58,
11340,
62,
3672,
62,
16,
4083,
2860,
7,
11340,
62,
3672,
62,
17,
8,
198,
2,
356,
765,
12020,
284,
1464,
307,
287,
262,
976,
1502,
198,
1640,
6516,
11,
12020,
287,
1168,
11651,
62,
12161,
18060,
33,
2606,
6998,
13,
23814,
33529,
198,
220,
220,
220,
1168,
11651,
62,
12161,
18060,
33,
2606,
6998,
58,
11340,
60,
796,
23243,
7,
710,
394,
32289,
8,
628
] | 2.376569 | 717 |
"""
This module contains shared fixtures.
"""
import json
from pathlib import Path
# pip installed
import pytest # installed with webdriver_manager
from selenium import webdriver
from webdriver_manager.chrome import ChromeDriverManager
from webdriver_manager.firefox import GeckoDriverManager
# scope="session" means "Run fixture 1x per session"
# (1x before entire test suite)
@pytest.fixture
def config(scope="session"):
# NOTE: pytest --fixtures test_cards.py lists its available fixtures
# A docstring (as below) for the fixture will be included in the list
"""Load/update configuration parameters to pass to WebDriver instance"""
# Read the file
with open(Path("tests") / "config.json") as config_file:
config = json.load(config_file)
# Assert values are acceptable
assert config["browser"] in ["Firefox", "Chrome"]
assert isinstance(config["implicit_wait"], int)
assert config["implicit_wait"] > 0
# Return config so it can be used
return config
# scope="function" [the default] means "Run fixture 1x for each test case" )"
@pytest.fixture
def browser(config):
"""Yield WebDriver instance with the specified configuration"""
# Setup
# This section known as Arrange (in the Arrange-Act-Assert paradigm)
# This section known as Given (in the Given-When-Then paradigm)
# Initialize the WebDriver instance
if config["browser"] == "Chrome":
b = webdriver.Chrome(ChromeDriverManager().install())
elif config["browser"] == "Firefox":
b = webdriver.Firefox(executable_path=GeckoDriverManager().install())
else:
raise Exception(f'Browser "{config["browser"]}" is not supported')
b.maximize_window() # Needed so that searched-for elements are visible
# Wait up to specified number of seconds for elements to appear
b.implicitly_wait(config["implicit_wait"])
# Run the test: Return the WebDriver instance for the test
# This section known as Act (in the Arrange-Act-Assert paradigm)
# This section known as When (in the Given-When-Then paradigm)
yield b
# Teardown/Cleanup
# Quit the WebDriver instance for the cleanup
b.quit()
| [
37811,
198,
1212,
8265,
4909,
4888,
34609,
13,
198,
37811,
198,
198,
11748,
33918,
198,
6738,
3108,
8019,
1330,
10644,
198,
198,
2,
7347,
6589,
198,
11748,
12972,
9288,
220,
1303,
6589,
351,
3992,
26230,
62,
37153,
198,
6738,
384,
11925,
1505,
1330,
3992,
26230,
198,
6738,
3992,
26230,
62,
37153,
13,
46659,
1330,
13282,
32103,
13511,
198,
6738,
3992,
26230,
62,
37153,
13,
6495,
12792,
1330,
2269,
37549,
32103,
13511,
628,
198,
2,
8354,
2625,
29891,
1,
1724,
366,
10987,
29220,
352,
87,
583,
6246,
1,
198,
2,
357,
16,
87,
878,
2104,
1332,
18389,
8,
198,
31,
9078,
9288,
13,
69,
9602,
198,
4299,
4566,
7,
29982,
2625,
29891,
1,
2599,
198,
220,
220,
220,
1303,
24550,
25,
12972,
9288,
1377,
69,
25506,
1332,
62,
27761,
13,
9078,
8341,
663,
1695,
34609,
198,
220,
220,
220,
1303,
317,
2205,
8841,
357,
292,
2174,
8,
329,
262,
29220,
481,
307,
3017,
287,
262,
1351,
198,
220,
220,
220,
37227,
8912,
14,
19119,
8398,
10007,
284,
1208,
284,
5313,
32103,
4554,
37811,
628,
220,
220,
220,
1303,
4149,
262,
2393,
198,
220,
220,
220,
351,
1280,
7,
15235,
7203,
41989,
4943,
1220,
366,
11250,
13,
17752,
4943,
355,
4566,
62,
7753,
25,
198,
220,
220,
220,
220,
220,
220,
220,
4566,
796,
33918,
13,
2220,
7,
11250,
62,
7753,
8,
628,
220,
220,
220,
1303,
2195,
861,
3815,
389,
10909,
198,
220,
220,
220,
6818,
4566,
14692,
40259,
8973,
287,
14631,
13543,
12792,
1600,
366,
1925,
5998,
8973,
198,
220,
220,
220,
6818,
318,
39098,
7,
11250,
14692,
23928,
3628,
62,
17077,
33116,
493,
8,
198,
220,
220,
220,
6818,
4566,
14692,
23928,
3628,
62,
17077,
8973,
1875,
657,
628,
220,
220,
220,
1303,
8229,
4566,
523,
340,
460,
307,
973,
198,
220,
220,
220,
1441,
4566,
628,
198,
2,
8354,
2625,
8818,
1,
685,
1169,
4277,
60,
1724,
366,
10987,
29220,
352,
87,
329,
1123,
1332,
1339,
1,
1267,
1,
198,
31,
9078,
9288,
13,
69,
9602,
198,
4299,
6444,
7,
11250,
2599,
198,
220,
220,
220,
37227,
56,
1164,
5313,
32103,
4554,
351,
262,
7368,
8398,
37811,
628,
220,
220,
220,
1303,
31122,
198,
220,
220,
220,
1303,
220,
220,
770,
2665,
1900,
355,
943,
9521,
357,
259,
262,
943,
9521,
12,
6398,
12,
8021,
861,
23457,
8,
198,
220,
220,
220,
1303,
220,
220,
770,
2665,
1900,
355,
11259,
357,
259,
262,
11259,
12,
2215,
12,
6423,
23457,
8,
628,
220,
220,
220,
1303,
20768,
1096,
262,
5313,
32103,
4554,
198,
220,
220,
220,
611,
4566,
14692,
40259,
8973,
6624,
366,
1925,
5998,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
275,
796,
3992,
26230,
13,
1925,
5998,
7,
1925,
5998,
32103,
13511,
22446,
17350,
28955,
628,
220,
220,
220,
1288,
361,
4566,
14692,
40259,
8973,
6624,
366,
13543,
12792,
1298,
198,
220,
220,
220,
220,
220,
220,
220,
275,
796,
3992,
26230,
13,
13543,
12792,
7,
18558,
18187,
62,
6978,
28,
10082,
37549,
32103,
13511,
22446,
17350,
28955,
628,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
5298,
35528,
7,
69,
6,
46532,
45144,
11250,
14692,
40259,
8973,
36786,
318,
407,
4855,
11537,
628,
220,
220,
220,
275,
13,
9806,
48439,
62,
17497,
3419,
220,
1303,
10664,
276,
523,
326,
16499,
12,
1640,
4847,
389,
7424,
628,
220,
220,
220,
1303,
16314,
510,
284,
7368,
1271,
286,
4201,
329,
4847,
284,
1656,
198,
220,
220,
220,
275,
13,
23928,
3628,
306,
62,
17077,
7,
11250,
14692,
23928,
3628,
62,
17077,
8973,
8,
628,
220,
220,
220,
1303,
5660,
262,
1332,
25,
8229,
262,
5313,
32103,
4554,
329,
262,
1332,
198,
220,
220,
220,
1303,
220,
220,
770,
2665,
1900,
355,
2191,
357,
259,
262,
943,
9521,
12,
6398,
12,
8021,
861,
23457,
8,
198,
220,
220,
220,
1303,
220,
220,
770,
2665,
1900,
355,
1649,
357,
259,
262,
11259,
12,
2215,
12,
6423,
23457,
8,
628,
220,
220,
220,
7800,
275,
628,
220,
220,
220,
1303,
1665,
446,
593,
14,
32657,
929,
628,
220,
220,
220,
1303,
48887,
262,
5313,
32103,
4554,
329,
262,
27425,
198,
220,
220,
220,
275,
13,
47391,
3419,
198
] | 3.216374 | 684 |
# coding: utf-8
"""
FlashBlade REST API
A lightweight client for FlashBlade REST API 2.2, developed by Pure Storage, Inc. (http://www.purestorage.com/).
OpenAPI spec version: 2.2
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
from __future__ import absolute_import
import re
# python 2 and python 3 compatibility library
import six
from typing import List, Optional
from .. import models
| [
2,
19617,
25,
3384,
69,
12,
23,
198,
198,
37811,
198,
220,
220,
220,
9973,
47520,
30617,
7824,
628,
220,
220,
220,
317,
18700,
5456,
329,
9973,
47520,
30617,
7824,
362,
13,
17,
11,
4166,
416,
17129,
20514,
11,
3457,
13,
357,
4023,
1378,
2503,
13,
37424,
35350,
13,
785,
14,
737,
628,
220,
220,
220,
4946,
17614,
1020,
2196,
25,
362,
13,
17,
198,
220,
220,
220,
220,
198,
220,
220,
220,
2980,
515,
416,
25,
3740,
1378,
12567,
13,
785,
14,
2032,
7928,
12,
15042,
14,
2032,
7928,
12,
8189,
5235,
13,
18300,
198,
37811,
628,
198,
6738,
11593,
37443,
834,
1330,
4112,
62,
11748,
198,
198,
11748,
302,
198,
198,
2,
21015,
362,
290,
21015,
513,
17764,
5888,
198,
11748,
2237,
198,
6738,
19720,
1330,
7343,
11,
32233,
198,
198,
6738,
11485,
1330,
4981,
198
] | 3.181159 | 138 |
# coding=utf-8
import logging
from cwharaj.items import Ad, CacheItem, City, Member, OpensooqPhone
from cwharaj.parser.base_parser import BaseParser
from cwharaj.parser.utils.harajs_comments import HarajsComments
from cwharaj.parser.utils.harajs_section import HarajsSection
from cwharaj.parser.utils.timer_opensooq_comment_date_util import OpensooqCommentDateUtil
| [
2,
19617,
28,
40477,
12,
23,
198,
11748,
18931,
198,
198,
6738,
269,
1929,
283,
1228,
13,
23814,
1330,
1215,
11,
34088,
7449,
11,
2254,
11,
10239,
11,
4946,
568,
78,
80,
6132,
198,
6738,
269,
1929,
283,
1228,
13,
48610,
13,
8692,
62,
48610,
1330,
7308,
46677,
198,
6738,
269,
1929,
283,
1228,
13,
48610,
13,
26791,
13,
9869,
1228,
82,
62,
15944,
1330,
2113,
1228,
82,
23903,
198,
6738,
269,
1929,
283,
1228,
13,
48610,
13,
26791,
13,
9869,
1228,
82,
62,
5458,
1330,
2113,
1228,
82,
16375,
198,
6738,
269,
1929,
283,
1228,
13,
48610,
13,
26791,
13,
45016,
62,
9654,
568,
78,
80,
62,
23893,
62,
4475,
62,
22602,
1330,
4946,
568,
78,
80,
21357,
10430,
18274,
346,
628
] | 2.98374 | 123 |
# VXT
# Developed by Christian Visintin
#
# MIT License
# Copyright (c) 2021 Christian Visintin
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#
from ..context import Context
from ..args import CliArgs
from .task import Task
from typing import Optional, Type
# vxt
from vxt.audio.audio import Audio
# tasks
from .audio.amplify import AmplifyTask
from .audio.delete_track import DeleteTrackTask
from .audio.export import ExportTask
from .audio.normalize import NormalizeTask
from .audio.play import PlayTask, PlayChunkTask
from .audio.rename_track import RenameTracksTask
from .audio.split_silence import SplitSilenceTask
from .audio.split_track import SplitTrackTask
from .speech2text.manual import ManualSpeechTask
from .speech2text.speech import SpeechTask
class TaskFactory(object):
"""A task factory"""
@staticmethod
def make(task: Type[Task], ctx: Context, cli_args: CliArgs) -> Task:
"""Make a Task from class name and current context"""
if task == AmplifyTask:
return TaskFactory.__amplify_task(ctx, cli_args.get("dB").as_int())
elif task == DeleteTrackTask:
return TaskFactory.__delete_track_trask(ctx)
elif task == ExportTask:
return TaskFactory.__export_task(ctx, cli_args.get("format").as_str())
elif task == NormalizeTask:
return TaskFactory.__normalize_task(ctx)
elif task == PlayTask:
return TaskFactory.__play_task(ctx)
elif task == PlayChunkTask:
return TaskFactory.__play_chunk_task(
ctx,
cli_args.get_or("start", None).as_int(),
cli_args.get_or("end", None).as_int(),
)
elif task == RenameTracksTask:
return TaskFactory.__rename_track_task(ctx)
elif task == SplitSilenceTask:
return TaskFactory.__split_silence_task(
ctx,
cli_args.get("min_silence_len").as_int(),
cli_args.get("silence_threshold").as_int(),
cli_args.get("keep_silence").as_int(),
)
elif task == SplitTrackTask:
return TaskFactory.__split_track_task(ctx, cli_args.get("offset").as_int())
elif task == SpeechTask:
return TaskFactory.__speech_task(ctx)
elif task == ManualSpeechTask:
return TaskFactory.__manual_speech_task(
ctx, cli_args.get("speech").as_str()
)
else:
raise NotImplementedError
@staticmethod
@staticmethod
@staticmethod
@staticmethod
@staticmethod
@staticmethod
@staticmethod
@staticmethod
@staticmethod
@staticmethod
@staticmethod
@staticmethod
| [
2,
569,
25010,
198,
2,
6013,
276,
416,
4302,
6911,
600,
259,
198,
2,
198,
2,
17168,
13789,
198,
2,
15069,
357,
66,
8,
33448,
4302,
6911,
600,
259,
198,
2,
2448,
3411,
318,
29376,
7520,
11,
1479,
286,
3877,
11,
284,
597,
1048,
16727,
257,
4866,
198,
2,
286,
428,
3788,
290,
3917,
10314,
3696,
357,
1169,
366,
25423,
12340,
284,
1730,
198,
2,
287,
262,
10442,
1231,
17504,
11,
1390,
1231,
17385,
262,
2489,
198,
2,
284,
779,
11,
4866,
11,
13096,
11,
20121,
11,
7715,
11,
14983,
11,
850,
43085,
11,
290,
14,
273,
3677,
198,
2,
9088,
286,
262,
10442,
11,
290,
284,
8749,
6506,
284,
4150,
262,
10442,
318,
198,
2,
30760,
284,
466,
523,
11,
2426,
284,
262,
1708,
3403,
25,
198,
2,
383,
2029,
6634,
4003,
290,
428,
7170,
4003,
2236,
307,
3017,
287,
477,
198,
2,
9088,
393,
8904,
16690,
286,
262,
10442,
13,
198,
2,
3336,
47466,
3180,
36592,
2389,
1961,
366,
1921,
3180,
1600,
42881,
34764,
56,
3963,
15529,
509,
12115,
11,
7788,
32761,
6375,
198,
2,
8959,
49094,
11,
47783,
2751,
21728,
5626,
40880,
5390,
3336,
34764,
11015,
3963,
34482,
3398,
1565,
5603,
25382,
11,
198,
2,
376,
46144,
7473,
317,
16652,
2149,
37232,
33079,
48933,
5357,
44521,
1268,
10913,
2751,
12529,
13,
3268,
8005,
49261,
50163,
3336,
198,
2,
37195,
20673,
6375,
27975,
38162,
9947,
367,
15173,
4877,
9348,
43031,
19146,
7473,
15529,
47666,
3955,
11,
29506,
25552,
6375,
25401,
198,
2,
43031,
25382,
11,
7655,
2767,
16879,
3268,
3537,
40282,
3963,
27342,
10659,
11,
309,
9863,
6375,
25401,
54,
24352,
11,
5923,
1797,
2751,
16034,
11,
198,
2,
16289,
3963,
6375,
3268,
7102,
45,
24565,
13315,
3336,
47466,
6375,
3336,
23210,
6375,
25401,
5550,
1847,
20754,
3268,
3336,
198,
2,
47466,
13,
198,
2,
198,
198,
6738,
11485,
22866,
1330,
30532,
198,
6738,
11485,
22046,
1330,
1012,
72,
42035,
198,
6738,
764,
35943,
1330,
15941,
198,
6738,
19720,
1330,
32233,
11,
5994,
198,
198,
2,
410,
742,
198,
6738,
410,
742,
13,
24051,
13,
24051,
1330,
13491,
198,
198,
2,
8861,
198,
6738,
764,
24051,
13,
321,
489,
1958,
1330,
44074,
1958,
25714,
198,
6738,
764,
24051,
13,
33678,
62,
11659,
1330,
23520,
24802,
25714,
198,
6738,
764,
24051,
13,
39344,
1330,
36472,
25714,
198,
6738,
764,
24051,
13,
11265,
1096,
1330,
14435,
1096,
25714,
198,
6738,
764,
24051,
13,
1759,
1330,
3811,
25714,
11,
3811,
1925,
2954,
25714,
198,
6738,
764,
24051,
13,
918,
480,
62,
11659,
1330,
7152,
480,
2898,
4595,
25714,
198,
6738,
764,
24051,
13,
35312,
62,
18217,
594,
1330,
27758,
15086,
594,
25714,
198,
6738,
764,
24051,
13,
35312,
62,
11659,
1330,
27758,
24802,
25714,
198,
6738,
764,
45862,
17,
5239,
13,
805,
723,
1330,
17969,
5248,
3055,
25714,
198,
6738,
764,
45862,
17,
5239,
13,
45862,
1330,
24709,
25714,
628,
198,
4871,
15941,
22810,
7,
15252,
2599,
198,
220,
220,
220,
37227,
32,
4876,
8860,
37811,
628,
220,
220,
220,
2488,
12708,
24396,
198,
220,
220,
220,
825,
787,
7,
35943,
25,
5994,
58,
25714,
4357,
269,
17602,
25,
30532,
11,
537,
72,
62,
22046,
25,
1012,
72,
42035,
8,
4613,
15941,
25,
198,
220,
220,
220,
220,
220,
220,
220,
37227,
12050,
257,
15941,
422,
1398,
1438,
290,
1459,
4732,
37811,
198,
220,
220,
220,
220,
220,
220,
220,
611,
4876,
6624,
44074,
1958,
25714,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
15941,
22810,
13,
834,
321,
489,
1958,
62,
35943,
7,
49464,
11,
537,
72,
62,
22046,
13,
1136,
7203,
36077,
11074,
292,
62,
600,
28955,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
4876,
6624,
23520,
24802,
25714,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
15941,
22810,
13,
834,
33678,
62,
11659,
62,
2213,
2093,
7,
49464,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
4876,
6624,
36472,
25714,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
15941,
22810,
13,
834,
39344,
62,
35943,
7,
49464,
11,
537,
72,
62,
22046,
13,
1136,
7203,
18982,
11074,
292,
62,
2536,
28955,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
4876,
6624,
14435,
1096,
25714,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
15941,
22810,
13,
834,
11265,
1096,
62,
35943,
7,
49464,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
4876,
6624,
3811,
25714,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
15941,
22810,
13,
834,
1759,
62,
35943,
7,
49464,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
4876,
6624,
3811,
1925,
2954,
25714,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
15941,
22810,
13,
834,
1759,
62,
354,
2954,
62,
35943,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
269,
17602,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
537,
72,
62,
22046,
13,
1136,
62,
273,
7203,
9688,
1600,
6045,
737,
292,
62,
600,
22784,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
537,
72,
62,
22046,
13,
1136,
62,
273,
7203,
437,
1600,
6045,
737,
292,
62,
600,
22784,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
4876,
6624,
7152,
480,
2898,
4595,
25714,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
15941,
22810,
13,
834,
918,
480,
62,
11659,
62,
35943,
7,
49464,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
4876,
6624,
27758,
15086,
594,
25714,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
15941,
22810,
13,
834,
35312,
62,
18217,
594,
62,
35943,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
269,
17602,
11,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
537,
72,
62,
22046,
13,
1136,
7203,
1084,
62,
18217,
594,
62,
11925,
11074,
292,
62,
600,
22784,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
537,
72,
62,
22046,
13,
1136,
7203,
18217,
594,
62,
400,
10126,
11074,
292,
62,
600,
22784,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
537,
72,
62,
22046,
13,
1136,
7203,
14894,
62,
18217,
594,
11074,
292,
62,
600,
22784,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
4876,
6624,
27758,
24802,
25714,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
15941,
22810,
13,
834,
35312,
62,
11659,
62,
35943,
7,
49464,
11,
537,
72,
62,
22046,
13,
1136,
7203,
28968,
11074,
292,
62,
600,
28955,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
4876,
6624,
24709,
25714,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
15941,
22810,
13,
834,
45862,
62,
35943,
7,
49464,
8,
198,
220,
220,
220,
220,
220,
220,
220,
1288,
361,
4876,
6624,
17969,
5248,
3055,
25714,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1441,
15941,
22810,
13,
834,
805,
723,
62,
45862,
62,
35943,
7,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
269,
17602,
11,
537,
72,
62,
22046,
13,
1136,
7203,
45862,
11074,
292,
62,
2536,
3419,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
1267,
198,
220,
220,
220,
220,
220,
220,
220,
2073,
25,
198,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
220,
5298,
1892,
3546,
1154,
12061,
12331,
628,
220,
220,
220,
2488,
12708,
24396,
628,
220,
220,
220,
2488,
12708,
24396,
628,
220,
220,
220,
2488,
12708,
24396,
628,
220,
220,
220,
2488,
12708,
24396,
628,
220,
220,
220,
2488,
12708,
24396,
628,
220,
220,
220,
2488,
12708,
24396,
628,
220,
220,
220,
2488,
12708,
24396,
628,
220,
220,
220,
2488,
12708,
24396,
628,
220,
220,
220,
2488,
12708,
24396,
628,
220,
220,
220,
2488,
12708,
24396,
628,
220,
220,
220,
2488,
12708,
24396,
628,
220,
220,
220,
2488,
12708,
24396,
198
] | 2.650602 | 1,411 |
from __future__ import absolute_import, division, print_function
import os
import re
import socket
import sys
from itertools import count
from functools import partial
from subprocess import Popen
from subprocess import PIPE
from time import sleep
import click
from distutils.spawn import find_executable
from compose.cli.docker_client import docker_client
from bag8.exceptions import CheckCallFailed, WaitLinkFailed
RE_WORD = re.compile('\W')
call = partial(Popen, stdout=PIPE, stderr=PIPE)
| [
6738,
11593,
37443,
834,
1330,
4112,
62,
11748,
11,
7297,
11,
3601,
62,
8818,
628,
198,
11748,
28686,
198,
11748,
302,
198,
11748,
17802,
198,
11748,
25064,
198,
198,
6738,
340,
861,
10141,
1330,
954,
198,
6738,
1257,
310,
10141,
1330,
13027,
198,
6738,
850,
14681,
1330,
8099,
268,
198,
6738,
850,
14681,
1330,
350,
4061,
36,
198,
6738,
640,
1330,
3993,
198,
198,
11748,
3904,
198,
198,
6738,
1233,
26791,
13,
48183,
1330,
1064,
62,
18558,
18187,
198,
198,
6738,
36664,
13,
44506,
13,
45986,
62,
16366,
1330,
36253,
62,
16366,
198,
198,
6738,
6131,
23,
13,
1069,
11755,
1330,
6822,
14134,
37,
6255,
11,
16314,
11280,
37,
6255,
198,
198,
2200,
62,
54,
12532,
796,
302,
13,
5589,
576,
10786,
59,
54,
11537,
628,
198,
13345,
796,
13027,
7,
47,
9654,
11,
14367,
448,
28,
47,
4061,
36,
11,
336,
1082,
81,
28,
47,
4061,
36,
8,
628,
628,
628,
628
] | 3.326797 | 153 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.