max_stars_repo_path
stringlengths 4
237
| max_stars_repo_name
stringlengths 6
117
| max_stars_count
int64 0
95.2k
| id
stringlengths 1
7
| content
stringlengths 12
593k
| input_ids
sequencelengths 7
549k
|
---|---|---|---|---|---|
insights/parsers/tests/test_zipl_conf.py | lhuett/insights-core | 121 | 14053 | <filename>insights/parsers/tests/test_zipl_conf.py
from insights.parsers.zipl_conf import ZiplConf
from insights.tests import context_wrap
from insights.parsers import ParseException
import pytest
ZIPL_CONF = """
[defaultboot]
defaultauto
prompt=1
timeout=5
default=linux
target=/boot
[linux]
image=/boot/vmlinuz-3.10.0-693.el7.s390x
ramdisk=/boot/initramfs-3.10.0-693.el7.s390x.img
parameters="root=/dev/mapper/rhel_gss5-root crashkernel=auto rd.dasd=0.0.0100 rd.dasd=0.0.0101 rd.dasd=0.0.0102 rd.lvm.lv=rhel_gss5/root rd.lvm.lv=rhel_gss5/swap net.ifnames=0 rd.znet=qeth,0.0.0600,0.0.0601,0.0.0602,layer2=0,portname=gss5,portno=0 LANG=en_US.UTF-8"
[linux-0-rescue-a27932c8d57248e390cee3798bbd3709]
image=/boot/vmlinuz-0-rescue-a27932c8d57248e390cee3798bbd3709
ramdisk=/boot/initramfs-0-rescue-a27932c8d57248e390cee3798bbd3709.img
parameters="root=/dev/mapper/rhel_gss5-root crashkernel=auto rd.dasd=0.0.0100 rd.dasd=0.0.0101 rd.dasd=0.0.0102 rd.lvm.lv=rhel_gss5/root rd.lvm.lv=rhel_gss5/swap net.ifnames=0 rd.znet=qeth,0.0.0600,0.0.0601,0.0.0602,layer2=0,portname=gss5,portno=0"
[other]
image=/boot/vmlinuz
ramdisk=/boot/initramfs.img
parameters="root=/dev/mapper/rhel_gss5-root crashkernel=auto rd.dasd=0.0.0100
# Configuration for dumping to SCSI disk
# Separate IPL and dump partitions
[dumpscsi]
target=/boot
dumptofs=/dev/sda2
parameters="dump_dir=/mydumps dump_compress=none dump_mode=auto"
# Menu containing two DASD boot configurations
:menu1
1=linux
2=linux-0-rescue-a27932c8d57248e390cee3798bbd3709
default=1
prompt=1
timeout=30
""".strip()
ZIPL_CONF_INVALID = """
prompt=1
timeout=5
default=linux
[linux]
image=/boot/vmlinuz-3.10.0-693.el7.s390x
ramdisk=/boot/initramfs-3.10.0-693.el7.s390x.img
parameters="root=/dev/mapper/rhel_gss5-root crashkernel=auto rd.dasd=0.0.0100 rd.dasd=0.0.0101 rd.dasd=0.0.0102 rd.lvm.lv=rhel_gss5/root rd.lvm.lv=rhel_gss5/swap net.ifnames=0 rd.znet=qeth,0.0.0600,0.0.0601,0.0.0602,layer2=0,portname=gss5,portno=0 LANG=en_US.UTF-8"
""".strip()
def test_zipl_conf():
res = ZiplConf(context_wrap(ZIPL_CONF))
assert res.get('linux').get('image') == "/boot/vmlinuz-3.10.0-693.el7.s390x"
assert res['linux']['image'] == "/boot/vmlinuz-3.10.0-693.el7.s390x"
assert res[':menu1']['1'] == 'linux'
assert 'defaultauto' in res['defaultboot']
assert res['defaultboot']['defaultauto'] is True
assert res['other']['parameters'] == '"root=/dev/mapper/rhel_gss5-root crashkernel=auto rd.dasd=0.0.0100'
assert res.images == {
'linux': '/boot/vmlinuz-3.10.0-693.el7.s390x',
'linux-0-rescue-a27932c8d57248e390cee3798bbd3709': '/boot/vmlinuz-0-rescue-a27932c8d57248e390cee3798bbd3709',
'other': '/boot/vmlinuz'
}
assert res.dumptofses == {'dumpscsi': '/dev/sda2'}
def test_zipl_conf_invalid():
with pytest.raises(ParseException) as pe:
ZiplConf(context_wrap(ZIPL_CONF_INVALID))
assert "Invalid zipl configuration file is found." in str(pe)
| [
1,
529,
9507,
29958,
1144,
5861,
29914,
862,
4253,
29914,
21150,
29914,
1688,
29918,
2526,
572,
29918,
5527,
29889,
2272,
13,
3166,
1663,
5861,
29889,
862,
4253,
29889,
2526,
572,
29918,
5527,
1053,
796,
29875,
572,
16376,
13,
3166,
1663,
5861,
29889,
21150,
1053,
3030,
29918,
6312,
13,
3166,
1663,
5861,
29889,
862,
4253,
1053,
20969,
2451,
13,
5215,
11451,
1688,
13,
13,
29999,
5690,
29931,
29918,
6007,
29943,
353,
9995,
13,
29961,
4381,
4777,
29962,
13,
4381,
6921,
13,
14032,
415,
29922,
29896,
13,
15619,
29922,
29945,
13,
4381,
29922,
9389,
13,
5182,
14327,
4777,
13,
29961,
9389,
29962,
13,
1678,
1967,
14327,
4777,
29914,
29894,
828,
262,
3365,
29899,
29941,
29889,
29896,
29900,
29889,
29900,
29899,
29953,
29929,
29941,
29889,
295,
29955,
29889,
29879,
29941,
29929,
29900,
29916,
13,
1678,
13472,
20960,
14327,
4777,
29914,
2344,
2572,
5847,
29899,
29941,
29889,
29896,
29900,
29889,
29900,
29899,
29953,
29929,
29941,
29889,
295,
29955,
29889,
29879,
29941,
29929,
29900,
29916,
29889,
2492,
13,
1678,
4128,
543,
4632,
14327,
3359,
29914,
655,
2496,
29914,
29878,
3952,
29918,
29887,
893,
29945,
29899,
4632,
8095,
17460,
29922,
6921,
364,
29881,
29889,
17370,
29881,
29922,
29900,
29889,
29900,
29889,
29900,
29896,
29900,
29900,
364,
29881,
29889,
17370,
29881,
29922,
29900,
29889,
29900,
29889,
29900,
29896,
29900,
29896,
364,
29881,
29889,
17370,
29881,
29922,
29900,
29889,
29900,
29889,
29900,
29896,
29900,
29906,
364,
29881,
29889,
29880,
6925,
29889,
28463,
29922,
29878,
3952,
29918,
29887,
893,
29945,
29914,
4632,
364,
29881,
29889,
29880,
6925,
29889,
28463,
29922,
29878,
3952,
29918,
29887,
893,
29945,
29914,
26276,
7787,
29889,
361,
7039,
29922,
29900,
364,
29881,
29889,
29920,
1212,
29922,
29939,
621,
29892,
29900,
29889,
29900,
29889,
29900,
29953,
29900,
29900,
29892,
29900,
29889,
29900,
29889,
29900,
29953,
29900,
29896,
29892,
29900,
29889,
29900,
29889,
29900,
29953,
29900,
29906,
29892,
13148,
29906,
29922,
29900,
29892,
637,
978,
29922,
29887,
893,
29945,
29892,
637,
1217,
29922,
29900,
365,
19453,
29922,
264,
29918,
3308,
29889,
10496,
29899,
29947,
29908,
13,
29961,
9389,
29899,
29900,
29899,
690,
18376,
29899,
29874,
29906,
29955,
29929,
29941,
29906,
29883,
29947,
29881,
29945,
29955,
29906,
29946,
29947,
29872,
29941,
29929,
29900,
346,
29872,
29941,
29955,
29929,
29947,
1327,
29881,
29941,
29955,
29900,
29929,
29962,
13,
1678,
1967,
14327,
4777,
29914,
29894,
828,
262,
3365,
29899,
29900,
29899,
690,
18376,
29899,
29874,
29906,
29955,
29929,
29941,
29906,
29883,
29947,
29881,
29945,
29955,
29906,
29946,
29947,
29872,
29941,
29929,
29900,
346,
29872,
29941,
29955,
29929,
29947,
1327,
29881,
29941,
29955,
29900,
29929,
13,
1678,
13472,
20960,
14327,
4777,
29914,
2344,
2572,
5847,
29899,
29900,
29899,
690,
18376,
29899,
29874,
29906,
29955,
29929,
29941,
29906,
29883,
29947,
29881,
29945,
29955,
29906,
29946,
29947,
29872,
29941,
29929,
29900,
346,
29872,
29941,
29955,
29929,
29947,
1327,
29881,
29941,
29955,
29900,
29929,
29889,
2492,
13,
1678,
4128,
543,
4632,
14327,
3359,
29914,
655,
2496,
29914,
29878,
3952,
29918,
29887,
893,
29945,
29899,
4632,
8095,
17460,
29922,
6921,
364,
29881,
29889,
17370,
29881,
29922,
29900,
29889,
29900,
29889,
29900,
29896,
29900,
29900,
364,
29881,
29889,
17370,
29881,
29922,
29900,
29889,
29900,
29889,
29900,
29896,
29900,
29896,
364,
29881,
29889,
17370,
29881,
29922,
29900,
29889,
29900,
29889,
29900,
29896,
29900,
29906,
364,
29881,
29889,
29880,
6925,
29889,
28463,
29922,
29878,
3952,
29918,
29887,
893,
29945,
29914,
4632,
364,
29881,
29889,
29880,
6925,
29889,
28463,
29922,
29878,
3952,
29918,
29887,
893,
29945,
29914,
26276,
7787,
29889,
361,
7039,
29922,
29900,
364,
29881,
29889,
29920,
1212,
29922,
29939,
621,
29892,
29900,
29889,
29900,
29889,
29900,
29953,
29900,
29900,
29892,
29900,
29889,
29900,
29889,
29900,
29953,
29900,
29896,
29892,
29900,
29889,
29900,
29889,
29900,
29953,
29900,
29906,
29892,
13148,
29906,
29922,
29900,
29892,
637,
978,
29922,
29887,
893,
29945,
29892,
637,
1217,
29922,
29900,
29908,
13,
29961,
1228,
29962,
13,
1678,
1967,
14327,
4777,
29914,
29894,
828,
262,
3365,
13,
1678,
13472,
20960,
14327,
4777,
29914,
2344,
2572,
5847,
29889,
2492,
13,
1678,
4128,
543,
4632,
14327,
3359,
29914,
655,
2496,
29914,
29878,
3952,
29918,
29887,
893,
29945,
29899,
4632,
8095,
17460,
29922,
6921,
364,
29881,
29889,
17370,
29881,
29922,
29900,
29889,
29900,
29889,
29900,
29896,
29900,
29900,
13,
13,
29937,
20999,
363,
16766,
292,
304,
12314,
5425,
8086,
13,
29937,
922,
862,
403,
5641,
29931,
322,
16766,
23629,
13,
29961,
29881,
17204,
29883,
1039,
29962,
13,
5182,
14327,
4777,
13,
29881,
398,
415,
974,
29879,
14327,
3359,
29914,
29879,
1388,
29906,
13,
16744,
543,
15070,
29918,
3972,
14327,
1357,
29881,
17204,
16766,
29918,
510,
2139,
29922,
9290,
16766,
29918,
8513,
29922,
6921,
29908,
13,
13,
29937,
20019,
6943,
1023,
360,
3289,
29928,
6579,
22920,
13,
29901,
6510,
29896,
13,
29896,
29922,
9389,
13,
29906,
29922,
9389,
29899,
29900,
29899,
690,
18376,
29899,
29874,
29906,
29955,
29929,
29941,
29906,
29883,
29947,
29881,
29945,
29955,
29906,
29946,
29947,
29872,
29941,
29929,
29900,
346,
29872,
29941,
29955,
29929,
29947,
1327,
29881,
29941,
29955,
29900,
29929,
13,
4381,
29922,
29896,
13,
14032,
415,
29922,
29896,
13,
15619,
29922,
29941,
29900,
13,
15945,
1642,
17010,
580,
13,
13,
29999,
5690,
29931,
29918,
6007,
29943,
29918,
1177,
26707,
353,
9995,
13,
14032,
415,
29922,
29896,
13,
15619,
29922,
29945,
13,
4381,
29922,
9389,
13,
29961,
9389,
29962,
13,
1678,
1967,
14327,
4777,
29914,
29894,
828,
262,
3365,
29899,
29941,
29889,
29896,
29900,
29889,
29900,
29899,
29953,
29929,
29941,
29889,
295,
29955,
29889,
29879,
29941,
29929,
29900,
29916,
13,
1678,
13472,
20960,
14327,
4777,
29914,
2344,
2572,
5847,
29899,
29941,
29889,
29896,
29900,
29889,
29900,
29899,
29953,
29929,
29941,
29889,
295,
29955,
29889,
29879,
29941,
29929,
29900,
29916,
29889,
2492,
13,
1678,
4128,
543,
4632,
14327,
3359,
29914,
655,
2496,
29914,
29878,
3952,
29918,
29887,
893,
29945,
29899,
4632,
8095,
17460,
29922,
6921,
364,
29881,
29889,
17370,
29881,
29922,
29900,
29889,
29900,
29889,
29900,
29896,
29900,
29900,
364,
29881,
29889,
17370,
29881,
29922,
29900,
29889,
29900,
29889,
29900,
29896,
29900,
29896,
364,
29881,
29889,
17370,
29881,
29922,
29900,
29889,
29900,
29889,
29900,
29896,
29900,
29906,
364,
29881,
29889,
29880,
6925,
29889,
28463,
29922,
29878,
3952,
29918,
29887,
893,
29945,
29914,
4632,
364,
29881,
29889,
29880,
6925,
29889,
28463,
29922,
29878,
3952,
29918,
29887,
893,
29945,
29914,
26276,
7787,
29889,
361,
7039,
29922,
29900,
364,
29881,
29889,
29920,
1212,
29922,
29939,
621,
29892,
29900,
29889,
29900,
29889,
29900,
29953,
29900,
29900,
29892,
29900,
29889,
29900,
29889,
29900,
29953,
29900,
29896,
29892,
29900,
29889,
29900,
29889,
29900,
29953,
29900,
29906,
29892,
13148,
29906,
29922,
29900,
29892,
637,
978,
29922,
29887,
893,
29945,
29892,
637,
1217,
29922,
29900,
365,
19453,
29922,
264,
29918,
3308,
29889,
10496,
29899,
29947,
29908,
13,
15945,
1642,
17010,
580,
13,
13,
13,
1753,
1243,
29918,
2526,
572,
29918,
5527,
7295,
13,
1678,
620,
353,
796,
29875,
572,
16376,
29898,
4703,
29918,
6312,
29898,
29999,
5690,
29931,
29918,
6007,
29943,
876,
13,
1678,
4974,
620,
29889,
657,
877,
9389,
2824,
657,
877,
3027,
1495,
1275,
5591,
4777,
29914,
29894,
828,
262,
3365,
29899,
29941,
29889,
29896,
29900,
29889,
29900,
29899,
29953,
29929,
29941,
29889,
295,
29955,
29889,
29879,
29941,
29929,
29900,
29916,
29908,
13,
1678,
4974,
620,
1839,
9389,
16215,
3027,
2033,
1275,
5591,
4777,
29914,
29894,
828,
262,
3365,
29899,
29941,
29889,
29896,
29900,
29889,
29900,
29899,
29953,
29929,
29941,
29889,
295,
29955,
29889,
29879,
29941,
29929,
29900,
29916,
29908,
13,
1678,
4974,
620,
1839,
29901,
6510,
29896,
16215,
29896,
2033,
1275,
525,
9389,
29915,
13,
1678,
4974,
525,
4381,
6921,
29915,
297,
620,
1839,
4381,
4777,
2033,
13,
1678,
4974,
620,
1839,
4381,
4777,
16215,
4381,
6921,
2033,
338,
5852,
13,
1678,
4974,
620,
1839,
1228,
16215,
16744,
2033,
1275,
18793,
4632,
14327,
3359,
29914,
655,
2496,
29914,
29878,
3952,
29918,
29887,
893,
29945,
29899,
4632,
8095,
17460,
29922,
6921,
364,
29881,
29889,
17370,
29881,
29922,
29900,
29889,
29900,
29889,
29900,
29896,
29900,
29900,
29915,
13,
1678,
4974,
620,
29889,
8346,
1275,
426,
13,
462,
9651,
525,
9389,
2396,
8207,
4777,
29914,
29894,
828,
262,
3365,
29899,
29941,
29889,
29896,
29900,
29889,
29900,
29899,
29953,
29929,
29941,
29889,
295,
29955,
29889,
29879,
29941,
29929,
29900,
29916,
742,
13,
462,
9651,
525,
9389,
29899,
29900,
29899,
690,
18376,
29899,
29874,
29906,
29955,
29929,
29941,
29906,
29883,
29947,
29881,
29945,
29955,
29906,
29946,
29947,
29872,
29941,
29929,
29900,
346,
29872,
29941,
29955,
29929,
29947,
1327,
29881,
29941,
29955,
29900,
29929,
2396,
8207,
4777,
29914,
29894,
828,
262,
3365,
29899,
29900,
29899,
690,
18376,
29899,
29874,
29906,
29955,
29929,
29941,
29906,
29883,
29947,
29881,
29945,
29955,
29906,
29946,
29947,
29872,
29941,
29929,
29900,
346,
29872,
29941,
29955,
29929,
29947,
1327,
29881,
29941,
29955,
29900,
29929,
742,
13,
462,
9651,
525,
1228,
2396,
8207,
4777,
29914,
29894,
828,
262,
3365,
29915,
13,
462,
4706,
500,
13,
1678,
4974,
620,
29889,
29881,
398,
415,
974,
29879,
267,
1275,
11117,
29881,
17204,
29883,
1039,
2396,
8207,
3359,
29914,
29879,
1388,
29906,
10827,
13,
13,
13,
1753,
1243,
29918,
2526,
572,
29918,
5527,
29918,
20965,
7295,
13,
1678,
411,
11451,
1688,
29889,
336,
4637,
29898,
12914,
2451,
29897,
408,
1236,
29901,
13,
4706,
796,
29875,
572,
16376,
29898,
4703,
29918,
6312,
29898,
29999,
5690,
29931,
29918,
6007,
29943,
29918,
1177,
26707,
876,
13,
1678,
4974,
376,
13919,
503,
29875,
572,
5285,
934,
338,
1476,
1213,
297,
851,
29898,
412,
29897,
13,
2
] |
server.py | jalqueza/CMPUT404-assignment-webserver | 0 | 75600 | <reponame>jalqueza/CMPUT404-assignment-webserver<filename>server.py
# coding: utf-8
import socketserver, os
# Copyright 2013 <NAME>, <NAME>
# Copyright 2021 <NAME>
#
# 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.
#
#
# Furthermore it is derived from the Python documentation examples thus
# some of the code is Copyright © 2001-2013 Python Software
# Foundation; All Rights Reserved
#
# http://docs.python.org/2/library/socketserver.html
#
# run: python freetests.py
# try: curl -v -X GET http://127.0.0.1:8080/
class MyWebServer(socketserver.BaseRequestHandler):
def handle(self):
self.data = self.request.recv(1024).strip()
print ("Got a request of: %s\n" % self.data)
request = self.data.decode('utf-8').split()
if len(request) < 2:
self.error_404()
method = request[0]
url = request[1]
if method != "GET":
self.error_405()
else:
self.GET(url)
def GET(self, url):
if "../" in url:
return self.error_404()
url = "www" + url
if url[-1] == "/":
url = url + "index.html"
if os.path.isdir(url):
return self.error_301(url)
elif os.path.exists(url):
return self.success_200(url)
else:
return self.error_404()
def success_200(self, url):
resource = open(url).read()
content_type = "text/html; encoding=uft-8" if url.endswith('.html') else "text/css; encoding=utf-8"
response = "HTTP/1.1 200 OK\r\n" + f'Content-Type: {content_type}\r\n\r\n' + f'{resource}\r\n'
self.request.sendall(response.encode('utf-8'))
def error_405(self):
response = "HTTP/1.1 405 Method Not Allowed\r\n"
self.request.sendall(response.encode('utf-8'))
def error_404(self):
response = "HTTP/1.1 404 Not Found\r\n"
self.request.sendall(response.encode('utf-8'))
def error_301(self, url):
response = f'HTTP/1.1 301 Moved Permanently \r\nLocation: {url[3:]}/\r\n'
self.request.sendall(response.encode('utf-8'))
if __name__ == "__main__":
HOST, PORT = "localhost", 8080
socketserver.TCPServer.allow_reuse_address = True
# Create the server, binding to localhost on port 8080
server = socketserver.TCPServer((HOST, PORT), MyWebServer)
# Activate the server; this will keep running until you
# interrupt the program with Ctrl-C
server.serve_forever()
| [
1,
529,
276,
1112,
420,
29958,
12429,
802,
1362,
29914,
29907,
3580,
2692,
29946,
29900,
29946,
29899,
465,
10194,
29899,
2676,
2974,
29966,
9507,
29958,
2974,
29889,
2272,
13,
29937,
29871,
14137,
29901,
23616,
29899,
29947,
29871,
13,
5215,
9909,
2974,
29892,
2897,
13,
13,
29937,
14187,
1266,
29871,
29906,
29900,
29896,
29941,
529,
5813,
10202,
529,
5813,
29958,
13,
29937,
14187,
1266,
29871,
29906,
29900,
29906,
29896,
529,
5813,
29958,
13,
29937,
13,
29937,
10413,
21144,
1090,
278,
13380,
19245,
29892,
10079,
29871,
29906,
29889,
29900,
313,
1552,
376,
29931,
293,
1947,
1496,
13,
29937,
366,
1122,
451,
671,
445,
934,
5174,
297,
752,
13036,
411,
278,
19245,
29889,
13,
29937,
887,
1122,
4017,
263,
3509,
310,
278,
19245,
472,
13,
29937,
29871,
13,
29937,
268,
1732,
597,
1636,
29889,
4288,
29889,
990,
29914,
506,
11259,
29914,
27888,
1430,
1660,
29899,
29906,
29889,
29900,
13,
29937,
29871,
13,
29937,
25870,
3734,
491,
22903,
4307,
470,
15502,
304,
297,
5007,
29892,
7047,
13,
29937,
13235,
1090,
278,
19245,
338,
13235,
373,
385,
376,
3289,
8519,
29908,
350,
3289,
3235,
29892,
13,
29937,
399,
1806,
8187,
2692,
399,
1718,
29934,
13566,
29059,
6323,
8707,
29928,
22122,
29903,
8079,
13764,
29979,
476,
22255,
29892,
2845,
4653,
470,
2411,
2957,
29889,
13,
29937,
2823,
278,
19245,
363,
278,
2702,
4086,
14765,
1076,
11239,
322,
13,
29937,
27028,
1090,
278,
19245,
29889,
13,
29937,
13,
29937,
13,
29937,
16478,
372,
338,
10723,
515,
278,
5132,
5106,
6455,
4550,
13,
29937,
777,
310,
278,
775,
338,
14187,
1266,
29871,
30211,
29871,
29906,
29900,
29900,
29896,
29899,
29906,
29900,
29896,
29941,
5132,
18540,
13,
29937,
10606,
29936,
2178,
26863,
2538,
9841,
13,
29937,
13,
29937,
1732,
597,
2640,
29889,
4691,
29889,
990,
29914,
29906,
29914,
5258,
29914,
11514,
2974,
29889,
1420,
13,
29937,
13,
29937,
1065,
29901,
3017,
3005,
300,
9197,
29889,
2272,
13,
13,
29937,
1018,
29901,
11051,
448,
29894,
448,
29990,
12354,
1732,
597,
29896,
29906,
29955,
29889,
29900,
29889,
29900,
29889,
29896,
29901,
29947,
29900,
29947,
29900,
29914,
13,
13,
13,
1990,
1619,
3609,
6004,
29898,
11514,
2974,
29889,
5160,
3089,
4598,
1125,
13,
13,
1678,
822,
4386,
29898,
1311,
1125,
13,
4706,
1583,
29889,
1272,
353,
1583,
29889,
3827,
29889,
3757,
29894,
29898,
29896,
29900,
29906,
29946,
467,
17010,
580,
13,
4706,
1596,
4852,
29954,
327,
263,
2009,
310,
29901,
1273,
29879,
29905,
29876,
29908,
1273,
1583,
29889,
1272,
29897,
13,
13,
4706,
2009,
353,
1583,
29889,
1272,
29889,
13808,
877,
9420,
29899,
29947,
2824,
5451,
580,
29871,
13,
4706,
565,
7431,
29898,
3827,
29897,
529,
29871,
29906,
29901,
13,
9651,
1583,
29889,
2704,
29918,
29946,
29900,
29946,
580,
13,
13,
4706,
1158,
353,
2009,
29961,
29900,
29962,
13,
4706,
3142,
353,
2009,
29961,
29896,
29962,
13,
13,
4706,
565,
1158,
2804,
376,
7194,
1115,
13,
9651,
1583,
29889,
2704,
29918,
29946,
29900,
29945,
580,
13,
4706,
1683,
29901,
13,
9651,
1583,
29889,
7194,
29898,
2271,
29897,
13,
268,
13,
1678,
822,
12354,
29898,
1311,
29892,
3142,
1125,
13,
4706,
565,
376,
6995,
29908,
297,
3142,
29901,
13,
9651,
736,
1583,
29889,
2704,
29918,
29946,
29900,
29946,
580,
13,
308,
13,
4706,
3142,
353,
29871,
376,
1636,
29908,
718,
3142,
13,
4706,
565,
3142,
14352,
29896,
29962,
1275,
5591,
1115,
13,
9651,
3142,
353,
3142,
718,
376,
2248,
29889,
1420,
29908,
259,
13,
13,
4706,
565,
2897,
29889,
2084,
29889,
275,
3972,
29898,
2271,
1125,
13,
9651,
736,
1583,
29889,
2704,
29918,
29941,
29900,
29896,
29898,
2271,
29897,
13,
4706,
25342,
2897,
29889,
2084,
29889,
9933,
29898,
2271,
1125,
13,
9651,
736,
1583,
29889,
8698,
29918,
29906,
29900,
29900,
29898,
2271,
29897,
13,
4706,
1683,
29901,
13,
9651,
736,
1583,
29889,
2704,
29918,
29946,
29900,
29946,
580,
13,
268,
13,
1678,
822,
2551,
29918,
29906,
29900,
29900,
29898,
1311,
29892,
3142,
1125,
13,
4706,
6503,
353,
1722,
29898,
2271,
467,
949,
580,
13,
4706,
2793,
29918,
1853,
353,
376,
726,
29914,
1420,
29936,
8025,
29922,
29884,
615,
29899,
29947,
29908,
565,
3142,
29889,
1975,
2541,
12839,
1420,
1495,
1683,
376,
726,
29914,
4268,
29936,
8025,
29922,
9420,
29899,
29947,
29908,
13,
4706,
2933,
353,
376,
10493,
29914,
29896,
29889,
29896,
29871,
29906,
29900,
29900,
9280,
29905,
29878,
29905,
29876,
29908,
718,
285,
29915,
3916,
29899,
1542,
29901,
426,
3051,
29918,
1853,
1012,
29878,
29905,
29876,
29905,
29878,
29905,
29876,
29915,
718,
285,
29915,
29912,
10314,
1012,
29878,
29905,
29876,
29915,
13,
4706,
1583,
29889,
3827,
29889,
6717,
497,
29898,
5327,
29889,
12508,
877,
9420,
29899,
29947,
8785,
13,
13,
1678,
822,
1059,
29918,
29946,
29900,
29945,
29898,
1311,
1125,
13,
4706,
2933,
353,
376,
10493,
29914,
29896,
29889,
29896,
29871,
29946,
29900,
29945,
8108,
2216,
2178,
20937,
29905,
29878,
29905,
29876,
29908,
13,
4706,
1583,
29889,
3827,
29889,
6717,
497,
29898,
5327,
29889,
12508,
877,
9420,
29899,
29947,
8785,
13,
13,
1678,
822,
1059,
29918,
29946,
29900,
29946,
29898,
1311,
1125,
13,
4706,
2933,
353,
376,
10493,
29914,
29896,
29889,
29896,
29871,
29946,
29900,
29946,
2216,
7460,
29905,
29878,
29905,
29876,
29908,
13,
4706,
1583,
29889,
3827,
29889,
6717,
497,
29898,
5327,
29889,
12508,
877,
9420,
29899,
29947,
8785,
13,
268,
13,
1678,
822,
1059,
29918,
29941,
29900,
29896,
29898,
1311,
29892,
3142,
1125,
13,
4706,
2933,
353,
285,
29915,
10493,
29914,
29896,
29889,
29896,
29871,
29941,
29900,
29896,
341,
8238,
349,
3504,
2705,
320,
29878,
29905,
29876,
6508,
29901,
426,
2271,
29961,
29941,
17531,
6822,
29905,
29878,
29905,
29876,
29915,
13,
4706,
1583,
29889,
3827,
29889,
6717,
497,
29898,
5327,
29889,
12508,
877,
9420,
29899,
29947,
8785,
259,
13,
632,
13,
13,
361,
4770,
978,
1649,
1275,
376,
1649,
3396,
1649,
1115,
13,
1678,
379,
3718,
29892,
349,
8476,
353,
376,
7640,
613,
29871,
29947,
29900,
29947,
29900,
13,
13,
1678,
9909,
2974,
29889,
29911,
6271,
6004,
29889,
9536,
29918,
276,
1509,
29918,
7328,
353,
5852,
13,
1678,
396,
6204,
278,
1923,
29892,
9956,
304,
15683,
373,
2011,
29871,
29947,
29900,
29947,
29900,
13,
1678,
1923,
353,
9909,
2974,
29889,
29911,
6271,
6004,
3552,
20832,
29892,
349,
8476,
511,
1619,
3609,
6004,
29897,
13,
13,
1678,
396,
21775,
403,
278,
1923,
29936,
445,
674,
3013,
2734,
2745,
366,
13,
1678,
396,
23754,
278,
1824,
411,
315,
11742,
29899,
29907,
13,
1678,
1923,
29889,
16349,
29918,
1079,
369,
580,
13,
2
] |
gatsby/urls.py | Simple2B/askew12 | 0 | 1606590 | from django.contrib import admin
from django.conf import settings
from django.conf.urls.static import static
from django.urls import path, include
from django.views.generic import TemplateView
from rest_framework import routers
from api import views
router = routers.DefaultRouter()
router.register(r'samples', views.CodingSampleView, 'sample')
urlpatterns = [
path('admin/', admin.site.urls),
path('api/', include(router.urls)),
path('', TemplateView.as_view(template_name='index.html')),
]
if settings.DEBUG:
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
| [
1,
515,
9557,
29889,
21570,
1053,
4113,
13,
3166,
9557,
29889,
5527,
1053,
6055,
13,
3166,
9557,
29889,
5527,
29889,
26045,
29889,
7959,
1053,
2294,
13,
3166,
9557,
29889,
26045,
1053,
2224,
29892,
3160,
13,
3166,
9557,
29889,
7406,
29889,
19206,
1053,
25663,
1043,
13,
3166,
1791,
29918,
4468,
1053,
16053,
2153,
13,
3166,
7882,
1053,
8386,
13,
13,
13,
15140,
353,
16053,
2153,
29889,
4592,
23971,
580,
13,
15140,
29889,
9573,
29898,
29878,
29915,
27736,
742,
8386,
29889,
29907,
3689,
17708,
1043,
29892,
525,
11249,
1495,
13,
13,
2271,
11037,
29879,
353,
518,
13,
1678,
2224,
877,
6406,
29914,
742,
4113,
29889,
2746,
29889,
26045,
511,
13,
1678,
2224,
877,
2754,
29914,
742,
3160,
29898,
15140,
29889,
26045,
8243,
13,
1678,
2224,
877,
742,
25663,
1043,
29889,
294,
29918,
1493,
29898,
6886,
29918,
978,
2433,
2248,
29889,
1420,
1495,
511,
13,
29962,
13,
13,
13,
361,
6055,
29889,
18525,
29901,
13,
1678,
3142,
11037,
29879,
4619,
2294,
29898,
11027,
29889,
2303,
4571,
29909,
29918,
4219,
29892,
1842,
29918,
4632,
29922,
11027,
29889,
2303,
4571,
29909,
29918,
21289,
29897,
13,
2
] |
tripoli/resource_validators/manifest_validator.py | DDMAL/tripoli | 18 | 80355 | # Copyright (c) 2016 <NAME>, <NAME>
# 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 collections import OrderedDict
from .base_validator import BaseValidator
class ManifestValidator(BaseValidator):
VIEW_DIRS = ['left-to-right', 'right-to-left',
'top-to-bottom', 'bottom-to-top']
VIEW_HINTS = ['individuals', 'paged', 'continuous']
KNOWN_FIELDS = BaseValidator.COMMON_FIELDS | {"viewingDirection", "navDate", "sequences", "structures", "@context"}
FORBIDDEN_FIELDS = {"format", "height", "width", "startCanvas", "first", "last", "total", "next", "prev",
"startIndex", "collections", "manifests", "members", "canvases", "resources", "otherContent",
"images", "ranges"}
REQUIRED_FIELDS = {"label", "@context", "@id", "@type", "sequences"}
RECOMMENDED_FIELDS = {"metadata", "description", "thumbnail"}
def __init__(self, iiif_validator):
super().__init__(iiif_validator)
self.ManifestSchema = OrderedDict((
('@context', self.context_field),
('structures', self.structures_field),
('sequences', self.sequences_field),
('viewingDirection', self.viewing_dir_field),
))
self.setup()
def _run_validation(self, **kwargs):
self._check_all_key_constraints("manifest", self._json)
return self._compare_dicts(self.ManifestSchema, self._json)
def type_field(self, value):
"""Assert that ``@type`` == ``sc:Manifest``. """
if not value == 'sc:Manifest':
self.log_error("@type", "@type must be 'sc:Manifest'.")
return value
def context_field(self, value):
"""Assert that ``@context`` is the IIIF 2.0 presentation API."""
if isinstance(value, str):
if not value == self.PRESENTATION_API_URI:
self.log_error("@context", "'@context' must be set to '{}'".format(self.PRESENTATION_API_URI))
if isinstance(value, list):
if self.PRESENTATION_API_URI not in value:
self.log_error("@context", "'@context' must be set to '{}'".format(self.PRESENTATION_API_URI))
return value
def structures_field(self, value):
"""Validate the ``structures`` field."""
return value
def sequences_field(self, value):
"""Validate ``sequences`` list for Manifest.
Checks that at least 1 sequence is embedded.
"""
if not isinstance(value, list):
self.log_error("sequences", "'sequences' MUST be a list")
return value
if len(value) == 0:
self.log_error("sequences", "Manifest requires at least one sequence")
return value
results = []
path = self._path + ("sequences",)
for i, seq in enumerate(value):
temp_path = path + i
if i == 0:
results.append(self._sub_validate(self.SequenceValidator, seq, temp_path, emb=True))
else:
results.append(self._sub_validate(self.SequenceValidator, seq, temp_path, emb=False))
return results
| [
1,
396,
14187,
1266,
313,
29883,
29897,
29871,
29906,
29900,
29896,
29953,
529,
5813,
10202,
529,
5813,
29958,
13,
13,
29937,
20894,
2333,
338,
1244,
1609,
16896,
29892,
3889,
310,
8323,
29892,
304,
738,
2022,
4017,
292,
263,
3509,
13,
29937,
310,
445,
7047,
322,
6942,
5106,
2066,
313,
1552,
376,
6295,
14093,
4968,
304,
5376,
13,
29937,
297,
278,
18540,
1728,
24345,
29892,
3704,
1728,
29485,
278,
10462,
13,
29937,
304,
671,
29892,
3509,
29892,
6623,
29892,
10366,
29892,
9805,
29892,
1320,
2666,
29892,
269,
803,
1947,
29892,
322,
29914,
272,
19417,
13,
29937,
14591,
310,
278,
18540,
29892,
322,
304,
14257,
12407,
304,
6029,
278,
18540,
338,
13,
29937,
15252,
3276,
304,
437,
577,
29892,
4967,
304,
278,
1494,
5855,
29901,
13,
13,
29937,
450,
2038,
3509,
1266,
8369,
322,
445,
10751,
8369,
4091,
367,
5134,
297,
13,
29937,
599,
14591,
470,
23228,
2011,
1080,
310,
278,
18540,
29889,
13,
13,
29937,
6093,
7791,
7818,
12982,
1525,
8519,
13756,
13044,
3352,
376,
3289,
8519,
613,
399,
1806,
8187,
2692,
399,
1718,
29934,
13566,
29979,
8079,
13764,
29979,
476,
22255,
29892,
8528,
15094,
1799,
6323,
13,
29937,
306,
3580,
5265,
3352,
29892,
2672,
6154,
15789,
4214,
350,
2692,
6058,
27848,
3352,
7495,
6093,
399,
1718,
29934,
13566,
29059,
8079,
341,
1001,
3210,
13566,
2882,
6227,
11937,
29892,
13,
29937,
383,
1806,
8186,
1799,
15842,
319,
349,
8322,
2965,
13309,
1718,
349,
4574,
13152,
1660,
5300,
405,
1164,
1177,
15860,
1177,
1692,
13780,
29889,
2672,
11698,
382,
29963,
3919,
24972,
9818,
6093,
13,
29937,
26524,
29950,
24125,
6323,
315,
4590,
29979,
22789,
3912,
379,
5607,
8032,
29903,
20700,
17705,
6181,
15842,
13764,
29979,
315,
4375,
7833,
29892,
21330,
1529,
1692,
29903,
6323,
438,
29911,
4448,
13,
29937,
17705,
2882,
6227,
11937,
29892,
12317,
2544,
4448,
2672,
13764,
319,
9838,
8079,
8707,
29911,
4717,
1783,
29892,
323,
8476,
6323,
438,
29911,
4448,
22119,
1660,
29892,
9033,
3235,
4214,
3895,
29892,
13,
29937,
19474,
8079,
6323,
2672,
8707,
8186,
9838,
22659,
6093,
7791,
7818,
12982,
1525,
6323,
6093,
501,
1660,
6323,
438,
29911,
4448,
5012,
1964,
4214,
29903,
2672,
13,
29937,
6093,
7791,
7818,
12982,
1525,
29889,
13,
13,
3166,
16250,
1053,
8170,
287,
21533,
13,
13,
3166,
869,
3188,
29918,
3084,
1061,
1053,
7399,
24204,
13,
13,
13,
1990,
2315,
7004,
24204,
29898,
5160,
24204,
1125,
13,
1678,
5473,
29923,
29956,
29918,
9464,
29903,
353,
6024,
1563,
29899,
517,
29899,
1266,
742,
525,
1266,
29899,
517,
29899,
1563,
742,
13,
462,
525,
3332,
29899,
517,
29899,
8968,
742,
525,
8968,
29899,
517,
29899,
3332,
2033,
13,
1678,
5473,
29923,
29956,
29918,
29950,
1177,
9375,
353,
6024,
513,
23352,
29879,
742,
525,
29886,
4063,
742,
525,
20621,
681,
2033,
13,
13,
1678,
476,
6632,
16048,
29918,
3738,
6670,
8452,
353,
7399,
24204,
29889,
3217,
7428,
1164,
29918,
3738,
6670,
8452,
891,
8853,
1493,
292,
21602,
613,
376,
6654,
2539,
613,
376,
6831,
2063,
613,
376,
4984,
1973,
613,
17962,
4703,
9092,
13,
1678,
15842,
29933,
1367,
29928,
1430,
29918,
3738,
6670,
8452,
353,
8853,
4830,
613,
376,
3545,
613,
376,
2103,
613,
376,
2962,
21960,
613,
376,
4102,
613,
376,
4230,
613,
376,
7827,
613,
376,
4622,
613,
376,
16304,
613,
13,
462,
4706,
376,
2962,
3220,
613,
376,
29027,
613,
376,
29135,
29879,
613,
376,
28109,
613,
376,
3068,
29894,
2129,
613,
376,
13237,
613,
376,
1228,
3916,
613,
13,
462,
4706,
376,
8346,
613,
376,
29878,
6916,
9092,
13,
1678,
5195,
29984,
3120,
19386,
29918,
3738,
6670,
8452,
353,
8853,
1643,
613,
17962,
4703,
613,
17962,
333,
613,
17962,
1853,
613,
376,
6831,
2063,
9092,
13,
1678,
5195,
3217,
7428,
1430,
2287,
29928,
29918,
3738,
6670,
8452,
353,
8853,
19635,
613,
376,
8216,
613,
376,
386,
21145,
9092,
13,
13,
1678,
822,
4770,
2344,
12035,
1311,
29892,
13607,
361,
29918,
3084,
1061,
1125,
13,
4706,
2428,
2141,
1649,
2344,
12035,
2236,
361,
29918,
3084,
1061,
29897,
13,
4706,
1583,
29889,
2517,
7004,
12763,
353,
8170,
287,
21533,
3552,
13,
9651,
6702,
29992,
4703,
742,
1583,
29889,
4703,
29918,
2671,
511,
13,
9651,
6702,
4984,
1973,
742,
1583,
29889,
4984,
1973,
29918,
2671,
511,
13,
9651,
6702,
6831,
2063,
742,
1583,
29889,
6831,
2063,
29918,
2671,
511,
13,
9651,
6702,
1493,
292,
21602,
742,
1583,
29889,
1493,
292,
29918,
3972,
29918,
2671,
511,
13,
308,
876,
13,
4706,
1583,
29889,
14669,
580,
13,
13,
1678,
822,
903,
3389,
29918,
18157,
29898,
1311,
29892,
3579,
19290,
1125,
13,
4706,
1583,
3032,
3198,
29918,
497,
29918,
1989,
29918,
13646,
29879,
703,
29135,
613,
1583,
3032,
3126,
29897,
13,
4706,
736,
1583,
3032,
18307,
29918,
8977,
29879,
29898,
1311,
29889,
2517,
7004,
12763,
29892,
1583,
3032,
3126,
29897,
13,
13,
1678,
822,
1134,
29918,
2671,
29898,
1311,
29892,
995,
1125,
13,
4706,
9995,
14697,
393,
4954,
29992,
1853,
16159,
1275,
4954,
1557,
29901,
2517,
7004,
29952,
1412,
9995,
13,
4706,
565,
451,
995,
1275,
525,
1557,
29901,
2517,
7004,
2396,
13,
9651,
1583,
29889,
1188,
29918,
2704,
29475,
1853,
613,
17962,
1853,
1818,
367,
525,
1557,
29901,
2517,
7004,
4286,
1159,
13,
4706,
736,
995,
13,
13,
1678,
822,
3030,
29918,
2671,
29898,
1311,
29892,
995,
1125,
13,
4706,
9995,
14697,
393,
4954,
29992,
4703,
16159,
338,
278,
4786,
29943,
29871,
29906,
29889,
29900,
24329,
3450,
1213,
15945,
13,
4706,
565,
338,
8758,
29898,
1767,
29892,
851,
1125,
13,
9651,
565,
451,
995,
1275,
1583,
29889,
15094,
29903,
3919,
8098,
29918,
8787,
29918,
15551,
29901,
13,
18884,
1583,
29889,
1188,
29918,
2704,
29475,
4703,
613,
13577,
29992,
4703,
29915,
1818,
367,
731,
304,
525,
8875,
29915,
1642,
4830,
29898,
1311,
29889,
15094,
29903,
3919,
8098,
29918,
8787,
29918,
15551,
876,
13,
4706,
565,
338,
8758,
29898,
1767,
29892,
1051,
1125,
13,
9651,
565,
1583,
29889,
15094,
29903,
3919,
8098,
29918,
8787,
29918,
15551,
451,
297,
995,
29901,
13,
18884,
1583,
29889,
1188,
29918,
2704,
29475,
4703,
613,
13577,
29992,
4703,
29915,
1818,
367,
731,
304,
525,
8875,
29915,
1642,
4830,
29898,
1311,
29889,
15094,
29903,
3919,
8098,
29918,
8787,
29918,
15551,
876,
13,
4706,
736,
995,
13,
13,
1678,
822,
12286,
29918,
2671,
29898,
1311,
29892,
995,
1125,
13,
4706,
9995,
7211,
403,
278,
4954,
4984,
1973,
16159,
1746,
1213,
15945,
13,
4706,
736,
995,
13,
13,
1678,
822,
15602,
29918,
2671,
29898,
1311,
29892,
995,
1125,
13,
4706,
9995,
7211,
403,
4954,
6831,
2063,
16159,
1051,
363,
2315,
7004,
29889,
13,
13,
4706,
5399,
29879,
393,
472,
3203,
29871,
29896,
5665,
338,
15685,
29889,
13,
4706,
9995,
13,
4706,
565,
451,
338,
8758,
29898,
1767,
29892,
1051,
1125,
13,
9651,
1583,
29889,
1188,
29918,
2704,
703,
6831,
2063,
613,
13577,
6831,
2063,
29915,
341,
17321,
367,
263,
1051,
1159,
13,
9651,
736,
995,
13,
13,
4706,
565,
7431,
29898,
1767,
29897,
1275,
29871,
29900,
29901,
13,
9651,
1583,
29889,
1188,
29918,
2704,
703,
6831,
2063,
613,
376,
2517,
7004,
6858,
472,
3203,
697,
5665,
1159,
13,
9651,
736,
995,
13,
13,
4706,
2582,
353,
5159,
13,
4706,
2224,
353,
1583,
3032,
2084,
718,
4852,
6831,
2063,
613,
29897,
13,
4706,
363,
474,
29892,
19359,
297,
26985,
29898,
1767,
1125,
13,
9651,
5694,
29918,
2084,
353,
2224,
718,
474,
13,
9651,
565,
474,
1275,
29871,
29900,
29901,
13,
18884,
2582,
29889,
4397,
29898,
1311,
3032,
1491,
29918,
15480,
29898,
1311,
29889,
20529,
24204,
29892,
19359,
29892,
5694,
29918,
2084,
29892,
7232,
29922,
5574,
876,
13,
9651,
1683,
29901,
13,
18884,
2582,
29889,
4397,
29898,
1311,
3032,
1491,
29918,
15480,
29898,
1311,
29889,
20529,
24204,
29892,
19359,
29892,
5694,
29918,
2084,
29892,
7232,
29922,
8824,
876,
13,
4706,
736,
2582,
13,
2
] |
chopsticks/bubble.py | gitter-badger/chopsticks | 0 | 184457 | from __future__ import print_function
import sys
sys.path = [p for p in sys.path if p.startswith('/')]
__name__ = '__bubble__'
sys.modules[__name__] = sys.modules.pop('__main__')
def debug(msg):
print(msg, file=sys.stderr)
# Reshuffle fds so that we can't break our transport by printing to stdout
import os
infd = os.dup(0)
outfd = os.dup(1)
inpipe = os.fdopen(infd, 'rb')
outpipe = os.fdopen(outfd, 'wb', 0)
sys.stdin.close()
sys.stdin = open(os.devnull, 'rb')
sys.stdout.close()
sys.stdout = open(os.devnull, 'wb')
PY2 = sys.version_info < (3,)
PY3 = not PY2
import threading
if PY2:
__metaclass__ = type
from Queue import Queue
import cPickle as pickle
def exec_(_code_, _globs_=None, _locs_=None):
"""Execute code in a namespace."""
if _globs_ is None:
frame = sys._getframe(1)
_globs_ = frame.f_globals
if _locs_ is None:
_locs_ = frame.f_locals
del frame
elif _locs_ is None:
_locs_ = _globs_
exec("""exec _code_ in _globs_, _locs_""")
else:
from queue import Queue
import pickle
exec_ = getattr(__builtins__, 'exec')
import json
import struct
import imp
from collections import namedtuple
import signal
from hashlib import sha1
import traceback
outqueue = Queue(maxsize=10)
tasks = Queue()
done = object()
running = True
Imp = namedtuple('Imp', 'exists is_pkg file source')
PREFIX = 'controller://'
class Loader:
cache = {}
lock = threading.RLock()
ev = threading.Condition(lock)
def __init__(self, path):
if not path.startswith(PREFIX):
raise ImportError()
self.path = path
@classmethod
def on_receive(cls, mod, imp):
with cls.lock:
cls.cache[mod] = imp
cls.ev.notifyAll()
def get(self, fullname):
with self.lock:
if fullname in self.cache:
return self.cache[fullname]
send_msg(OP_IMP, 0, {'imp': fullname})
while True:
self.ev.wait()
try:
imp = self.cache[fullname]
except KeyError:
continue
else:
break
if not imp.exists:
raise ImportError()
return imp
def find_module(self, fullname, path=None):
try:
self.get(fullname)
except ImportError:
return None
return self
def load_module(self, fullname):
m = self.get(fullname)
modname = fullname
if fullname == '__main__':
# Special-case __main__ so as not to execute
# if __name__ == '__main__' blocks
modname = '__chopsticks_main__'
mod = sys.modules.setdefault(modname, imp.new_module(modname))
mod.__file__ = PREFIX + m.file
mod.__loader__ = self
if m.is_pkg:
mod.__path__ = [PREFIX + m.file]
mod.__package__ = modname
else:
mod.__package__ = modname.rpartition('.')[0]
code = compile(m.source, mod.__file__, 'exec', dont_inherit=True)
exec(code, mod.__dict__)
if fullname == '__main__':
mod.__name__ == '__main__'
sys.modules[fullname] = mod
return mod
def is_package(self, fullname):
return self.get(fullname).is_pkg
def get_source(self, fullname):
return self.get(fullname).source
sys.path.append(PREFIX)
sys.path_hooks.append(Loader)
def transmit_errors(func):
def wrapper(req_id, *args, **kwargs):
try:
return func(req_id, *args, **kwargs)
except:
send_msg(OP_EXC, req_id, {'tb': traceback.format_exc()})
return wrapper
@transmit_errors
def handle_call_threaded(req_id, data):
threading.Thread(target=handle_call_thread, args=(req_id, data)).start()
@transmit_errors
def handle_call_thread(req_id, data):
callable, args, kwargs = pickle.loads(data)
do_call(req_id, callable, args, kwargs)
@transmit_errors
def handle_call_queued(req_id, data):
callable, args, kwargs = pickle.loads(data)
tasks.put((req_id, callable, args, kwargs))
OP_CALL = 0
OP_RET = 1
OP_EXC = 2
OP_IMP = 3
OP_FETCH_BEGIN = 4
OP_FETCH_DATA = 5
OP_FETCH_END = 6
OP_PUT_BEGIN = 7
OP_PUT_DATA = 8
OP_PUT_END = 9
# FIXME: handle_call_queued seems to deadlock!
handle_call = handle_call_threaded
@transmit_errors
def handle_fetch(req_id, path):
"""Fetch a file by path."""
tasks.put((req_id, do_fetch, (req_id, path,)))
def do_fetch(req_id, path):
"""Send chunks of a file to the orchestration host."""
h = sha1()
with open(path, 'rb') as f:
while True:
chunk = f.read(10240)
if not chunk:
break
h.update(chunk)
send_msg(OP_FETCH_DATA, req_id, chunk)
send_msg(
OP_RET, req_id, {'ret': {
'remote_path': os.path.abspath(path),
'sha1sum': h.hexdigest(),
}}
)
@transmit_errors
def do_call(req_id, callable, args=(), kwargs={}):
ret = callable(*args, **kwargs)
send_msg(OP_RET, req_id, {'ret': ret})
def handle_imp(req_id, mod, exists, is_pkg, file, source):
Loader.on_receive(mod, Imp(exists, is_pkg, file, source))
active_puts = {}
@transmit_errors
def handle_begin_put(req_id, path, mode):
prev_umask = os.umask(0o077)
try:
if path is None:
import tempfile
f = tempfile.NamedTemporaryFile(delete=False)
path = wpath = f.name
else:
if os.path.isdir(path):
raise IOError('%s is a directory' % path)
wpath = path + '~chopsticks-tmp'
f = open(wpath, 'wb')
finally:
os.umask(prev_umask)
os.fchmod(f.fileno(), mode)
active_puts[req_id] = (f, wpath, path, sha1())
@transmit_errors
def handle_put_data(req_id, data):
f, wpath, path, cksum = active_puts[req_id]
try:
cksum.update(data)
f.write(data)
except:
try:
os.unlink(wpath)
f.close()
except OSError:
pass
raise
class ChecksumMismatch(Exception):
pass
@transmit_errors
def handle_end_put(req_id, sha1sum):
f, wpath, path, cksum = active_puts.pop(req_id)
received = f.tell()
f.close()
digest = cksum.hexdigest()
if digest != sha1sum:
try:
os.unlink(wpath)
except OSError:
pass
raise ChecksumMismatch('Checksum failed for transfer %s' % path)
if wpath != path:
os.rename(wpath, path)
send_msg(
OP_RET, req_id, {'ret': {
'remote_path': os.path.abspath(path),
'sha1sum': digest,
'size': received
}}
)
HEADER = struct.Struct('!LLbb')
MSG_JSON = 0
MSG_BYTES = 1
def send_msg(op, req_id, data):
"""Send a message to the orchestration host.
We can send either bytes or JSON-encoded structured data; the opcode will
determine which.
"""
if isinstance(data, dict):
data = json.dumps(data)
if not PY2:
data = data.encode('ascii')
fmt = MSG_JSON
else:
fmt = MSG_BYTES
chunk = HEADER.pack(len(data), req_id, op, fmt) + data
outqueue.put(chunk)
def read_msg():
buf = inpipe.read(HEADER.size)
if not buf:
return
(size, req_id, op, fmt) = HEADER.unpack(buf)
data = inpipe.read(size)
if fmt == MSG_JSON:
if PY3:
data = data.decode('ascii')
obj = json.loads(data)
if PY2:
obj = dict((str(k), v) for k, v in obj.iteritems())
else:
obj = {'data': data}
return (req_id, op, obj)
HANDLERS = {
OP_CALL: handle_call,
OP_IMP: handle_imp,
OP_FETCH_BEGIN: handle_fetch,
OP_PUT_BEGIN: handle_begin_put,
OP_PUT_DATA: handle_put_data,
OP_PUT_END: handle_end_put
}
def reader():
try:
while True:
msg = read_msg()
if msg is None:
break
req_id, op, params = msg
HANDLERS[op](req_id, **params)
finally:
outqueue.put(done)
tasks.put(done)
def writer():
while True:
msg = outqueue.get()
if msg is done:
break
outpipe.write(msg)
for func in (reader, writer):
threading.Thread(target=func).start()
while True:
task = tasks.get()
if task is done:
break
do_call(*task)
| [
1,
515,
4770,
29888,
9130,
1649,
1053,
1596,
29918,
2220,
13,
5215,
10876,
13,
9675,
29889,
2084,
353,
518,
29886,
363,
282,
297,
10876,
29889,
2084,
565,
282,
29889,
27382,
2541,
11219,
1495,
29962,
13,
1649,
978,
1649,
353,
525,
1649,
29890,
23232,
1649,
29915,
13,
9675,
29889,
7576,
29961,
1649,
978,
1649,
29962,
353,
10876,
29889,
7576,
29889,
7323,
877,
1649,
3396,
1649,
1495,
13,
13,
13,
1753,
4744,
29898,
7645,
1125,
13,
1678,
1596,
29898,
7645,
29892,
934,
29922,
9675,
29889,
303,
20405,
29897,
13,
13,
29937,
2538,
29882,
21897,
285,
6289,
577,
393,
591,
508,
29915,
29873,
2867,
1749,
8608,
491,
14010,
304,
27591,
13,
5215,
2897,
13,
7192,
29881,
353,
2897,
29889,
20908,
29898,
29900,
29897,
13,
449,
11512,
353,
2897,
29889,
20908,
29898,
29896,
29897,
13,
262,
17760,
353,
2897,
29889,
11512,
3150,
29898,
7192,
29881,
29892,
525,
6050,
1495,
13,
449,
17760,
353,
2897,
29889,
11512,
3150,
29898,
449,
11512,
29892,
525,
29893,
29890,
742,
29871,
29900,
29897,
13,
9675,
29889,
4172,
262,
29889,
5358,
580,
13,
9675,
29889,
4172,
262,
353,
1722,
29898,
359,
29889,
3359,
4304,
29892,
525,
6050,
1495,
13,
9675,
29889,
25393,
29889,
5358,
580,
13,
9675,
29889,
25393,
353,
1722,
29898,
359,
29889,
3359,
4304,
29892,
525,
29893,
29890,
1495,
13,
13,
20055,
29906,
353,
10876,
29889,
3259,
29918,
3888,
529,
313,
29941,
29892,
29897,
13,
20055,
29941,
353,
451,
349,
29979,
29906,
13,
5215,
3244,
292,
13,
361,
349,
29979,
29906,
29901,
13,
1678,
4770,
2527,
562,
605,
1649,
353,
1134,
13,
1678,
515,
5462,
434,
1053,
5462,
434,
13,
1678,
1053,
274,
29925,
860,
280,
408,
5839,
280,
13,
13,
1678,
822,
2279,
29918,
7373,
401,
3383,
903,
23705,
29879,
29918,
29922,
8516,
29892,
903,
2029,
29879,
29918,
29922,
8516,
1125,
13,
4706,
9995,
12296,
775,
297,
263,
7397,
1213,
15945,
13,
4706,
565,
903,
23705,
29879,
29918,
338,
6213,
29901,
13,
9651,
3515,
353,
10876,
3032,
657,
2557,
29898,
29896,
29897,
13,
9651,
903,
23705,
29879,
29918,
353,
3515,
29889,
29888,
29918,
23705,
1338,
13,
9651,
565,
903,
2029,
29879,
29918,
338,
6213,
29901,
13,
18884,
903,
2029,
29879,
29918,
353,
3515,
29889,
29888,
29918,
2997,
29879,
13,
9651,
628,
3515,
13,
4706,
25342,
903,
2029,
29879,
29918,
338,
6213,
29901,
13,
9651,
903,
2029,
29879,
29918,
353,
903,
23705,
29879,
29918,
13,
4706,
2279,
703,
15945,
4258,
903,
401,
29918,
297,
903,
23705,
29879,
3383,
903,
2029,
29879,
29918,
15945,
1159,
13,
2870,
29901,
13,
1678,
515,
9521,
1053,
5462,
434,
13,
1678,
1053,
5839,
280,
13,
1678,
2279,
29918,
353,
679,
5552,
22168,
16145,
1144,
1649,
29892,
525,
4258,
1495,
13,
5215,
4390,
13,
5215,
2281,
13,
5215,
2411,
13,
3166,
16250,
1053,
4257,
23583,
13,
5215,
7182,
13,
3166,
6608,
1982,
1053,
528,
29874,
29896,
13,
5215,
9637,
1627,
13,
13,
449,
9990,
353,
5462,
434,
29898,
3317,
2311,
29922,
29896,
29900,
29897,
13,
20673,
353,
5462,
434,
580,
13,
15091,
353,
1203,
580,
13,
13,
21094,
353,
5852,
13,
13,
24192,
353,
4257,
23583,
877,
24192,
742,
525,
9933,
338,
29918,
15865,
934,
2752,
1495,
13,
15094,
25634,
353,
525,
8299,
597,
29915,
13,
13,
13,
1990,
4309,
1664,
29901,
13,
1678,
7090,
353,
6571,
13,
1678,
7714,
353,
3244,
292,
29889,
2241,
1698,
580,
13,
1678,
3415,
353,
3244,
292,
29889,
25255,
29898,
908,
29897,
13,
13,
1678,
822,
4770,
2344,
12035,
1311,
29892,
2224,
1125,
13,
4706,
565,
451,
2224,
29889,
27382,
2541,
29898,
15094,
25634,
1125,
13,
9651,
12020,
16032,
2392,
580,
13,
4706,
1583,
29889,
2084,
353,
2224,
13,
13,
1678,
732,
1990,
5696,
13,
1678,
822,
373,
29918,
13556,
573,
29898,
25932,
29892,
878,
29892,
2411,
1125,
13,
4706,
411,
1067,
29879,
29889,
908,
29901,
13,
9651,
1067,
29879,
29889,
8173,
29961,
1545,
29962,
353,
2411,
13,
9651,
1067,
29879,
29889,
5750,
29889,
25140,
3596,
580,
13,
13,
1678,
822,
679,
29898,
1311,
29892,
2989,
978,
1125,
13,
4706,
411,
1583,
29889,
908,
29901,
13,
9651,
565,
2989,
978,
297,
1583,
29889,
8173,
29901,
13,
18884,
736,
1583,
29889,
8173,
29961,
8159,
978,
29962,
13,
9651,
3638,
29918,
7645,
29898,
4590,
29918,
29902,
3580,
29892,
29871,
29900,
29892,
11117,
6574,
2396,
2989,
978,
1800,
13,
9651,
1550,
5852,
29901,
13,
18884,
1583,
29889,
5750,
29889,
10685,
580,
13,
18884,
1018,
29901,
13,
462,
1678,
2411,
353,
1583,
29889,
8173,
29961,
8159,
978,
29962,
13,
18884,
5174,
7670,
2392,
29901,
13,
462,
1678,
6773,
13,
18884,
1683,
29901,
13,
462,
1678,
2867,
13,
4706,
565,
451,
2411,
29889,
9933,
29901,
13,
9651,
12020,
16032,
2392,
580,
13,
4706,
736,
2411,
13,
13,
1678,
822,
1284,
29918,
5453,
29898,
1311,
29892,
2989,
978,
29892,
2224,
29922,
8516,
1125,
13,
4706,
1018,
29901,
13,
9651,
1583,
29889,
657,
29898,
8159,
978,
29897,
13,
4706,
5174,
16032,
2392,
29901,
13,
9651,
736,
6213,
13,
4706,
736,
1583,
13,
13,
1678,
822,
2254,
29918,
5453,
29898,
1311,
29892,
2989,
978,
1125,
13,
4706,
286,
353,
1583,
29889,
657,
29898,
8159,
978,
29897,
13,
4706,
878,
978,
353,
2989,
978,
13,
4706,
565,
2989,
978,
1275,
525,
1649,
3396,
1649,
2396,
13,
9651,
396,
12630,
29899,
4878,
4770,
3396,
1649,
577,
408,
451,
304,
6222,
13,
9651,
396,
565,
4770,
978,
1649,
1275,
525,
1649,
3396,
1649,
29915,
10930,
13,
9651,
878,
978,
353,
525,
1649,
305,
459,
303,
7358,
29918,
3396,
1649,
29915,
13,
4706,
878,
353,
10876,
29889,
7576,
29889,
842,
4381,
29898,
1545,
978,
29892,
2411,
29889,
1482,
29918,
5453,
29898,
1545,
978,
876,
13,
4706,
878,
17255,
1445,
1649,
353,
349,
1525,
25634,
718,
286,
29889,
1445,
13,
4706,
878,
17255,
12657,
1649,
353,
1583,
13,
4706,
565,
286,
29889,
275,
29918,
15865,
29901,
13,
9651,
878,
17255,
2084,
1649,
353,
518,
15094,
25634,
718,
286,
29889,
1445,
29962,
13,
9651,
878,
17255,
5113,
1649,
353,
878,
978,
13,
4706,
1683,
29901,
13,
9651,
878,
17255,
5113,
1649,
353,
878,
978,
29889,
29878,
16707,
12839,
29861,
29900,
29962,
13,
4706,
775,
353,
6633,
29898,
29885,
29889,
4993,
29892,
878,
17255,
1445,
1649,
29892,
525,
4258,
742,
4555,
29918,
262,
27069,
29922,
5574,
29897,
13,
4706,
2279,
29898,
401,
29892,
878,
17255,
8977,
1649,
29897,
13,
4706,
565,
2989,
978,
1275,
525,
1649,
3396,
1649,
2396,
13,
9651,
878,
17255,
978,
1649,
1275,
525,
1649,
3396,
1649,
29915,
13,
9651,
10876,
29889,
7576,
29961,
8159,
978,
29962,
353,
878,
13,
4706,
736,
878,
13,
13,
1678,
822,
338,
29918,
5113,
29898,
1311,
29892,
2989,
978,
1125,
13,
4706,
736,
1583,
29889,
657,
29898,
8159,
978,
467,
275,
29918,
15865,
13,
13,
1678,
822,
679,
29918,
4993,
29898,
1311,
29892,
2989,
978,
1125,
13,
4706,
736,
1583,
29889,
657,
29898,
8159,
978,
467,
4993,
13,
13,
13,
9675,
29889,
2084,
29889,
4397,
29898,
15094,
25634,
29897,
13,
9675,
29889,
2084,
29918,
1251,
12117,
29889,
4397,
29898,
10036,
29897,
13,
13,
13,
1753,
22649,
29918,
12523,
29898,
9891,
1125,
13,
1678,
822,
14476,
29898,
7971,
29918,
333,
29892,
334,
5085,
29892,
3579,
19290,
1125,
13,
4706,
1018,
29901,
13,
9651,
736,
3653,
29898,
7971,
29918,
333,
29892,
334,
5085,
29892,
3579,
19290,
29897,
13,
4706,
5174,
29901,
13,
9651,
3638,
29918,
7645,
29898,
4590,
29918,
5746,
29907,
29892,
12428,
29918,
333,
29892,
11117,
22625,
2396,
9637,
1627,
29889,
4830,
29918,
735,
29883,
580,
1800,
13,
1678,
736,
14476,
13,
13,
13,
29992,
3286,
2415,
29918,
12523,
13,
1753,
4386,
29918,
4804,
29918,
7097,
287,
29898,
7971,
29918,
333,
29892,
848,
1125,
13,
1678,
3244,
292,
29889,
4899,
29898,
5182,
29922,
8411,
29918,
4804,
29918,
7097,
29892,
6389,
7607,
7971,
29918,
333,
29892,
848,
8106,
2962,
580,
13,
13,
13,
29992,
3286,
2415,
29918,
12523,
13,
1753,
4386,
29918,
4804,
29918,
7097,
29898,
7971,
29918,
333,
29892,
848,
1125,
13,
1678,
1246,
519,
29892,
6389,
29892,
9049,
5085,
353,
5839,
280,
29889,
18132,
29898,
1272,
29897,
13,
1678,
437,
29918,
4804,
29898,
7971,
29918,
333,
29892,
1246,
519,
29892,
6389,
29892,
9049,
5085,
29897,
13,
13,
13,
29992,
3286,
2415,
29918,
12523,
13,
1753,
4386,
29918,
4804,
29918,
802,
6742,
29898,
7971,
29918,
333,
29892,
848,
1125,
13,
1678,
1246,
519,
29892,
6389,
29892,
9049,
5085,
353,
5839,
280,
29889,
18132,
29898,
1272,
29897,
13,
1678,
9595,
29889,
649,
3552,
7971,
29918,
333,
29892,
1246,
519,
29892,
6389,
29892,
9049,
5085,
876,
13,
13,
13,
4590,
29918,
29907,
9818,
353,
29871,
29900,
13,
4590,
29918,
1525,
29911,
353,
29871,
29896,
13,
4590,
29918,
5746,
29907,
353,
29871,
29906,
13,
4590,
29918,
29902,
3580,
353,
29871,
29941,
13,
4590,
29918,
29943,
2544,
3210,
29918,
29933,
17958,
353,
29871,
29946,
13,
4590,
29918,
29943,
2544,
3210,
29918,
14573,
353,
29871,
29945,
13,
4590,
29918,
29943,
2544,
3210,
29918,
11794,
353,
29871,
29953,
13,
4590,
29918,
12336,
29918,
29933,
17958,
353,
29871,
29955,
13,
4590,
29918,
12336,
29918,
14573,
353,
29871,
29947,
13,
4590,
29918,
12336,
29918,
11794,
353,
29871,
29929,
13,
13,
13,
29937,
383,
6415,
2303,
29901,
4386,
29918,
4804,
29918,
802,
6742,
2444,
304,
7123,
908,
29991,
13,
8411,
29918,
4804,
353,
4386,
29918,
4804,
29918,
7097,
287,
13,
13,
13,
29992,
3286,
2415,
29918,
12523,
13,
1753,
4386,
29918,
9155,
29898,
7971,
29918,
333,
29892,
2224,
1125,
13,
1678,
9995,
20927,
263,
934,
491,
2224,
1213,
15945,
13,
1678,
9595,
29889,
649,
3552,
7971,
29918,
333,
29892,
437,
29918,
9155,
29892,
313,
7971,
29918,
333,
29892,
2224,
29892,
4961,
13,
13,
13,
1753,
437,
29918,
9155,
29898,
7971,
29918,
333,
29892,
2224,
1125,
13,
1678,
9995,
12600,
521,
18801,
310,
263,
934,
304,
278,
22624,
16444,
362,
3495,
1213,
15945,
13,
1678,
298,
353,
528,
29874,
29896,
580,
13,
1678,
411,
1722,
29898,
2084,
29892,
525,
6050,
1495,
408,
285,
29901,
13,
4706,
1550,
5852,
29901,
13,
9651,
19875,
353,
285,
29889,
949,
29898,
29896,
29900,
29906,
29946,
29900,
29897,
13,
9651,
565,
451,
19875,
29901,
13,
18884,
2867,
13,
9651,
298,
29889,
5504,
29898,
29812,
29897,
13,
9651,
3638,
29918,
7645,
29898,
4590,
29918,
29943,
2544,
3210,
29918,
14573,
29892,
12428,
29918,
333,
29892,
19875,
29897,
13,
1678,
3638,
29918,
7645,
29898,
13,
4706,
6418,
29918,
1525,
29911,
29892,
12428,
29918,
333,
29892,
11117,
2267,
2396,
426,
13,
9651,
525,
16674,
29918,
2084,
2396,
2897,
29889,
2084,
29889,
370,
1028,
493,
29898,
2084,
511,
13,
9651,
525,
17051,
29896,
2083,
2396,
298,
29889,
20970,
7501,
342,
3285,
13,
4706,
9156,
13,
1678,
1723,
13,
13,
13,
29992,
3286,
2415,
29918,
12523,
13,
1753,
437,
29918,
4804,
29898,
7971,
29918,
333,
29892,
1246,
519,
29892,
6389,
29922,
3285,
9049,
5085,
3790,
29913,
1125,
13,
1678,
3240,
353,
1246,
519,
10456,
5085,
29892,
3579,
19290,
29897,
13,
1678,
3638,
29918,
7645,
29898,
4590,
29918,
1525,
29911,
29892,
12428,
29918,
333,
29892,
11117,
2267,
2396,
3240,
1800,
13,
13,
13,
1753,
4386,
29918,
6574,
29898,
7971,
29918,
333,
29892,
878,
29892,
4864,
29892,
338,
29918,
15865,
29892,
934,
29892,
2752,
1125,
13,
1678,
4309,
1664,
29889,
265,
29918,
13556,
573,
29898,
1545,
29892,
14305,
29898,
9933,
29892,
338,
29918,
15865,
29892,
934,
29892,
2752,
876,
13,
13,
13,
4925,
29918,
649,
29879,
353,
6571,
13,
13,
13,
29992,
3286,
2415,
29918,
12523,
13,
1753,
4386,
29918,
463,
29918,
649,
29898,
7971,
29918,
333,
29892,
2224,
29892,
4464,
1125,
13,
1678,
12379,
29918,
398,
1278,
353,
2897,
29889,
398,
1278,
29898,
29900,
29877,
29900,
29955,
29955,
29897,
13,
1678,
1018,
29901,
13,
4706,
565,
2224,
338,
6213,
29901,
13,
9651,
1053,
5694,
1445,
13,
9651,
285,
353,
5694,
1445,
29889,
22175,
5776,
1971,
653,
2283,
29898,
8143,
29922,
8824,
29897,
13,
9651,
2224,
353,
281,
2084,
353,
285,
29889,
978,
13,
4706,
1683,
29901,
13,
9651,
565,
2897,
29889,
2084,
29889,
275,
3972,
29898,
2084,
1125,
13,
18884,
12020,
10663,
2392,
877,
29995,
29879,
338,
263,
3884,
29915,
1273,
2224,
29897,
13,
9651,
281,
2084,
353,
2224,
718,
525,
30022,
305,
459,
303,
7358,
29899,
7050,
29915,
13,
9651,
285,
353,
1722,
29898,
29893,
2084,
29892,
525,
29893,
29890,
1495,
13,
1678,
7146,
29901,
13,
4706,
2897,
29889,
398,
1278,
29898,
16304,
29918,
398,
1278,
29897,
13,
1678,
2897,
29889,
29888,
305,
1545,
29898,
29888,
29889,
1777,
8154,
3285,
4464,
29897,
13,
1678,
6136,
29918,
649,
29879,
29961,
7971,
29918,
333,
29962,
353,
313,
29888,
29892,
281,
2084,
29892,
2224,
29892,
528,
29874,
29896,
3101,
13,
13,
13,
29992,
3286,
2415,
29918,
12523,
13,
1753,
4386,
29918,
649,
29918,
1272,
29898,
7971,
29918,
333,
29892,
848,
1125,
13,
1678,
285,
29892,
281,
2084,
29892,
2224,
29892,
274,
2039,
398,
353,
6136,
29918,
649,
29879,
29961,
7971,
29918,
333,
29962,
13,
1678,
1018,
29901,
13,
4706,
274,
2039,
398,
29889,
5504,
29898,
1272,
29897,
13,
4706,
285,
29889,
3539,
29898,
1272,
29897,
13,
1678,
5174,
29901,
13,
4706,
1018,
29901,
13,
9651,
2897,
29889,
348,
2324,
29898,
29893,
2084,
29897,
13,
9651,
285,
29889,
5358,
580,
13,
4706,
5174,
438,
29173,
29901,
13,
9651,
1209,
13,
4706,
12020,
13,
13,
13,
1990,
5399,
2083,
29924,
1608,
905,
29898,
2451,
1125,
13,
1678,
1209,
13,
13,
13,
29992,
3286,
2415,
29918,
12523,
13,
1753,
4386,
29918,
355,
29918,
649,
29898,
7971,
29918,
333,
29892,
528,
29874,
29896,
2083,
1125,
13,
1678,
285,
29892,
281,
2084,
29892,
2224,
29892,
274,
2039,
398,
353,
6136,
29918,
649,
29879,
29889,
7323,
29898,
7971,
29918,
333,
29897,
13,
1678,
4520,
353,
285,
29889,
29873,
514,
580,
13,
1678,
285,
29889,
5358,
580,
13,
1678,
4697,
342,
353,
274,
2039,
398,
29889,
20970,
7501,
342,
580,
13,
1678,
565,
4697,
342,
2804,
528,
29874,
29896,
2083,
29901,
13,
4706,
1018,
29901,
13,
9651,
2897,
29889,
348,
2324,
29898,
29893,
2084,
29897,
13,
4706,
5174,
438,
29173,
29901,
13,
9651,
1209,
13,
4706,
12020,
5399,
2083,
29924,
1608,
905,
877,
5596,
2083,
5229,
363,
6782,
1273,
29879,
29915,
1273,
2224,
29897,
13,
1678,
565,
281,
2084,
2804,
2224,
29901,
13,
4706,
2897,
29889,
1267,
420,
29898,
29893,
2084,
29892,
2224,
29897,
13,
1678,
3638,
29918,
7645,
29898,
13,
4706,
6418,
29918,
1525,
29911,
29892,
12428,
29918,
333,
29892,
11117,
2267,
2396,
426,
13,
9651,
525,
16674,
29918,
2084,
2396,
2897,
29889,
2084,
29889,
370,
1028,
493,
29898,
2084,
511,
13,
9651,
525,
17051,
29896,
2083,
2396,
4697,
342,
29892,
13,
9651,
525,
2311,
2396,
4520,
13,
4706,
9156,
13,
1678,
1723,
13,
13,
13,
23252,
1001,
353,
2281,
29889,
19560,
877,
29991,
2208,
1327,
1495,
13,
13,
4345,
29954,
29918,
7249,
353,
29871,
29900,
13,
4345,
29954,
29918,
22716,
29911,
2890,
353,
29871,
29896,
13,
13,
13,
1753,
3638,
29918,
7645,
29898,
459,
29892,
12428,
29918,
333,
29892,
848,
1125,
13,
1678,
9995,
12600,
263,
2643,
304,
278,
22624,
16444,
362,
3495,
29889,
13,
13,
1678,
1334,
508,
3638,
2845,
6262,
470,
4663,
29899,
26716,
2281,
2955,
848,
29936,
278,
1015,
401,
674,
13,
1678,
8161,
607,
29889,
13,
13,
1678,
9995,
13,
1678,
565,
338,
8758,
29898,
1272,
29892,
9657,
1125,
13,
4706,
848,
353,
4390,
29889,
29881,
17204,
29898,
1272,
29897,
13,
4706,
565,
451,
349,
29979,
29906,
29901,
13,
9651,
848,
353,
848,
29889,
12508,
877,
294,
18869,
1495,
13,
4706,
19200,
353,
10888,
29954,
29918,
7249,
13,
1678,
1683,
29901,
13,
4706,
19200,
353,
10888,
29954,
29918,
22716,
29911,
2890,
13,
13,
1678,
19875,
353,
17714,
3035,
1001,
29889,
4058,
29898,
2435,
29898,
1272,
511,
12428,
29918,
333,
29892,
1015,
29892,
19200,
29897,
718,
848,
13,
1678,
714,
9990,
29889,
649,
29898,
29812,
29897,
13,
13,
13,
1753,
1303,
29918,
7645,
7295,
13,
1678,
18392,
353,
297,
17760,
29889,
949,
29898,
23252,
1001,
29889,
2311,
29897,
13,
1678,
565,
451,
18392,
29901,
13,
4706,
736,
13,
1678,
313,
2311,
29892,
12428,
29918,
333,
29892,
1015,
29892,
19200,
29897,
353,
17714,
3035,
1001,
29889,
348,
4058,
29898,
9721,
29897,
13,
1678,
848,
353,
297,
17760,
29889,
949,
29898,
2311,
29897,
13,
1678,
565,
19200,
1275,
10888,
29954,
29918,
7249,
29901,
13,
4706,
565,
349,
29979,
29941,
29901,
13,
9651,
848,
353,
848,
29889,
13808,
877,
294,
18869,
1495,
13,
4706,
5446,
353,
4390,
29889,
18132,
29898,
1272,
29897,
13,
4706,
565,
349,
29979,
29906,
29901,
13,
9651,
5446,
353,
9657,
3552,
710,
29898,
29895,
511,
325,
29897,
363,
413,
29892,
325,
297,
5446,
29889,
1524,
7076,
3101,
13,
1678,
1683,
29901,
13,
4706,
5446,
353,
11117,
1272,
2396,
848,
29913,
13,
1678,
736,
313,
7971,
29918,
333,
29892,
1015,
29892,
5446,
29897,
13,
13,
13,
29950,
9468,
29931,
23598,
353,
426,
13,
1678,
6418,
29918,
29907,
9818,
29901,
4386,
29918,
4804,
29892,
13,
1678,
6418,
29918,
29902,
3580,
29901,
4386,
29918,
6574,
29892,
13,
1678,
6418,
29918,
29943,
2544,
3210,
29918,
29933,
17958,
29901,
4386,
29918,
9155,
29892,
13,
1678,
6418,
29918,
12336,
29918,
29933,
17958,
29901,
4386,
29918,
463,
29918,
649,
29892,
13,
1678,
6418,
29918,
12336,
29918,
14573,
29901,
4386,
29918,
649,
29918,
1272,
29892,
13,
1678,
6418,
29918,
12336,
29918,
11794,
29901,
4386,
29918,
355,
29918,
649,
13,
29913,
13,
13,
1753,
9591,
7295,
13,
1678,
1018,
29901,
13,
4706,
1550,
5852,
29901,
13,
9651,
10191,
353,
1303,
29918,
7645,
580,
13,
9651,
565,
10191,
338,
6213,
29901,
13,
18884,
2867,
13,
9651,
12428,
29918,
333,
29892,
1015,
29892,
8636,
353,
10191,
13,
9651,
379,
9468,
29931,
23598,
29961,
459,
850,
7971,
29918,
333,
29892,
3579,
7529,
29897,
13,
1678,
7146,
29901,
13,
4706,
714,
9990,
29889,
649,
29898,
15091,
29897,
13,
4706,
9595,
29889,
649,
29898,
15091,
29897,
13,
13,
13,
1753,
9227,
7295,
13,
1678,
1550,
5852,
29901,
13,
4706,
10191,
353,
714,
9990,
29889,
657,
580,
13,
4706,
565,
10191,
338,
2309,
29901,
13,
9651,
2867,
13,
4706,
714,
17760,
29889,
3539,
29898,
7645,
29897,
13,
13,
13,
1454,
3653,
297,
313,
16950,
29892,
9227,
1125,
13,
1678,
3244,
292,
29889,
4899,
29898,
5182,
29922,
9891,
467,
2962,
580,
13,
13,
13,
8000,
5852,
29901,
13,
1678,
3414,
353,
9595,
29889,
657,
580,
13,
1678,
565,
3414,
338,
2309,
29901,
13,
4706,
2867,
13,
1678,
437,
29918,
4804,
10456,
7662,
29897,
13,
2
] |
waterspout_api/models.py | Water-Systems-Management-UCM/Waterspout | 1 | 1606815 | import logging
import traceback
import decimal
import json
import numpy
import django
from django.db import models # we're going to geodjango this one - might not need it, but could make some things nicer
from django.db.models import Q
from django.contrib.auth.models import Group
from django.contrib.auth import get_user_model
User = get_user_model() # define user by this method rather than direct import - safer for the future
from guardian.shortcuts import assign_perm
from django.db.models.signals import post_save
from django.dispatch import receiver
from Waterspout import settings
import pandas
from Dapper import scenarios, get_version as get_dapper_version, worst_case
log = logging.getLogger("waterspout.models")
class SimpleJSONField(models.TextField):
"""
converts dicts to JSON strings on save and converts JSON to dicts
on load
"""
def get_prep_value(self, value):
return json.dumps(value)
def from_db_value(self, value, expression, connection):
return json.loads(value)
class UserProfile(models.Model):
"""
Basically just for user settings
"""
user = models.OneToOneField(User, related_name="profile", on_delete=models.CASCADE)
_serializer_fields = ["id", "user", "show_organization_model_runs", "show_organization_model_runs_tooltip",
"dense_tables", "dense_tables_tooltip"]
# basic settings
show_organization_model_runs = models.BooleanField(default=True)
show_organization_model_runs_tooltip = "By default, the application shows all model runs from within your organization" \
" and gives you the option to temporarily show only your model runs." \
" This setting changes that behavior so that, by default, you only see model runs" \
" that you created yourself and then you can temporarily change the listing to" \
" see all model runs in your organization."
dense_tables = models.BooleanField(default=False)
dense_tables_tooltip = "Use less spacing in tables to see more data on screen at the same time"
# set up the signal receivers that get triggered after a user is created so that everyone has a userprofile
@receiver(post_save, sender=User)
def create_user_profile(sender, instance, created, **kwargs):
if created:
new_profile = UserProfile.objects.create(user=instance)
assign_perm("change_userprofile", instance, new_profile)
@receiver(post_save, sender=User)
def save_user_profile(sender, instance, **kwargs):
instance.profile.save()
class Organization(models.Model):
"""
Since this application is designed to support multiple models, possibly in the same instance, make most things
be ties to an "organization" of some kind - we'll include users in the organization and arrange permissions
around users within the organization.
We could have made this a subclass of the Group object, but then reverse relationships may not work correctly.
Instead we'll just
"""
name = models.CharField(max_length=255, null=False, blank=False)
# TODO: This shouldn't allow nulls or blanks in the future
group = models.OneToOneField(Group, on_delete=models.DO_NOTHING, null=True, blank=True)
def has_member(self, user):
return self.group in user.groups.all() # True if this group is in that set, otherwise, False
def add_member(self, user):
self.group.user_set.add(user)
self.group.save()
def __str__(self):
return f"Organization: {self.name}"
class ModelArea(models.Model):
"""
This would be something like "The Delta", or "Washington" - mostly, this will be one to one with organizations,
but just in case we want to be able to deploy multiple models for an organization in the future, we'll store it
this way.
"""
organization = models.ForeignKey(Organization, null=True, blank=True, on_delete=models.SET_NULL, related_name="model_areas")
name = models.CharField(max_length=255, unique=True)
data_folder = models.CharField(max_length=255, default="dap") # which folder did the data for this come from during loading? Can
# help us if we want to update some data later
description = models.TextField(null=True, blank=True)
# preferences reverse 1 to 1
map_center_latitude = models.DecimalField(max_digits=4, decimal_places=2)
map_center_longitude = models.DecimalField(max_digits=5, decimal_places=2)
map_default_zoom = models.SmallIntegerField()
# these values define the ranges available when creating a model run in this region
min_water = models.PositiveSmallIntegerField(default=50)
max_water = models.PositiveSmallIntegerField(default=120)
min_rainfall = models.PositiveSmallIntegerField(default=10)
max_rainfall = models.PositiveSmallIntegerField(default=200)
min_land = models.PositiveSmallIntegerField(default=50)
max_land = models.PositiveSmallIntegerField(default=100)
min_price = models.PositiveSmallIntegerField(default=80)
max_price = models.PositiveSmallIntegerField(default=120)
min_yield = models.PositiveSmallIntegerField(default=80)
max_yield = models.PositiveSmallIntegerField(default=120)
min_crop_area = models.PositiveSmallIntegerField(default=0)
max_crop_area = models.PositiveSmallIntegerField(default=200)
main_help_page_content = models.TextField(null=True, blank=True)
feature_package_name = models.CharField(max_length=100, default="DEFAULT")
def __str__(self):
return self.name
@property
def model_defaults(self):
# Just making it a dict so that it comes out of the serializer grouped
return {
"min_water": self.min_water,
"max_water": self.max_water,
"min_rainfall": self.min_rainfall,
"max_rainfall": self.max_rainfall,
"min_land": self.min_land,
"max_land": self.max_land,
"min_price": self.min_price,
"max_price": self.max_price,
"min_yield": self.min_yield,
"max_yield": self.max_yield,
"min_crop_area": self.min_crop_area,
"max_crop_area": self.max_crop_area,
}
# elasticities code commented out because we don't run calibration
# ourselves right now
#@property
#def elasticities_as_dict(self):
# return {item.crop.crop_code: float(item.value) for item in self.elasticities}
@property
def supports_rainfall(self):
return self.region_set.filter(supports_rainfall=True).exists()
@property
def supports_irrigation(self):
return self.region_set.filter(supports_irrigation=True).exists()
@property
def background_code(self):
# this is a bit of a hack, but we're using the folder
# names as a class to set the backgrounds temporarily
return self.data_folder
class ModelAreaPreferences(models.Model):
"""
This model is so that we can group preferences and features for model areas
and keep them organized
"""
# should all users of this model area be able to see the model runs of all other users?
shared_model_runs = models.BooleanField(default=True)
# prevent users from reducing price/yield below the value that would make profits negative
# basically forces stormchaser to create cards for crops when All Crops
# goes to negative profits for the crop
enforce_price_yield_constraints = models.BooleanField(default=True)
# if True, and the user makes an adjustment that would create
# negative profits, it forces the slider they weren't using upward as they move the other
# downward. If False, it's purely advisory
lock_price_yield_ratio = models.BooleanField(default=False)
# Should visualizations and downloads include net revenues for this model area? By default we
# don't want to - in most cases, it won't be something we want people to see - but we'll want
# it to be able to be accessed for debugging purposes
include_net_revenue = models.BooleanField(default=False)
# should region-linking of crops be enabled?
region_linked_crops = models.BooleanField(default=False)
# whether or not to show the ability to view model run creation code
allow_model_run_creation_code_view = models.BooleanField(default=False)
# flags to indicate an entire set of features in data visualization
# where they can choose additional model runs for comparison,
# can normalize to a base run, and can see worst case outcomes
allow_viz_multiple_comparisons = models.BooleanField(default=False)
allow_viz_normalization = models.BooleanField(default=False)
allow_viz_region_filter = models.BooleanField(default=False)
allow_viz_worst_case = models.BooleanField(default=False)
allow_static_regions = models.BooleanField(default=False)
allow_removed_regions = models.BooleanField(default=False)
allow_linear_scaled_regions = models.BooleanField(default=False)
use_default_region_behaviors = models.BooleanField(default=True)
model_area = models.OneToOneField(ModelArea,
on_delete=models.CASCADE,
related_name="preferences"
)
# set up the signal receivers that get triggered after a model area is created so that everyone has a userprofile
@receiver(post_save, sender=ModelArea)
def create_model_area_preferences(sender, instance, created, **kwargs):
if created:
ModelAreaPreferences.objects.create(model_area=instance)
@receiver(post_save, sender=ModelArea)
def save_model_area(sender, instance, **kwargs):
instance.preferences.save()
#class Elasticity(models.Model):
# elasticities code commented out because we don't run calibration
# ourselves right now
# """
# We store elasticities for Dapper as individual records here,
# but we'll access them on the ModelArea object to send to Dapper
# """
# model_area = models.ForeignKey(ModelArea, on_delete=models.CASCADE, related_name="elasticities")
# crop = models.ForeignKey("Crop", on_delete=models.CASCADE, related_name="elasticities")
# value = models.DecimalField(max_digits=6, decimal_places=4)
class RegionGroup(models.Model):
name = models.CharField(max_length=255, null=False, blank=False)
internal_id = models.CharField(max_length=100, null=False, blank=False) # typically we have some kind of known ID to feed to a model that means something to people
model_area = models.ForeignKey(ModelArea, on_delete=models.CASCADE)
geometry = models.JSONField(null=True, blank=True) # this will just store GeoJSON and then we'll combine into collections manually
class Region(models.Model):
MODELED = 0
REMOVED = 1
FIXED = 2
LINEAR_SCALED = 3
REGION_DEFAULT_MODELING_CHOICES = (
(MODELED, "Modeled"),
(REMOVED, "Removed"),
(FIXED, "Fixed"),
(LINEAR_SCALED, "Linear Scaled"),
)
class Meta:
unique_together = ['name', 'model_area']
indexes = [
models.Index(fields=("internal_id",)),
models.Index(fields=("model_area_id", "supports_rainfall",)), # we'll use these to set an attribute whenever someone loads a model area
models.Index(fields=("model_area_id", "supports_irrigation",))
]
name = models.CharField(max_length=255, null=False, blank=False)
internal_id = models.CharField(max_length=100, null=False, blank=False) # typically we have some kind of known ID to feed to a model that means something to people
external_id = models.CharField(max_length=100, null=True, blank=True) # a common external identifier of some kind
description = models.TextField(null=True, blank=True)
# .extra_attributes reverse lookup
# .modifications reverse lookup
default_behavior = models.SmallIntegerField(default=MODELED, choices=REGION_DEFAULT_MODELING_CHOICES)
geometry = models.JSONField(null=True, blank=True) # this will just store GeoJSON and then we'll combine into collections manually
model_area = models.ForeignKey(ModelArea, on_delete=models.CASCADE)
group = models.ForeignKey(RegionGroup, null=True, blank=True, on_delete=models.CASCADE) # there could be a reason to make it a many to many instead, but
# I can't think of a use case right now, and it'd require some PITA
# logic to tease apart specifications for regions in overlapping groups
supports_rainfall = models.BooleanField(default=False) # whether or not this region has any rainfall/dryland components
supports_irrigation = models.BooleanField(default=True) # whether or not this region has any irrigated components
serializer_fields = ("id", "name", "internal_id", "description", "geometry", "model_area", "group",
"supports_rainfall", "supports_irrigation", "multipliers", "default_behavior",
"MODELED", "FIXED", "REMOVED", "LINEAR_SCALED")
def __str__(self):
return "Area {}: Region {}".format(self.model_area.name, self.name)
class RegionMultipliers(models.Model):
region = models.OneToOneField(Region, on_delete=models.CASCADE, related_name="multipliers")
total_revenue = models.DecimalField(max_digits=10, decimal_places=8, null=True, blank=True)
direct_value_add = models.DecimalField(max_digits=10, decimal_places=8, null=True, blank=True)
total_value_add = models.DecimalField(max_digits=10, decimal_places=8, null=True, blank=True)
direct_jobs = models.DecimalField(max_digits=10, decimal_places=8, null=True, blank=True)
total_jobs = models.DecimalField(max_digits=10, decimal_places=8, null=True, blank=True)
class RegionExtra(models.Model):
"""
Extra custom attributes that can be set per region instance, available by filtering
`region.extra_attributes.filter(name == "{attribute_name}")`, for example.
"""
region = models.ForeignKey(Region, on_delete=models.CASCADE, related_name="extra_attributes")
name = models.CharField(max_length=255, null=False, blank=False)
value = models.TextField(null=True, blank=True)
data_type = models.CharField(max_length=5) # indicates the Python data type to cast it to if it's not a string
class Crop(models.Model):
"""
A single unit for individual crops - note that we need to pull crops by organization - the same crop could
exist for multiple organizations. We don't want to load them in for all organizations because then we have to
worry about if it means the same exact thing across organizations, and what do changes mean to each group, etc,
etc. Let's keep it a known, manageable level of complex and assign crops to organizations even if it means
duplicating crops between organizations.
"""
class Meta:
unique_together = ['crop_code', 'model_area']
indexes = [
models.Index(fields=("name",))
]
name = models.CharField(max_length=255, null=False, blank=False) # human readable crop name
crop_code = models.CharField(max_length=30, null=False, blank=False) # code used in the models (like ALFAL for Alfalfa)
model_area = models.ForeignKey(ModelArea, on_delete=models.CASCADE) # clear any crops for an org when deleted
def __str__(self):
return self.name
class CropGroup(models.Model):
"""
A unit to group individual crops together - note that we need to crop groups are also by organization and
the same crop group exist for multiple organizations
"""
name = models.CharField(max_length=255, null=False, blank=False)
crops = models.ManyToManyField(Crop) # Each crop can be in many groups
class RecordSet(models.Model):
class Meta:
abstract = True
"""
For storing the results of calibration parameters that come out of phase 1 of the model - we'll load a few sets
of calibrated parameters initially, but then provide a black box version of the calibration parameters. We can
then have behavior that tries a lookup for a calibration set, and if it doesn't exist, runs the calibration.
"""
record_model_name = "ModelItem"
years = models.TextField() # yes, text. We'll concatenate text as a year lookup
# prices = model
def as_data_frame(self, exclude_regions=None):
"""
Returns the data frame that needs to be run through the model itself
:param exclude_regions: list of region internal ids - regions in this list will not have their data
included in the output data frame
:return:
"""
# .values() makes a queryset into an iterable of dicts. Coerce that to a list of dicts
# and pass it to the pandas constructor.
# Django has a handy method to transform a queryset into a list of dicts,
# but we can't really use it because we need to retrieve foreign keys, and it
# can only retrieve either bare attributes or the ones we specify, so we'd
# need to either hardcode everything or run it twice and merge it. Easier
# to write our own, unfortunately. It's quite a bit slower than the Django though
# so maybe we can speed it up somehow. Maybe doing it as a raw SQL query and then
# dropping any excess fields would be better. Going to leave that for another
# day right now.
foreign_keys = ["region", "crop", "rainfall_set"]
record_model = globals()[self.record_model_name]
fields = [f.name for f in record_model._meta.get_fields()] # get all the fields for calibrated parameters
basic_fields = list(set(fields) - set(foreign_keys)) # remove the foreign keys - we'll process those separately
# reverse_name will exist for subclasses
data = getattr(self, self.reverse_name).all() # get all the records for this set
output = []
for record in data:
# if we were told to skip this region, don't add it - could also do this in pandas after conversion
if exclude_regions and record.region.internal_id in exclude_regions:
continue
output_dict = {}
for field in basic_fields: # apply the basic fields directly into a dictionary and coerce to floats
field_value = getattr(record, field)
output_dict[field] = float(field_value) if type(field_value) is decimal.Decimal else field_value
output_dict["i"] = record.crop.crop_code # but then grab the specific attributes of the foreign keys we wawnt
output_dict["g"] = record.region.internal_id
output.append(output_dict) # put the dict into the list so we can make a DF of it
return pandas.DataFrame(output) # construct a data frame and send it back
def to_csv(self, *args, **kwargs):
"""
Saves the set to a CSV file - all args are passed through to Pandas.to_csv, so it's
possible to have it return a CSV as a string by just calling to_csv()
:param args: waterspout_sort_columns is not compatible with waterspout_limited
:param kwargs:
:return:
"""
df = self.as_data_frame().sort_values(axis=0, by=["year", "g", "i"])
df = df.rename(columns={"g": "region", "i": "crop"})
if kwargs.pop("waterspout_sort_columns", False) is True:
# match the column output to how Spencer has it so we can compare
column_order = ("region", "crop", "year", "omegaland", "omegasupply", "omegalabor",
"omegaestablish", "omegacash", "omeganoncash", "omegatotal",
"xwater", "p", "y", "xland", "omegawater", "sigma", "theta",
"pimarginal", "rho", "betaland", "betawater", "betasupply",
"betalabor", "tau", "gamma", "delta", "xlandsc", "xwatersc",
"xdiffland", "xdifftotalland", "xdiffwater", "resource_flag")
df = df.reindex(columns=column_order)
if kwargs.pop("waterspout_limited", False) is True:
columns = settings.LIMITED_RESULTS_FIELDS
df = df[columns]
if "index" not in kwargs: # if the caller doesn't specify an option for pandas' index, set it to False explicitly so it doesn't export the index
kwargs["index"] = False
return df.to_csv(*args, **kwargs)
class InputDataSet(RecordSet):
model_area = models.ForeignKey(ModelArea, on_delete=models.CASCADE, related_name="input_data")
reverse_name = "input_data_set"
class CalibrationSet(RecordSet):
model_area = models.ForeignKey(ModelArea, on_delete=models.CASCADE, related_name="calibration_data")
record_model_name = "CalibratedParameter"
reverse_name = "calibration_set"
class RainfallSet(RecordSet):
model_area = models.ForeignKey(ModelArea, on_delete=models.CASCADE, related_name="rainfall_data")
reverse_name = "rainfall_set"
record_model_name = "RainfallParameter"
class ResultSet(RecordSet):
reverse_name = "result_set"
record_model_name = "Result"
model_run = models.ForeignKey("ModelRun", null=True, blank=True,
on_delete=models.CASCADE, related_name="results")
date_run = models.DateTimeField(default=django.utils.timezone.now, null=True, blank=True)
# store the dapper version that the model ran with - that way we can detect if an updated version might provide different results
dapper_version = models.CharField(max_length=20)
# in_calibration indicates whether or not the results have any negative profits
# or have otherwise fallen outside of calibrated values.
in_calibration = models.BooleanField(default=True)
# not using in_calibration_text for now. We'll have the web app figure out
# which records are negative profits and show a table if in_calibration is false
#in_calibration_text = models.TextField(null=True, blank=True)
infeasibilities_text = models.TextField(null=True, blank=True)
# infeasibilities reverse relation
def __str__(self):
return f"Results for Model Run {self.model_run.name} from Dapper {self.dapper_version} at {self.date_run}"
class ModelItem(models.Model):
"""
Fields that are allowed to be null are ones that aren't part of calibration, but instead may be set for final
results
"""
class Meta:
abstract = True
indexes = [
models.Index(fields=("year",))
]
crop = models.ForeignKey(Crop, on_delete=models.CASCADE)
region = models.ForeignKey(Region, on_delete=models.CASCADE)
year = models.IntegerField(null=True, blank=True) # inputs will have this, but calibrated items and results may not
p = models.DecimalField(max_digits=18, decimal_places=10)
y = models.DecimalField(max_digits=13, decimal_places=5)
xland = models.DecimalField(max_digits=18, decimal_places=10)
class InputModelItem(ModelItem):
class Meta:
abstract = True
omegaland = models.DecimalField(max_digits=10, decimal_places=1)
omegasupply = models.DecimalField(max_digits=10, decimal_places=1)
omegalabor = models.DecimalField(max_digits=10, decimal_places=1)
omegaestablish = models.DecimalField(max_digits=10, decimal_places=1, null=True, blank=True)
omegacash = models.DecimalField(max_digits=10, decimal_places=1, null=True, blank=True)
omeganoncash = models.DecimalField(max_digits=10, decimal_places=1, null=True, blank=True)
omegatotal = models.DecimalField(max_digits=10, decimal_places=1, null=True, blank=True)
xwater = models.DecimalField(max_digits=18, decimal_places=10)
class InputDataItem(InputModelItem):
class Meta:
unique_together = ['crop', 'region', 'year']
dataset = models.ForeignKey(InputDataSet, on_delete=models.CASCADE, related_name="input_data_set")
serializer_fields = ["crop", "region", "year", "omegaland",
"omegasupply", "omegalabor", "omegaestablish", "omegacash",
"omeganoncash", "omegatotal", "p", "y", "xland", "xwater"]
class CalibratedParameter(InputModelItem):
"""
Note that it's of class InputDataItem, which is of class ModelItem - ModelItems define the various input
parameters and results that we use for calibration inputs, calibrated
parameters, and model results
"""
class Meta:
unique_together = ['crop', 'region', 'year']
omegawater = models.DecimalField(max_digits=10, decimal_places=2)
pc = models.DecimalField(max_digits=10, decimal_places=3)
sigma = models.DecimalField(max_digits=5, decimal_places=4)
theta = models.DecimalField(max_digits=5, decimal_places=4)
pimarginal = models.DecimalField(max_digits=18, decimal_places=10)
#alphaland = models.DecimalField(max_digits=11, decimal_places=10, null=True, blank=True)
# alphawater = models.DecimalField(max_digits=11, decimal_places=10, null=True, blank=True)
# alphasupply = models.DecimalField(max_digits=11, decimal_places=10, null=True, blank=True)
# alphalabor = models.DecimalField(max_digits=11, decimal_places=10, null=True, blank=True)
rho = models.DecimalField(max_digits=15, decimal_places=10)
# lambdaland = models.DecimalField(max_digits=15, decimal_places=10, null=True, blank=True)
#lambdacrop = models.DecimalField(max_digits=15, decimal_places=10, null=True, blank=True)
betaland = models.DecimalField(max_digits=18, decimal_places=10)
betawater = models.DecimalField(max_digits=18, decimal_places=10)
betasupply = models.DecimalField(max_digits=18, decimal_places=10)
betalabor = models.DecimalField(max_digits=18, decimal_places=10)
tau = models.DecimalField(max_digits=18, decimal_places=10)
gamma = models.DecimalField(max_digits=18, decimal_places=10)
delta = models.DecimalField(max_digits=18, decimal_places=10)
#xlandcalib = models.DecimalField(max_digits=18, decimal_places=10, null=True, blank=True)
#xwatercalib = models.DecimalField(max_digits=18, decimal_places=10, null=True, blank=True)
#difflandpct = models.DecimalField(max_digits=12, decimal_places=10, null=True, blank=True)
#diffwaterpct = models.DecimalField(max_digits=12, decimal_places=10, null=True, blank=True)
# this item helps us check on the front end whether or not modifications will send profits negative.
# we'll store it here since it comes out of the calibration and will be per region/crop combination
price_yield_correction_factor = models.DecimalField(max_digits=6, decimal_places=3, default=1)
calibration_set = models.ForeignKey(CalibrationSet, on_delete=models.CASCADE, related_name="calibration_set")
serializer_fields = ["crop", "region", "price_yield_correction_factor"]
#["crop", "region", "year", "omegaland", "omegawater",
# "omegasupply", "omegalabor", "omegaestablish", "omegacash",
# "omeganoncash", "omegatotal", "p", "y", "price_yeild_correction_factor"]
class RainfallParameter(ModelItem):
class Meta:
unique_together = ['crop', 'region', 'year']
rainfall_set = models.ForeignKey(RainfallSet, on_delete=models.CASCADE, related_name="rainfall_set")
coef_intercept = models.DecimalField(max_digits=10, decimal_places=5)
twin = models.DecimalField(max_digits=10, decimal_places=5)
tspr = models.DecimalField(max_digits=10, decimal_places=5)
tsum = models.DecimalField(max_digits=10, decimal_places=5)
coef_tsum = models.DecimalField(max_digits=10, decimal_places=5)
coef_tspr = models.DecimalField(max_digits=10, decimal_places=5)
coef_twin = models.DecimalField(max_digits=10, decimal_places=5)
ptspr = models.DecimalField(max_digits=10, decimal_places=5)
ptwin = models.DecimalField(max_digits=10, decimal_places=5)
ptsum = models.DecimalField(max_digits=10, decimal_places=5)
coef_ptspr = models.DecimalField(max_digits=10, decimal_places=5)
coef_ptwin = models.DecimalField(max_digits=10, decimal_places=5)
coef_ptsum = models.DecimalField(max_digits=10, decimal_places=5)
coef_crop = models.DecimalField(max_digits=10, decimal_places=5)
class Result(ModelItem):
"""
Holds the results for a single region/crop
"""
omegawater = models.DecimalField(max_digits=10, decimal_places=2)
resource_flag = models.CharField(max_length=5, null=True, blank=True)
# we may be able to drop these fields later, but they help us while we're comparing to the original DAP and our validation
xlandsc = models.DecimalField(max_digits=18, decimal_places=10, null=True, blank=True)
xwatersc = models.DecimalField(max_digits=18, decimal_places=10, null=True, blank=True)
xdiffland = models.DecimalField(max_digits=18, decimal_places=10, null=True, blank=True)
xdifftotalland = models.DecimalField(max_digits=18, decimal_places=10, null=True, blank=True)
xdiffwater = models.DecimalField(max_digits=18, decimal_places=10, null=True, blank=True)
result_set = models.ForeignKey(ResultSet, on_delete=models.CASCADE, related_name="result_set")
net_revenue = models.DecimalField(max_digits=18, decimal_places=3, null=True, blank=True)
gross_revenue = models.DecimalField(max_digits=18, decimal_places=3, null=True, blank=True)
water_per_acre = models.DecimalField(max_digits=18, decimal_places=5, null=True, blank=True)
class RainfallResult(models.Model):
serializer_fields = ["region", "crop", "calc_yield", "gross_revenue", "xlandsc", "xwatersc"]
result_set = models.ForeignKey(ResultSet, on_delete=models.CASCADE, related_name="rainfall_result_set")
region = models.ForeignKey(Region, on_delete=models.CASCADE, related_name="rainfall_results")
crop = models.ForeignKey(Crop, on_delete=models.CASCADE, related_name="rainfall_results")
# yield is the only real result from the rainfall statistical model, so that's what we're storing, but we'll also
# want to store some of the same main results as the Result items so we can merge them
calc_yield = models.DecimalField(max_digits=18, decimal_places=3, null=True, blank=True)
gross_revenue = models.DecimalField(max_digits=18, decimal_places=3, null=True, blank=True)
# these aren't yet really outputs, but we need to include them for the viz to work correctly
xlandsc = models.DecimalField(max_digits=18, decimal_places=10, null=True, blank=True)
xwatersc = models.DecimalField(max_digits=18, decimal_places=10, null=True, blank=True)
class ModelRun(models.Model):
"""
The central object for configuring an individual run of the model - is related to modification objects from the
modification side.
"""
class Meta:
indexes = [
models.Index(fields=("ready", "running", "complete")),
models.Index(fields=("date_submitted",))
]
name = models.CharField(max_length=255)
description = models.TextField(null=True, blank=True)
ready = models.BooleanField(default=False, null=False) # marked after the web interface adds all modifications
running = models.BooleanField(default=False, null=False) # marked while in processing
complete = models.BooleanField(default=False, null=False) # tracks if the model has actually been run for this result yet
status_message = models.CharField(max_length=2048, default="", null=True, blank=True) # for status info or error messages
result_values = models.TextField(default="", null=True, blank=True)
log_data = models.TextField(null=True, blank=True) # we'll store log outputs from the model run here.
date_submitted = models.DateTimeField(default=django.utils.timezone.now, null=True, blank=True)
date_completed = models.DateTimeField(null=True, blank=True)
# which model run is the base, unmodified version? Useful for data viz
base_model_run = models.ForeignKey("ModelRun", null=True, blank=True, on_delete=models.DO_NOTHING)
is_base = models.BooleanField(default=False) # is this a base model run (True), or a normal model run (False)
# model_area relation is through calibration_set
calibration_set = models.ForeignKey(CalibrationSet, on_delete=models.CASCADE, related_name="model_runs")
calibrated_parameters_text = models.TextField(null=True, blank=True) # we'll put a snapshot of the calibration parameters in here, probably
# as a CSV. This way, if people eidt the calibration data for future runs,
# we still know what inputs ran this version of the model.
rainfall_set = models.ForeignKey(RainfallSet, on_delete=models.CASCADE, related_name="model_runs", null=True, blank=True)
user = models.ForeignKey(User, on_delete=models.DO_NOTHING, related_name="model_runs")
organization = models.ForeignKey(Organization, on_delete=models.CASCADE, related_name="model_runs")
# region_modifications - back-reference from related content
# crop_modifications - back-reference from related content
serializer_fields = ['id', 'name', 'description', 'ready', 'running', 'complete', 'status_message',
'date_submitted', 'date_completed', "calibration_set", "rainfall_set",
"user_id", "organization", "base_model_run_id", "is_base",
"land_modifications_average", "water_modifications_average",
"price_modifications_average", "yield_modifications_average"]
def __str__(self):
return f"Model Run: {self.name}"
def as_dict(self):
return {field: getattr(self, field) for field in self.serializer_fields}
def as_json(self):
# using the Django serializer class handles datetimes, etc properly
return json.dumps(self.as_dict(), cls=django.core.serializers.json.DjangoJSONEncoder)
def _get_modification_average(self, queryset_name, property_name):
mods = list(getattr(self, queryset_name).all())
num_items = len(mods)
if num_items == 0:
return 0
return float(sum([getattr(mod, property_name) for mod in mods]))/num_items
@property
def land_modifications_average(self):
return self._get_modification_average("region_modifications", "land_proportion")
@property
def water_modifications_average(self):
return self._get_modification_average("region_modifications", "water_proportion")
@property
def price_modifications_average(self):
return self._get_modification_average("crop_modifications", "price_proportion")
@property
def yield_modifications_average(self):
return self._get_modification_average("crop_modifications", "yield_proportion")
@property
def scenario_df(self):
df = self.get_df(self.calibration_set)
# save the calibration data with any modifications as a text string to the DB - will exclude scenario
# level constraints though!
# saving the text version hasn't helped us and slows things down. Stop doing that for now
#self.calibrated_parameters_text = df.to_csv() # if we don't provide a path to to_csv, it returns a string
#self.save()
return df
@property
def rainfall_df(self):
if self.rainfall_set:
return self.get_df(self.rainfall_set)
else:
return None
def get_df(self, base_model):
"""
Given the currently attached modifications, etc, returns a complete calibration DF
:return:
"""
# we'll not send static or removed regions through the model, so drop them here
# for removed regions, this is all we need to do - for static regions, we'll
# pull their base case results later when we process results
exclude_ids = self.get_regions_for_behaviors([Region.FIXED, Region.REMOVED])
# pull initial calibration dataset as it is
df = base_model.as_data_frame(exclude_regions=exclude_ids)
# do any overrides or changes from the modifications
return df
def get_regions_for_behaviors(self, behaviors):
"""
Given one or more behaviors in an interable, returns the region IDs that the behaviors apply to as a list.
This isn't straightforward, because we need to see if the region modification applies a behavior, then
also check all the regions that *didn't* have a modification in the current model run (which will have
the behavior specified there) for their default behaviors
:param behavior:
:return:
"""
# compose the query portions for each section here in one loop
region_filter_includes = Q()
default_behavior_includes = Q()
for behavior in behaviors:
region_filter_includes = region_filter_includes | Q(modeled_type=behavior)
default_behavior_includes = default_behavior_includes | Q(default_behavior=behavior)
# get the regions to explicitly include from modifications
modifications = self.region_modifications.filter(region_filter_includes)
if modifications:
ids = [mod.region.internal_id for mod in modifications]
else:
ids = []
if self.calibration_set.model_area.preferences.use_default_region_behaviors:
# figure out which regions didn't have modifications in the current model run - we'll pull the defaults for these
regions_to_use_defaults_from = self.calibration_set.model_area.region_set.filter(default_behavior_includes)\
.difference(Region.objects.filter(modifications__in=self.region_modifications.all()))
if regions_to_use_defaults_from:
ids.extend([region.internal_id for region in regions_to_use_defaults_from])
return ids
def attach_modifications(self, scenario):
land_modifications = {}
water_modifications = {}
rainfall_modifications = {}
region_modifications = self.region_modifications.filter(region__isnull=False)
for modification in region_modifications: # get all the nondefault modifications
land_modifications[modification.region.internal_id] = float(modification.land_proportion)
if modification.region.supports_irrigation:
water_modifications[modification.region.internal_id] = float(modification.water_proportion)
if modification.region.supports_rainfall:
rainfall_modifications[modification.region.internal_id] = float(modification.rainfall_proportion)
default_region_modification = self.region_modifications.get(region__isnull=True)
scenario.perform_adjustment("land", land_modifications, default=float(default_region_modification.land_proportion))
# attach modifications for irrigation and rainfall depending on what the model area supports
if self.calibration_set.model_area.supports_irrigation:
scenario.perform_adjustment("water", water_modifications, default=float(default_region_modification.water_proportion))
if self.calibration_set.model_area.supports_rainfall:
scenario.perform_adjustment("rainfall", rainfall_modifications, default=float(default_region_modification.rainfall_proportion))
region_linked_key = "region_linked"
# now attach the crop modifications - start by loading the data into a dict
price_modifications = {region_linked_key: []}
yield_modifications = {region_linked_key: []}
crop_modifications = self.crop_modifications.filter(crop__isnull=False)
for modification in crop_modifications: # get all the nondefault modifications
crop_code = modification.crop.crop_code
if modification.region is None: # if it's not region-linked
price_modifications[crop_code] = float(modification.price_proportion)
yield_modifications[crop_code] = float(modification.yield_proportion)
region_id = None
else: # if it is region-linked
region_id = modification.region.internal_id
# create dictionaries for both price and yield constraints that include
# the region ID, the crop code, and the value
price_modifications["region_linked"].append({
"region": region_id,
"crop": crop_code,
"value": float(modification.price_proportion),
})
yield_modifications["region_linked"].append({
"region": region_id,
"crop": crop_code,
"value": float(modification.yield_proportion),
})
max_crop_area_constraint = modification.max_land_area_proportion
if max_crop_area_constraint and modification.min_land_area_proportion and not max_crop_area_constraint > modification.min_land_area_proportion:
# if the max and the min are both defined and the max is less than the min, skip adding the max -
# this is because stormchaser uses a value of -1 as its max value to indicate no upper limit
max_crop_area_constraint = None
# we can always add it, and it's OK if they're both None - that'll get checked later
scenario.add_crop_area_constraint(crop_code=modification.crop.crop_code,
min_proportion=modification.min_land_area_proportion,
max_proportion=max_crop_area_constraint,
region=region_id)
default_crop_modification = self.crop_modifications.get(crop__isnull=True)
# then pass those dicts to the scenario code regardless if there are items (so defaults get set)
scenario.perform_adjustment("price", price_modifications, default=float(default_crop_modification.price_proportion))
scenario.perform_adjustment("yield", yield_modifications, default=float(default_crop_modification.yield_proportion))
def run(self, csv_output=None, worst_case_csv_output=None):
# initially, we won't support calibrating the data here - we'll
# just use an initial calibration set and then make our modifications
# before running the scenarios
#calib = calibration.ModelCalibration(run.calbration_df)
#calib.calibrate()
self.running = True
self.save() # mark it as running and save it so the API updates the status
try:
scenario_runner = scenarios.Scenario(calibration_df=self.scenario_df, rainfall_df=self.rainfall_df)
self.attach_modifications(scenario=scenario_runner)
results = scenario_runner.run()
if csv_output is not None:
results.to_csv(csv_output)
# add the worst case scenario values to the same data frame
results = self.add_worst_case_and_linear_scaled_values(results)
if worst_case_csv_output is not None:
results.to_csv(worst_case_csv_output)
# before loading results, make sure we weren't deleted in the app between starting the run and now
if not ModelRun.objects.filter(id=self.id).exists():
return
# now we need to load the resulting df back into the DB
result_set = self.load_records(results_df=results, rainfall_df=scenario_runner.rainfall_df)
self.load_infeasibilities(scenario_runner, result_set)
self.complete = True
log.info("Model run complete")
finally: # make sure to mark it as not running regardless of its status or if it crashes
self.running = False
self.save()
def add_worst_case_and_linear_scaled_values(self, results):
results = worst_case.default_worst_case_scaling_function(results)
linear_scaled_regions = self.get_regions_for_behaviors([Region.LINEAR_SCALED,])
# just straight up overwrite the values for revenue, land, and water for linear scaled regions using the worst case values (linear scaled)
for region in linear_scaled_regions:
results.loc[(results.g == region), "gross_revenue"] = results.loc[(results.g == region), "worst_case_gross_revenue"]
results.loc[(results.g == region), "xlandsc"] = results.loc[(results.g == region), "worst_case_land"]
results.loc[(results.g == region), "xwatersc"] = results.loc[(results.g == region), "worst_case_water"]
results.loc[(results.g == region), "net_revenue"] = 0 # null out the net revenue field since it's invalid now.
return results
def load_records(self, results_df, rainfall_df=None):
"""
Given a set of model results, loads the results to the database
:param results_df:
:param model_run:
:return:
"""
log.info(f"Loading results for model run {self.id}")
result_set = ResultSet(model_run=self, dapper_version=get_dapper_version())
result_set.save()
# load the PMP results first
self._load_df(results_df=results_df, result_set=result_set, record_model=Result)
# now load the rainfall data if it applies
if rainfall_df is not None:
self._load_df(results_df=rainfall_df, result_set=result_set, record_model=RainfallResult)
return result_set
def _load_df(self, results_df, result_set, record_model=Result):
try:
for record in results_df.itertuples():
# get the first tuple's fields, then exit the loop
# this should be faster than retrieving it every time in the next loop, but we need to do it once
fields = list(set(record._fields) - set(["id", "g", "i", "calibration_set"]))
break
for record in results_df.itertuples(): # returns named tuples
result = record_model(result_set=result_set)
result.crop = Crop.objects.get(crop_code=record.i, model_area=self.calibration_set.model_area)
result.region = Region.objects.get(internal_id=record.g, model_area=self.calibration_set.model_area)
for column in fields: # _fields isn't private - it's just preventing conflicts - see namedtuple docs
value = getattr(record, column)
if value is not None and type(value) is not str and numpy.isnan(value): # if we got NaN (such as with an infeasibility) - filter out None values because they make numpy.isnan fail
value = None # then we need to skip it or it'll bork the whole table (seriously)
setattr(result, column, value)
if not result.net_revenue or result.net_revenue < 0: # if any record has negative net revenues, we're out of bounds on calibration - mark it
result_set.in_calibration = False
result.save()
if result_set.in_calibration is False: # if we changed the in_calibration value, save the result set - we check this here so we only trigger the save once
result_set.save()
return result_set
except:
result_set.delete() # clean up if we fail while loading data
raise
def load_infeasibilities(self, scenario, result_set):
log.debug("Assessing infeasibilities")
for infeasibility in scenario.infeasibilities:
Infeasibility.objects.create(result_set=result_set,
region=Region.objects.get(internal_id=infeasibility.region, model_area=self.calibration_set.model_area),
year=infeasibility.timeframe,
description=infeasibility.description
)
total_infeasibilities = len(scenario.infeasibilities)
crops = {}
# now let's see if there are any crops that are common to the infeasibilities
#if total_infeasibilities > 2: # if we have more than a handful, we'll assess which crops are common
for infeasibility in scenario.infeasibilities:
infeasible_region_results = Result.objects.filter(result_set=result_set,
region__internal_id=infeasibility.region,
year=infeasibility.timeframe)
for result in infeasible_region_results:
crop = result.crop.crop_code
if crop in crops:
crops[crop] += 1
else:
crops[crop] = 1
# ideally we'd want to key this by name so that we can show the name here
if len(crops.keys()) > 0:
sorted_by_appearance = {k:v for k,v in sorted(crops.items(), key=lambda item: item[1], reverse=True)}
infeasibility_items = ["{} ({})".format(crop, value) for crop, value in sorted_by_appearance.items()]
self.infeasibilities_text = ", ".join(infeasibility_items)
class Infeasibility(models.Model):
result_set = models.ForeignKey(ResultSet, on_delete=models.CASCADE, related_name="infeasibilities")
year = models.SmallIntegerField()
region = models.ForeignKey(Region, null=True, on_delete=models.SET_NULL, related_name="infeasibilities")
description = models.TextField()
class RegionModification(models.Model):
"""
A modification on a region to use in a model run. We'll need to have the model run build a new pandas data frame
from these based on the code inputs and the model adjustments
"""
class Meta:
unique_together = ['model_run', 'region']
# we have two nullable foreign keys here. If both are new, then the rule applies to the whole model area as the default.
# if only one is active, then it applies to either the region, or the group (and then we need something that applies
# it to the individual regions). It's possible that the group->individual application will occur in the JS because
# we'll want to display it all in a map, but we might want to do it here so that API calls can use the groups too
region = models.ForeignKey(Region,
on_delete=models.CASCADE,
related_name="modifications",
null=True, blank=True)
region_group = models.ForeignKey(RegionGroup,
on_delete=models.CASCADE,
related_name="modifications",
null=True, blank=True)
water_proportion = models.FloatField(default=1.0, blank=True) # the amount, relative to base values, to provide
rainfall_proportion = models.FloatField(default=1.0, blank=True) # the amount, relative to base values, to provide
land_proportion = models.FloatField(default=1.0, blank=True)
# extra flags on regions
modeled_type = models.SmallIntegerField(default=Region.MODELED, choices=Region.REGION_DEFAULT_MODELING_CHOICES)
model_run = models.ForeignKey(ModelRun, blank=True, on_delete=models.CASCADE, related_name="region_modifications")
serializer_fields = ["id", "region", "region_group", "water_proportion", "land_proportion", "rainfall_proportion",
"modeled_type"]
class CropModification(models.Model):
"""
A modification on a crop to use in a model run. We'll need to have the model run build a new pandas data frame
from these based on the code inputs and the model adjustments
"""
class Meta:
unique_together = ['model_run', 'crop', 'region']
serializer_fields = ["id", "crop", "crop_group", "price_proportion", "yield_proportion",
"min_land_area_proportion", "max_land_area_proportion", "region"]
crop = models.ForeignKey(Crop, on_delete=models.CASCADE, related_name="modifications",
null=True, blank=True)
region = models.ForeignKey(Region, on_delete=models.CASCADE, related_name="crop_modifications",
null=True, blank=True) # we'll be allowing region-tied crop modifications in a future update - as of 2021/March/02, there is no logic for handling this value yet - it'll all be null and won't go into the solver anywhere
crop_group = models.ForeignKey(CropGroup, on_delete=models.CASCADE, related_name="modifications",
null=True, blank=True)
price_proportion = models.FloatField(default=1.0, blank=True) # the amount, relative to base values, to provide
yield_proportion = models.FloatField(default=1.0, blank=True) # the amount, relative to base values, to provide
min_land_area_proportion = models.FloatField(null=True, blank=True) # the amount, relative to base values, to provide
max_land_area_proportion = models.FloatField(null=True, blank=True) # the amount, relative to base values, to provide
model_run = models.ForeignKey(ModelRun, null=True, blank=True, on_delete=models.CASCADE, related_name="crop_modifications")
class HelpDocument(models.Model):
"""
We'll store help documents in the DB as well so that they can
be pulled into the app via the API - we can also publish them
elswhere if we'd like - this is ultimately just a simple article
system.
We'll plan to load these from specific articles in the Sphinx
documentation
"""
title = models.CharField(max_length=2048)
author = models.ForeignKey(User, on_delete=models.DO_NOTHING)
slug = models.CharField(max_length=64)
summary = models.TextField()
body = models.TextField()
| [
1,
1053,
12183,
13,
5215,
9637,
1627,
13,
5215,
13677,
13,
5215,
4390,
13,
13,
5215,
12655,
13,
13,
5215,
9557,
13,
3166,
9557,
29889,
2585,
1053,
4733,
29871,
396,
591,
29915,
276,
2675,
304,
1737,
397,
5364,
445,
697,
448,
1795,
451,
817,
372,
29892,
541,
1033,
1207,
777,
2712,
16588,
261,
13,
3166,
9557,
29889,
2585,
29889,
9794,
1053,
660,
13,
3166,
9557,
29889,
21570,
29889,
5150,
29889,
9794,
1053,
6431,
13,
3166,
9557,
29889,
21570,
29889,
5150,
1053,
679,
29918,
1792,
29918,
4299,
13,
2659,
353,
679,
29918,
1792,
29918,
4299,
580,
29871,
396,
4529,
1404,
491,
445,
1158,
3265,
1135,
1513,
1053,
448,
872,
571,
363,
278,
5434,
13,
13,
3166,
8372,
713,
29889,
12759,
7582,
29879,
1053,
3566,
29918,
17858,
13,
3166,
9557,
29889,
2585,
29889,
9794,
29889,
4530,
1338,
1053,
1400,
29918,
7620,
13,
3166,
9557,
29889,
13369,
1053,
19870,
13,
13,
13,
3166,
399,
10412,
29886,
449,
1053,
6055,
13,
13,
5215,
11701,
13,
3166,
360,
23239,
1053,
21846,
29892,
679,
29918,
3259,
408,
679,
29918,
29881,
23239,
29918,
3259,
29892,
17322,
29918,
4878,
13,
13,
1188,
353,
12183,
29889,
657,
16363,
703,
29893,
10412,
29886,
449,
29889,
9794,
1159,
13,
13,
13,
1990,
12545,
7249,
3073,
29898,
9794,
29889,
15778,
1125,
13,
12,
15945,
29908,
13,
12,
12,
535,
369,
1372,
9657,
29879,
304,
4663,
6031,
373,
4078,
322,
29436,
4663,
304,
9657,
29879,
13,
12,
12,
265,
2254,
13,
12,
15945,
29908,
13,
13,
12,
1753,
679,
29918,
15287,
29918,
1767,
29898,
1311,
29892,
995,
1125,
13,
12,
12,
2457,
4390,
29889,
29881,
17204,
29898,
1767,
29897,
13,
13,
12,
1753,
515,
29918,
2585,
29918,
1767,
29898,
1311,
29892,
995,
29892,
4603,
29892,
3957,
1125,
13,
12,
12,
2457,
4390,
29889,
18132,
29898,
1767,
29897,
13,
13,
13,
1990,
4911,
13909,
29898,
9794,
29889,
3195,
1125,
13,
12,
15945,
29908,
13,
12,
12,
9496,
1711,
925,
363,
1404,
6055,
13,
12,
15945,
29908,
13,
13,
12,
1792,
353,
4733,
29889,
6716,
1762,
6716,
3073,
29898,
2659,
29892,
4475,
29918,
978,
543,
10185,
613,
373,
29918,
8143,
29922,
9794,
29889,
29907,
3289,
5454,
2287,
29897,
13,
13,
12,
29918,
15550,
3950,
29918,
9621,
353,
6796,
333,
613,
376,
1792,
613,
376,
4294,
29918,
6388,
2133,
29918,
4299,
29918,
3389,
29879,
613,
376,
4294,
29918,
6388,
2133,
29918,
4299,
29918,
3389,
29879,
29918,
10154,
12632,
613,
13,
12,
462,
418,
376,
1145,
344,
29918,
24051,
613,
376,
1145,
344,
29918,
24051,
29918,
10154,
12632,
3108,
13,
12,
29937,
6996,
6055,
13,
12,
4294,
29918,
6388,
2133,
29918,
4299,
29918,
3389,
29879,
353,
4733,
29889,
18146,
3073,
29898,
4381,
29922,
5574,
29897,
13,
12,
4294,
29918,
6388,
2133,
29918,
4299,
29918,
3389,
29879,
29918,
10154,
12632,
353,
376,
2059,
2322,
29892,
278,
2280,
3697,
599,
1904,
6057,
515,
2629,
596,
13013,
29908,
320,
13,
12,
462,
462,
539,
376,
322,
4076,
366,
278,
2984,
304,
5382,
6275,
1510,
871,
596,
1904,
6057,
1213,
320,
13,
12,
462,
462,
539,
376,
910,
4444,
3620,
393,
6030,
577,
393,
29892,
491,
2322,
29892,
366,
871,
1074,
1904,
6057,
29908,
320,
13,
12,
462,
462,
539,
376,
393,
366,
2825,
7535,
322,
769,
366,
508,
5382,
6275,
1735,
278,
18028,
304,
29908,
320,
13,
12,
462,
462,
539,
376,
1074,
599,
1904,
6057,
297,
596,
13013,
1213,
13,
13,
12,
1145,
344,
29918,
24051,
353,
4733,
29889,
18146,
3073,
29898,
4381,
29922,
8824,
29897,
13,
12,
1145,
344,
29918,
24051,
29918,
10154,
12632,
353,
376,
11403,
3109,
29250,
297,
6131,
304,
1074,
901,
848,
373,
4315,
472,
278,
1021,
931,
29908,
13,
13,
13,
29937,
731,
701,
278,
7182,
2414,
1536,
393,
679,
19799,
1156,
263,
1404,
338,
2825,
577,
393,
14332,
756,
263,
1404,
10185,
13,
29992,
13556,
2147,
29898,
2490,
29918,
7620,
29892,
10004,
29922,
2659,
29897,
13,
1753,
1653,
29918,
1792,
29918,
10185,
29898,
15452,
29892,
2777,
29892,
2825,
29892,
3579,
19290,
1125,
13,
12,
361,
2825,
29901,
13,
12,
12,
1482,
29918,
10185,
353,
4911,
13909,
29889,
12650,
29889,
3258,
29898,
1792,
29922,
8758,
29897,
13,
12,
12,
16645,
29918,
17858,
703,
3167,
29918,
1792,
10185,
613,
2777,
29892,
716,
29918,
10185,
29897,
13,
13,
13,
29992,
13556,
2147,
29898,
2490,
29918,
7620,
29892,
10004,
29922,
2659,
29897,
13,
1753,
4078,
29918,
1792,
29918,
10185,
29898,
15452,
29892,
2777,
29892,
3579,
19290,
1125,
13,
12,
8758,
29889,
10185,
29889,
7620,
580,
13,
13,
13,
1990,
9205,
2133,
29898,
9794,
29889,
3195,
1125,
13,
12,
15945,
29908,
13,
12,
12,
23036,
445,
2280,
338,
8688,
304,
2304,
2999,
4733,
29892,
10075,
297,
278,
1021,
2777,
29892,
1207,
1556,
2712,
13,
12,
12,
915,
260,
583,
304,
385,
376,
6388,
2133,
29908,
310,
777,
2924,
448,
591,
29915,
645,
3160,
4160,
297,
278,
13013,
322,
564,
3881,
11239,
13,
12,
12,
11316,
4160,
2629,
278,
13013,
29889,
13,
13,
12,
12,
4806,
1033,
505,
1754,
445,
263,
19481,
310,
278,
6431,
1203,
29892,
541,
769,
11837,
21702,
1122,
451,
664,
5149,
29889,
13,
12,
12,
3379,
1479,
591,
29915,
645,
925,
13,
12,
15945,
29908,
13,
12,
978,
353,
4733,
29889,
27890,
29898,
3317,
29918,
2848,
29922,
29906,
29945,
29945,
29892,
1870,
29922,
8824,
29892,
9654,
29922,
8824,
29897,
13,
13,
12,
29937,
14402,
29901,
910,
9273,
29915,
29873,
2758,
1870,
29879,
470,
1999,
1331,
297,
278,
5434,
13,
12,
2972,
353,
4733,
29889,
6716,
1762,
6716,
3073,
29898,
4782,
29892,
373,
29918,
8143,
29922,
9794,
29889,
3970,
29918,
12256,
29950,
4214,
29892,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
13,
12,
1753,
756,
29918,
14242,
29898,
1311,
29892,
1404,
1125,
13,
12,
12,
2457,
1583,
29889,
2972,
297,
1404,
29889,
13155,
29889,
497,
580,
29871,
396,
5852,
565,
445,
2318,
338,
297,
393,
731,
29892,
6467,
29892,
7700,
13,
13,
12,
1753,
788,
29918,
14242,
29898,
1311,
29892,
1404,
1125,
13,
12,
12,
1311,
29889,
2972,
29889,
1792,
29918,
842,
29889,
1202,
29898,
1792,
29897,
13,
12,
12,
1311,
29889,
2972,
29889,
7620,
580,
13,
13,
12,
1753,
4770,
710,
12035,
1311,
1125,
13,
12,
12,
2457,
285,
29908,
27356,
2133,
29901,
426,
1311,
29889,
978,
5038,
13,
13,
13,
1990,
8125,
13799,
29898,
9794,
29889,
3195,
1125,
13,
12,
15945,
29908,
13,
12,
12,
4013,
723,
367,
1554,
763,
376,
1576,
360,
2554,
613,
470,
376,
29956,
7321,
29908,
448,
11149,
29892,
445,
674,
367,
697,
304,
697,
411,
25700,
29892,
13,
12,
12,
4187,
925,
297,
1206,
591,
864,
304,
367,
2221,
304,
7246,
2999,
4733,
363,
385,
13013,
297,
278,
5434,
29892,
591,
29915,
645,
3787,
372,
13,
12,
12,
1366,
982,
29889,
13,
12,
15945,
29908,
13,
12,
6388,
2133,
353,
4733,
29889,
27755,
2558,
29898,
27356,
2133,
29892,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29892,
373,
29918,
8143,
29922,
9794,
29889,
10490,
29918,
10074,
29892,
4475,
29918,
978,
543,
4299,
29918,
598,
294,
1159,
13,
12,
978,
353,
4733,
29889,
27890,
29898,
3317,
29918,
2848,
29922,
29906,
29945,
29945,
29892,
5412,
29922,
5574,
29897,
13,
13,
12,
1272,
29918,
12083,
353,
4733,
29889,
27890,
29898,
3317,
29918,
2848,
29922,
29906,
29945,
29945,
29892,
2322,
543,
29881,
481,
1159,
29871,
396,
607,
4138,
1258,
278,
848,
363,
445,
2041,
515,
2645,
8363,
29973,
1815,
13,
12,
12,
12,
12,
12,
12,
12,
12,
12,
12,
12,
12,
12,
29937,
1371,
502,
565,
591,
864,
304,
2767,
777,
848,
2678,
13,
13,
12,
8216,
353,
4733,
29889,
15778,
29898,
4304,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
12,
29937,
5821,
2063,
11837,
29871,
29896,
304,
29871,
29896,
13,
13,
12,
1958,
29918,
5064,
29918,
5066,
4279,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29946,
29892,
13677,
29918,
29886,
6048,
29922,
29906,
29897,
13,
12,
1958,
29918,
5064,
29918,
5426,
4279,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29945,
29892,
13677,
29918,
29886,
6048,
29922,
29906,
29897,
13,
12,
1958,
29918,
4381,
29918,
2502,
290,
353,
4733,
29889,
12636,
497,
7798,
3073,
580,
13,
13,
12,
29937,
1438,
1819,
4529,
278,
20238,
3625,
746,
4969,
263,
1904,
1065,
297,
445,
5120,
13,
12,
1195,
29918,
13405,
353,
4733,
29889,
9135,
3321,
12636,
497,
7798,
3073,
29898,
4381,
29922,
29945,
29900,
29897,
13,
12,
3317,
29918,
13405,
353,
4733,
29889,
9135,
3321,
12636,
497,
7798,
3073,
29898,
4381,
29922,
29896,
29906,
29900,
29897,
13,
12,
1195,
29918,
6038,
11950,
353,
4733,
29889,
9135,
3321,
12636,
497,
7798,
3073,
29898,
4381,
29922,
29896,
29900,
29897,
13,
12,
3317,
29918,
6038,
11950,
353,
4733,
29889,
9135,
3321,
12636,
497,
7798,
3073,
29898,
4381,
29922,
29906,
29900,
29900,
29897,
13,
12,
1195,
29918,
1049,
353,
4733,
29889,
9135,
3321,
12636,
497,
7798,
3073,
29898,
4381,
29922,
29945,
29900,
29897,
13,
12,
3317,
29918,
1049,
353,
4733,
29889,
9135,
3321,
12636,
497,
7798,
3073,
29898,
4381,
29922,
29896,
29900,
29900,
29897,
13,
12,
1195,
29918,
9175,
353,
4733,
29889,
9135,
3321,
12636,
497,
7798,
3073,
29898,
4381,
29922,
29947,
29900,
29897,
13,
12,
3317,
29918,
9175,
353,
4733,
29889,
9135,
3321,
12636,
497,
7798,
3073,
29898,
4381,
29922,
29896,
29906,
29900,
29897,
13,
12,
1195,
29918,
29891,
969,
353,
4733,
29889,
9135,
3321,
12636,
497,
7798,
3073,
29898,
4381,
29922,
29947,
29900,
29897,
13,
12,
3317,
29918,
29891,
969,
353,
4733,
29889,
9135,
3321,
12636,
497,
7798,
3073,
29898,
4381,
29922,
29896,
29906,
29900,
29897,
13,
12,
1195,
29918,
29883,
1336,
29918,
6203,
353,
4733,
29889,
9135,
3321,
12636,
497,
7798,
3073,
29898,
4381,
29922,
29900,
29897,
13,
12,
3317,
29918,
29883,
1336,
29918,
6203,
353,
4733,
29889,
9135,
3321,
12636,
497,
7798,
3073,
29898,
4381,
29922,
29906,
29900,
29900,
29897,
13,
13,
12,
3396,
29918,
8477,
29918,
3488,
29918,
3051,
353,
4733,
29889,
15778,
29898,
4304,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
13,
12,
14394,
29918,
5113,
29918,
978,
353,
4733,
29889,
27890,
29898,
3317,
29918,
2848,
29922,
29896,
29900,
29900,
29892,
2322,
543,
23397,
1159,
13,
13,
12,
1753,
4770,
710,
12035,
1311,
1125,
13,
12,
12,
2457,
1583,
29889,
978,
13,
13,
12,
29992,
6799,
13,
12,
1753,
1904,
29918,
4381,
29879,
29898,
1311,
1125,
13,
12,
12,
29937,
3387,
3907,
372,
263,
9657,
577,
393,
372,
5304,
714,
310,
278,
7797,
3950,
27831,
13,
12,
12,
2457,
426,
13,
12,
12,
12,
29908,
1195,
29918,
13405,
1115,
1583,
29889,
1195,
29918,
13405,
29892,
13,
12,
12,
12,
29908,
3317,
29918,
13405,
1115,
1583,
29889,
3317,
29918,
13405,
29892,
13,
12,
12,
12,
29908,
1195,
29918,
6038,
11950,
1115,
1583,
29889,
1195,
29918,
6038,
11950,
29892,
13,
12,
12,
12,
29908,
3317,
29918,
6038,
11950,
1115,
1583,
29889,
3317,
29918,
6038,
11950,
29892,
13,
12,
12,
12,
29908,
1195,
29918,
1049,
1115,
1583,
29889,
1195,
29918,
1049,
29892,
13,
12,
12,
12,
29908,
3317,
29918,
1049,
1115,
1583,
29889,
3317,
29918,
1049,
29892,
13,
12,
12,
12,
29908,
1195,
29918,
9175,
1115,
1583,
29889,
1195,
29918,
9175,
29892,
13,
12,
12,
12,
29908,
3317,
29918,
9175,
1115,
1583,
29889,
3317,
29918,
9175,
29892,
13,
12,
12,
12,
29908,
1195,
29918,
29891,
969,
1115,
1583,
29889,
1195,
29918,
29891,
969,
29892,
13,
12,
12,
12,
29908,
3317,
29918,
29891,
969,
1115,
1583,
29889,
3317,
29918,
29891,
969,
29892,
13,
12,
12,
12,
29908,
1195,
29918,
29883,
1336,
29918,
6203,
1115,
1583,
29889,
1195,
29918,
29883,
1336,
29918,
6203,
29892,
13,
12,
12,
12,
29908,
3317,
29918,
29883,
1336,
29918,
6203,
1115,
1583,
29889,
3317,
29918,
29883,
1336,
29918,
6203,
29892,
13,
12,
12,
29913,
13,
13,
12,
29937,
560,
6288,
1907,
775,
19952,
714,
1363,
591,
1016,
29915,
29873,
1065,
1208,
26218,
13,
12,
29937,
20278,
1492,
1286,
13,
12,
29937,
29992,
6799,
13,
12,
29937,
1753,
560,
6288,
1907,
29918,
294,
29918,
8977,
29898,
1311,
1125,
13,
12,
29937,
12,
2457,
426,
667,
29889,
29883,
1336,
29889,
29883,
1336,
29918,
401,
29901,
5785,
29898,
667,
29889,
1767,
29897,
363,
2944,
297,
1583,
29889,
295,
6288,
1907,
29913,
13,
13,
12,
29992,
6799,
13,
12,
1753,
11286,
29918,
6038,
11950,
29898,
1311,
1125,
13,
12,
12,
2457,
1583,
29889,
12803,
29918,
842,
29889,
4572,
29898,
5924,
29879,
29918,
6038,
11950,
29922,
5574,
467,
9933,
580,
13,
12,
29992,
6799,
13,
12,
1753,
11286,
29918,
381,
8966,
362,
29898,
1311,
1125,
13,
12,
12,
2457,
1583,
29889,
12803,
29918,
842,
29889,
4572,
29898,
5924,
29879,
29918,
381,
8966,
362,
29922,
5574,
467,
9933,
580,
13,
13,
12,
29992,
6799,
13,
12,
1753,
3239,
29918,
401,
29898,
1311,
1125,
13,
12,
12,
29937,
445,
338,
263,
2586,
310,
263,
15833,
29892,
541,
591,
29915,
276,
773,
278,
4138,
13,
12,
12,
29937,
2983,
408,
263,
770,
304,
731,
278,
3239,
29879,
5382,
6275,
13,
12,
12,
2457,
1583,
29889,
1272,
29918,
12083,
13,
13,
13,
1990,
8125,
13799,
22173,
29898,
9794,
29889,
3195,
1125,
13,
12,
15945,
29908,
13,
12,
12,
4013,
1904,
338,
577,
393,
591,
508,
2318,
5821,
2063,
322,
5680,
363,
1904,
10161,
13,
12,
12,
392,
3013,
963,
19098,
13,
12,
15945,
29908,
13,
13,
12,
29937,
881,
599,
4160,
310,
445,
1904,
4038,
367,
2221,
304,
1074,
278,
1904,
6057,
310,
599,
916,
4160,
29973,
13,
12,
12366,
29918,
4299,
29918,
3389,
29879,
353,
4733,
29889,
18146,
3073,
29898,
4381,
29922,
5574,
29897,
13,
13,
12,
29937,
5557,
4160,
515,
27668,
8666,
29914,
29891,
969,
2400,
278,
995,
393,
723,
1207,
2600,
1169,
8178,
13,
12,
29937,
8830,
8249,
14280,
27148,
261,
304,
1653,
15889,
363,
8182,
567,
746,
2178,
8764,
567,
13,
12,
29937,
5771,
304,
8178,
2600,
1169,
363,
278,
274,
1336,
13,
12,
264,
10118,
29918,
9175,
29918,
29891,
969,
29918,
13646,
29879,
353,
4733,
29889,
18146,
3073,
29898,
4381,
29922,
5574,
29897,
13,
13,
12,
29937,
565,
5852,
29892,
322,
278,
1404,
3732,
385,
10365,
358,
393,
723,
1653,
13,
12,
29937,
8178,
2600,
1169,
29892,
372,
8249,
278,
23889,
896,
2949,
264,
29915,
29873,
773,
701,
1328,
408,
896,
4337,
278,
916,
13,
12,
29937,
1623,
1328,
29889,
960,
7700,
29892,
372,
29915,
29879,
24837,
25228,
706,
13,
12,
908,
29918,
9175,
29918,
29891,
969,
29918,
3605,
601,
353,
4733,
29889,
18146,
3073,
29898,
4381,
29922,
8824,
29897,
13,
13,
12,
29937,
10575,
7604,
17063,
322,
5142,
29879,
3160,
7787,
20957,
1041,
363,
445,
1904,
4038,
29973,
2648,
2322,
591,
13,
12,
29937,
1016,
29915,
29873,
864,
304,
448,
297,
1556,
4251,
29892,
372,
2113,
29915,
29873,
367,
1554,
591,
864,
2305,
304,
1074,
448,
541,
591,
29915,
645,
864,
13,
12,
29937,
372,
304,
367,
2221,
304,
367,
20592,
363,
13490,
11976,
13,
12,
2856,
29918,
1212,
29918,
276,
9947,
353,
4733,
29889,
18146,
3073,
29898,
4381,
29922,
8824,
29897,
13,
13,
12,
29937,
881,
5120,
29899,
2324,
292,
310,
8182,
567,
367,
9615,
29973,
13,
12,
12803,
29918,
2324,
287,
29918,
24077,
567,
353,
4733,
29889,
18146,
3073,
29898,
4381,
29922,
8824,
29897,
13,
13,
12,
29937,
3692,
470,
451,
304,
1510,
278,
11509,
304,
1776,
1904,
1065,
11265,
775,
13,
12,
9536,
29918,
4299,
29918,
3389,
29918,
1037,
362,
29918,
401,
29918,
1493,
353,
4733,
29889,
18146,
3073,
29898,
4381,
29922,
8824,
29897,
13,
13,
12,
29937,
13449,
304,
12266,
385,
4152,
731,
310,
5680,
297,
848,
7604,
2133,
13,
12,
29937,
988,
896,
508,
6755,
5684,
1904,
6057,
363,
10230,
29892,
13,
12,
29937,
508,
4226,
675,
304,
263,
2967,
1065,
29892,
322,
508,
1074,
17322,
1206,
714,
26807,
13,
12,
9536,
29918,
29894,
466,
29918,
20787,
29918,
510,
862,
14125,
353,
4733,
29889,
18146,
3073,
29898,
4381,
29922,
8824,
29897,
13,
12,
9536,
29918,
29894,
466,
29918,
8945,
2133,
353,
4733,
29889,
18146,
3073,
29898,
4381,
29922,
8824,
29897,
13,
12,
9536,
29918,
29894,
466,
29918,
12803,
29918,
4572,
353,
4733,
29889,
18146,
3073,
29898,
4381,
29922,
8824,
29897,
13,
12,
9536,
29918,
29894,
466,
29918,
13762,
303,
29918,
4878,
353,
4733,
29889,
18146,
3073,
29898,
4381,
29922,
8824,
29897,
13,
13,
12,
9536,
29918,
7959,
29918,
1727,
1080,
353,
4733,
29889,
18146,
3073,
29898,
4381,
29922,
8824,
29897,
13,
12,
9536,
29918,
1745,
8238,
29918,
1727,
1080,
353,
4733,
29889,
18146,
3073,
29898,
4381,
29922,
8824,
29897,
13,
12,
9536,
29918,
10660,
29918,
7052,
29881,
29918,
1727,
1080,
353,
4733,
29889,
18146,
3073,
29898,
4381,
29922,
8824,
29897,
13,
13,
12,
1509,
29918,
4381,
29918,
12803,
29918,
915,
8708,
18930,
353,
4733,
29889,
18146,
3073,
29898,
4381,
29922,
5574,
29897,
13,
13,
12,
4299,
29918,
6203,
353,
4733,
29889,
6716,
1762,
6716,
3073,
29898,
3195,
13799,
29892,
13,
12,
462,
462,
29871,
373,
29918,
8143,
29922,
9794,
29889,
29907,
3289,
5454,
2287,
29892,
13,
12,
462,
462,
29871,
4475,
29918,
978,
543,
1457,
10662,
29908,
13,
12,
462,
462,
29871,
1723,
13,
13,
13,
29937,
731,
701,
278,
7182,
2414,
1536,
393,
679,
19799,
1156,
263,
1904,
4038,
338,
2825,
577,
393,
14332,
756,
263,
1404,
10185,
13,
29992,
13556,
2147,
29898,
2490,
29918,
7620,
29892,
10004,
29922,
3195,
13799,
29897,
13,
1753,
1653,
29918,
4299,
29918,
6203,
29918,
1457,
10662,
29898,
15452,
29892,
2777,
29892,
2825,
29892,
3579,
19290,
1125,
13,
12,
361,
2825,
29901,
13,
12,
12,
3195,
13799,
22173,
29889,
12650,
29889,
3258,
29898,
4299,
29918,
6203,
29922,
8758,
29897,
13,
13,
29992,
13556,
2147,
29898,
2490,
29918,
7620,
29892,
10004,
29922,
3195,
13799,
29897,
13,
1753,
4078,
29918,
4299,
29918,
6203,
29898,
15452,
29892,
2777,
29892,
3579,
19290,
1125,
13,
12,
8758,
29889,
1457,
10662,
29889,
7620,
580,
13,
13,
13,
29937,
1990,
1260,
6288,
537,
29898,
9794,
29889,
3195,
1125,
13,
29937,
560,
6288,
1907,
775,
19952,
714,
1363,
591,
1016,
29915,
29873,
1065,
1208,
26218,
13,
29937,
20278,
1492,
1286,
13,
29937,
12,
15945,
29908,
13,
29937,
12,
12,
4806,
3787,
560,
6288,
1907,
363,
360,
23239,
408,
5375,
6475,
1244,
29892,
13,
29937,
12,
12,
4187,
591,
29915,
645,
2130,
963,
373,
278,
8125,
13799,
1203,
304,
3638,
304,
360,
23239,
13,
29937,
12,
15945,
29908,
13,
29937,
12,
4299,
29918,
6203,
353,
4733,
29889,
27755,
2558,
29898,
3195,
13799,
29892,
373,
29918,
8143,
29922,
9794,
29889,
29907,
3289,
5454,
2287,
29892,
4475,
29918,
978,
543,
295,
6288,
1907,
1159,
13,
29937,
12,
29883,
1336,
353,
4733,
29889,
27755,
2558,
703,
29907,
1336,
613,
373,
29918,
8143,
29922,
9794,
29889,
29907,
3289,
5454,
2287,
29892,
4475,
29918,
978,
543,
295,
6288,
1907,
1159,
13,
29937,
12,
1767,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29953,
29892,
13677,
29918,
29886,
6048,
29922,
29946,
29897,
13,
13,
13,
1990,
11069,
4782,
29898,
9794,
29889,
3195,
1125,
13,
12,
978,
353,
4733,
29889,
27890,
29898,
3317,
29918,
2848,
29922,
29906,
29945,
29945,
29892,
1870,
29922,
8824,
29892,
9654,
29922,
8824,
29897,
13,
12,
7564,
29918,
333,
353,
4733,
29889,
27890,
29898,
3317,
29918,
2848,
29922,
29896,
29900,
29900,
29892,
1870,
29922,
8824,
29892,
9654,
29922,
8824,
29897,
29871,
396,
12234,
591,
505,
777,
2924,
310,
2998,
3553,
304,
8343,
304,
263,
1904,
393,
2794,
1554,
304,
2305,
13,
12,
4299,
29918,
6203,
353,
4733,
29889,
27755,
2558,
29898,
3195,
13799,
29892,
373,
29918,
8143,
29922,
9794,
29889,
29907,
3289,
5454,
2287,
29897,
13,
13,
12,
19156,
353,
4733,
29889,
7249,
3073,
29898,
4304,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
29871,
396,
445,
674,
925,
3787,
1879,
29877,
7249,
322,
769,
591,
29915,
645,
14405,
964,
16250,
7522,
13,
13,
13,
1990,
11069,
29898,
9794,
29889,
3195,
1125,
13,
12,
20387,
20566,
353,
29871,
29900,
13,
12,
1525,
6720,
29963,
3352,
353,
29871,
29896,
13,
12,
25634,
3352,
353,
29871,
29906,
13,
12,
18521,
1718,
29918,
29903,
5454,
20566,
353,
29871,
29941,
13,
13,
12,
18166,
2725,
29918,
23397,
29918,
20387,
29931,
4214,
29918,
3210,
29949,
2965,
2890,
353,
313,
13,
12,
12,
29898,
20387,
20566,
29892,
376,
6818,
839,
4968,
13,
12,
12,
29898,
1525,
6720,
29963,
3352,
29892,
376,
7301,
8238,
4968,
13,
12,
12,
29898,
25634,
3352,
29892,
376,
26262,
4968,
13,
12,
12,
29898,
18521,
1718,
29918,
29903,
5454,
20566,
29892,
376,
12697,
2522,
7943,
4968,
13,
12,
29897,
13,
13,
12,
1990,
20553,
29901,
13,
12,
12,
13092,
29918,
29873,
12966,
353,
6024,
978,
742,
525,
4299,
29918,
6203,
2033,
13,
12,
12,
2248,
267,
353,
518,
13,
12,
12,
12,
9794,
29889,
3220,
29898,
9621,
29922,
703,
7564,
29918,
333,
613,
8243,
13,
12,
12,
12,
9794,
29889,
3220,
29898,
9621,
29922,
703,
4299,
29918,
6203,
29918,
333,
613,
376,
5924,
29879,
29918,
6038,
11950,
613,
8243,
29871,
396,
591,
29915,
645,
671,
1438,
304,
731,
385,
5352,
10940,
4856,
15376,
263,
1904,
4038,
13,
12,
12,
12,
9794,
29889,
3220,
29898,
9621,
29922,
703,
4299,
29918,
6203,
29918,
333,
613,
376,
5924,
29879,
29918,
381,
8966,
362,
613,
876,
13,
12,
12,
29962,
13,
13,
12,
978,
353,
4733,
29889,
27890,
29898,
3317,
29918,
2848,
29922,
29906,
29945,
29945,
29892,
1870,
29922,
8824,
29892,
9654,
29922,
8824,
29897,
13,
12,
7564,
29918,
333,
353,
4733,
29889,
27890,
29898,
3317,
29918,
2848,
29922,
29896,
29900,
29900,
29892,
1870,
29922,
8824,
29892,
9654,
29922,
8824,
29897,
29871,
396,
12234,
591,
505,
777,
2924,
310,
2998,
3553,
304,
8343,
304,
263,
1904,
393,
2794,
1554,
304,
2305,
13,
12,
23176,
29918,
333,
353,
4733,
29889,
27890,
29898,
3317,
29918,
2848,
29922,
29896,
29900,
29900,
29892,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
29871,
396,
263,
3619,
7029,
15882,
310,
777,
2924,
13,
12,
8216,
353,
4733,
29889,
15778,
29898,
4304,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
12,
29937,
869,
17833,
29918,
15697,
11837,
16280,
13,
12,
29937,
869,
1545,
8232,
11837,
16280,
13,
13,
12,
4381,
29918,
915,
16300,
353,
4733,
29889,
12636,
497,
7798,
3073,
29898,
4381,
29922,
20387,
20566,
29892,
19995,
29922,
18166,
2725,
29918,
23397,
29918,
20387,
29931,
4214,
29918,
3210,
29949,
2965,
2890,
29897,
13,
13,
12,
19156,
353,
4733,
29889,
7249,
3073,
29898,
4304,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
29871,
396,
445,
674,
925,
3787,
1879,
29877,
7249,
322,
769,
591,
29915,
645,
14405,
964,
16250,
7522,
13,
13,
12,
4299,
29918,
6203,
353,
4733,
29889,
27755,
2558,
29898,
3195,
13799,
29892,
373,
29918,
8143,
29922,
9794,
29889,
29907,
3289,
5454,
2287,
29897,
13,
12,
2972,
353,
4733,
29889,
27755,
2558,
29898,
18457,
4782,
29892,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29892,
373,
29918,
8143,
29922,
9794,
29889,
29907,
3289,
5454,
2287,
29897,
29871,
396,
727,
1033,
367,
263,
2769,
304,
1207,
372,
263,
1784,
304,
1784,
2012,
29892,
541,
13,
12,
12,
12,
12,
12,
12,
12,
12,
12,
12,
12,
12,
12,
12,
12,
12,
12,
29937,
306,
508,
29915,
29873,
1348,
310,
263,
671,
1206,
1492,
1286,
29892,
322,
372,
29915,
29881,
1996,
777,
349,
1806,
29909,
13,
12,
12,
12,
12,
12,
12,
12,
12,
12,
12,
12,
12,
12,
12,
12,
12,
12,
29937,
5900,
304,
734,
559,
12435,
2702,
800,
363,
12786,
297,
975,
433,
3262,
6471,
13,
13,
12,
5924,
29879,
29918,
6038,
11950,
353,
4733,
29889,
18146,
3073,
29898,
4381,
29922,
8824,
29897,
29871,
396,
3692,
470,
451,
445,
5120,
756,
738,
1153,
7192,
497,
29914,
29881,
719,
1049,
7117,
13,
12,
5924,
29879,
29918,
381,
8966,
362,
353,
4733,
29889,
18146,
3073,
29898,
4381,
29922,
5574,
29897,
29871,
396,
3692,
470,
451,
445,
5120,
756,
738,
3805,
8966,
630,
7117,
13,
13,
12,
15550,
3950,
29918,
9621,
353,
4852,
333,
613,
376,
978,
613,
376,
7564,
29918,
333,
613,
376,
8216,
613,
376,
19156,
613,
376,
4299,
29918,
6203,
613,
376,
2972,
613,
13,
12,
462,
268,
376,
5924,
29879,
29918,
6038,
11950,
613,
376,
5924,
29879,
29918,
381,
8966,
362,
613,
376,
18056,
27801,
613,
376,
4381,
29918,
915,
16300,
613,
13,
12,
462,
268,
376,
20387,
20566,
613,
376,
25634,
3352,
613,
376,
1525,
6720,
29963,
3352,
613,
376,
18521,
1718,
29918,
29903,
5454,
20566,
1159,
13,
13,
12,
1753,
4770,
710,
12035,
1311,
1125,
13,
12,
12,
2457,
376,
13799,
426,
6177,
11069,
6571,
1642,
4830,
29898,
1311,
29889,
4299,
29918,
6203,
29889,
978,
29892,
1583,
29889,
978,
29897,
13,
13,
13,
1990,
11069,
6857,
666,
27801,
29898,
9794,
29889,
3195,
1125,
13,
12,
12803,
353,
4733,
29889,
6716,
1762,
6716,
3073,
29898,
18457,
29892,
373,
29918,
8143,
29922,
9794,
29889,
29907,
3289,
5454,
2287,
29892,
4475,
29918,
978,
543,
18056,
27801,
1159,
13,
13,
12,
7827,
29918,
276,
9947,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29900,
29892,
13677,
29918,
29886,
6048,
29922,
29947,
29892,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
12,
11851,
29918,
1767,
29918,
1202,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29900,
29892,
13677,
29918,
29886,
6048,
29922,
29947,
29892,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
12,
7827,
29918,
1767,
29918,
1202,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29900,
29892,
13677,
29918,
29886,
6048,
29922,
29947,
29892,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
12,
11851,
29918,
9057,
29879,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29900,
29892,
13677,
29918,
29886,
6048,
29922,
29947,
29892,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
12,
7827,
29918,
9057,
29879,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29900,
29892,
13677,
29918,
29886,
6048,
29922,
29947,
29892,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
13,
13,
1990,
11069,
18126,
29898,
9794,
29889,
3195,
1125,
13,
12,
15945,
29908,
13,
12,
12,
18126,
2888,
8393,
393,
508,
367,
731,
639,
5120,
2777,
29892,
3625,
491,
21166,
13,
12,
12,
29952,
12803,
29889,
17833,
29918,
15697,
29889,
4572,
29898,
978,
1275,
29850,
12715,
29918,
978,
27195,
1673,
363,
1342,
29889,
13,
12,
15945,
29908,
13,
12,
12803,
353,
4733,
29889,
27755,
2558,
29898,
18457,
29892,
373,
29918,
8143,
29922,
9794,
29889,
29907,
3289,
5454,
2287,
29892,
4475,
29918,
978,
543,
17833,
29918,
15697,
1159,
13,
12,
978,
353,
4733,
29889,
27890,
29898,
3317,
29918,
2848,
29922,
29906,
29945,
29945,
29892,
1870,
29922,
8824,
29892,
9654,
29922,
8824,
29897,
13,
12,
1767,
353,
4733,
29889,
15778,
29898,
4304,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
12,
1272,
29918,
1853,
353,
4733,
29889,
27890,
29898,
3317,
29918,
2848,
29922,
29945,
29897,
29871,
396,
14088,
278,
5132,
848,
1134,
304,
4320,
372,
304,
565,
372,
29915,
29879,
451,
263,
1347,
13,
13,
13,
1990,
315,
1336,
29898,
9794,
29889,
3195,
1125,
13,
12,
15945,
29908,
13,
12,
12,
29909,
2323,
5190,
363,
5375,
8182,
567,
448,
4443,
393,
591,
817,
304,
8206,
8182,
567,
491,
13013,
448,
278,
1021,
274,
1336,
1033,
13,
12,
12,
28997,
363,
2999,
25700,
29889,
1334,
1016,
29915,
29873,
864,
304,
2254,
963,
297,
363,
599,
25700,
1363,
769,
591,
505,
304,
13,
12,
12,
29893,
3818,
1048,
565,
372,
2794,
278,
1021,
2684,
2655,
4822,
25700,
29892,
322,
825,
437,
3620,
2099,
304,
1269,
2318,
29892,
2992,
29892,
13,
12,
12,
7070,
29889,
2803,
29915,
29879,
3013,
372,
263,
2998,
29892,
10933,
519,
3233,
310,
4280,
322,
3566,
8182,
567,
304,
25700,
1584,
565,
372,
2794,
13,
12,
12,
20908,
506,
1218,
8182,
567,
1546,
25700,
29889,
13,
12,
15945,
29908,
13,
12,
1990,
20553,
29901,
13,
12,
12,
13092,
29918,
29873,
12966,
353,
6024,
29883,
1336,
29918,
401,
742,
525,
4299,
29918,
6203,
2033,
13,
12,
12,
2248,
267,
353,
518,
13,
12,
12,
12,
9794,
29889,
3220,
29898,
9621,
29922,
703,
978,
613,
876,
13,
12,
12,
29962,
13,
13,
12,
978,
353,
4733,
29889,
27890,
29898,
3317,
29918,
2848,
29922,
29906,
29945,
29945,
29892,
1870,
29922,
8824,
29892,
9654,
29922,
8824,
29897,
29871,
396,
5199,
19909,
274,
1336,
1024,
13,
12,
29883,
1336,
29918,
401,
353,
4733,
29889,
27890,
29898,
3317,
29918,
2848,
29922,
29941,
29900,
29892,
1870,
29922,
8824,
29892,
9654,
29922,
8824,
29897,
29871,
396,
775,
1304,
297,
278,
4733,
313,
4561,
14445,
29943,
1964,
363,
8131,
3131,
29874,
29897,
13,
12,
4299,
29918,
6203,
353,
4733,
29889,
27755,
2558,
29898,
3195,
13799,
29892,
373,
29918,
8143,
29922,
9794,
29889,
29907,
3289,
5454,
2287,
29897,
29871,
396,
2821,
738,
8182,
567,
363,
385,
1638,
746,
11132,
13,
13,
12,
1753,
4770,
710,
12035,
1311,
1125,
13,
12,
12,
2457,
1583,
29889,
978,
13,
13,
13,
1990,
315,
1336,
4782,
29898,
9794,
29889,
3195,
1125,
13,
12,
15945,
29908,
13,
12,
12,
29909,
5190,
304,
2318,
5375,
8182,
567,
4208,
448,
4443,
393,
591,
817,
304,
274,
1336,
6471,
526,
884,
491,
13013,
322,
13,
12,
12,
1552,
1021,
274,
1336,
2318,
1863,
363,
2999,
25700,
13,
12,
15945,
29908,
13,
12,
978,
353,
4733,
29889,
27890,
29898,
3317,
29918,
2848,
29922,
29906,
29945,
29945,
29892,
1870,
29922,
8824,
29892,
9654,
29922,
8824,
29897,
13,
12,
24077,
567,
353,
4733,
29889,
14804,
1762,
14804,
3073,
29898,
29907,
1336,
29897,
29871,
396,
7806,
274,
1336,
508,
367,
297,
1784,
6471,
13,
13,
13,
1990,
14164,
2697,
29898,
9794,
29889,
3195,
1125,
13,
12,
1990,
20553,
29901,
13,
12,
12,
16595,
353,
5852,
13,
12,
15945,
29908,
13,
12,
12,
2831,
15446,
278,
2582,
310,
1208,
26218,
4128,
393,
2041,
714,
310,
8576,
29871,
29896,
310,
278,
1904,
448,
591,
29915,
645,
2254,
263,
2846,
6166,
13,
12,
12,
974,
1208,
4626,
630,
4128,
12919,
29892,
541,
769,
3867,
263,
4628,
3800,
1873,
310,
278,
1208,
26218,
4128,
29889,
1334,
508,
13,
12,
12,
6098,
505,
6030,
393,
14335,
263,
16280,
363,
263,
1208,
26218,
731,
29892,
322,
565,
372,
1838,
29915,
29873,
1863,
29892,
6057,
278,
1208,
26218,
29889,
13,
12,
15945,
29908,
13,
13,
12,
11651,
29918,
4299,
29918,
978,
353,
376,
3195,
2001,
29908,
13,
12,
6360,
29879,
353,
4733,
29889,
15778,
580,
29871,
396,
4874,
29892,
1426,
29889,
1334,
29915,
645,
16125,
403,
1426,
408,
263,
1629,
16280,
13,
12,
29937,
26094,
353,
1904,
13,
13,
12,
1753,
408,
29918,
1272,
29918,
2557,
29898,
1311,
29892,
19060,
29918,
1727,
1080,
29922,
8516,
1125,
13,
12,
12,
15945,
29908,
13,
12,
12,
12,
11609,
29879,
278,
848,
3515,
393,
4225,
304,
367,
1065,
1549,
278,
1904,
3528,
13,
12,
12,
12,
29901,
3207,
19060,
29918,
1727,
1080,
29901,
1051,
310,
5120,
7463,
18999,
448,
12786,
297,
445,
1051,
674,
451,
505,
1009,
848,
13,
12,
12,
12,
12,
12,
12,
11707,
287,
297,
278,
1962,
848,
3515,
13,
12,
12,
29901,
2457,
29901,
13,
12,
12,
15945,
29908,
13,
12,
12,
29937,
869,
5975,
580,
3732,
263,
2346,
842,
964,
385,
4256,
519,
310,
9657,
29879,
29889,
3189,
261,
346,
393,
304,
263,
1051,
310,
9657,
29879,
13,
12,
12,
29937,
322,
1209,
372,
304,
278,
11701,
5823,
29889,
13,
12,
12,
29937,
15337,
756,
263,
1361,
29891,
1158,
304,
4327,
263,
2346,
842,
964,
263,
1051,
310,
9657,
29879,
29892,
13,
12,
12,
29937,
541,
591,
508,
29915,
29873,
2289,
671,
372,
1363,
591,
817,
304,
10563,
9117,
6611,
29892,
322,
372,
13,
12,
12,
29937,
508,
871,
10563,
2845,
16079,
8393,
470,
278,
6743,
591,
6084,
29892,
577,
591,
29915,
29881,
13,
12,
12,
29937,
817,
304,
2845,
2898,
401,
4129,
470,
1065,
372,
8951,
322,
10366,
372,
29889,
382,
294,
631,
13,
12,
12,
29937,
304,
2436,
1749,
1914,
29892,
15428,
29889,
739,
29915,
29879,
3755,
263,
2586,
20312,
1135,
278,
15337,
2466,
13,
12,
12,
29937,
577,
5505,
591,
508,
6210,
372,
701,
10431,
29889,
7198,
2599,
372,
408,
263,
10650,
3758,
2346,
322,
769,
13,
12,
12,
29937,
4441,
3262,
738,
19163,
4235,
723,
367,
2253,
29889,
2921,
292,
304,
5967,
393,
363,
1790,
13,
12,
12,
29937,
2462,
1492,
1286,
29889,
13,
13,
12,
12,
1079,
647,
29918,
8149,
353,
6796,
12803,
613,
376,
29883,
1336,
613,
376,
6038,
11950,
29918,
842,
3108,
13,
13,
12,
12,
11651,
29918,
4299,
353,
13149,
1338,
580,
29961,
1311,
29889,
11651,
29918,
4299,
29918,
978,
29962,
13,
12,
12,
9621,
353,
518,
29888,
29889,
978,
363,
285,
297,
2407,
29918,
4299,
3032,
7299,
29889,
657,
29918,
9621,
580,
29962,
29871,
396,
679,
599,
278,
4235,
363,
1208,
4626,
630,
4128,
13,
12,
12,
16121,
29918,
9621,
353,
1051,
29898,
842,
29898,
9621,
29897,
448,
731,
29898,
1079,
647,
29918,
8149,
876,
29871,
396,
3349,
278,
9117,
6611,
448,
591,
29915,
645,
1889,
1906,
16949,
13,
13,
12,
12,
29937,
11837,
29918,
978,
674,
1863,
363,
1014,
13203,
13,
12,
12,
1272,
353,
679,
5552,
29898,
1311,
29892,
1583,
29889,
24244,
29918,
978,
467,
497,
580,
29871,
396,
679,
599,
278,
6475,
363,
445,
731,
13,
12,
12,
4905,
353,
5159,
13,
12,
12,
1454,
2407,
297,
848,
29901,
13,
12,
12,
12,
29937,
565,
591,
892,
5429,
304,
14383,
445,
5120,
29892,
1016,
29915,
29873,
788,
372,
448,
1033,
884,
437,
445,
297,
11701,
1156,
11301,
13,
12,
12,
12,
361,
19060,
29918,
1727,
1080,
322,
2407,
29889,
12803,
29889,
7564,
29918,
333,
297,
19060,
29918,
1727,
1080,
29901,
13,
12,
12,
12,
12,
19878,
13,
13,
12,
12,
12,
4905,
29918,
8977,
353,
6571,
13,
12,
12,
12,
1454,
1746,
297,
6996,
29918,
9621,
29901,
29871,
396,
3394,
278,
6996,
4235,
4153,
964,
263,
8600,
322,
1302,
261,
346,
304,
5685,
1446,
13,
12,
12,
12,
12,
2671,
29918,
1767,
353,
679,
5552,
29898,
11651,
29892,
1746,
29897,
13,
12,
12,
12,
12,
4905,
29918,
8977,
29961,
2671,
29962,
353,
5785,
29898,
2671,
29918,
1767,
29897,
565,
1134,
29898,
2671,
29918,
1767,
29897,
338,
13677,
29889,
23307,
1683,
1746,
29918,
1767,
13,
12,
12,
12,
4905,
29918,
8977,
3366,
29875,
3108,
353,
2407,
29889,
29883,
1336,
29889,
29883,
1336,
29918,
401,
29871,
396,
541,
769,
17229,
278,
2702,
8393,
310,
278,
9117,
6611,
591,
281,
1450,
593,
13,
12,
12,
12,
4905,
29918,
8977,
3366,
29887,
3108,
353,
2407,
29889,
12803,
29889,
7564,
29918,
333,
13,
12,
12,
12,
4905,
29889,
4397,
29898,
4905,
29918,
8977,
29897,
29871,
396,
1925,
278,
9657,
964,
278,
1051,
577,
591,
508,
1207,
263,
360,
29943,
310,
372,
13,
13,
12,
12,
2457,
11701,
29889,
17271,
29898,
4905,
29897,
29871,
396,
3386,
263,
848,
3515,
322,
3638,
372,
1250,
13,
13,
12,
1753,
304,
29918,
7638,
29898,
1311,
29892,
334,
5085,
29892,
3579,
19290,
1125,
13,
12,
12,
15945,
29908,
13,
12,
12,
12,
29903,
5989,
278,
731,
304,
263,
16874,
934,
448,
599,
6389,
526,
4502,
1549,
304,
349,
7086,
29889,
517,
29918,
7638,
29892,
577,
372,
29915,
29879,
13,
12,
12,
12,
27338,
304,
505,
372,
736,
263,
16874,
408,
263,
1347,
491,
925,
5432,
304,
29918,
7638,
580,
13,
12,
12,
29901,
3207,
6389,
29901,
19922,
29886,
449,
29918,
6605,
29918,
13099,
338,
451,
15878,
411,
19922,
29886,
449,
29918,
29044,
13,
12,
12,
29901,
3207,
9049,
5085,
29901,
13,
12,
12,
29901,
2457,
29901,
13,
12,
12,
15945,
29908,
13,
12,
12,
2176,
353,
1583,
29889,
294,
29918,
1272,
29918,
2557,
2141,
6605,
29918,
5975,
29898,
8990,
29922,
29900,
29892,
491,
29922,
3366,
6360,
613,
376,
29887,
613,
376,
29875,
20068,
13,
12,
12,
2176,
353,
4489,
29889,
1267,
420,
29898,
13099,
3790,
29908,
29887,
1115,
376,
12803,
613,
376,
29875,
1115,
376,
29883,
1336,
29908,
1800,
13,
13,
12,
12,
361,
9049,
5085,
29889,
7323,
703,
29893,
10412,
29886,
449,
29918,
6605,
29918,
13099,
613,
7700,
29897,
338,
5852,
29901,
13,
12,
12,
12,
29937,
1993,
278,
1897,
1962,
304,
920,
1706,
22687,
756,
372,
577,
591,
508,
7252,
13,
12,
12,
12,
4914,
29918,
2098,
353,
4852,
12803,
613,
376,
29883,
1336,
613,
376,
6360,
613,
376,
290,
387,
11627,
613,
376,
290,
387,
294,
14889,
368,
613,
376,
290,
387,
284,
3717,
613,
13,
12,
12,
12,
18884,
376,
4787,
342,
370,
1674,
613,
376,
290,
387,
562,
1161,
613,
376,
290,
387,
19930,
29883,
1161,
613,
376,
290,
387,
271,
7288,
613,
13,
12,
12,
12,
18884,
376,
29916,
13405,
613,
376,
29886,
613,
376,
29891,
613,
376,
29916,
1049,
613,
376,
290,
387,
1450,
1008,
613,
376,
3754,
613,
376,
3416,
613,
13,
12,
12,
12,
18884,
376,
29886,
326,
1191,
979,
613,
376,
4650,
613,
376,
6878,
11627,
613,
376,
3571,
13405,
613,
376,
6878,
294,
14889,
368,
613,
13,
12,
12,
12,
18884,
376,
6878,
284,
3717,
613,
376,
4722,
613,
376,
4283,
613,
376,
4181,
613,
376,
29916,
1049,
1557,
613,
376,
29916,
29893,
10412,
29883,
613,
13,
12,
12,
12,
18884,
376,
29916,
12765,
1049,
613,
376,
29916,
29881,
361,
615,
327,
497,
392,
613,
376,
29916,
12765,
13405,
613,
376,
10314,
29918,
15581,
1159,
13,
12,
12,
12,
2176,
353,
4489,
29889,
276,
2248,
29898,
13099,
29922,
4914,
29918,
2098,
29897,
13,
13,
12,
12,
361,
9049,
5085,
29889,
7323,
703,
29893,
10412,
29886,
449,
29918,
29044,
613,
7700,
29897,
338,
5852,
29901,
13,
12,
12,
12,
13099,
353,
6055,
29889,
5265,
26349,
3352,
29918,
15989,
8647,
29903,
29918,
3738,
6670,
8452,
13,
12,
12,
12,
2176,
353,
4489,
29961,
13099,
29962,
13,
13,
12,
12,
361,
376,
2248,
29908,
451,
297,
9049,
5085,
29901,
29871,
396,
565,
278,
24959,
1838,
29915,
29873,
6084,
385,
2984,
363,
11701,
29915,
2380,
29892,
731,
372,
304,
7700,
9479,
577,
372,
1838,
29915,
29873,
5609,
278,
2380,
13,
12,
12,
12,
19290,
3366,
2248,
3108,
353,
7700,
13,
13,
12,
12,
2457,
4489,
29889,
517,
29918,
7638,
10456,
5085,
29892,
3579,
19290,
29897,
13,
13,
13,
1990,
10567,
28449,
29898,
9182,
2697,
1125,
13,
12,
4299,
29918,
6203,
353,
4733,
29889,
27755,
2558,
29898,
3195,
13799,
29892,
373,
29918,
8143,
29922,
9794,
29889,
29907,
3289,
5454,
2287,
29892,
4475,
29918,
978,
543,
2080,
29918,
1272,
1159,
13,
12,
24244,
29918,
978,
353,
376,
2080,
29918,
1272,
29918,
842,
29908,
13,
13,
13,
1990,
3037,
26218,
2697,
29898,
9182,
2697,
1125,
13,
12,
4299,
29918,
6203,
353,
4733,
29889,
27755,
2558,
29898,
3195,
13799,
29892,
373,
29918,
8143,
29922,
9794,
29889,
29907,
3289,
5454,
2287,
29892,
4475,
29918,
978,
543,
1052,
26218,
29918,
1272,
1159,
13,
12,
11651,
29918,
4299,
29918,
978,
353,
376,
7856,
4626,
630,
9329,
29908,
13,
12,
24244,
29918,
978,
353,
376,
1052,
26218,
29918,
842,
29908,
13,
13,
13,
1990,
21431,
11950,
2697,
29898,
9182,
2697,
1125,
13,
12,
4299,
29918,
6203,
353,
4733,
29889,
27755,
2558,
29898,
3195,
13799,
29892,
373,
29918,
8143,
29922,
9794,
29889,
29907,
3289,
5454,
2287,
29892,
4475,
29918,
978,
543,
6038,
11950,
29918,
1272,
1159,
13,
12,
24244,
29918,
978,
353,
376,
6038,
11950,
29918,
842,
29908,
13,
12,
11651,
29918,
4299,
29918,
978,
353,
376,
29934,
475,
11950,
9329,
29908,
13,
13,
13,
1990,
7867,
2697,
29898,
9182,
2697,
1125,
13,
12,
24244,
29918,
978,
353,
376,
2914,
29918,
842,
29908,
13,
12,
11651,
29918,
4299,
29918,
978,
353,
376,
3591,
29908,
13,
13,
12,
4299,
29918,
3389,
353,
4733,
29889,
27755,
2558,
703,
3195,
6558,
613,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29892,
13,
12,
462,
1669,
373,
29918,
8143,
29922,
9794,
29889,
29907,
3289,
5454,
2287,
29892,
4475,
29918,
978,
543,
9902,
1159,
13,
13,
12,
1256,
29918,
3389,
353,
4733,
29889,
11384,
3073,
29898,
4381,
29922,
14095,
29889,
13239,
29889,
2230,
8028,
29889,
3707,
29892,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
13,
12,
29937,
3787,
278,
270,
23239,
1873,
393,
278,
1904,
6350,
411,
448,
393,
982,
591,
508,
6459,
565,
385,
4784,
1873,
1795,
3867,
1422,
2582,
13,
12,
29881,
23239,
29918,
3259,
353,
4733,
29889,
27890,
29898,
3317,
29918,
2848,
29922,
29906,
29900,
29897,
13,
13,
12,
29937,
297,
29918,
1052,
26218,
14088,
3692,
470,
451,
278,
2582,
505,
738,
8178,
2600,
1169,
13,
12,
29937,
470,
505,
6467,
19225,
5377,
310,
1208,
4626,
630,
1819,
29889,
13,
12,
262,
29918,
1052,
26218,
353,
4733,
29889,
18146,
3073,
29898,
4381,
29922,
5574,
29897,
13,
12,
29937,
451,
773,
297,
29918,
1052,
26218,
29918,
726,
363,
1286,
29889,
1334,
29915,
645,
505,
278,
1856,
623,
4377,
714,
13,
12,
29937,
607,
6475,
526,
8178,
2600,
1169,
322,
1510,
263,
1591,
565,
297,
29918,
1052,
26218,
338,
2089,
13,
12,
29937,
262,
29918,
1052,
26218,
29918,
726,
353,
4733,
29889,
15778,
29898,
4304,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
13,
12,
262,
1725,
294,
747,
9770,
29918,
726,
353,
4733,
29889,
15778,
29898,
4304,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
12,
29937,
297,
1725,
294,
747,
9770,
11837,
8220,
13,
13,
12,
1753,
4770,
710,
12035,
1311,
1125,
13,
12,
12,
2457,
285,
29908,
12191,
363,
8125,
7525,
426,
1311,
29889,
4299,
29918,
3389,
29889,
978,
29913,
515,
360,
23239,
426,
1311,
29889,
29881,
23239,
29918,
3259,
29913,
472,
426,
1311,
29889,
1256,
29918,
3389,
5038,
13,
13,
13,
1990,
8125,
2001,
29898,
9794,
29889,
3195,
1125,
13,
12,
15945,
29908,
13,
13,
12,
12,
14256,
393,
526,
6068,
304,
367,
1870,
526,
6743,
393,
9455,
29915,
29873,
760,
310,
1208,
26218,
29892,
541,
2012,
1122,
367,
731,
363,
2186,
13,
12,
12,
9902,
13,
12,
15945,
29908,
13,
12,
1990,
20553,
29901,
13,
12,
12,
16595,
353,
5852,
13,
12,
12,
2248,
267,
353,
518,
13,
12,
12,
12,
9794,
29889,
3220,
29898,
9621,
29922,
703,
6360,
613,
876,
13,
12,
12,
29962,
13,
13,
12,
29883,
1336,
353,
4733,
29889,
27755,
2558,
29898,
29907,
1336,
29892,
373,
29918,
8143,
29922,
9794,
29889,
29907,
3289,
5454,
2287,
29897,
13,
12,
12803,
353,
4733,
29889,
27755,
2558,
29898,
18457,
29892,
373,
29918,
8143,
29922,
9794,
29889,
29907,
3289,
5454,
2287,
29897,
13,
12,
6360,
353,
4733,
29889,
7798,
3073,
29898,
4304,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
29871,
396,
10970,
674,
505,
445,
29892,
541,
1208,
4626,
630,
4452,
322,
2582,
1122,
451,
13,
12,
29886,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29947,
29892,
13677,
29918,
29886,
6048,
29922,
29896,
29900,
29897,
13,
12,
29891,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29941,
29892,
13677,
29918,
29886,
6048,
29922,
29945,
29897,
13,
12,
29916,
1049,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29947,
29892,
13677,
29918,
29886,
6048,
29922,
29896,
29900,
29897,
13,
13,
13,
1990,
10567,
3195,
2001,
29898,
3195,
2001,
1125,
13,
12,
1990,
20553,
29901,
13,
12,
12,
16595,
353,
5852,
13,
13,
12,
290,
387,
11627,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29900,
29892,
13677,
29918,
29886,
6048,
29922,
29896,
29897,
13,
12,
290,
387,
294,
14889,
368,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29900,
29892,
13677,
29918,
29886,
6048,
29922,
29896,
29897,
13,
12,
290,
387,
284,
3717,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29900,
29892,
13677,
29918,
29886,
6048,
29922,
29896,
29897,
13,
12,
4787,
342,
370,
1674,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29900,
29892,
13677,
29918,
29886,
6048,
29922,
29896,
29892,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
12,
290,
387,
562,
1161,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29900,
29892,
13677,
29918,
29886,
6048,
29922,
29896,
29892,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
12,
290,
387,
19930,
29883,
1161,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29900,
29892,
13677,
29918,
29886,
6048,
29922,
29896,
29892,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
12,
290,
387,
271,
7288,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29900,
29892,
13677,
29918,
29886,
6048,
29922,
29896,
29892,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
12,
29916,
13405,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29947,
29892,
13677,
29918,
29886,
6048,
29922,
29896,
29900,
29897,
13,
13,
13,
1990,
10567,
1469,
2001,
29898,
4290,
3195,
2001,
1125,
13,
12,
1990,
20553,
29901,
13,
12,
12,
13092,
29918,
29873,
12966,
353,
6024,
29883,
1336,
742,
525,
12803,
742,
525,
6360,
2033,
13,
13,
12,
24713,
353,
4733,
29889,
27755,
2558,
29898,
4290,
28449,
29892,
373,
29918,
8143,
29922,
9794,
29889,
29907,
3289,
5454,
2287,
29892,
4475,
29918,
978,
543,
2080,
29918,
1272,
29918,
842,
1159,
13,
13,
12,
15550,
3950,
29918,
9621,
353,
6796,
29883,
1336,
613,
376,
12803,
613,
376,
6360,
613,
376,
290,
387,
11627,
613,
13,
12,
462,
268,
376,
290,
387,
294,
14889,
368,
613,
376,
290,
387,
284,
3717,
613,
376,
4787,
342,
370,
1674,
613,
376,
290,
387,
562,
1161,
613,
13,
12,
462,
268,
376,
290,
387,
19930,
29883,
1161,
613,
376,
290,
387,
271,
7288,
613,
376,
29886,
613,
376,
29891,
613,
376,
29916,
1049,
613,
376,
29916,
13405,
3108,
13,
13,
13,
1990,
3037,
4626,
630,
9329,
29898,
4290,
3195,
2001,
1125,
13,
12,
15945,
29908,
13,
12,
12,
9842,
393,
372,
29915,
29879,
310,
770,
10567,
1469,
2001,
29892,
607,
338,
310,
770,
8125,
2001,
448,
8125,
6913,
4529,
278,
5164,
1881,
13,
12,
12,
16744,
322,
2582,
393,
591,
671,
363,
1208,
26218,
10970,
29892,
1208,
4626,
630,
13,
12,
12,
16744,
29892,
322,
1904,
2582,
13,
12,
15945,
29908,
13,
13,
12,
1990,
20553,
29901,
13,
12,
12,
13092,
29918,
29873,
12966,
353,
6024,
29883,
1336,
742,
525,
12803,
742,
525,
6360,
2033,
13,
13,
12,
290,
387,
1450,
1008,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29900,
29892,
13677,
29918,
29886,
6048,
29922,
29906,
29897,
13,
12,
6739,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29900,
29892,
13677,
29918,
29886,
6048,
29922,
29941,
29897,
13,
12,
3754,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29945,
29892,
13677,
29918,
29886,
6048,
29922,
29946,
29897,
13,
12,
3416,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29945,
29892,
13677,
29918,
29886,
6048,
29922,
29946,
29897,
13,
12,
29886,
326,
1191,
979,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29947,
29892,
13677,
29918,
29886,
6048,
29922,
29896,
29900,
29897,
13,
12,
29937,
19712,
11627,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29896,
29892,
13677,
29918,
29886,
6048,
29922,
29896,
29900,
29892,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
12,
29937,
394,
561,
1450,
1008,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29896,
29892,
13677,
29918,
29886,
6048,
29922,
29896,
29900,
29892,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
12,
29937,
394,
16130,
14889,
368,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29896,
29892,
13677,
29918,
29886,
6048,
29922,
29896,
29900,
29892,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
12,
29937,
394,
17206,
3717,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29896,
29892,
13677,
29918,
29886,
6048,
29922,
29896,
29900,
29892,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
12,
4650,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29945,
29892,
13677,
29918,
29886,
6048,
29922,
29896,
29900,
29897,
13,
12,
29937,
301,
1117,
29881,
11627,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29945,
29892,
13677,
29918,
29886,
6048,
29922,
29896,
29900,
29892,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
12,
29937,
29880,
1117,
29881,
562,
1336,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29945,
29892,
13677,
29918,
29886,
6048,
29922,
29896,
29900,
29892,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
12,
6878,
11627,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29947,
29892,
13677,
29918,
29886,
6048,
29922,
29896,
29900,
29897,
13,
12,
3571,
13405,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29947,
29892,
13677,
29918,
29886,
6048,
29922,
29896,
29900,
29897,
13,
12,
6878,
294,
14889,
368,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29947,
29892,
13677,
29918,
29886,
6048,
29922,
29896,
29900,
29897,
13,
12,
6878,
284,
3717,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29947,
29892,
13677,
29918,
29886,
6048,
29922,
29896,
29900,
29897,
13,
12,
4722,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29947,
29892,
13677,
29918,
29886,
6048,
29922,
29896,
29900,
29897,
13,
12,
4283,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29947,
29892,
13677,
29918,
29886,
6048,
29922,
29896,
29900,
29897,
13,
12,
4181,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29947,
29892,
13677,
29918,
29886,
6048,
29922,
29896,
29900,
29897,
13,
12,
29937,
29916,
1049,
1052,
747,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29947,
29892,
13677,
29918,
29886,
6048,
29922,
29896,
29900,
29892,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
12,
29937,
29916,
13405,
1052,
747,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29947,
29892,
13677,
29918,
29886,
6048,
29922,
29896,
29900,
29892,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
12,
29937,
12765,
1049,
29886,
312,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29906,
29892,
13677,
29918,
29886,
6048,
29922,
29896,
29900,
29892,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
12,
29937,
12765,
13405,
29886,
312,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29906,
29892,
13677,
29918,
29886,
6048,
29922,
29896,
29900,
29892,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
13,
12,
29937,
445,
2944,
6911,
502,
1423,
373,
278,
4565,
1095,
3692,
470,
451,
26278,
674,
3638,
2600,
1169,
8178,
29889,
13,
12,
29937,
591,
29915,
645,
3787,
372,
1244,
1951,
372,
5304,
714,
310,
278,
1208,
26218,
322,
674,
367,
639,
5120,
29914,
29883,
1336,
10296,
13,
12,
9175,
29918,
29891,
969,
29918,
2616,
276,
428,
29918,
19790,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29953,
29892,
13677,
29918,
29886,
6048,
29922,
29941,
29892,
2322,
29922,
29896,
29897,
13,
13,
12,
1052,
26218,
29918,
842,
353,
4733,
29889,
27755,
2558,
29898,
7856,
26218,
2697,
29892,
373,
29918,
8143,
29922,
9794,
29889,
29907,
3289,
5454,
2287,
29892,
4475,
29918,
978,
543,
1052,
26218,
29918,
842,
1159,
13,
12,
15550,
3950,
29918,
9621,
353,
6796,
29883,
1336,
613,
376,
12803,
613,
376,
9175,
29918,
29891,
969,
29918,
2616,
276,
428,
29918,
19790,
3108,
13,
13,
12,
12,
12,
12,
12,
12,
29937,
3366,
29883,
1336,
613,
376,
12803,
613,
376,
6360,
613,
376,
290,
387,
11627,
613,
376,
290,
387,
1450,
1008,
613,
13,
12,
462,
1678,
396,
376,
290,
387,
294,
14889,
368,
613,
376,
290,
387,
284,
3717,
613,
376,
4787,
342,
370,
1674,
613,
376,
290,
387,
562,
1161,
613,
13,
12,
462,
1678,
396,
376,
290,
387,
19930,
29883,
1161,
613,
376,
290,
387,
271,
7288,
613,
376,
29886,
613,
376,
29891,
613,
376,
9175,
29918,
4099,
789,
29918,
2616,
276,
428,
29918,
19790,
3108,
13,
13,
13,
1990,
21431,
11950,
9329,
29898,
3195,
2001,
1125,
13,
12,
1990,
20553,
29901,
13,
12,
12,
13092,
29918,
29873,
12966,
353,
6024,
29883,
1336,
742,
525,
12803,
742,
525,
6360,
2033,
13,
13,
12,
6038,
11950,
29918,
842,
353,
4733,
29889,
27755,
2558,
29898,
29934,
475,
11950,
2697,
29892,
373,
29918,
8143,
29922,
9794,
29889,
29907,
3289,
5454,
2287,
29892,
4475,
29918,
978,
543,
6038,
11950,
29918,
842,
1159,
13,
13,
12,
1111,
1389,
29918,
1639,
1547,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29900,
29892,
13677,
29918,
29886,
6048,
29922,
29945,
29897,
13,
12,
29873,
5080,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29900,
29892,
13677,
29918,
29886,
6048,
29922,
29945,
29897,
13,
12,
1372,
558,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29900,
29892,
13677,
29918,
29886,
6048,
29922,
29945,
29897,
13,
12,
1372,
398,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29900,
29892,
13677,
29918,
29886,
6048,
29922,
29945,
29897,
13,
12,
1111,
1389,
29918,
1372,
398,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29900,
29892,
13677,
29918,
29886,
6048,
29922,
29945,
29897,
13,
12,
1111,
1389,
29918,
1372,
558,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29900,
29892,
13677,
29918,
29886,
6048,
29922,
29945,
29897,
13,
12,
1111,
1389,
29918,
29873,
5080,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29900,
29892,
13677,
29918,
29886,
6048,
29922,
29945,
29897,
13,
12,
415,
15099,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29900,
29892,
13677,
29918,
29886,
6048,
29922,
29945,
29897,
13,
12,
415,
5080,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29900,
29892,
13677,
29918,
29886,
6048,
29922,
29945,
29897,
13,
12,
415,
2083,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29900,
29892,
13677,
29918,
29886,
6048,
29922,
29945,
29897,
13,
12,
1111,
1389,
29918,
415,
15099,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29900,
29892,
13677,
29918,
29886,
6048,
29922,
29945,
29897,
13,
12,
1111,
1389,
29918,
415,
5080,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29900,
29892,
13677,
29918,
29886,
6048,
29922,
29945,
29897,
13,
12,
1111,
1389,
29918,
415,
2083,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29900,
29892,
13677,
29918,
29886,
6048,
29922,
29945,
29897,
13,
12,
1111,
1389,
29918,
29883,
1336,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29900,
29892,
13677,
29918,
29886,
6048,
29922,
29945,
29897,
13,
13,
13,
1990,
7867,
29898,
3195,
2001,
1125,
13,
12,
15945,
29908,
13,
12,
12,
29950,
3361,
278,
2582,
363,
263,
2323,
5120,
29914,
29883,
1336,
13,
12,
15945,
29908,
13,
13,
12,
290,
387,
1450,
1008,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29900,
29892,
13677,
29918,
29886,
6048,
29922,
29906,
29897,
13,
12,
10314,
29918,
15581,
353,
4733,
29889,
27890,
29898,
3317,
29918,
2848,
29922,
29945,
29892,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
12,
29937,
591,
1122,
367,
2221,
304,
5768,
1438,
4235,
2678,
29892,
541,
896,
1371,
502,
1550,
591,
29915,
276,
17420,
304,
278,
2441,
360,
3301,
322,
1749,
8845,
13,
12,
29916,
1049,
1557,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29947,
29892,
13677,
29918,
29886,
6048,
29922,
29896,
29900,
29892,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
12,
29916,
29893,
10412,
29883,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29947,
29892,
13677,
29918,
29886,
6048,
29922,
29896,
29900,
29892,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
12,
29916,
12765,
1049,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29947,
29892,
13677,
29918,
29886,
6048,
29922,
29896,
29900,
29892,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
12,
29916,
29881,
361,
615,
327,
497,
392,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29947,
29892,
13677,
29918,
29886,
6048,
29922,
29896,
29900,
29892,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
12,
29916,
12765,
13405,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29947,
29892,
13677,
29918,
29886,
6048,
29922,
29896,
29900,
29892,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
13,
12,
2914,
29918,
842,
353,
4733,
29889,
27755,
2558,
29898,
3591,
2697,
29892,
373,
29918,
8143,
29922,
9794,
29889,
29907,
3289,
5454,
2287,
29892,
4475,
29918,
978,
543,
2914,
29918,
842,
1159,
13,
13,
12,
1212,
29918,
276,
9947,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29947,
29892,
13677,
29918,
29886,
6048,
29922,
29941,
29892,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
12,
29887,
2124,
29918,
276,
9947,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29947,
29892,
13677,
29918,
29886,
6048,
29922,
29941,
29892,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
12,
13405,
29918,
546,
29918,
21160,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29947,
29892,
13677,
29918,
29886,
6048,
29922,
29945,
29892,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
13,
13,
1990,
21431,
11950,
3591,
29898,
9794,
29889,
3195,
1125,
13,
12,
15550,
3950,
29918,
9621,
353,
6796,
12803,
613,
376,
29883,
1336,
613,
376,
28667,
29918,
29891,
969,
613,
376,
29887,
2124,
29918,
276,
9947,
613,
376,
29916,
1049,
1557,
613,
376,
29916,
29893,
10412,
29883,
3108,
13,
13,
12,
2914,
29918,
842,
353,
4733,
29889,
27755,
2558,
29898,
3591,
2697,
29892,
373,
29918,
8143,
29922,
9794,
29889,
29907,
3289,
5454,
2287,
29892,
4475,
29918,
978,
543,
6038,
11950,
29918,
2914,
29918,
842,
1159,
13,
13,
12,
12803,
353,
4733,
29889,
27755,
2558,
29898,
18457,
29892,
373,
29918,
8143,
29922,
9794,
29889,
29907,
3289,
5454,
2287,
29892,
4475,
29918,
978,
543,
6038,
11950,
29918,
9902,
1159,
13,
12,
29883,
1336,
353,
4733,
29889,
27755,
2558,
29898,
29907,
1336,
29892,
373,
29918,
8143,
29922,
9794,
29889,
29907,
3289,
5454,
2287,
29892,
4475,
29918,
978,
543,
6038,
11950,
29918,
9902,
1159,
13,
13,
12,
29937,
7709,
338,
278,
871,
1855,
1121,
515,
278,
1153,
7192,
497,
24148,
1904,
29892,
577,
393,
29915,
29879,
825,
591,
29915,
276,
15446,
29892,
541,
591,
29915,
645,
884,
13,
12,
29937,
864,
304,
3787,
777,
310,
278,
1021,
1667,
2582,
408,
278,
7867,
4452,
577,
591,
508,
10366,
963,
13,
12,
28667,
29918,
29891,
969,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29947,
29892,
13677,
29918,
29886,
6048,
29922,
29941,
29892,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
12,
29887,
2124,
29918,
276,
9947,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29947,
29892,
13677,
29918,
29886,
6048,
29922,
29941,
29892,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
13,
12,
29937,
1438,
9455,
29915,
29873,
3447,
2289,
14391,
29892,
541,
591,
817,
304,
3160,
963,
363,
278,
25294,
304,
664,
5149,
13,
12,
29916,
1049,
1557,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29947,
29892,
13677,
29918,
29886,
6048,
29922,
29896,
29900,
29892,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
12,
29916,
29893,
10412,
29883,
353,
4733,
29889,
23307,
3073,
29898,
3317,
29918,
7501,
1169,
29922,
29896,
29947,
29892,
13677,
29918,
29886,
6048,
29922,
29896,
29900,
29892,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
13,
13,
1990,
8125,
6558,
29898,
9794,
29889,
3195,
1125,
13,
12,
15945,
29908,
13,
12,
12,
1576,
6555,
1203,
363,
2295,
3864,
385,
5375,
1065,
310,
278,
1904,
448,
338,
4475,
304,
21733,
3618,
515,
278,
13,
12,
12,
1545,
2450,
2625,
29889,
13,
12,
15945,
29908,
13,
12,
1990,
20553,
29901,
13,
12,
12,
2248,
267,
353,
518,
13,
12,
12,
12,
9794,
29889,
3220,
29898,
9621,
29922,
703,
2040,
613,
376,
21094,
613,
376,
8835,
1159,
511,
13,
12,
12,
12,
9794,
29889,
3220,
29898,
9621,
29922,
703,
1256,
29918,
1491,
29885,
4430,
613,
876,
13,
12,
12,
29962,
13,
12,
978,
353,
4733,
29889,
27890,
29898,
3317,
29918,
2848,
29922,
29906,
29945,
29945,
29897,
13,
12,
8216,
353,
4733,
29889,
15778,
29898,
4304,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
13,
12,
2040,
353,
4733,
29889,
18146,
3073,
29898,
4381,
29922,
8824,
29892,
1870,
29922,
8824,
29897,
29871,
396,
10902,
1156,
278,
1856,
5067,
12778,
599,
26278,
13,
12,
21094,
353,
4733,
29889,
18146,
3073,
29898,
4381,
29922,
8824,
29892,
1870,
29922,
8824,
29897,
29871,
396,
10902,
1550,
297,
9068,
13,
12,
8835,
353,
4733,
29889,
18146,
3073,
29898,
4381,
29922,
8824,
29892,
1870,
29922,
8824,
29897,
29871,
396,
16257,
565,
278,
1904,
756,
2869,
1063,
1065,
363,
445,
1121,
3447,
13,
13,
12,
4882,
29918,
4906,
353,
4733,
29889,
27890,
29898,
3317,
29918,
2848,
29922,
29906,
29900,
29946,
29947,
29892,
2322,
543,
613,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
29871,
396,
363,
4660,
5235,
470,
1059,
7191,
13,
12,
2914,
29918,
5975,
353,
4733,
29889,
15778,
29898,
4381,
543,
613,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
12,
1188,
29918,
1272,
353,
4733,
29889,
15778,
29898,
4304,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
29871,
396,
591,
29915,
645,
3787,
1480,
14391,
515,
278,
1904,
1065,
1244,
29889,
13,
12,
1256,
29918,
1491,
29885,
4430,
353,
4733,
29889,
11384,
3073,
29898,
4381,
29922,
14095,
29889,
13239,
29889,
2230,
8028,
29889,
3707,
29892,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
12,
1256,
29918,
5729,
9446,
353,
4733,
29889,
11384,
3073,
29898,
4304,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
13,
12,
29937,
607,
1904,
1065,
338,
278,
2967,
29892,
443,
1545,
2164,
1873,
29973,
4803,
1319,
363,
848,
25294,
13,
12,
3188,
29918,
4299,
29918,
3389,
353,
4733,
29889,
27755,
2558,
703,
3195,
6558,
613,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29892,
373,
29918,
8143,
29922,
9794,
29889,
3970,
29918,
12256,
29950,
4214,
29897,
13,
12,
275,
29918,
3188,
353,
4733,
29889,
18146,
3073,
29898,
4381,
29922,
8824,
29897,
29871,
396,
338,
445,
263,
2967,
1904,
1065,
313,
5574,
511,
470,
263,
4226,
1904,
1065,
313,
8824,
29897,
13,
13,
12,
29937,
1904,
29918,
6203,
8220,
338,
1549,
1208,
26218,
29918,
842,
13,
12,
1052,
26218,
29918,
842,
353,
4733,
29889,
27755,
2558,
29898,
7856,
26218,
2697,
29892,
373,
29918,
8143,
29922,
9794,
29889,
29907,
3289,
5454,
2287,
29892,
4475,
29918,
978,
543,
4299,
29918,
3389,
29879,
1159,
13,
12,
1052,
4626,
630,
29918,
16744,
29918,
726,
353,
4733,
29889,
15778,
29898,
4304,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
29871,
396,
591,
29915,
645,
1925,
263,
22395,
310,
278,
1208,
26218,
4128,
297,
1244,
29892,
3117,
13,
12,
12,
12,
12,
12,
12,
12,
12,
12,
12,
12,
12,
29937,
408,
263,
16874,
29889,
910,
982,
29892,
565,
2305,
321,
333,
29873,
278,
1208,
26218,
848,
363,
5434,
6057,
29892,
13,
12,
12,
12,
12,
12,
12,
12,
12,
12,
12,
12,
12,
29937,
591,
1603,
1073,
825,
10970,
6350,
445,
1873,
310,
278,
1904,
29889,
13,
13,
12,
6038,
11950,
29918,
842,
353,
4733,
29889,
27755,
2558,
29898,
29934,
475,
11950,
2697,
29892,
373,
29918,
8143,
29922,
9794,
29889,
29907,
3289,
5454,
2287,
29892,
4475,
29918,
978,
543,
4299,
29918,
3389,
29879,
613,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
13,
12,
1792,
353,
4733,
29889,
27755,
2558,
29898,
2659,
29892,
373,
29918,
8143,
29922,
9794,
29889,
3970,
29918,
12256,
29950,
4214,
29892,
4475,
29918,
978,
543,
4299,
29918,
3389,
29879,
1159,
13,
12,
6388,
2133,
353,
4733,
29889,
27755,
2558,
29898,
27356,
2133,
29892,
373,
29918,
8143,
29922,
9794,
29889,
29907,
3289,
5454,
2287,
29892,
4475,
29918,
978,
543,
4299,
29918,
3389,
29879,
1159,
13,
13,
12,
29937,
5120,
29918,
1545,
8232,
448,
1250,
29899,
5679,
515,
4475,
2793,
13,
12,
29937,
274,
1336,
29918,
1545,
8232,
448,
1250,
29899,
5679,
515,
4475,
2793,
13,
13,
12,
15550,
3950,
29918,
9621,
353,
6024,
333,
742,
525,
978,
742,
525,
8216,
742,
525,
2040,
742,
525,
21094,
742,
525,
8835,
742,
525,
4882,
29918,
4906,
742,
13,
12,
12,
18884,
525,
1256,
29918,
1491,
29885,
4430,
742,
525,
1256,
29918,
5729,
9446,
742,
376,
1052,
26218,
29918,
842,
613,
376,
6038,
11950,
29918,
842,
613,
13,
12,
12,
12,
12,
12,
12,
376,
1792,
29918,
333,
613,
376,
6388,
2133,
613,
376,
3188,
29918,
4299,
29918,
3389,
29918,
333,
613,
376,
275,
29918,
3188,
613,
13,
12,
462,
268,
376,
1049,
29918,
1545,
8232,
29918,
12483,
482,
613,
376,
13405,
29918,
1545,
8232,
29918,
12483,
482,
613,
13,
12,
462,
268,
376,
9175,
29918,
1545,
8232,
29918,
12483,
482,
613,
376,
29891,
969,
29918,
1545,
8232,
29918,
12483,
482,
3108,
13,
13,
12,
1753,
4770,
710,
12035,
1311,
1125,
13,
12,
12,
2457,
285,
29908,
3195,
7525,
29901,
426,
1311,
29889,
978,
5038,
13,
13,
12,
1753,
408,
29918,
8977,
29898,
1311,
1125,
13,
12,
12,
2457,
426,
2671,
29901,
679,
5552,
29898,
1311,
29892,
1746,
29897,
363,
1746,
297,
1583,
29889,
15550,
3950,
29918,
9621,
29913,
13,
13,
12,
1753,
408,
29918,
3126,
29898,
1311,
1125,
13,
12,
12,
29937,
773,
278,
15337,
7797,
3950,
770,
17766,
1418,
300,
1355,
29892,
2992,
6284,
13,
12,
12,
2457,
4390,
29889,
29881,
17204,
29898,
1311,
29889,
294,
29918,
8977,
3285,
1067,
29879,
29922,
14095,
29889,
3221,
29889,
15550,
19427,
29889,
3126,
29889,
29928,
5364,
7249,
8566,
6119,
29897,
13,
13,
12,
1753,
903,
657,
29918,
1545,
2450,
29918,
12483,
482,
29898,
1311,
29892,
2346,
842,
29918,
978,
29892,
2875,
29918,
978,
1125,
13,
12,
12,
1545,
29879,
353,
1051,
29898,
657,
5552,
29898,
1311,
29892,
2346,
842,
29918,
978,
467,
497,
3101,
13,
12,
12,
1949,
29918,
7076,
353,
7431,
29898,
1545,
29879,
29897,
13,
12,
12,
361,
954,
29918,
7076,
1275,
29871,
29900,
29901,
13,
12,
12,
12,
2457,
29871,
29900,
13,
12,
12,
2457,
5785,
29898,
2083,
4197,
657,
5552,
29898,
1545,
29892,
2875,
29918,
978,
29897,
363,
878,
297,
878,
29879,
12622,
29914,
1949,
29918,
7076,
13,
13,
12,
29992,
6799,
13,
12,
1753,
2982,
29918,
1545,
8232,
29918,
12483,
482,
29898,
1311,
1125,
13,
12,
12,
2457,
1583,
3032,
657,
29918,
1545,
2450,
29918,
12483,
482,
703,
12803,
29918,
1545,
8232,
613,
376,
1049,
29918,
771,
637,
291,
1159,
13,
13,
12,
29992,
6799,
13,
12,
1753,
4094,
29918,
1545,
8232,
29918,
12483,
482,
29898,
1311,
1125,
13,
12,
12,
2457,
1583,
3032,
657,
29918,
1545,
2450,
29918,
12483,
482,
703,
12803,
29918,
1545,
8232,
613,
376,
13405,
29918,
771,
637,
291,
1159,
13,
13,
12,
29992,
6799,
13,
12,
1753,
8666,
29918,
1545,
8232,
29918,
12483,
482,
29898,
1311,
1125,
13,
12,
12,
2457,
1583,
3032,
657,
29918,
1545,
2450,
29918,
12483,
482,
703,
29883,
1336,
29918,
1545,
8232,
613,
376,
9175,
29918,
771,
637,
291,
1159,
13,
13,
12,
29992,
6799,
13,
12,
1753,
7709,
29918,
1545,
8232,
29918,
12483,
482,
29898,
1311,
1125,
13,
12,
12,
2457,
1583,
3032,
657,
29918,
1545,
2450,
29918,
12483,
482,
703,
29883,
1336,
29918,
1545,
8232,
613,
376,
29891,
969,
29918,
771,
637,
291,
1159,
13,
13,
12,
29992,
6799,
13,
12,
1753,
10483,
29918,
2176,
29898,
1311,
1125,
13,
12,
12,
2176,
353,
1583,
29889,
657,
29918,
2176,
29898,
1311,
29889,
1052,
26218,
29918,
842,
29897,
13,
12,
12,
29937,
4078,
278,
1208,
26218,
848,
411,
738,
26278,
408,
263,
1426,
1347,
304,
278,
6535,
448,
674,
19060,
10483,
13,
12,
12,
29937,
3233,
11938,
2466,
29991,
13,
13,
12,
12,
29937,
14238,
278,
1426,
1873,
22602,
29915,
29873,
9213,
502,
322,
5232,
29879,
2712,
1623,
29889,
22303,
2599,
393,
363,
1286,
13,
12,
12,
29937,
1311,
29889,
1052,
4626,
630,
29918,
16744,
29918,
726,
353,
4489,
29889,
517,
29918,
7638,
580,
29871,
396,
565,
591,
1016,
29915,
29873,
3867,
263,
2224,
304,
304,
29918,
7638,
29892,
372,
3639,
263,
1347,
13,
12,
12,
29937,
1311,
29889,
7620,
580,
13,
13,
12,
12,
2457,
4489,
13,
13,
12,
29992,
6799,
13,
12,
1753,
1153,
7192,
497,
29918,
2176,
29898,
1311,
1125,
13,
12,
12,
361,
1583,
29889,
6038,
11950,
29918,
842,
29901,
13,
12,
12,
12,
2457,
1583,
29889,
657,
29918,
2176,
29898,
1311,
29889,
6038,
11950,
29918,
842,
29897,
13,
12,
12,
2870,
29901,
13,
12,
12,
12,
2457,
6213,
13,
13,
12,
1753,
679,
29918,
2176,
29898,
1311,
29892,
2967,
29918,
4299,
1125,
13,
12,
12,
15945,
29908,
13,
12,
12,
12,
29954,
5428,
278,
5279,
10959,
26278,
29892,
2992,
29892,
3639,
263,
4866,
1208,
26218,
360,
29943,
13,
12,
12,
29901,
2457,
29901,
13,
12,
12,
15945,
29908,
13,
13,
12,
12,
29937,
591,
29915,
645,
451,
3638,
2294,
470,
6206,
12786,
1549,
278,
1904,
29892,
577,
5768,
963,
1244,
13,
12,
12,
29937,
363,
6206,
12786,
29892,
445,
338,
599,
591,
817,
304,
437,
448,
363,
2294,
12786,
29892,
591,
29915,
645,
13,
12,
12,
29937,
8206,
1009,
2967,
1206,
2582,
2678,
746,
591,
1889,
2582,
13,
12,
12,
735,
2325,
29918,
4841,
353,
1583,
29889,
657,
29918,
1727,
1080,
29918,
1454,
29918,
915,
8708,
18930,
4197,
18457,
29889,
25634,
3352,
29892,
11069,
29889,
1525,
6720,
29963,
3352,
2314,
13,
13,
12,
12,
29937,
8206,
2847,
1208,
26218,
8783,
408,
372,
338,
13,
12,
12,
2176,
353,
2967,
29918,
4299,
29889,
294,
29918,
1272,
29918,
2557,
29898,
735,
2325,
29918,
1727,
1080,
29922,
735,
2325,
29918,
4841,
29897,
13,
13,
12,
12,
29937,
437,
738,
975,
24040,
470,
3620,
515,
278,
26278,
13,
13,
12,
12,
2457,
4489,
13,
13,
12,
1753,
679,
29918,
1727,
1080,
29918,
1454,
29918,
915,
8708,
18930,
29898,
1311,
29892,
4010,
18930,
1125,
13,
12,
12,
15945,
29908,
13,
12,
12,
12,
29954,
5428,
697,
470,
901,
4010,
18930,
297,
385,
1006,
519,
29892,
3639,
278,
5120,
23481,
393,
278,
4010,
18930,
3394,
304,
408,
263,
1051,
29889,
13,
12,
12,
12,
4013,
3508,
29915,
29873,
20837,
29892,
1363,
591,
817,
304,
1074,
565,
278,
5120,
21733,
16058,
263,
6030,
29892,
769,
13,
12,
12,
12,
15189,
1423,
599,
278,
12786,
393,
334,
18361,
29876,
29915,
29873,
29930,
505,
263,
21733,
297,
278,
1857,
1904,
1065,
313,
4716,
674,
505,
13,
12,
12,
12,
1552,
6030,
6790,
727,
29897,
363,
1009,
2322,
4010,
18930,
13,
12,
12,
29901,
3207,
6030,
29901,
13,
12,
12,
29901,
2457,
29901,
13,
12,
12,
15945,
29908,
13,
13,
12,
12,
29937,
27435,
278,
2346,
2011,
1080,
363,
1269,
4004,
1244,
297,
697,
2425,
13,
12,
12,
12803,
29918,
4572,
29918,
24572,
353,
660,
580,
13,
12,
12,
4381,
29918,
915,
16300,
29918,
24572,
353,
660,
580,
13,
12,
12,
1454,
6030,
297,
4010,
18930,
29901,
13,
12,
12,
12,
12803,
29918,
4572,
29918,
24572,
353,
5120,
29918,
4572,
29918,
24572,
891,
660,
29898,
8513,
839,
29918,
1853,
29922,
915,
16300,
29897,
13,
12,
12,
12,
4381,
29918,
915,
16300,
29918,
24572,
353,
2322,
29918,
915,
16300,
29918,
24572,
891,
660,
29898,
4381,
29918,
915,
16300,
29922,
915,
16300,
29897,
13,
13,
12,
12,
29937,
679,
278,
12786,
304,
9479,
3160,
515,
26278,
13,
12,
12,
1545,
8232,
353,
1583,
29889,
12803,
29918,
1545,
8232,
29889,
4572,
29898,
12803,
29918,
4572,
29918,
24572,
29897,
13,
12,
12,
361,
26278,
29901,
13,
12,
12,
12,
4841,
353,
518,
1545,
29889,
12803,
29889,
7564,
29918,
333,
363,
878,
297,
26278,
29962,
13,
12,
12,
2870,
29901,
13,
12,
12,
12,
4841,
353,
5159,
13,
13,
12,
12,
361,
1583,
29889,
1052,
26218,
29918,
842,
29889,
4299,
29918,
6203,
29889,
1457,
10662,
29889,
1509,
29918,
4381,
29918,
12803,
29918,
915,
8708,
18930,
29901,
13,
12,
12,
12,
29937,
4377,
714,
607,
12786,
3282,
29915,
29873,
505,
26278,
297,
278,
1857,
1904,
1065,
448,
591,
29915,
645,
8206,
278,
21274,
363,
1438,
13,
12,
12,
12,
1727,
1080,
29918,
517,
29918,
1509,
29918,
4381,
29879,
29918,
3166,
353,
1583,
29889,
1052,
26218,
29918,
842,
29889,
4299,
29918,
6203,
29889,
12803,
29918,
842,
29889,
4572,
29898,
4381,
29918,
915,
16300,
29918,
24572,
2144,
13,
12,
12,
12,
12,
29889,
29881,
17678,
29898,
18457,
29889,
12650,
29889,
4572,
29898,
1545,
8232,
1649,
262,
29922,
1311,
29889,
12803,
29918,
1545,
8232,
29889,
497,
22130,
13,
12,
12,
12,
361,
12786,
29918,
517,
29918,
1509,
29918,
4381,
29879,
29918,
3166,
29901,
13,
12,
12,
12,
12,
4841,
29889,
21843,
4197,
12803,
29889,
7564,
29918,
333,
363,
5120,
297,
12786,
29918,
517,
29918,
1509,
29918,
4381,
29879,
29918,
3166,
2314,
13,
13,
12,
12,
2457,
18999,
13,
13,
12,
1753,
10641,
29918,
1545,
8232,
29898,
1311,
29892,
10483,
1125,
13,
12,
12,
1049,
29918,
1545,
8232,
353,
6571,
13,
12,
12,
13405,
29918,
1545,
8232,
353,
6571,
13,
12,
12,
6038,
11950,
29918,
1545,
8232,
353,
6571,
13,
13,
12,
12,
12803,
29918,
1545,
8232,
353,
1583,
29889,
12803,
29918,
1545,
8232,
29889,
4572,
29898,
12803,
1649,
275,
4304,
29922,
8824,
29897,
13,
12,
12,
1454,
21733,
297,
5120,
29918,
1545,
8232,
29901,
29871,
396,
679,
599,
278,
1661,
4381,
26278,
13,
12,
12,
12,
1049,
29918,
1545,
8232,
29961,
1545,
2450,
29889,
12803,
29889,
7564,
29918,
333,
29962,
353,
5785,
29898,
1545,
2450,
29889,
1049,
29918,
771,
637,
291,
29897,
13,
12,
12,
12,
361,
21733,
29889,
12803,
29889,
5924,
29879,
29918,
381,
8966,
362,
29901,
13,
12,
12,
12,
12,
13405,
29918,
1545,
8232,
29961,
1545,
2450,
29889,
12803,
29889,
7564,
29918,
333,
29962,
353,
5785,
29898,
1545,
2450,
29889,
13405,
29918,
771,
637,
291,
29897,
13,
12,
12,
12,
361,
21733,
29889,
12803,
29889,
5924,
29879,
29918,
6038,
11950,
29901,
13,
12,
12,
12,
12,
6038,
11950,
29918,
1545,
8232,
29961,
1545,
2450,
29889,
12803,
29889,
7564,
29918,
333,
29962,
353,
5785,
29898,
1545,
2450,
29889,
6038,
11950,
29918,
771,
637,
291,
29897,
13,
13,
12,
12,
4381,
29918,
12803,
29918,
1545,
2450,
353,
1583,
29889,
12803,
29918,
1545,
8232,
29889,
657,
29898,
12803,
1649,
275,
4304,
29922,
5574,
29897,
13,
13,
12,
12,
1557,
24893,
29889,
19826,
29918,
328,
5143,
358,
703,
1049,
613,
2982,
29918,
1545,
8232,
29892,
2322,
29922,
7411,
29898,
4381,
29918,
12803,
29918,
1545,
2450,
29889,
1049,
29918,
771,
637,
291,
876,
13,
13,
12,
12,
29937,
10641,
26278,
363,
3805,
8966,
362,
322,
1153,
7192,
497,
8679,
373,
825,
278,
1904,
4038,
11286,
13,
12,
12,
361,
1583,
29889,
1052,
26218,
29918,
842,
29889,
4299,
29918,
6203,
29889,
5924,
29879,
29918,
381,
8966,
362,
29901,
13,
12,
12,
12,
1557,
24893,
29889,
19826,
29918,
328,
5143,
358,
703,
13405,
613,
4094,
29918,
1545,
8232,
29892,
2322,
29922,
7411,
29898,
4381,
29918,
12803,
29918,
1545,
2450,
29889,
13405,
29918,
771,
637,
291,
876,
13,
12,
12,
361,
1583,
29889,
1052,
26218,
29918,
842,
29889,
4299,
29918,
6203,
29889,
5924,
29879,
29918,
6038,
11950,
29901,
13,
12,
12,
12,
1557,
24893,
29889,
19826,
29918,
328,
5143,
358,
703,
6038,
11950,
613,
1153,
7192,
497,
29918,
1545,
8232,
29892,
2322,
29922,
7411,
29898,
4381,
29918,
12803,
29918,
1545,
2450,
29889,
6038,
11950,
29918,
771,
637,
291,
876,
13,
13,
12,
12,
12803,
29918,
2324,
287,
29918,
1989,
353,
376,
12803,
29918,
2324,
287,
29908,
13,
12,
12,
29937,
1286,
10641,
278,
274,
1336,
26278,
448,
1369,
491,
8363,
278,
848,
964,
263,
9657,
13,
12,
12,
9175,
29918,
1545,
8232,
353,
426,
12803,
29918,
2324,
287,
29918,
1989,
29901,
5159,
29913,
13,
12,
12,
29891,
969,
29918,
1545,
8232,
353,
426,
12803,
29918,
2324,
287,
29918,
1989,
29901,
5159,
29913,
13,
12,
12,
29883,
1336,
29918,
1545,
8232,
353,
1583,
29889,
29883,
1336,
29918,
1545,
8232,
29889,
4572,
29898,
29883,
1336,
1649,
275,
4304,
29922,
8824,
29897,
13,
12,
12,
1454,
21733,
297,
274,
1336,
29918,
1545,
8232,
29901,
29871,
396,
679,
599,
278,
1661,
4381,
26278,
13,
13,
12,
12,
12,
29883,
1336,
29918,
401,
353,
21733,
29889,
29883,
1336,
29889,
29883,
1336,
29918,
401,
13,
13,
12,
12,
12,
361,
21733,
29889,
12803,
338,
6213,
29901,
29871,
396,
565,
372,
29915,
29879,
451,
5120,
29899,
2324,
287,
13,
12,
12,
12,
12,
9175,
29918,
1545,
8232,
29961,
29883,
1336,
29918,
401,
29962,
353,
5785,
29898,
1545,
2450,
29889,
9175,
29918,
771,
637,
291,
29897,
13,
12,
12,
12,
12,
29891,
969,
29918,
1545,
8232,
29961,
29883,
1336,
29918,
401,
29962,
353,
5785,
29898,
1545,
2450,
29889,
29891,
969,
29918,
771,
637,
291,
29897,
13,
12,
12,
12,
12,
12803,
29918,
333,
353,
6213,
13,
12,
12,
12,
2870,
29901,
259,
396,
565,
372,
338,
5120,
29899,
2324,
287,
13,
12,
12,
12,
12,
12803,
29918,
333,
353,
21733,
29889,
12803,
29889,
7564,
29918,
333,
13,
13,
12,
12,
12,
12,
29937,
1653,
21503,
4314,
363,
1716,
8666,
322,
7709,
11938,
393,
3160,
13,
12,
12,
12,
12,
29937,
278,
5120,
3553,
29892,
278,
274,
1336,
775,
29892,
322,
278,
995,
13,
12,
12,
12,
12,
9175,
29918,
1545,
8232,
3366,
12803,
29918,
2324,
287,
16862,
4397,
3319,
13,
12,
12,
12,
12,
12,
29908,
12803,
1115,
5120,
29918,
333,
29892,
13,
12,
12,
12,
12,
12,
29908,
29883,
1336,
1115,
274,
1336,
29918,
401,
29892,
13,
12,
12,
12,
12,
12,
29908,
1767,
1115,
5785,
29898,
1545,
2450,
29889,
9175,
29918,
771,
637,
291,
511,
13,
12,
12,
12,
12,
1800,
13,
12,
12,
12,
12,
29891,
969,
29918,
1545,
8232,
3366,
12803,
29918,
2324,
287,
16862,
4397,
3319,
13,
12,
12,
12,
12,
12,
29908,
12803,
1115,
5120,
29918,
333,
29892,
13,
12,
12,
12,
12,
12,
29908,
29883,
1336,
1115,
274,
1336,
29918,
401,
29892,
13,
12,
12,
12,
12,
12,
29908,
1767,
1115,
5785,
29898,
1545,
2450,
29889,
29891,
969,
29918,
771,
637,
291,
511,
13,
12,
12,
12,
12,
1800,
13,
13,
12,
12,
12,
3317,
29918,
29883,
1336,
29918,
6203,
29918,
13646,
353,
21733,
29889,
3317,
29918,
1049,
29918,
6203,
29918,
771,
637,
291,
13,
12,
12,
12,
361,
4236,
29918,
29883,
1336,
29918,
6203,
29918,
13646,
322,
21733,
29889,
1195,
29918,
1049,
29918,
6203,
29918,
771,
637,
291,
322,
451,
4236,
29918,
29883,
1336,
29918,
6203,
29918,
13646,
1405,
21733,
29889,
1195,
29918,
1049,
29918,
6203,
29918,
771,
637,
291,
29901,
13,
12,
12,
12,
12,
29937,
565,
278,
4236,
322,
278,
1375,
526,
1716,
3342,
322,
278,
4236,
338,
3109,
1135,
278,
1375,
29892,
14383,
4417,
278,
4236,
448,
13,
12,
12,
12,
12,
29937,
445,
338,
1363,
14280,
27148,
261,
3913,
263,
995,
310,
448,
29896,
408,
967,
4236,
995,
304,
12266,
694,
7568,
4046,
13,
12,
12,
12,
12,
3317,
29918,
29883,
1336,
29918,
6203,
29918,
13646,
353,
6213,
13,
13,
12,
12,
12,
29937,
591,
508,
2337,
788,
372,
29892,
322,
372,
29915,
29879,
9280,
565,
896,
29915,
276,
1716,
6213,
448,
393,
29915,
645,
679,
7120,
2678,
13,
12,
12,
12,
1557,
24893,
29889,
1202,
29918,
29883,
1336,
29918,
6203,
29918,
13646,
29898,
29883,
1336,
29918,
401,
29922,
1545,
2450,
29889,
29883,
1336,
29889,
29883,
1336,
29918,
401,
29892,
13,
12,
12,
12,
462,
462,
29871,
1375,
29918,
771,
637,
291,
29922,
1545,
2450,
29889,
1195,
29918,
1049,
29918,
6203,
29918,
771,
637,
291,
29892,
13,
12,
12,
12,
462,
462,
29871,
4236,
29918,
771,
637,
291,
29922,
3317,
29918,
29883,
1336,
29918,
6203,
29918,
13646,
29892,
13,
12,
12,
12,
462,
462,
29871,
5120,
29922,
12803,
29918,
333,
29897,
13,
13,
12,
12,
4381,
29918,
29883,
1336,
29918,
1545,
2450,
353,
1583,
29889,
29883,
1336,
29918,
1545,
8232,
29889,
657,
29898,
29883,
1336,
1649,
275,
4304,
29922,
5574,
29897,
13,
12,
12,
29937,
769,
1209,
1906,
9657,
29879,
304,
278,
10483,
775,
17126,
565,
727,
526,
4452,
313,
578,
21274,
679,
731,
29897,
13,
12,
12,
1557,
24893,
29889,
19826,
29918,
328,
5143,
358,
703,
9175,
613,
8666,
29918,
1545,
8232,
29892,
2322,
29922,
7411,
29898,
4381,
29918,
29883,
1336,
29918,
1545,
2450,
29889,
9175,
29918,
771,
637,
291,
876,
13,
12,
12,
1557,
24893,
29889,
19826,
29918,
328,
5143,
358,
703,
29891,
969,
613,
7709,
29918,
1545,
8232,
29892,
2322,
29922,
7411,
29898,
4381,
29918,
29883,
1336,
29918,
1545,
2450,
29889,
29891,
969,
29918,
771,
637,
291,
876,
13,
13,
12,
1753,
1065,
29898,
1311,
29892,
11799,
29918,
4905,
29922,
8516,
29892,
17322,
29918,
4878,
29918,
7638,
29918,
4905,
29922,
8516,
1125,
13,
12,
12,
29937,
12919,
29892,
591,
2113,
29915,
29873,
2304,
1208,
4626,
1218,
278,
848,
1244,
448,
591,
29915,
645,
13,
12,
12,
29937,
925,
671,
385,
2847,
1208,
26218,
731,
322,
769,
1207,
1749,
26278,
13,
12,
12,
29937,
1434,
2734,
278,
21846,
13,
13,
12,
12,
29937,
1052,
747,
353,
1208,
26218,
29889,
3195,
7856,
26218,
29898,
3389,
29889,
1052,
1182,
362,
29918,
2176,
29897,
13,
12,
12,
29937,
1052,
747,
29889,
1052,
4626,
403,
580,
13,
13,
12,
12,
1311,
29889,
21094,
353,
5852,
13,
12,
12,
1311,
29889,
7620,
580,
29871,
396,
2791,
372,
408,
2734,
322,
4078,
372,
577,
278,
3450,
11217,
278,
4660,
13,
12,
12,
2202,
29901,
13,
12,
12,
12,
1557,
24893,
29918,
27492,
353,
21846,
29889,
4421,
24893,
29898,
1052,
26218,
29918,
2176,
29922,
1311,
29889,
1557,
24893,
29918,
2176,
29892,
1153,
7192,
497,
29918,
2176,
29922,
1311,
29889,
6038,
11950,
29918,
2176,
29897,
13,
12,
12,
12,
1311,
29889,
14930,
29918,
1545,
8232,
29898,
1557,
24893,
29922,
1557,
24893,
29918,
27492,
29897,
13,
12,
12,
12,
9902,
353,
10483,
29918,
27492,
29889,
3389,
580,
13,
13,
12,
12,
12,
361,
11799,
29918,
4905,
338,
451,
6213,
29901,
13,
12,
12,
12,
12,
9902,
29889,
517,
29918,
7638,
29898,
7638,
29918,
4905,
29897,
13,
13,
12,
12,
12,
29937,
788,
278,
17322,
1206,
10483,
1819,
304,
278,
1021,
848,
3515,
13,
12,
12,
12,
9902,
353,
1583,
29889,
1202,
29918,
13762,
303,
29918,
4878,
29918,
392,
29918,
10660,
29918,
7052,
29881,
29918,
5975,
29898,
9902,
29897,
13,
13,
12,
12,
12,
361,
17322,
29918,
4878,
29918,
7638,
29918,
4905,
338,
451,
6213,
29901,
13,
12,
12,
12,
12,
9902,
29889,
517,
29918,
7638,
29898,
13762,
303,
29918,
4878,
29918,
7638,
29918,
4905,
29897,
13,
13,
12,
12,
12,
29937,
1434,
8363,
2582,
29892,
1207,
1854,
591,
2949,
264,
29915,
29873,
11132,
297,
278,
623,
1546,
6257,
278,
1065,
322,
1286,
13,
12,
12,
12,
361,
451,
8125,
6558,
29889,
12650,
29889,
4572,
29898,
333,
29922,
1311,
29889,
333,
467,
9933,
7295,
13,
12,
12,
12,
12,
2457,
13,
13,
12,
12,
12,
29937,
1286,
591,
817,
304,
2254,
278,
9819,
4489,
1250,
964,
278,
6535,
13,
12,
12,
12,
2914,
29918,
842,
353,
1583,
29889,
1359,
29918,
3757,
4339,
29898,
9902,
29918,
2176,
29922,
9902,
29892,
1153,
7192,
497,
29918,
2176,
29922,
1557,
24893,
29918,
27492,
29889,
6038,
11950,
29918,
2176,
29897,
13,
12,
12,
12,
1311,
29889,
1359,
29918,
262,
1725,
294,
747,
9770,
29898,
1557,
24893,
29918,
27492,
29892,
1121,
29918,
842,
29897,
13,
13,
12,
12,
12,
1311,
29889,
8835,
353,
5852,
13,
12,
12,
12,
1188,
29889,
3888,
703,
3195,
1065,
4866,
1159,
13,
12,
12,
4951,
635,
29901,
29871,
396,
1207,
1854,
304,
2791,
372,
408,
451,
2734,
17126,
310,
967,
4660,
470,
565,
372,
21985,
13,
12,
12,
12,
1311,
29889,
21094,
353,
7700,
13,
12,
12,
12,
1311,
29889,
7620,
580,
13,
13,
12,
1753,
788,
29918,
13762,
303,
29918,
4878,
29918,
392,
29918,
10660,
29918,
7052,
29881,
29918,
5975,
29898,
1311,
29892,
2582,
1125,
13,
12,
12,
9902,
353,
17322,
29918,
4878,
29889,
4381,
29918,
13762,
303,
29918,
4878,
29918,
19529,
292,
29918,
2220,
29898,
9902,
29897,
13,
13,
12,
12,
10660,
29918,
7052,
29881,
29918,
1727,
1080,
353,
1583,
29889,
657,
29918,
1727,
1080,
29918,
1454,
29918,
915,
8708,
18930,
4197,
18457,
29889,
18521,
1718,
29918,
29903,
5454,
20566,
29892,
2314,
13,
12,
12,
29937,
925,
7812,
701,
26556,
278,
1819,
363,
337,
9947,
29892,
2982,
29892,
322,
4094,
363,
5608,
6287,
29881,
12786,
773,
278,
17322,
1206,
1819,
313,
10660,
6287,
29881,
29897,
13,
12,
12,
1454,
5120,
297,
5608,
29918,
7052,
29881,
29918,
1727,
1080,
29901,
13,
12,
12,
12,
9902,
29889,
2029,
15625,
9902,
29889,
29887,
1275,
5120,
511,
376,
29887,
2124,
29918,
276,
9947,
3108,
353,
2582,
29889,
2029,
15625,
9902,
29889,
29887,
1275,
5120,
511,
376,
13762,
303,
29918,
4878,
29918,
29887,
2124,
29918,
276,
9947,
3108,
13,
12,
12,
12,
9902,
29889,
2029,
15625,
9902,
29889,
29887,
1275,
5120,
511,
376,
29916,
1049,
1557,
3108,
353,
2582,
29889,
2029,
15625,
9902,
29889,
29887,
1275,
5120,
511,
376,
13762,
303,
29918,
4878,
29918,
1049,
3108,
13,
12,
12,
12,
9902,
29889,
2029,
15625,
9902,
29889,
29887,
1275,
5120,
511,
376,
29916,
29893,
10412,
29883,
3108,
353,
2582,
29889,
2029,
15625,
9902,
29889,
29887,
1275,
5120,
511,
376,
13762,
303,
29918,
4878,
29918,
13405,
3108,
13,
12,
12,
12,
9902,
29889,
2029,
15625,
9902,
29889,
29887,
1275,
5120,
511,
376,
1212,
29918,
276,
9947,
3108,
353,
29871,
29900,
29871,
396,
1870,
714,
278,
7787,
337,
9947,
1746,
1951,
372,
29915,
29879,
8340,
1286,
29889,
13,
13,
12,
12,
2457,
2582,
13,
13,
12,
1753,
2254,
29918,
3757,
4339,
29898,
1311,
29892,
2582,
29918,
2176,
29892,
1153,
7192,
497,
29918,
2176,
29922,
8516,
1125,
13,
12,
12,
15945,
29908,
13,
12,
12,
12,
29954,
5428,
263,
731,
310,
1904,
2582,
29892,
15376,
278,
2582,
304,
278,
2566,
13,
12,
12,
29901,
3207,
2582,
29918,
2176,
29901,
13,
12,
12,
29901,
3207,
1904,
29918,
3389,
29901,
13,
12,
12,
29901,
2457,
29901,
13,
12,
12,
15945,
29908,
13,
12,
12,
1188,
29889,
3888,
29898,
29888,
29908,
23456,
2582,
363,
1904,
1065,
426,
1311,
29889,
333,
27195,
13,
12,
12,
2914,
29918,
842,
353,
7867,
2697,
29898,
4299,
29918,
3389,
29922,
1311,
29892,
270,
23239,
29918,
3259,
29922,
657,
29918,
29881,
23239,
29918,
3259,
3101,
13,
12,
12,
2914,
29918,
842,
29889,
7620,
580,
13,
13,
12,
12,
29937,
2254,
278,
349,
3580,
2582,
937,
13,
12,
12,
1311,
3032,
1359,
29918,
2176,
29898,
9902,
29918,
2176,
29922,
9902,
29918,
2176,
29892,
1121,
29918,
842,
29922,
2914,
29918,
842,
29892,
2407,
29918,
4299,
29922,
3591,
29897,
13,
12,
12,
29937,
1286,
2254,
278,
1153,
7192,
497,
848,
565,
372,
16058,
13,
12,
12,
361,
1153,
7192,
497,
29918,
2176,
338,
451,
6213,
29901,
13,
12,
12,
12,
1311,
3032,
1359,
29918,
2176,
29898,
9902,
29918,
2176,
29922,
6038,
11950,
29918,
2176,
29892,
1121,
29918,
842,
29922,
2914,
29918,
842,
29892,
2407,
29918,
4299,
29922,
29934,
475,
11950,
3591,
29897,
13,
13,
12,
12,
2457,
1121,
29918,
842,
13,
13,
12,
1753,
903,
1359,
29918,
2176,
29898,
1311,
29892,
2582,
29918,
2176,
29892,
1121,
29918,
842,
29892,
2407,
29918,
4299,
29922,
3591,
1125,
13,
12,
12,
2202,
29901,
13,
12,
12,
12,
1454,
2407,
297,
2582,
29918,
2176,
29889,
277,
814,
29884,
2701,
7295,
13,
12,
12,
12,
12,
29937,
679,
278,
937,
18761,
29915,
29879,
4235,
29892,
769,
6876,
278,
2425,
13,
12,
12,
12,
12,
29937,
445,
881,
367,
8473,
1135,
5663,
15387,
372,
1432,
931,
297,
278,
2446,
2425,
29892,
541,
591,
817,
304,
437,
372,
2748,
13,
12,
12,
12,
12,
9621,
353,
1051,
29898,
842,
29898,
11651,
3032,
9621,
29897,
448,
731,
29898,
3366,
333,
613,
376,
29887,
613,
376,
29875,
613,
376,
1052,
26218,
29918,
842,
3108,
876,
13,
12,
12,
12,
12,
8690,
13,
13,
12,
12,
12,
1454,
2407,
297,
2582,
29918,
2176,
29889,
277,
814,
29884,
2701,
7295,
29871,
396,
3639,
4257,
5291,
2701,
13,
12,
12,
12,
12,
2914,
353,
2407,
29918,
4299,
29898,
2914,
29918,
842,
29922,
2914,
29918,
842,
29897,
13,
12,
12,
12,
12,
2914,
29889,
29883,
1336,
353,
315,
1336,
29889,
12650,
29889,
657,
29898,
29883,
1336,
29918,
401,
29922,
11651,
29889,
29875,
29892,
1904,
29918,
6203,
29922,
1311,
29889,
1052,
26218,
29918,
842,
29889,
4299,
29918,
6203,
29897,
13,
12,
12,
12,
12,
2914,
29889,
12803,
353,
11069,
29889,
12650,
29889,
657,
29898,
7564,
29918,
333,
29922,
11651,
29889,
29887,
29892,
1904,
29918,
6203,
29922,
1311,
29889,
1052,
26218,
29918,
842,
29889,
4299,
29918,
6203,
29897,
13,
12,
12,
12,
12,
1454,
1897,
297,
4235,
29901,
29871,
396,
903,
9621,
3508,
29915,
29873,
2024,
448,
372,
29915,
29879,
925,
5557,
292,
28792,
448,
1074,
4257,
23583,
10561,
13,
12,
12,
12,
12,
12,
1767,
353,
679,
5552,
29898,
11651,
29892,
1897,
29897,
13,
13,
12,
12,
12,
12,
12,
361,
995,
338,
451,
6213,
322,
1134,
29898,
1767,
29897,
338,
451,
851,
322,
12655,
29889,
275,
13707,
29898,
1767,
1125,
29871,
396,
565,
591,
2355,
18780,
313,
14565,
408,
411,
385,
297,
1725,
294,
4127,
29897,
448,
4175,
714,
6213,
1819,
1363,
896,
1207,
12655,
29889,
275,
13707,
4418,
13,
12,
12,
12,
12,
12,
12,
1767,
353,
6213,
29871,
396,
769,
591,
817,
304,
14383,
372,
470,
372,
29915,
645,
289,
548,
278,
3353,
1591,
313,
643,
17365,
29897,
13,
13,
12,
12,
12,
12,
12,
842,
5552,
29898,
2914,
29892,
1897,
29892,
995,
29897,
13,
13,
12,
12,
12,
12,
361,
451,
1121,
29889,
1212,
29918,
276,
9947,
470,
1121,
29889,
1212,
29918,
276,
9947,
529,
29871,
29900,
29901,
29871,
396,
565,
738,
2407,
756,
8178,
7787,
20957,
1041,
29892,
591,
29915,
276,
714,
310,
13451,
373,
1208,
26218,
448,
2791,
372,
13,
12,
12,
12,
12,
12,
2914,
29918,
842,
29889,
262,
29918,
1052,
26218,
353,
7700,
13,
13,
12,
12,
12,
12,
2914,
29889,
7620,
580,
13,
13,
12,
12,
12,
361,
1121,
29918,
842,
29889,
262,
29918,
1052,
26218,
338,
7700,
29901,
29871,
396,
565,
591,
3939,
278,
297,
29918,
1052,
26218,
995,
29892,
4078,
278,
1121,
731,
448,
591,
1423,
445,
1244,
577,
591,
871,
7135,
278,
4078,
2748,
13,
12,
12,
12,
12,
2914,
29918,
842,
29889,
7620,
580,
13,
13,
12,
12,
12,
2457,
1121,
29918,
842,
13,
12,
12,
19499,
29901,
13,
12,
12,
12,
2914,
29918,
842,
29889,
8143,
580,
29871,
396,
5941,
701,
565,
591,
4418,
1550,
8363,
848,
13,
12,
12,
12,
22692,
13,
13,
12,
1753,
2254,
29918,
262,
1725,
294,
747,
9770,
29898,
1311,
29892,
10483,
29892,
1121,
29918,
842,
1125,
13,
12,
12,
1188,
29889,
8382,
703,
7900,
404,
292,
297,
1725,
294,
747,
9770,
1159,
13,
12,
12,
1454,
297,
1725,
294,
4127,
297,
10483,
29889,
262,
1725,
294,
747,
9770,
29901,
13,
12,
12,
12,
797,
1725,
294,
4127,
29889,
12650,
29889,
3258,
29898,
2914,
29918,
842,
29922,
2914,
29918,
842,
29892,
13,
12,
12,
12,
462,
632,
5120,
29922,
18457,
29889,
12650,
29889,
657,
29898,
7564,
29918,
333,
29922,
262,
1725,
294,
4127,
29889,
12803,
29892,
1904,
29918,
6203,
29922,
1311,
29889,
1052,
26218,
29918,
842,
29889,
4299,
29918,
6203,
511,
13,
12,
12,
12,
462,
632,
1629,
29922,
262,
1725,
294,
4127,
29889,
2230,
2557,
29892,
13,
12,
12,
12,
462,
632,
6139,
29922,
262,
1725,
294,
4127,
29889,
8216,
13,
12,
12,
12,
462,
632,
1723,
13,
13,
12,
12,
7827,
29918,
262,
1725,
294,
747,
9770,
353,
7431,
29898,
1557,
24893,
29889,
262,
1725,
294,
747,
9770,
29897,
13,
12,
12,
24077,
567,
353,
6571,
13,
12,
12,
29937,
1286,
1235,
29915,
29879,
1074,
565,
727,
526,
738,
8182,
567,
393,
526,
3619,
304,
278,
297,
1725,
294,
747,
9770,
13,
12,
12,
29937,
361,
3001,
29918,
262,
1725,
294,
747,
9770,
1405,
29871,
29906,
29901,
29871,
396,
565,
591,
505,
901,
1135,
263,
1361,
1319,
29892,
591,
29915,
645,
24809,
607,
8182,
567,
526,
3619,
13,
12,
12,
1454,
297,
1725,
294,
4127,
297,
10483,
29889,
262,
1725,
294,
747,
9770,
29901,
13,
12,
12,
12,
262,
1725,
294,
1821,
29918,
12803,
29918,
9902,
353,
7867,
29889,
12650,
29889,
4572,
29898,
2914,
29918,
842,
29922,
2914,
29918,
842,
29892,
13,
12,
12,
12,
12,
12,
462,
462,
3986,
5120,
1649,
7564,
29918,
333,
29922,
262,
1725,
294,
4127,
29889,
12803,
29892,
13,
12,
12,
12,
12,
12,
462,
462,
3986,
1629,
29922,
262,
1725,
294,
4127,
29889,
2230,
2557,
29897,
13,
13,
12,
12,
12,
1454,
1121,
297,
297,
1725,
294,
1821,
29918,
12803,
29918,
9902,
29901,
13,
12,
12,
12,
12,
29883,
1336,
353,
1121,
29889,
29883,
1336,
29889,
29883,
1336,
29918,
401,
13,
12,
12,
12,
12,
361,
274,
1336,
297,
8182,
567,
29901,
13,
12,
12,
12,
12,
12,
24077,
567,
29961,
29883,
1336,
29962,
4619,
29871,
29896,
13,
12,
12,
12,
12,
2870,
29901,
13,
12,
12,
12,
12,
12,
24077,
567,
29961,
29883,
1336,
29962,
353,
29871,
29896,
13,
13,
12,
12,
29937,
1957,
635,
591,
29915,
29881,
864,
304,
1820,
445,
491,
1024,
577,
393,
591,
508,
1510,
278,
1024,
1244,
13,
12,
12,
361,
7431,
29898,
24077,
567,
29889,
8149,
3101,
1405,
29871,
29900,
29901,
13,
12,
12,
12,
24582,
29918,
1609,
29918,
932,
21711,
353,
426,
29895,
29901,
29894,
363,
413,
29892,
29894,
297,
12705,
29898,
24077,
567,
29889,
7076,
3285,
1820,
29922,
2892,
2944,
29901,
2944,
29961,
29896,
1402,
11837,
29922,
5574,
2915,
13,
12,
12,
12,
262,
1725,
294,
4127,
29918,
7076,
353,
6796,
8875,
21313,
1800,
1642,
4830,
29898,
29883,
1336,
29892,
995,
29897,
363,
274,
1336,
29892,
995,
297,
12705,
29918,
1609,
29918,
932,
21711,
29889,
7076,
580,
29962,
13,
12,
12,
12,
1311,
29889,
262,
1725,
294,
747,
9770,
29918,
726,
353,
9162,
11393,
7122,
29898,
262,
1725,
294,
4127,
29918,
7076,
29897,
13,
13,
13,
1990,
512,
1725,
294,
4127,
29898,
9794,
29889,
3195,
1125,
13,
12,
2914,
29918,
842,
353,
4733,
29889,
27755,
2558,
29898,
3591,
2697,
29892,
373,
29918,
8143,
29922,
9794,
29889,
29907,
3289,
5454,
2287,
29892,
4475,
29918,
978,
543,
262,
1725,
294,
747,
9770,
1159,
13,
12,
6360,
353,
4733,
29889,
12636,
497,
7798,
3073,
580,
13,
12,
12803,
353,
4733,
29889,
27755,
2558,
29898,
18457,
29892,
1870,
29922,
5574,
29892,
373,
29918,
8143,
29922,
9794,
29889,
10490,
29918,
10074,
29892,
4475,
29918,
978,
543,
262,
1725,
294,
747,
9770,
1159,
13,
12,
8216,
353,
4733,
29889,
15778,
580,
13,
13,
13,
1990,
11069,
2111,
2450,
29898,
9794,
29889,
3195,
1125,
13,
12,
15945,
29908,
13,
12,
12,
29909,
21733,
373,
263,
5120,
304,
671,
297,
263,
1904,
1065,
29889,
1334,
29915,
645,
817,
304,
505,
278,
1904,
1065,
2048,
263,
716,
11701,
848,
3515,
13,
12,
12,
3166,
1438,
2729,
373,
278,
775,
10970,
322,
278,
1904,
10365,
1860,
13,
12,
15945,
29908,
13,
12,
1990,
20553,
29901,
13,
12,
12,
13092,
29918,
29873,
12966,
353,
6024,
4299,
29918,
3389,
742,
525,
12803,
2033,
13,
13,
12,
29937,
591,
505,
1023,
1870,
519,
9117,
6611,
1244,
29889,
960,
1716,
526,
716,
29892,
769,
278,
5751,
16058,
304,
278,
3353,
1904,
4038,
408,
278,
2322,
29889,
13,
12,
29937,
565,
871,
697,
338,
6136,
29892,
769,
372,
16058,
304,
2845,
278,
5120,
29892,
470,
278,
2318,
313,
392,
769,
591,
817,
1554,
393,
16058,
13,
12,
29937,
372,
304,
278,
5375,
12786,
467,
739,
29915,
29879,
1950,
393,
278,
2318,
976,
513,
23352,
2280,
674,
6403,
297,
278,
7649,
1363,
13,
12,
29937,
591,
29915,
645,
864,
304,
2479,
372,
599,
297,
263,
2910,
29892,
541,
591,
1795,
864,
304,
437,
372,
1244,
577,
393,
3450,
5717,
508,
671,
278,
6471,
2086,
13,
12,
12803,
353,
4733,
29889,
27755,
2558,
29898,
18457,
29892,
13,
12,
462,
965,
373,
29918,
8143,
29922,
9794,
29889,
29907,
3289,
5454,
2287,
29892,
13,
12,
462,
965,
4475,
29918,
978,
543,
1545,
8232,
613,
13,
12,
462,
965,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
12,
12803,
29918,
2972,
353,
4733,
29889,
27755,
2558,
29898,
18457,
4782,
29892,
13,
12,
462,
462,
373,
29918,
8143,
29922,
9794,
29889,
29907,
3289,
5454,
2287,
29892,
13,
12,
462,
462,
4475,
29918,
978,
543,
1545,
8232,
613,
13,
12,
462,
462,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
13,
12,
13405,
29918,
771,
637,
291,
353,
4733,
29889,
11031,
3073,
29898,
4381,
29922,
29896,
29889,
29900,
29892,
9654,
29922,
5574,
29897,
29871,
396,
278,
5253,
29892,
6198,
304,
2967,
1819,
29892,
304,
3867,
13,
12,
6038,
11950,
29918,
771,
637,
291,
353,
4733,
29889,
11031,
3073,
29898,
4381,
29922,
29896,
29889,
29900,
29892,
9654,
29922,
5574,
29897,
29871,
396,
278,
5253,
29892,
6198,
304,
2967,
1819,
29892,
304,
3867,
13,
12,
1049,
29918,
771,
637,
291,
353,
4733,
29889,
11031,
3073,
29898,
4381,
29922,
29896,
29889,
29900,
29892,
9654,
29922,
5574,
29897,
13,
13,
12,
29937,
4805,
13449,
373,
12786,
13,
12,
8513,
839,
29918,
1853,
353,
4733,
29889,
12636,
497,
7798,
3073,
29898,
4381,
29922,
18457,
29889,
20387,
20566,
29892,
19995,
29922,
18457,
29889,
18166,
2725,
29918,
23397,
29918,
20387,
29931,
4214,
29918,
3210,
29949,
2965,
2890,
29897,
13,
13,
12,
4299,
29918,
3389,
353,
4733,
29889,
27755,
2558,
29898,
3195,
6558,
29892,
9654,
29922,
5574,
29892,
373,
29918,
8143,
29922,
9794,
29889,
29907,
3289,
5454,
2287,
29892,
4475,
29918,
978,
543,
12803,
29918,
1545,
8232,
1159,
13,
13,
12,
15550,
3950,
29918,
9621,
353,
6796,
333,
613,
376,
12803,
613,
376,
12803,
29918,
2972,
613,
376,
13405,
29918,
771,
637,
291,
613,
376,
1049,
29918,
771,
637,
291,
613,
376,
6038,
11950,
29918,
771,
637,
291,
613,
13,
12,
462,
268,
376,
8513,
839,
29918,
1853,
3108,
13,
13,
13,
1990,
315,
1336,
2111,
2450,
29898,
9794,
29889,
3195,
1125,
13,
12,
15945,
29908,
13,
12,
12,
29909,
21733,
373,
263,
274,
1336,
304,
671,
297,
263,
1904,
1065,
29889,
1334,
29915,
645,
817,
304,
505,
278,
1904,
1065,
2048,
263,
716,
11701,
848,
3515,
13,
12,
12,
3166,
1438,
2729,
373,
278,
775,
10970,
322,
278,
1904,
10365,
1860,
13,
12,
15945,
29908,
13,
12,
1990,
20553,
29901,
13,
12,
12,
13092,
29918,
29873,
12966,
353,
6024,
4299,
29918,
3389,
742,
525,
29883,
1336,
742,
525,
12803,
2033,
13,
13,
12,
15550,
3950,
29918,
9621,
353,
6796,
333,
613,
376,
29883,
1336,
613,
376,
29883,
1336,
29918,
2972,
613,
376,
9175,
29918,
771,
637,
291,
613,
376,
29891,
969,
29918,
771,
637,
291,
613,
13,
12,
462,
268,
376,
1195,
29918,
1049,
29918,
6203,
29918,
771,
637,
291,
613,
376,
3317,
29918,
1049,
29918,
6203,
29918,
771,
637,
291,
613,
376,
12803,
3108,
13,
13,
12,
29883,
1336,
353,
4733,
29889,
27755,
2558,
29898,
29907,
1336,
29892,
373,
29918,
8143,
29922,
9794,
29889,
29907,
3289,
5454,
2287,
29892,
4475,
29918,
978,
543,
1545,
8232,
613,
13,
12,
462,
9651,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
12,
12803,
353,
4733,
29889,
27755,
2558,
29898,
18457,
29892,
373,
29918,
8143,
29922,
9794,
29889,
29907,
3289,
5454,
2287,
29892,
4475,
29918,
978,
543,
29883,
1336,
29918,
1545,
8232,
613,
13,
12,
462,
9651,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
29871,
396,
591,
29915,
645,
367,
14372,
5120,
29899,
29873,
1000,
274,
1336,
26278,
297,
263,
5434,
2767,
448,
408,
310,
29871,
29906,
29900,
29906,
29896,
29914,
29924,
1279,
29914,
29900,
29906,
29892,
727,
338,
694,
5900,
363,
11415,
445,
995,
3447,
448,
372,
29915,
645,
599,
367,
1870,
322,
2113,
29915,
29873,
748,
964,
278,
899,
369,
12214,
13,
12,
29883,
1336,
29918,
2972,
353,
4733,
29889,
27755,
2558,
29898,
29907,
1336,
4782,
29892,
373,
29918,
8143,
29922,
9794,
29889,
29907,
3289,
5454,
2287,
29892,
4475,
29918,
978,
543,
1545,
8232,
613,
13,
12,
462,
1669,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
13,
13,
12,
9175,
29918,
771,
637,
291,
353,
4733,
29889,
11031,
3073,
29898,
4381,
29922,
29896,
29889,
29900,
29892,
9654,
29922,
5574,
29897,
29871,
396,
278,
5253,
29892,
6198,
304,
2967,
1819,
29892,
304,
3867,
13,
12,
29891,
969,
29918,
771,
637,
291,
353,
4733,
29889,
11031,
3073,
29898,
4381,
29922,
29896,
29889,
29900,
29892,
9654,
29922,
5574,
29897,
29871,
396,
278,
5253,
29892,
6198,
304,
2967,
1819,
29892,
304,
3867,
13,
12,
1195,
29918,
1049,
29918,
6203,
29918,
771,
637,
291,
353,
4733,
29889,
11031,
3073,
29898,
4304,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
29871,
396,
278,
5253,
29892,
6198,
304,
2967,
1819,
29892,
304,
3867,
13,
12,
3317,
29918,
1049,
29918,
6203,
29918,
771,
637,
291,
353,
4733,
29889,
11031,
3073,
29898,
4304,
29922,
5574,
29892,
9654,
29922,
5574,
29897,
29871,
396,
278,
5253,
29892,
6198,
304,
2967,
1819,
29892,
304,
3867,
13,
13,
12,
4299,
29918,
3389,
353,
4733,
29889,
27755,
2558,
29898,
3195,
6558,
29892,
1870,
29922,
5574,
29892,
9654,
29922,
5574,
29892,
373,
29918,
8143,
29922,
9794,
29889,
29907,
3289,
5454,
2287,
29892,
4475,
29918,
978,
543,
29883,
1336,
29918,
1545,
8232,
1159,
13,
13,
13,
1990,
22305,
6268,
29898,
9794,
29889,
3195,
1125,
13,
12,
15945,
29908,
13,
12,
12,
4806,
29915,
645,
3787,
1371,
10701,
297,
278,
6535,
408,
1532,
577,
393,
896,
508,
13,
12,
12,
915,
20043,
964,
278,
623,
3025,
278,
3450,
448,
591,
508,
884,
9805,
963,
13,
12,
12,
1379,
3062,
565,
591,
29915,
29881,
763,
448,
445,
338,
18973,
925,
263,
2560,
4274,
13,
12,
12,
5205,
29889,
13,
13,
12,
12,
4806,
29915,
645,
3814,
304,
2254,
1438,
515,
2702,
7456,
297,
278,
317,
561,
14668,
13,
12,
12,
12663,
13,
12,
15945,
29908,
13,
12,
3257,
353,
4733,
29889,
27890,
29898,
3317,
29918,
2848,
29922,
29906,
29900,
29946,
29947,
29897,
13,
12,
8921,
353,
4733,
29889,
27755,
2558,
29898,
2659,
29892,
373,
29918,
8143,
29922,
9794,
29889,
3970,
29918,
12256,
29950,
4214,
29897,
13,
12,
29517,
353,
4733,
29889,
27890,
29898,
3317,
29918,
2848,
29922,
29953,
29946,
29897,
13,
13,
12,
7727,
353,
4733,
29889,
15778,
580,
13,
12,
2587,
353,
4733,
29889,
15778,
580,
13,
13,
13,
13,
2
] |
ui/app/startup.py | BenjaminPelletier/streamtagger | 2 | 183133 | <filename>ui/app/startup.py<gh_stars>1-10
import logging
from .lib import dbinit
logging.basicConfig(format='%(levelname)s:%(message)s', level=logging.INFO)
log = logging.getLogger('streamtagger')
log.info('Initializing database...')
dbinit.init_db()
log.info('Startup complete; system ready.')
| [
1,
529,
9507,
29958,
1481,
29914,
932,
29914,
2962,
786,
29889,
2272,
29966,
12443,
29918,
303,
1503,
29958,
29896,
29899,
29896,
29900,
13,
5215,
12183,
13,
13,
3166,
869,
1982,
1053,
270,
2109,
277,
13,
13,
21027,
29889,
16121,
3991,
29898,
4830,
2433,
29995,
29898,
5563,
978,
29897,
29879,
16664,
29898,
4906,
29897,
29879,
742,
3233,
29922,
21027,
29889,
11690,
29897,
13,
1188,
353,
12183,
29889,
657,
16363,
877,
5461,
4039,
914,
1495,
13,
13,
1188,
29889,
3888,
877,
15514,
5281,
2566,
856,
1495,
13,
29881,
2109,
277,
29889,
2344,
29918,
2585,
580,
13,
13,
1188,
29889,
3888,
877,
4763,
786,
4866,
29936,
1788,
7960,
29889,
1495,
13,
2
] |
download_scp_stream/download_ftp.py | ahmadsalimi/UtilityScripts | 0 | 99676 | <filename>download_scp_stream/download_ftp.py
import ftplib
from ftplib import FTP
from sys import argv
import warnings
import functions as F
from tqdm import tqdm
import os
warnings.filterwarnings('ignore')
not_to_download = [
"LIDC-IDRI-0001",
"LIDC-IDRI-0004",
"LIDC-IDRI-0007",
"LIDC-IDRI-0010",
"LIDC-IDRI-0013",
"LIDC-IDRI-0016",
"LIDC-IDRI-0002",
"LIDC-IDRI-0005",
"LIDC-IDRI-0008",
"LIDC-IDRI-0011",
"LIDC-IDRI-0014",
"LIDC-IDRI-0017",
"LIDC-IDRI-0003",
"LIDC-IDRI-0006",
"LIDC-IDRI-0009",
"LIDC-IDRI-0012",
"LIDC-IDRI-0015"
]
def _is_ftp_dir(ftp, name, guess_by_extension=True):
""" simply determines if an item listed on the ftp server is a valid directory or not """
# if the name has a "." in the fourth to last position, its probably a file extension
# this is MUCH faster than trying to set every file to a working directory, and will work 99% of time.
if guess_by_extension is True:
if len(name) >= 4:
if name[-4] == '.':
return False
original_cwd = ftp.pwd() # remember the current working directory
try:
ftp.cwd(name) # try to set directory to new name
ftp.cwd(original_cwd) # set it back to what it was
return True
except ftplib.error_perm as e:
print(e)
return False
except Exception as e:
print(e)
return False
def generate_sftp_write(file, bar):
def sftp_write(data):
file.write(data)
bar.update(len(data))
return sftp_write
def _make_parent_dir(sftp, sftp_path):
dirname = os.path.dirname(sftp_path)
if not sftp.exists(dirname):
_make_parent_dir(sftp, dirname)
sftp.mkdir(dirname)
def _download_ftp_file(ftp, ftp_path, sftp, sftp_path):
print("downloading " + ftp_path + " to " + sftp_path)
_make_parent_dir(sftp, sftp_path)
with sftp.open(sftp_path, 'w') as file:
with tqdm(unit='B', unit_scale=True, unit_divisor=1024) as bar:
ftp.retrbinary("RETR {0}".format(ftp_path), generate_sftp_write(file, bar))
def _mirror_ftp_dir(ftp, ftp_path, sftp, sftp_path):
if ftp_path.split('/')[-1] in not_to_download:
print('skipping ' + ftp_path)
return
for item in ftp.nlst(ftp_path):
destination = sftp_path + '/' + item.split('/')[-1]
if _is_ftp_dir(ftp, item, False):
_mirror_ftp_dir(ftp, item, sftp, destination)
else:
_download_ftp_file(ftp, item, sftp, destination)
def download_ftp_tree(ftp, ftp_path, sftp, sftp_path):
ftp_path = ftp_path.lstrip('/')
sftp_path = sftp_path.rstrip('/')
_mirror_ftp_dir(ftp, ftp_path, sftp, sftp_path)
if __name__ == "__main__":
if len(argv) is not 7:
print("Usage: python download_ftp.py ftp_server ftp_path ssh_server ssh_username ssh_password ssh_path")
else:
ftp_server = argv[1]
ftp_path = argv[2]
ssh_server = argv[3]
ssh_username = argv[4]
ssh_password = argv[5]
ssh_path = argv[6]
ftp = FTP(ftp_server)
ftp.login("", "")
sftp = F.sftp_connect(ssh_server, ssh_username, ssh_password)
download_ftp_tree(ftp, ftp_path, sftp, ssh_path)
| [
1,
529,
9507,
29958,
10382,
29918,
1557,
29886,
29918,
5461,
29914,
10382,
29918,
23102,
29889,
2272,
13,
5215,
285,
9392,
1982,
13,
3166,
285,
9392,
1982,
1053,
383,
3557,
13,
3166,
10876,
1053,
1852,
29894,
13,
5215,
18116,
13,
5215,
3168,
408,
383,
13,
3166,
260,
29939,
18933,
1053,
260,
29939,
18933,
13,
5215,
2897,
13,
13,
25442,
886,
29889,
4572,
25442,
886,
877,
17281,
1495,
13,
13,
1333,
29918,
517,
29918,
10382,
353,
518,
13,
1678,
376,
29931,
1367,
29907,
29899,
1367,
3960,
29899,
29900,
29900,
29900,
29896,
613,
13,
1678,
376,
29931,
1367,
29907,
29899,
1367,
3960,
29899,
29900,
29900,
29900,
29946,
613,
13,
1678,
376,
29931,
1367,
29907,
29899,
1367,
3960,
29899,
29900,
29900,
29900,
29955,
613,
13,
1678,
376,
29931,
1367,
29907,
29899,
1367,
3960,
29899,
29900,
29900,
29896,
29900,
613,
13,
1678,
376,
29931,
1367,
29907,
29899,
1367,
3960,
29899,
29900,
29900,
29896,
29941,
613,
13,
1678,
376,
29931,
1367,
29907,
29899,
1367,
3960,
29899,
29900,
29900,
29896,
29953,
613,
13,
1678,
376,
29931,
1367,
29907,
29899,
1367,
3960,
29899,
29900,
29900,
29900,
29906,
613,
13,
1678,
376,
29931,
1367,
29907,
29899,
1367,
3960,
29899,
29900,
29900,
29900,
29945,
613,
13,
1678,
376,
29931,
1367,
29907,
29899,
1367,
3960,
29899,
29900,
29900,
29900,
29947,
613,
13,
1678,
376,
29931,
1367,
29907,
29899,
1367,
3960,
29899,
29900,
29900,
29896,
29896,
613,
13,
1678,
376,
29931,
1367,
29907,
29899,
1367,
3960,
29899,
29900,
29900,
29896,
29946,
613,
13,
1678,
376,
29931,
1367,
29907,
29899,
1367,
3960,
29899,
29900,
29900,
29896,
29955,
613,
13,
1678,
376,
29931,
1367,
29907,
29899,
1367,
3960,
29899,
29900,
29900,
29900,
29941,
613,
13,
1678,
376,
29931,
1367,
29907,
29899,
1367,
3960,
29899,
29900,
29900,
29900,
29953,
613,
13,
1678,
376,
29931,
1367,
29907,
29899,
1367,
3960,
29899,
29900,
29900,
29900,
29929,
613,
13,
1678,
376,
29931,
1367,
29907,
29899,
1367,
3960,
29899,
29900,
29900,
29896,
29906,
613,
13,
1678,
376,
29931,
1367,
29907,
29899,
1367,
3960,
29899,
29900,
29900,
29896,
29945,
29908,
13,
29962,
13,
13,
1753,
903,
275,
29918,
23102,
29918,
3972,
29898,
23102,
29892,
1024,
29892,
4140,
29918,
1609,
29918,
17588,
29922,
5574,
1125,
13,
1678,
9995,
3763,
3683,
1475,
565,
385,
2944,
9904,
373,
278,
285,
9392,
1923,
338,
263,
2854,
3884,
470,
451,
9995,
13,
13,
1678,
396,
565,
278,
1024,
756,
263,
376,
1213,
297,
278,
11582,
304,
1833,
2602,
29892,
967,
3117,
263,
934,
6081,
13,
1678,
396,
445,
338,
341,
29965,
3210,
8473,
1135,
1811,
304,
731,
1432,
934,
304,
263,
1985,
3884,
29892,
322,
674,
664,
29871,
29929,
29929,
29995,
310,
931,
29889,
13,
1678,
565,
4140,
29918,
1609,
29918,
17588,
338,
5852,
29901,
13,
4706,
565,
7431,
29898,
978,
29897,
6736,
29871,
29946,
29901,
13,
9651,
565,
1024,
14352,
29946,
29962,
1275,
15300,
2396,
13,
18884,
736,
7700,
13,
13,
1678,
2441,
29918,
29883,
9970,
353,
285,
9392,
29889,
29886,
9970,
580,
29871,
396,
6456,
278,
1857,
1985,
3884,
13,
1678,
1018,
29901,
13,
4706,
285,
9392,
29889,
29883,
9970,
29898,
978,
29897,
29871,
396,
1018,
304,
731,
3884,
304,
716,
1024,
13,
4706,
285,
9392,
29889,
29883,
9970,
29898,
13492,
29918,
29883,
9970,
29897,
29871,
396,
731,
372,
1250,
304,
825,
372,
471,
13,
4706,
736,
5852,
13,
13,
1678,
5174,
285,
9392,
1982,
29889,
2704,
29918,
17858,
408,
321,
29901,
13,
4706,
1596,
29898,
29872,
29897,
13,
4706,
736,
7700,
13,
13,
1678,
5174,
8960,
408,
321,
29901,
13,
4706,
1596,
29898,
29872,
29897,
13,
4706,
736,
7700,
13,
13,
1753,
5706,
29918,
29879,
23102,
29918,
3539,
29898,
1445,
29892,
2594,
1125,
13,
1678,
822,
269,
23102,
29918,
3539,
29898,
1272,
1125,
13,
4706,
934,
29889,
3539,
29898,
1272,
29897,
13,
4706,
2594,
29889,
5504,
29898,
2435,
29898,
1272,
876,
13,
1678,
736,
269,
23102,
29918,
3539,
13,
13,
1753,
903,
5675,
29918,
3560,
29918,
3972,
29898,
29879,
23102,
29892,
269,
23102,
29918,
2084,
1125,
13,
1678,
4516,
978,
353,
2897,
29889,
2084,
29889,
25721,
29898,
29879,
23102,
29918,
2084,
29897,
13,
13,
1678,
565,
451,
269,
23102,
29889,
9933,
29898,
25721,
1125,
13,
4706,
903,
5675,
29918,
3560,
29918,
3972,
29898,
29879,
23102,
29892,
4516,
978,
29897,
13,
4706,
269,
23102,
29889,
11256,
3972,
29898,
25721,
29897,
13,
13,
13,
1753,
903,
10382,
29918,
23102,
29918,
1445,
29898,
23102,
29892,
285,
9392,
29918,
2084,
29892,
269,
23102,
29892,
269,
23102,
29918,
2084,
1125,
13,
1678,
1596,
703,
10382,
292,
376,
718,
285,
9392,
29918,
2084,
718,
376,
304,
376,
718,
269,
23102,
29918,
2084,
29897,
13,
268,
13,
1678,
903,
5675,
29918,
3560,
29918,
3972,
29898,
29879,
23102,
29892,
269,
23102,
29918,
2084,
29897,
13,
13,
1678,
411,
269,
23102,
29889,
3150,
29898,
29879,
23102,
29918,
2084,
29892,
525,
29893,
1495,
408,
934,
29901,
13,
4706,
411,
260,
29939,
18933,
29898,
5441,
2433,
29933,
742,
5190,
29918,
7052,
29922,
5574,
29892,
5190,
29918,
4563,
275,
272,
29922,
29896,
29900,
29906,
29946,
29897,
408,
2594,
29901,
13,
9651,
285,
9392,
29889,
276,
509,
19541,
703,
1525,
5659,
426,
29900,
29913,
1642,
4830,
29898,
23102,
29918,
2084,
511,
5706,
29918,
29879,
23102,
29918,
3539,
29898,
1445,
29892,
2594,
876,
13,
13,
13,
1753,
903,
11038,
729,
29918,
23102,
29918,
3972,
29898,
23102,
29892,
285,
9392,
29918,
2084,
29892,
269,
23102,
29892,
269,
23102,
29918,
2084,
1125,
13,
1678,
565,
285,
9392,
29918,
2084,
29889,
5451,
11219,
1495,
14352,
29896,
29962,
297,
451,
29918,
517,
29918,
10382,
29901,
13,
4706,
1596,
877,
2574,
3262,
525,
718,
285,
9392,
29918,
2084,
29897,
13,
4706,
736,
13,
13,
1678,
363,
2944,
297,
285,
9392,
29889,
12938,
303,
29898,
23102,
29918,
2084,
1125,
13,
4706,
12551,
353,
269,
23102,
29918,
2084,
718,
8207,
29915,
718,
2944,
29889,
5451,
11219,
1495,
14352,
29896,
29962,
13,
4706,
565,
903,
275,
29918,
23102,
29918,
3972,
29898,
23102,
29892,
2944,
29892,
7700,
1125,
13,
9651,
903,
11038,
729,
29918,
23102,
29918,
3972,
29898,
23102,
29892,
2944,
29892,
269,
23102,
29892,
12551,
29897,
13,
4706,
1683,
29901,
13,
9651,
903,
10382,
29918,
23102,
29918,
1445,
29898,
23102,
29892,
2944,
29892,
269,
23102,
29892,
12551,
29897,
13,
13,
13,
1753,
5142,
29918,
23102,
29918,
8336,
29898,
23102,
29892,
285,
9392,
29918,
2084,
29892,
269,
23102,
29892,
269,
23102,
29918,
2084,
1125,
13,
1678,
285,
9392,
29918,
2084,
353,
285,
9392,
29918,
2084,
29889,
29880,
17010,
11219,
1495,
13,
1678,
269,
23102,
29918,
2084,
353,
269,
23102,
29918,
2084,
29889,
29878,
17010,
11219,
1495,
13,
1678,
903,
11038,
729,
29918,
23102,
29918,
3972,
29898,
23102,
29892,
285,
9392,
29918,
2084,
29892,
269,
23102,
29892,
269,
23102,
29918,
2084,
29897,
13,
13,
361,
4770,
978,
1649,
1275,
376,
1649,
3396,
1649,
1115,
13,
1678,
565,
7431,
29898,
19218,
29897,
338,
451,
29871,
29955,
29901,
13,
4706,
1596,
703,
27573,
29901,
3017,
5142,
29918,
23102,
29889,
2272,
285,
9392,
29918,
2974,
285,
9392,
29918,
2084,
13927,
29918,
2974,
13927,
29918,
6786,
13927,
29918,
5630,
13927,
29918,
2084,
1159,
13,
1678,
1683,
29901,
13,
4706,
285,
9392,
29918,
2974,
353,
1852,
29894,
29961,
29896,
29962,
13,
4706,
285,
9392,
29918,
2084,
353,
1852,
29894,
29961,
29906,
29962,
13,
4706,
13927,
29918,
2974,
353,
1852,
29894,
29961,
29941,
29962,
13,
4706,
13927,
29918,
6786,
353,
1852,
29894,
29961,
29946,
29962,
13,
4706,
13927,
29918,
5630,
353,
1852,
29894,
29961,
29945,
29962,
13,
4706,
13927,
29918,
2084,
353,
1852,
29894,
29961,
29953,
29962,
13,
13,
4706,
285,
9392,
353,
383,
3557,
29898,
23102,
29918,
2974,
29897,
13,
4706,
285,
9392,
29889,
7507,
703,
613,
20569,
13,
4706,
269,
23102,
353,
383,
29889,
29879,
23102,
29918,
6915,
29898,
15269,
29918,
2974,
29892,
13927,
29918,
6786,
29892,
13927,
29918,
5630,
29897,
13,
13,
4706,
5142,
29918,
23102,
29918,
8336,
29898,
23102,
29892,
285,
9392,
29918,
2084,
29892,
269,
23102,
29892,
13927,
29918,
2084,
29897,
13,
2
] |
tests/util_test.py | novaksam/elastalert2 | 1 | 133460 | # -*- coding: utf-8 -*-
import logging
import os
import pytest
from datetime import datetime
from datetime import timedelta
from dateutil.parser import parse as dt
from dateutil.tz import tzutc
from unittest import mock
from elastalert.util import add_raw_postfix
from elastalert.util import build_es_conn_config
from elastalert.util import dt_to_int
from elastalert.util import dt_to_ts
from elastalert.util import dt_to_ts_with_format
from elastalert.util import EAException
from elastalert.util import elasticsearch_client
from elastalert.util import flatten_dict
from elastalert.util import format_index
from elastalert.util import get_module
from elastalert.util import inc_ts
from elastalert.util import lookup_es_key
from elastalert.util import parse_deadline
from elastalert.util import parse_duration
from elastalert.util import pytzfy
from elastalert.util import replace_dots_in_field_names
from elastalert.util import resolve_string
from elastalert.util import set_es_key
from elastalert.util import should_scrolling_continue
from elastalert.util import total_seconds
from elastalert.util import ts_to_dt_with_format
from elastalert.util import ts_utc_to_tz
from elastalert.util import expand_string_into_dict
from elastalert.util import unixms_to_dt
from elastalert.util import format_string
from elastalert.util import pretty_ts
@pytest.mark.parametrize('spec, expected_delta', [
('hours=2', timedelta(hours=2)),
('minutes=30', timedelta(minutes=30)),
('seconds=45', timedelta(seconds=45)),
])
def test_parse_duration(spec, expected_delta):
"""``unit=num`` specs can be translated into ``timedelta`` instances."""
assert parse_duration(spec) == expected_delta
@pytest.mark.parametrize('spec, expected_deadline', [
('hours=2', dt('2017-07-07T12:00:00.000Z')),
('minutes=30', dt('2017-07-07T10:30:00.000Z')),
('seconds=45', dt('2017-07-07T10:00:45.000Z')),
])
def test_parse_deadline(spec, expected_deadline):
"""``unit=num`` specs can be translated into ``datetime`` instances."""
# Note: Can't mock ``utcnow`` directly because ``datetime`` is a built-in.
class MockDatetime(datetime):
@staticmethod
def utcnow():
return dt('2017-07-07T10:00:00.000Z')
with mock.patch('datetime.datetime', MockDatetime):
assert parse_deadline(spec) == expected_deadline
def test_setting_keys(ea):
expected = 12467267
record = {
'Message': '12345',
'Fields': {
'ts': 'fail',
'severity': 'large',
'user': 'jimmay'
}
}
# Set the value
assert set_es_key(record, 'Fields.ts', expected)
# Get the value again
assert lookup_es_key(record, 'Fields.ts') == expected
def test_looking_up_missing_keys(ea):
record = {
'Message': '12345',
'Fields': {
'severity': 'large',
'user': 'jimmay',
'null': None
}
}
assert lookup_es_key(record, 'Fields.ts') is None
assert lookup_es_key(record, 'Fields.null.foo') is None
def test_looking_up_nested_keys(ea):
expected = 12467267
record = {
'Message': '12345',
'Fields': {
'ts': expected,
'severity': 'large',
'user': 'jimmay'
}
}
assert lookup_es_key(record, 'Fields.ts') == expected
def test_looking_up_nested_composite_keys(ea):
expected = 12467267
record = {
'Message': '12345',
'Fields': {
'ts.value': expected,
'severity': 'large',
'user': 'jimmay'
}
}
assert lookup_es_key(record, 'Fields.ts.value') == expected
def test_looking_up_arrays(ea):
record = {
'flags': [1, 2, 3],
'objects': [
{'foo': 'bar'},
{'foo': [{'bar': 'baz'}]},
{'foo': {'bar': 'baz'}}
]
}
assert lookup_es_key(record, 'flags[0]') == 1
assert lookup_es_key(record, 'flags[1]') == 2
assert lookup_es_key(record, 'objects[0]foo') == 'bar'
assert lookup_es_key(record, 'objects[1]foo[0]bar') == 'baz'
assert lookup_es_key(record, 'objects[2]foo.bar') == 'baz'
assert lookup_es_key(record, 'objects[1]foo[1]bar') is None
assert lookup_es_key(record, 'objects[1]foo[0]baz') is None
def test_add_raw_postfix(ea):
expected = 'foo.raw'
assert add_raw_postfix('foo', False) == expected
assert add_raw_postfix('foo.raw', False) == expected
expected = 'foo.keyword'
assert add_raw_postfix('foo', True) == expected
assert add_raw_postfix('foo.keyword', True) == expected
def test_replace_dots_in_field_names(ea):
actual = {
'a': {
'b.c': 'd',
'e': {
'f': {
'g.h': 0
}
}
},
'i.j.k': 1,
'l': {
'm': 2
}
}
expected = {
'a': {
'b_c': 'd',
'e': {
'f': {
'g_h': 0
}
}
},
'i_j_k': 1,
'l': {
'm': 2
}
}
assert replace_dots_in_field_names(actual) == expected
assert replace_dots_in_field_names({'a': 0, 1: 2}) == {'a': 0, 1: 2}
def test_resolve_string(ea):
match = {
'name': 'mySystem',
'temperature': 45,
'humidity': 80.56,
'sensors': ['outsideSensor', 'insideSensor'],
'foo': {'bar': 'baz'}
}
expected_outputs = [
"mySystem is online <MISSING VALUE>",
"Sensors ['outsideSensor', 'insideSensor'] in the <MISSING VALUE> have temp 45 and 80.56 humidity",
"Actuator <MISSING VALUE> in the <MISSING VALUE> has temp <MISSING VALUE>",
'Something baz']
old_style_strings = [
"%(name)s is online %(noKey)s",
"Sensors %(sensors)s in the %(noPlace)s have temp %(temperature)s and %(humidity)s humidity",
"Actuator %(noKey)s in the %(noPlace)s has temp %(noKey)s",
'Something %(foo.bar)s']
assert resolve_string(old_style_strings[0], match) == expected_outputs[0]
assert resolve_string(old_style_strings[1], match) == expected_outputs[1]
assert resolve_string(old_style_strings[2], match) == expected_outputs[2]
assert resolve_string(old_style_strings[3], match) == expected_outputs[3]
new_style_strings = [
"{name} is online {noKey}",
"Sensors {sensors} in the {noPlace} have temp {temperature} and {humidity} humidity",
"Actuator {noKey} in the {noPlace} has temp {noKey}",
"Something {foo[bar]}"]
assert resolve_string(new_style_strings[0], match) == expected_outputs[0]
assert resolve_string(new_style_strings[1], match) == expected_outputs[1]
assert resolve_string(new_style_strings[2], match) == expected_outputs[2]
assert resolve_string(new_style_strings[3], match) == expected_outputs[3]
def test_format_index():
pattern = 'logstash-%Y.%m.%d'
pattern2 = 'logstash-%Y.%W'
date = dt('2018-06-25T12:00:00Z')
date2 = dt('2018-06-26T12:00:00Z')
assert sorted(format_index(pattern, date, date).split(',')) == ['logstash-2018.06.25']
assert sorted(format_index(pattern, date, date2).split(',')) == ['logstash-2018.06.25', 'logstash-2018.06.26']
assert sorted(format_index(pattern, date, date2, True).split(',')) == ['logstash-2018.06.24',
'logstash-2018.06.25',
'logstash-2018.06.26']
assert sorted(format_index(pattern2, date, date2, True).split(',')) == ['logstash-2018.25', 'logstash-2018.26']
def test_should_scrolling_continue():
rule_no_max_scrolling = {'max_scrolling_count': 0, 'scrolling_cycle': 1}
rule_reached_max_scrolling = {'max_scrolling_count': 2, 'scrolling_cycle': 2}
rule_before_first_run = {'max_scrolling_count': 0, 'scrolling_cycle': 0}
rule_before_max_scrolling = {'max_scrolling_count': 2, 'scrolling_cycle': 1}
rule_over_max_scrolling = {'max_scrolling_count': 2, 'scrolling_cycle': 3}
assert should_scrolling_continue(rule_no_max_scrolling) is True
assert should_scrolling_continue(rule_reached_max_scrolling) is False
assert should_scrolling_continue(rule_before_first_run) is True
assert should_scrolling_continue(rule_before_max_scrolling) is True
assert should_scrolling_continue(rule_over_max_scrolling) is False
def test_ts_to_dt_with_format1():
assert ts_to_dt_with_format('2021/02/01 12:30:00', '%Y/%m/%d %H:%M:%S') == dt('2021-02-01 12:30:00+00:00')
def test_ts_to_dt_with_format2():
assert ts_to_dt_with_format('01/02/2021 12:30:00', '%d/%m/%Y %H:%M:%S') == dt('2021-02-01 12:30:00+00:00')
def test_ts_to_dt_with_format3():
date = datetime(2021, 7, 6, hour=0, minute=0, second=0)
assert ts_to_dt_with_format(date, '') == dt('2021-7-6 00:00')
def test_ts_to_dt_with_format4():
assert ts_to_dt_with_format('01/02/2021 12:30:00 +0900', '%d/%m/%Y %H:%M:%S %z') == dt('2021-02-01 12:30:00+09:00')
def test_dt_to_ts_with_format1():
assert dt_to_ts_with_format(dt('2021-02-01 12:30:00+00:00'), '%Y/%m/%d %H:%M:%S') == '2021/02/01 12:30:00'
def test_dt_to_ts_with_format2():
assert dt_to_ts_with_format(dt('2021-02-01 12:30:00+00:00'), '%d/%m/%Y %H:%M:%S') == '01/02/2021 12:30:00'
def test_dt_to_ts_with_format3():
assert dt_to_ts_with_format('2021-02-01 12:30:00+00:00', '%d/%m/%Y %H:%M:%S') == '2021-02-01 12:30:00+00:00'
def test_flatten_dict():
assert flatten_dict({'test': 'value1', 'test2': 'value2'}) == {'test': 'value1', 'test2': 'value2'}
def test_pytzfy1():
assert pytzfy(dt('2021-02-01 12:30:00+00:00')) == dt('2021-02-01 12:30:00+00:00')
def test_pytzfy2():
assert pytzfy(datetime(2018, 12, 31, 5, 0, 30, 1000)) == dt('2018-12-31 05:00:30.001000')
def test_get_module():
with pytest.raises(EAException) as ea:
get_module('test')
assert 'Could not import module' in str(ea)
def test_dt_to_ts(caplog):
caplog.set_level(logging.WARNING)
dt_to_ts('a')
user, level, message = caplog.record_tuples[0]
assert 'elastalert' == user
assert logging.WARNING == level
assert 'Expected datetime, got' in message
def test_ts_utc_to_tz():
date = datetime(2021, 7, 6, hour=0, minute=0, second=0)
actual_data = ts_utc_to_tz(date, 'Europe/Istanbul')
assert '2021-07-06 03:00:00+03:00' == str(actual_data)
test_build_es_conn_config_param = 'es_host, es_port, es_conn_timeout, es_send_get_body_as, ssl_show_warn, es_username, '
test_build_es_conn_config_param += 'es_password, es_api_key, es_bearer, aws_region, profile, use_ssl, verify_certs, '
test_build_es_conn_config_param += 'ca_certs, client_cert,client_key,es_url_prefix, expected_data'
@pytest.mark.parametrize(test_build_es_conn_config_param, [
('', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', True),
('localhost', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', True),
('localhost', 9200, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '',
{
'use_ssl': False,
'verify_certs': True,
'ca_certs': None,
'client_cert': None,
'client_key': None,
'http_auth': None,
'es_username': None,
'es_password': None,
'es_api_key': None,
'es_bearer': None,
'aws_region': None,
'profile': None,
'headers': None,
'es_host': 'localhost',
'es_port': 9200,
'es_url_prefix': '',
'es_conn_timeout': 20,
'send_get_body_as': 'GET',
'ssl_show_warn': True
}),
('localhost', 9200, 30, 'POST', False, 'user', '<PASSWORD>', 'key', 'bearer', 'us-east-1', 'default',
True, False, '/path/to/cacert.pem', '/path/to/client_cert.pem', '/path/to/client_key.key', 'elasticsearch',
{
'use_ssl': True,
'verify_certs': False,
'ca_certs': '/path/to/cacert.pem',
'client_cert': '/path/to/client_cert.pem',
'client_key': '/path/to/client_key.key',
'http_auth': None,
'es_username': 'user',
'es_password': '<PASSWORD>',
'es_api_key': 'key',
'es_bearer': 'bearer',
'aws_region': 'us-east-1',
'profile': 'default',
'headers': None,
'es_host': 'localhost',
'es_port': 9200,
'es_url_prefix': 'elasticsearch',
'es_conn_timeout': 30,
'send_get_body_as': 'POST',
'ssl_show_warn': False
}),
])
def test_build_es_conn_config(es_host, es_port, es_conn_timeout, es_send_get_body_as, ssl_show_warn, es_username,
es_password, es_api_key, es_bearer, aws_region, profile, use_ssl, verify_certs,
ca_certs, client_cert, client_key, es_url_prefix, expected_data):
try:
conf = {}
if es_host:
conf['es_host'] = es_host
if es_port:
conf['es_port'] = es_port
if es_conn_timeout:
conf['es_conn_timeout'] = es_conn_timeout
if es_send_get_body_as:
conf['es_send_get_body_as'] = es_send_get_body_as
if ssl_show_warn != '':
conf['ssl_show_warn'] = ssl_show_warn
if es_username:
conf['es_username'] = es_username
if es_password:
conf['es_password'] = es_password
if es_api_key:
conf['es_api_key'] = es_api_key
if es_bearer:
conf['es_bearer'] = es_bearer
if aws_region:
conf['aws_region'] = aws_region
if profile:
conf['profile'] = profile
if use_ssl != '':
conf['use_ssl'] = use_ssl
if verify_certs != '':
conf['verify_certs'] = verify_certs
if ca_certs:
conf['ca_certs'] = ca_certs
if client_cert:
conf['client_cert'] = client_cert
if client_key:
conf['client_key'] = client_key
if es_url_prefix:
conf['es_url_prefix'] = es_url_prefix
actual = build_es_conn_config(conf)
assert expected_data == actual
except KeyError:
assert expected_data
@mock.patch.dict(os.environ, {'ES_USERNAME': 'USER',
'ES_PASSWORD': '<PASSWORD>',
'ES_API_KEY': 'KEY',
'ES_BEARER': 'BEARE'})
def test_build_es_conn_config2():
conf = {}
conf['es_host'] = 'localhost'
conf['es_port'] = 9200
expected = {
'use_ssl': False,
'verify_certs': True,
'ca_certs': None,
'client_cert': None,
'client_key': None,
'http_auth': None,
'es_username': 'USER',
'es_password': '<PASSWORD>',
'es_api_key': 'KEY',
'es_bearer': 'BEARE',
'aws_region': None,
'profile': None,
'headers': None,
'es_host': 'localhost',
'es_port': 9200,
'es_url_prefix': '',
'es_conn_timeout': 20,
'send_get_body_as': 'GET',
'ssl_show_warn': True
}
actual = build_es_conn_config(conf)
assert expected == actual
@pytest.mark.parametrize('es_host, es_port, es_bearer, es_api_key', [
('localhost', 9200, '', ''),
('localhost', 9200, 'bearer', 'bearer')
])
@mock.patch.dict(os.environ, {'AWS_DEFAULT_REGION': ''})
def test_elasticsearch_client(es_host, es_port, es_bearer, es_api_key):
conf = {}
conf['es_host'] = es_host
conf['es_port'] = es_port
if es_bearer:
conf['es_bearer'] = es_bearer
if es_api_key:
conf['es_api_key'] = es_api_key
acutual = elasticsearch_client(conf)
assert None is not acutual
def test_expand_string_into_dict():
dictionnary = {'@timestamp': '2021-07-06 01:00:00', 'metric_netfilter.ipv4_dst_cardinality': 401}
string = 'metadata.source.ip'
value = '0.0.0.0'
expand_string_into_dict(dictionnary, string, value)
assert dictionnary['metadata']['source']['ip'] == value
def test_inc_ts():
dt = datetime(2021, 7, 6, hour=0, minute=0, second=0)
actual = inc_ts(dt)
expected = '2021-07-06T00:00:00.001000Z'
assert expected == actual
@pytest.mark.parametrize('dt, expected', [
(None, 0),
(
timedelta(
days=50, seconds=27, microseconds=10, milliseconds=29000, minutes=5, hours=8, weeks=2),
5558756.00001
)
])
def test_total_seconds(dt, expected):
actual = total_seconds(dt)
assert expected == actual
def test_unixms_to_dt():
ts = 1626707067
actual = unixms_to_dt(ts)
expected = datetime(1970, 1, 19, 19, 51, 47, 67000, tzinfo=tzutc())
assert expected == actual
def test_dt_to_int():
dt = datetime(2021, 7, 6, hour=0, minute=0, second=0)
actual = dt_to_int(dt)
expected = 1625529600000
assert expected == actual
def test_format_string():
target = 0.966666667
expected_percent_formatting = '0.97'
assert format_string('%.2f', target) == expected_percent_formatting
expected_str_formatting = '96.67%'
assert format_string('{:.2%}', target) == expected_str_formatting
def test_pretty_ts():
ts = datetime(year=2021, month=8, day=16, hour=16, minute=35, second=5)
assert '2021-08-16 16:35 UTC' == pretty_ts(ts)
assert '2021-08-16 16:35 ' == pretty_ts(ts, False)
assert '2021-08-16 16:35 +0000' == pretty_ts(ts, ts_format='%Y-%m-%d %H:%M %z')
| [
1,
396,
448,
29930,
29899,
14137,
29901,
23616,
29899,
29947,
448,
29930,
29899,
13,
5215,
12183,
13,
5215,
2897,
13,
5215,
11451,
1688,
13,
13,
3166,
12865,
1053,
12865,
13,
3166,
12865,
1053,
5335,
287,
2554,
13,
13,
3166,
2635,
4422,
29889,
16680,
1053,
6088,
408,
11636,
13,
3166,
2635,
4422,
29889,
17559,
1053,
260,
29920,
329,
29883,
13,
13,
3166,
443,
27958,
1053,
11187,
13,
13,
3166,
560,
579,
12888,
29889,
4422,
1053,
788,
29918,
1610,
29918,
2490,
5878,
13,
3166,
560,
579,
12888,
29889,
4422,
1053,
2048,
29918,
267,
29918,
13082,
29918,
2917,
13,
3166,
560,
579,
12888,
29889,
4422,
1053,
11636,
29918,
517,
29918,
524,
13,
3166,
560,
579,
12888,
29889,
4422,
1053,
11636,
29918,
517,
29918,
1372,
13,
3166,
560,
579,
12888,
29889,
4422,
1053,
11636,
29918,
517,
29918,
1372,
29918,
2541,
29918,
4830,
13,
3166,
560,
579,
12888,
29889,
4422,
1053,
382,
29909,
2451,
13,
3166,
560,
579,
12888,
29889,
4422,
1053,
560,
20291,
29918,
4645,
13,
3166,
560,
579,
12888,
29889,
4422,
1053,
1652,
8606,
29918,
8977,
13,
3166,
560,
579,
12888,
29889,
4422,
1053,
3402,
29918,
2248,
13,
3166,
560,
579,
12888,
29889,
4422,
1053,
679,
29918,
5453,
13,
3166,
560,
579,
12888,
29889,
4422,
1053,
5528,
29918,
1372,
13,
3166,
560,
579,
12888,
29889,
4422,
1053,
16280,
29918,
267,
29918,
1989,
13,
3166,
560,
579,
12888,
29889,
4422,
1053,
6088,
29918,
311,
328,
1220,
13,
3166,
560,
579,
12888,
29889,
4422,
1053,
6088,
29918,
19708,
13,
3166,
560,
579,
12888,
29889,
4422,
1053,
282,
3637,
29920,
29888,
29891,
13,
3166,
560,
579,
12888,
29889,
4422,
1053,
5191,
29918,
7778,
29918,
262,
29918,
2671,
29918,
7039,
13,
3166,
560,
579,
12888,
29889,
4422,
1053,
8814,
29918,
1807,
13,
3166,
560,
579,
12888,
29889,
4422,
1053,
731,
29918,
267,
29918,
1989,
13,
3166,
560,
579,
12888,
29889,
4422,
1053,
881,
29918,
10510,
292,
29918,
19878,
13,
3166,
560,
579,
12888,
29889,
4422,
1053,
3001,
29918,
23128,
13,
3166,
560,
579,
12888,
29889,
4422,
1053,
18696,
29918,
517,
29918,
6008,
29918,
2541,
29918,
4830,
13,
3166,
560,
579,
12888,
29889,
4422,
1053,
18696,
29918,
329,
29883,
29918,
517,
29918,
17559,
13,
3166,
560,
579,
12888,
29889,
4422,
1053,
7985,
29918,
1807,
29918,
8941,
29918,
8977,
13,
3166,
560,
579,
12888,
29889,
4422,
1053,
28167,
1516,
29918,
517,
29918,
6008,
13,
3166,
560,
579,
12888,
29889,
4422,
1053,
3402,
29918,
1807,
13,
3166,
560,
579,
12888,
29889,
4422,
1053,
5051,
29918,
1372,
13,
13,
13,
29992,
2272,
1688,
29889,
3502,
29889,
3207,
300,
374,
911,
877,
6550,
29892,
3806,
29918,
4181,
742,
518,
13,
1678,
6702,
29882,
2470,
29922,
29906,
742,
5335,
287,
2554,
29898,
29882,
2470,
29922,
29906,
8243,
13,
1678,
6702,
1195,
2667,
29922,
29941,
29900,
742,
5335,
287,
2554,
29898,
1195,
2667,
29922,
29941,
29900,
8243,
13,
1678,
6702,
23128,
29922,
29946,
29945,
742,
5335,
287,
2554,
29898,
23128,
29922,
29946,
29945,
8243,
13,
2314,
13,
1753,
1243,
29918,
5510,
29918,
19708,
29898,
6550,
29892,
3806,
29918,
4181,
1125,
13,
1678,
5124,
6937,
29952,
5441,
29922,
1949,
16159,
1580,
29879,
508,
367,
20512,
964,
4954,
9346,
287,
2554,
16159,
8871,
1213,
15945,
13,
1678,
4974,
6088,
29918,
19708,
29898,
6550,
29897,
1275,
3806,
29918,
4181,
13,
13,
13,
29992,
2272,
1688,
29889,
3502,
29889,
3207,
300,
374,
911,
877,
6550,
29892,
3806,
29918,
311,
328,
1220,
742,
518,
13,
1678,
6702,
29882,
2470,
29922,
29906,
742,
11636,
877,
29906,
29900,
29896,
29955,
29899,
29900,
29955,
29899,
29900,
29955,
29911,
29896,
29906,
29901,
29900,
29900,
29901,
29900,
29900,
29889,
29900,
29900,
29900,
29999,
1495,
511,
13,
1678,
6702,
1195,
2667,
29922,
29941,
29900,
742,
11636,
877,
29906,
29900,
29896,
29955,
29899,
29900,
29955,
29899,
29900,
29955,
29911,
29896,
29900,
29901,
29941,
29900,
29901,
29900,
29900,
29889,
29900,
29900,
29900,
29999,
1495,
511,
13,
1678,
6702,
23128,
29922,
29946,
29945,
742,
11636,
877,
29906,
29900,
29896,
29955,
29899,
29900,
29955,
29899,
29900,
29955,
29911,
29896,
29900,
29901,
29900,
29900,
29901,
29946,
29945,
29889,
29900,
29900,
29900,
29999,
1495,
511,
13,
2314,
13,
1753,
1243,
29918,
5510,
29918,
311,
328,
1220,
29898,
6550,
29892,
3806,
29918,
311,
328,
1220,
1125,
13,
1678,
5124,
6937,
29952,
5441,
29922,
1949,
16159,
1580,
29879,
508,
367,
20512,
964,
4954,
12673,
16159,
8871,
1213,
15945,
13,
13,
1678,
396,
3940,
29901,
1815,
29915,
29873,
11187,
4954,
329,
29883,
3707,
16159,
4153,
1363,
4954,
12673,
16159,
338,
263,
4240,
29899,
262,
29889,
13,
1678,
770,
26297,
16390,
5410,
29898,
12673,
1125,
13,
4706,
732,
7959,
5696,
13,
4706,
822,
3477,
29883,
3707,
7295,
13,
9651,
736,
11636,
877,
29906,
29900,
29896,
29955,
29899,
29900,
29955,
29899,
29900,
29955,
29911,
29896,
29900,
29901,
29900,
29900,
29901,
29900,
29900,
29889,
29900,
29900,
29900,
29999,
1495,
13,
13,
1678,
411,
11187,
29889,
5041,
877,
12673,
29889,
12673,
742,
26297,
16390,
5410,
1125,
13,
4706,
4974,
6088,
29918,
311,
328,
1220,
29898,
6550,
29897,
1275,
3806,
29918,
311,
328,
1220,
13,
13,
13,
1753,
1243,
29918,
26740,
29918,
8149,
29898,
11248,
1125,
13,
1678,
3806,
353,
29871,
29896,
29906,
29946,
29953,
29955,
29906,
29953,
29955,
13,
1678,
2407,
353,
426,
13,
4706,
525,
3728,
2396,
525,
29896,
29906,
29941,
29946,
29945,
742,
13,
4706,
525,
14256,
2396,
426,
13,
9651,
525,
1372,
2396,
525,
14057,
742,
13,
9651,
525,
344,
369,
537,
2396,
525,
16961,
742,
13,
9651,
525,
1792,
2396,
525,
29926,
6727,
388,
29915,
13,
4706,
500,
13,
1678,
500,
13,
13,
1678,
396,
3789,
278,
995,
13,
1678,
4974,
731,
29918,
267,
29918,
1989,
29898,
11651,
29892,
525,
14256,
29889,
1372,
742,
3806,
29897,
13,
13,
1678,
396,
3617,
278,
995,
1449,
13,
1678,
4974,
16280,
29918,
267,
29918,
1989,
29898,
11651,
29892,
525,
14256,
29889,
1372,
1495,
1275,
3806,
13,
13,
13,
1753,
1243,
29918,
23261,
29918,
786,
29918,
27259,
29918,
8149,
29898,
11248,
1125,
13,
1678,
2407,
353,
426,
13,
4706,
525,
3728,
2396,
525,
29896,
29906,
29941,
29946,
29945,
742,
13,
4706,
525,
14256,
2396,
426,
13,
9651,
525,
344,
369,
537,
2396,
525,
16961,
742,
13,
9651,
525,
1792,
2396,
525,
29926,
6727,
388,
742,
13,
9651,
525,
4304,
2396,
6213,
13,
4706,
500,
13,
1678,
500,
13,
13,
1678,
4974,
16280,
29918,
267,
29918,
1989,
29898,
11651,
29892,
525,
14256,
29889,
1372,
1495,
338,
6213,
13,
13,
1678,
4974,
16280,
29918,
267,
29918,
1989,
29898,
11651,
29892,
525,
14256,
29889,
4304,
29889,
5431,
1495,
338,
6213,
13,
13,
13,
1753,
1243,
29918,
23261,
29918,
786,
29918,
27420,
29918,
8149,
29898,
11248,
1125,
13,
1678,
3806,
353,
29871,
29896,
29906,
29946,
29953,
29955,
29906,
29953,
29955,
13,
1678,
2407,
353,
426,
13,
4706,
525,
3728,
2396,
525,
29896,
29906,
29941,
29946,
29945,
742,
13,
4706,
525,
14256,
2396,
426,
13,
9651,
525,
1372,
2396,
3806,
29892,
13,
9651,
525,
344,
369,
537,
2396,
525,
16961,
742,
13,
9651,
525,
1792,
2396,
525,
29926,
6727,
388,
29915,
13,
4706,
500,
13,
1678,
500,
13,
13,
1678,
4974,
16280,
29918,
267,
29918,
1989,
29898,
11651,
29892,
525,
14256,
29889,
1372,
1495,
1275,
3806,
13,
13,
13,
1753,
1243,
29918,
23261,
29918,
786,
29918,
27420,
29918,
22410,
568,
29918,
8149,
29898,
11248,
1125,
13,
1678,
3806,
353,
29871,
29896,
29906,
29946,
29953,
29955,
29906,
29953,
29955,
13,
1678,
2407,
353,
426,
13,
4706,
525,
3728,
2396,
525,
29896,
29906,
29941,
29946,
29945,
742,
13,
4706,
525,
14256,
2396,
426,
13,
9651,
525,
1372,
29889,
1767,
2396,
3806,
29892,
13,
9651,
525,
344,
369,
537,
2396,
525,
16961,
742,
13,
9651,
525,
1792,
2396,
525,
29926,
6727,
388,
29915,
13,
4706,
500,
13,
1678,
500,
13,
13,
1678,
4974,
16280,
29918,
267,
29918,
1989,
29898,
11651,
29892,
525,
14256,
29889,
1372,
29889,
1767,
1495,
1275,
3806,
13,
13,
13,
1753,
1243,
29918,
23261,
29918,
786,
29918,
2378,
29879,
29898,
11248,
1125,
13,
1678,
2407,
353,
426,
13,
4706,
525,
15764,
2396,
518,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
1402,
13,
4706,
525,
12650,
2396,
518,
13,
9651,
11117,
5431,
2396,
525,
1646,
16675,
13,
9651,
11117,
5431,
2396,
518,
10998,
1646,
2396,
525,
27975,
29915,
6525,
1118,
13,
9651,
11117,
5431,
2396,
11117,
1646,
2396,
525,
27975,
29915,
930,
13,
4706,
4514,
13,
1678,
500,
13,
1678,
4974,
16280,
29918,
267,
29918,
1989,
29898,
11651,
29892,
525,
15764,
29961,
29900,
29962,
1495,
1275,
29871,
29896,
13,
1678,
4974,
16280,
29918,
267,
29918,
1989,
29898,
11651,
29892,
525,
15764,
29961,
29896,
29962,
1495,
1275,
29871,
29906,
13,
1678,
4974,
16280,
29918,
267,
29918,
1989,
29898,
11651,
29892,
525,
12650,
29961,
29900,
29962,
5431,
1495,
1275,
525,
1646,
29915,
13,
1678,
4974,
16280,
29918,
267,
29918,
1989,
29898,
11651,
29892,
525,
12650,
29961,
29896,
29962,
5431,
29961,
29900,
29962,
1646,
1495,
1275,
525,
27975,
29915,
13,
1678,
4974,
16280,
29918,
267,
29918,
1989,
29898,
11651,
29892,
525,
12650,
29961,
29906,
29962,
5431,
29889,
1646,
1495,
1275,
525,
27975,
29915,
13,
1678,
4974,
16280,
29918,
267,
29918,
1989,
29898,
11651,
29892,
525,
12650,
29961,
29896,
29962,
5431,
29961,
29896,
29962,
1646,
1495,
338,
6213,
13,
1678,
4974,
16280,
29918,
267,
29918,
1989,
29898,
11651,
29892,
525,
12650,
29961,
29896,
29962,
5431,
29961,
29900,
29962,
27975,
1495,
338,
6213,
13,
13,
13,
1753,
1243,
29918,
1202,
29918,
1610,
29918,
2490,
5878,
29898,
11248,
1125,
13,
1678,
3806,
353,
525,
5431,
29889,
1610,
29915,
13,
1678,
4974,
788,
29918,
1610,
29918,
2490,
5878,
877,
5431,
742,
7700,
29897,
1275,
3806,
13,
1678,
4974,
788,
29918,
1610,
29918,
2490,
5878,
877,
5431,
29889,
1610,
742,
7700,
29897,
1275,
3806,
13,
1678,
3806,
353,
525,
5431,
29889,
26766,
29915,
13,
1678,
4974,
788,
29918,
1610,
29918,
2490,
5878,
877,
5431,
742,
5852,
29897,
1275,
3806,
13,
1678,
4974,
788,
29918,
1610,
29918,
2490,
5878,
877,
5431,
29889,
26766,
742,
5852,
29897,
1275,
3806,
13,
13,
13,
1753,
1243,
29918,
6506,
29918,
7778,
29918,
262,
29918,
2671,
29918,
7039,
29898,
11248,
1125,
13,
1678,
3935,
353,
426,
13,
4706,
525,
29874,
2396,
426,
13,
9651,
525,
29890,
29889,
29883,
2396,
525,
29881,
742,
13,
9651,
525,
29872,
2396,
426,
13,
18884,
525,
29888,
2396,
426,
13,
462,
1678,
525,
29887,
29889,
29882,
2396,
29871,
29900,
13,
18884,
500,
13,
9651,
500,
13,
4706,
2981,
13,
4706,
525,
29875,
29889,
29926,
29889,
29895,
2396,
29871,
29896,
29892,
13,
4706,
525,
29880,
2396,
426,
13,
9651,
525,
29885,
2396,
29871,
29906,
13,
4706,
500,
13,
1678,
500,
13,
1678,
3806,
353,
426,
13,
4706,
525,
29874,
2396,
426,
13,
9651,
525,
29890,
29918,
29883,
2396,
525,
29881,
742,
13,
9651,
525,
29872,
2396,
426,
13,
18884,
525,
29888,
2396,
426,
13,
462,
1678,
525,
29887,
29918,
29882,
2396,
29871,
29900,
13,
18884,
500,
13,
9651,
500,
13,
4706,
2981,
13,
4706,
525,
29875,
29918,
29926,
29918,
29895,
2396,
29871,
29896,
29892,
13,
4706,
525,
29880,
2396,
426,
13,
9651,
525,
29885,
2396,
29871,
29906,
13,
4706,
500,
13,
1678,
500,
13,
1678,
4974,
5191,
29918,
7778,
29918,
262,
29918,
2671,
29918,
7039,
29898,
19304,
29897,
1275,
3806,
13,
1678,
4974,
5191,
29918,
7778,
29918,
262,
29918,
2671,
29918,
7039,
3319,
29915,
29874,
2396,
29871,
29900,
29892,
29871,
29896,
29901,
29871,
29906,
1800,
1275,
11117,
29874,
2396,
29871,
29900,
29892,
29871,
29896,
29901,
29871,
29906,
29913,
13,
13,
13,
1753,
1243,
29918,
17863,
29918,
1807,
29898,
11248,
1125,
13,
1678,
1993,
353,
426,
13,
4706,
525,
978,
2396,
525,
1357,
3924,
742,
13,
4706,
525,
12863,
1535,
2396,
29871,
29946,
29945,
29892,
13,
4706,
525,
16063,
333,
537,
2396,
29871,
29947,
29900,
29889,
29945,
29953,
29892,
13,
4706,
525,
23149,
943,
2396,
6024,
449,
2975,
29903,
6073,
742,
525,
26102,
29903,
6073,
7464,
13,
4706,
525,
5431,
2396,
11117,
1646,
2396,
525,
27975,
10827,
13,
1678,
500,
13,
13,
1678,
3806,
29918,
4905,
29879,
353,
518,
13,
4706,
376,
1357,
3924,
338,
7395,
529,
10403,
1799,
4214,
12599,
4462,
28341,
13,
4706,
376,
29903,
575,
943,
6024,
449,
2975,
29903,
6073,
742,
525,
26102,
29903,
6073,
2033,
297,
278,
529,
10403,
1799,
4214,
12599,
4462,
29958,
505,
5694,
29871,
29946,
29945,
322,
29871,
29947,
29900,
29889,
29945,
29953,
3165,
333,
537,
613,
13,
4706,
376,
2865,
29884,
1061,
529,
10403,
1799,
4214,
12599,
4462,
29958,
297,
278,
529,
10403,
1799,
4214,
12599,
4462,
29958,
756,
5694,
529,
10403,
1799,
4214,
12599,
4462,
28341,
13,
4706,
525,
16804,
12741,
2033,
13,
1678,
2030,
29918,
3293,
29918,
19651,
353,
518,
13,
4706,
11860,
29898,
978,
29897,
29879,
338,
7395,
1273,
29898,
1217,
2558,
29897,
29879,
613,
13,
4706,
376,
29903,
575,
943,
1273,
29898,
23149,
943,
29897,
29879,
297,
278,
1273,
29898,
1217,
22150,
29897,
29879,
505,
5694,
1273,
29898,
12863,
1535,
29897,
29879,
322,
1273,
29898,
16063,
333,
537,
29897,
29879,
3165,
333,
537,
613,
13,
4706,
376,
2865,
29884,
1061,
1273,
29898,
1217,
2558,
29897,
29879,
297,
278,
1273,
29898,
1217,
22150,
29897,
29879,
756,
5694,
1273,
29898,
1217,
2558,
29897,
29879,
613,
13,
4706,
525,
16804,
1273,
29898,
5431,
29889,
1646,
29897,
29879,
2033,
13,
13,
1678,
4974,
8814,
29918,
1807,
29898,
1025,
29918,
3293,
29918,
19651,
29961,
29900,
1402,
1993,
29897,
1275,
3806,
29918,
4905,
29879,
29961,
29900,
29962,
13,
1678,
4974,
8814,
29918,
1807,
29898,
1025,
29918,
3293,
29918,
19651,
29961,
29896,
1402,
1993,
29897,
1275,
3806,
29918,
4905,
29879,
29961,
29896,
29962,
13,
1678,
4974,
8814,
29918,
1807,
29898,
1025,
29918,
3293,
29918,
19651,
29961,
29906,
1402,
1993,
29897,
1275,
3806,
29918,
4905,
29879,
29961,
29906,
29962,
13,
1678,
4974,
8814,
29918,
1807,
29898,
1025,
29918,
3293,
29918,
19651,
29961,
29941,
1402,
1993,
29897,
1275,
3806,
29918,
4905,
29879,
29961,
29941,
29962,
13,
13,
1678,
716,
29918,
3293,
29918,
19651,
353,
518,
13,
4706,
29850,
978,
29913,
338,
7395,
426,
1217,
2558,
17671,
13,
4706,
376,
29903,
575,
943,
426,
23149,
943,
29913,
297,
278,
426,
1217,
22150,
29913,
505,
5694,
426,
12863,
1535,
29913,
322,
426,
16063,
333,
537,
29913,
3165,
333,
537,
613,
13,
4706,
376,
2865,
29884,
1061,
426,
1217,
2558,
29913,
297,
278,
426,
1217,
22150,
29913,
756,
5694,
426,
1217,
2558,
17671,
13,
4706,
376,
16804,
426,
5431,
29961,
1646,
12258,
3108,
13,
13,
1678,
4974,
8814,
29918,
1807,
29898,
1482,
29918,
3293,
29918,
19651,
29961,
29900,
1402,
1993,
29897,
1275,
3806,
29918,
4905,
29879,
29961,
29900,
29962,
13,
1678,
4974,
8814,
29918,
1807,
29898,
1482,
29918,
3293,
29918,
19651,
29961,
29896,
1402,
1993,
29897,
1275,
3806,
29918,
4905,
29879,
29961,
29896,
29962,
13,
1678,
4974,
8814,
29918,
1807,
29898,
1482,
29918,
3293,
29918,
19651,
29961,
29906,
1402,
1993,
29897,
1275,
3806,
29918,
4905,
29879,
29961,
29906,
29962,
13,
1678,
4974,
8814,
29918,
1807,
29898,
1482,
29918,
3293,
29918,
19651,
29961,
29941,
1402,
1993,
29897,
1275,
3806,
29918,
4905,
29879,
29961,
29941,
29962,
13,
13,
13,
1753,
1243,
29918,
4830,
29918,
2248,
7295,
13,
1678,
4766,
353,
525,
1188,
303,
1161,
19222,
29979,
29889,
29995,
29885,
29889,
29995,
29881,
29915,
13,
1678,
4766,
29906,
353,
525,
1188,
303,
1161,
19222,
29979,
29889,
29995,
29956,
29915,
13,
1678,
2635,
353,
11636,
877,
29906,
29900,
29896,
29947,
29899,
29900,
29953,
29899,
29906,
29945,
29911,
29896,
29906,
29901,
29900,
29900,
29901,
29900,
29900,
29999,
1495,
13,
1678,
2635,
29906,
353,
11636,
877,
29906,
29900,
29896,
29947,
29899,
29900,
29953,
29899,
29906,
29953,
29911,
29896,
29906,
29901,
29900,
29900,
29901,
29900,
29900,
29999,
1495,
13,
1678,
4974,
12705,
29898,
4830,
29918,
2248,
29898,
11037,
29892,
2635,
29892,
2635,
467,
5451,
29898,
3788,
876,
1275,
6024,
1188,
303,
1161,
29899,
29906,
29900,
29896,
29947,
29889,
29900,
29953,
29889,
29906,
29945,
2033,
13,
1678,
4974,
12705,
29898,
4830,
29918,
2248,
29898,
11037,
29892,
2635,
29892,
2635,
29906,
467,
5451,
29898,
3788,
876,
1275,
6024,
1188,
303,
1161,
29899,
29906,
29900,
29896,
29947,
29889,
29900,
29953,
29889,
29906,
29945,
742,
525,
1188,
303,
1161,
29899,
29906,
29900,
29896,
29947,
29889,
29900,
29953,
29889,
29906,
29953,
2033,
13,
1678,
4974,
12705,
29898,
4830,
29918,
2248,
29898,
11037,
29892,
2635,
29892,
2635,
29906,
29892,
5852,
467,
5451,
29898,
3788,
876,
1275,
6024,
1188,
303,
1161,
29899,
29906,
29900,
29896,
29947,
29889,
29900,
29953,
29889,
29906,
29946,
742,
13,
462,
462,
462,
462,
965,
525,
1188,
303,
1161,
29899,
29906,
29900,
29896,
29947,
29889,
29900,
29953,
29889,
29906,
29945,
742,
13,
462,
462,
462,
462,
965,
525,
1188,
303,
1161,
29899,
29906,
29900,
29896,
29947,
29889,
29900,
29953,
29889,
29906,
29953,
2033,
13,
1678,
4974,
12705,
29898,
4830,
29918,
2248,
29898,
11037,
29906,
29892,
2635,
29892,
2635,
29906,
29892,
5852,
467,
5451,
29898,
3788,
876,
1275,
6024,
1188,
303,
1161,
29899,
29906,
29900,
29896,
29947,
29889,
29906,
29945,
742,
525,
1188,
303,
1161,
29899,
29906,
29900,
29896,
29947,
29889,
29906,
29953,
2033,
13,
13,
13,
1753,
1243,
29918,
9344,
29918,
10510,
292,
29918,
19878,
7295,
13,
1678,
5751,
29918,
1217,
29918,
3317,
29918,
10510,
292,
353,
11117,
3317,
29918,
10510,
292,
29918,
2798,
2396,
29871,
29900,
29892,
525,
10510,
292,
29918,
23090,
2396,
29871,
29896,
29913,
13,
1678,
5751,
29918,
276,
3791,
29918,
3317,
29918,
10510,
292,
353,
11117,
3317,
29918,
10510,
292,
29918,
2798,
2396,
29871,
29906,
29892,
525,
10510,
292,
29918,
23090,
2396,
29871,
29906,
29913,
13,
1678,
5751,
29918,
11083,
29918,
4102,
29918,
3389,
353,
11117,
3317,
29918,
10510,
292,
29918,
2798,
2396,
29871,
29900,
29892,
525,
10510,
292,
29918,
23090,
2396,
29871,
29900,
29913,
13,
1678,
5751,
29918,
11083,
29918,
3317,
29918,
10510,
292,
353,
11117,
3317,
29918,
10510,
292,
29918,
2798,
2396,
29871,
29906,
29892,
525,
10510,
292,
29918,
23090,
2396,
29871,
29896,
29913,
13,
1678,
5751,
29918,
957,
29918,
3317,
29918,
10510,
292,
353,
11117,
3317,
29918,
10510,
292,
29918,
2798,
2396,
29871,
29906,
29892,
525,
10510,
292,
29918,
23090,
2396,
29871,
29941,
29913,
13,
13,
1678,
4974,
881,
29918,
10510,
292,
29918,
19878,
29898,
7491,
29918,
1217,
29918,
3317,
29918,
10510,
292,
29897,
338,
5852,
13,
1678,
4974,
881,
29918,
10510,
292,
29918,
19878,
29898,
7491,
29918,
276,
3791,
29918,
3317,
29918,
10510,
292,
29897,
338,
7700,
13,
1678,
4974,
881,
29918,
10510,
292,
29918,
19878,
29898,
7491,
29918,
11083,
29918,
4102,
29918,
3389,
29897,
338,
5852,
13,
1678,
4974,
881,
29918,
10510,
292,
29918,
19878,
29898,
7491,
29918,
11083,
29918,
3317,
29918,
10510,
292,
29897,
338,
5852,
13,
1678,
4974,
881,
29918,
10510,
292,
29918,
19878,
29898,
7491,
29918,
957,
29918,
3317,
29918,
10510,
292,
29897,
338,
7700,
13,
13,
13,
1753,
1243,
29918,
1372,
29918,
517,
29918,
6008,
29918,
2541,
29918,
4830,
29896,
7295,
13,
1678,
4974,
18696,
29918,
517,
29918,
6008,
29918,
2541,
29918,
4830,
877,
29906,
29900,
29906,
29896,
29914,
29900,
29906,
29914,
29900,
29896,
29871,
29896,
29906,
29901,
29941,
29900,
29901,
29900,
29900,
742,
14210,
29979,
22584,
29885,
22584,
29881,
1273,
29950,
16664,
29924,
16664,
29903,
1495,
1275,
11636,
877,
29906,
29900,
29906,
29896,
29899,
29900,
29906,
29899,
29900,
29896,
29871,
29896,
29906,
29901,
29941,
29900,
29901,
29900,
29900,
29974,
29900,
29900,
29901,
29900,
29900,
1495,
13,
13,
13,
1753,
1243,
29918,
1372,
29918,
517,
29918,
6008,
29918,
2541,
29918,
4830,
29906,
7295,
13,
1678,
4974,
18696,
29918,
517,
29918,
6008,
29918,
2541,
29918,
4830,
877,
29900,
29896,
29914,
29900,
29906,
29914,
29906,
29900,
29906,
29896,
29871,
29896,
29906,
29901,
29941,
29900,
29901,
29900,
29900,
742,
14210,
29881,
22584,
29885,
22584,
29979,
1273,
29950,
16664,
29924,
16664,
29903,
1495,
1275,
11636,
877,
29906,
29900,
29906,
29896,
29899,
29900,
29906,
29899,
29900,
29896,
29871,
29896,
29906,
29901,
29941,
29900,
29901,
29900,
29900,
29974,
29900,
29900,
29901,
29900,
29900,
1495,
13,
13,
13,
1753,
1243,
29918,
1372,
29918,
517,
29918,
6008,
29918,
2541,
29918,
4830,
29941,
7295,
13,
1678,
2635,
353,
12865,
29898,
29906,
29900,
29906,
29896,
29892,
29871,
29955,
29892,
29871,
29953,
29892,
7234,
29922,
29900,
29892,
11015,
29922,
29900,
29892,
1473,
29922,
29900,
29897,
13,
1678,
4974,
18696,
29918,
517,
29918,
6008,
29918,
2541,
29918,
4830,
29898,
1256,
29892,
27255,
1275,
11636,
877,
29906,
29900,
29906,
29896,
29899,
29955,
29899,
29953,
29871,
29900,
29900,
29901,
29900,
29900,
1495,
13,
13,
13,
1753,
1243,
29918,
1372,
29918,
517,
29918,
6008,
29918,
2541,
29918,
4830,
29946,
7295,
13,
1678,
4974,
18696,
29918,
517,
29918,
6008,
29918,
2541,
29918,
4830,
877,
29900,
29896,
29914,
29900,
29906,
29914,
29906,
29900,
29906,
29896,
29871,
29896,
29906,
29901,
29941,
29900,
29901,
29900,
29900,
718,
29900,
29929,
29900,
29900,
742,
14210,
29881,
22584,
29885,
22584,
29979,
1273,
29950,
16664,
29924,
16664,
29903,
1273,
29920,
1495,
1275,
11636,
877,
29906,
29900,
29906,
29896,
29899,
29900,
29906,
29899,
29900,
29896,
29871,
29896,
29906,
29901,
29941,
29900,
29901,
29900,
29900,
29974,
29900,
29929,
29901,
29900,
29900,
1495,
13,
13,
13,
1753,
1243,
29918,
6008,
29918,
517,
29918,
1372,
29918,
2541,
29918,
4830,
29896,
7295,
13,
1678,
4974,
11636,
29918,
517,
29918,
1372,
29918,
2541,
29918,
4830,
29898,
6008,
877,
29906,
29900,
29906,
29896,
29899,
29900,
29906,
29899,
29900,
29896,
29871,
29896,
29906,
29901,
29941,
29900,
29901,
29900,
29900,
29974,
29900,
29900,
29901,
29900,
29900,
5477,
14210,
29979,
22584,
29885,
22584,
29881,
1273,
29950,
16664,
29924,
16664,
29903,
1495,
1275,
525,
29906,
29900,
29906,
29896,
29914,
29900,
29906,
29914,
29900,
29896,
29871,
29896,
29906,
29901,
29941,
29900,
29901,
29900,
29900,
29915,
13,
13,
13,
1753,
1243,
29918,
6008,
29918,
517,
29918,
1372,
29918,
2541,
29918,
4830,
29906,
7295,
13,
1678,
4974,
11636,
29918,
517,
29918,
1372,
29918,
2541,
29918,
4830,
29898,
6008,
877,
29906,
29900,
29906,
29896,
29899,
29900,
29906,
29899,
29900,
29896,
29871,
29896,
29906,
29901,
29941,
29900,
29901,
29900,
29900,
29974,
29900,
29900,
29901,
29900,
29900,
5477,
14210,
29881,
22584,
29885,
22584,
29979,
1273,
29950,
16664,
29924,
16664,
29903,
1495,
1275,
525,
29900,
29896,
29914,
29900,
29906,
29914,
29906,
29900,
29906,
29896,
29871,
29896,
29906,
29901,
29941,
29900,
29901,
29900,
29900,
29915,
13,
13,
13,
1753,
1243,
29918,
6008,
29918,
517,
29918,
1372,
29918,
2541,
29918,
4830,
29941,
7295,
13,
1678,
4974,
11636,
29918,
517,
29918,
1372,
29918,
2541,
29918,
4830,
877,
29906,
29900,
29906,
29896,
29899,
29900,
29906,
29899,
29900,
29896,
29871,
29896,
29906,
29901,
29941,
29900,
29901,
29900,
29900,
29974,
29900,
29900,
29901,
29900,
29900,
742,
14210,
29881,
22584,
29885,
22584,
29979,
1273,
29950,
16664,
29924,
16664,
29903,
1495,
1275,
525,
29906,
29900,
29906,
29896,
29899,
29900,
29906,
29899,
29900,
29896,
29871,
29896,
29906,
29901,
29941,
29900,
29901,
29900,
29900,
29974,
29900,
29900,
29901,
29900,
29900,
29915,
13,
13,
13,
1753,
1243,
29918,
1579,
8606,
29918,
8977,
7295,
13,
1678,
4974,
1652,
8606,
29918,
8977,
3319,
29915,
1688,
2396,
525,
1767,
29896,
742,
525,
1688,
29906,
2396,
525,
1767,
29906,
29915,
1800,
1275,
11117,
1688,
2396,
525,
1767,
29896,
742,
525,
1688,
29906,
2396,
525,
1767,
29906,
10827,
13,
13,
13,
1753,
1243,
29918,
2272,
17559,
29888,
29891,
29896,
7295,
13,
1678,
4974,
282,
3637,
29920,
29888,
29891,
29898,
6008,
877,
29906,
29900,
29906,
29896,
29899,
29900,
29906,
29899,
29900,
29896,
29871,
29896,
29906,
29901,
29941,
29900,
29901,
29900,
29900,
29974,
29900,
29900,
29901,
29900,
29900,
8785,
1275,
11636,
877,
29906,
29900,
29906,
29896,
29899,
29900,
29906,
29899,
29900,
29896,
29871,
29896,
29906,
29901,
29941,
29900,
29901,
29900,
29900,
29974,
29900,
29900,
29901,
29900,
29900,
1495,
13,
13,
13,
1753,
1243,
29918,
2272,
17559,
29888,
29891,
29906,
7295,
13,
1678,
4974,
282,
3637,
29920,
29888,
29891,
29898,
12673,
29898,
29906,
29900,
29896,
29947,
29892,
29871,
29896,
29906,
29892,
29871,
29941,
29896,
29892,
29871,
29945,
29892,
29871,
29900,
29892,
29871,
29941,
29900,
29892,
29871,
29896,
29900,
29900,
29900,
876,
1275,
11636,
877,
29906,
29900,
29896,
29947,
29899,
29896,
29906,
29899,
29941,
29896,
29871,
29900,
29945,
29901,
29900,
29900,
29901,
29941,
29900,
29889,
29900,
29900,
29896,
29900,
29900,
29900,
1495,
13,
13,
13,
1753,
1243,
29918,
657,
29918,
5453,
7295,
13,
1678,
411,
11451,
1688,
29889,
336,
4637,
29898,
29923,
29909,
2451,
29897,
408,
321,
29874,
29901,
13,
4706,
679,
29918,
5453,
877,
1688,
1495,
13,
1678,
4974,
525,
23323,
451,
1053,
3883,
29915,
297,
851,
29898,
11248,
29897,
13,
13,
13,
1753,
1243,
29918,
6008,
29918,
517,
29918,
1372,
29898,
5030,
1188,
1125,
13,
1678,
2117,
1188,
29889,
842,
29918,
5563,
29898,
21027,
29889,
29956,
25614,
29897,
13,
1678,
11636,
29918,
517,
29918,
1372,
877,
29874,
1495,
13,
1678,
1404,
29892,
3233,
29892,
2643,
353,
2117,
1188,
29889,
11651,
29918,
9161,
2701,
29961,
29900,
29962,
13,
1678,
4974,
525,
295,
579,
12888,
29915,
1275,
1404,
13,
1678,
4974,
12183,
29889,
29956,
25614,
1275,
3233,
13,
1678,
4974,
525,
1252,
6021,
12865,
29892,
2355,
29915,
297,
2643,
13,
13,
13,
1753,
1243,
29918,
1372,
29918,
329,
29883,
29918,
517,
29918,
17559,
7295,
13,
1678,
2635,
353,
12865,
29898,
29906,
29900,
29906,
29896,
29892,
29871,
29955,
29892,
29871,
29953,
29892,
7234,
29922,
29900,
29892,
11015,
29922,
29900,
29892,
1473,
29922,
29900,
29897,
13,
1678,
3935,
29918,
1272,
353,
18696,
29918,
329,
29883,
29918,
517,
29918,
17559,
29898,
1256,
29892,
525,
15654,
29914,
29902,
14411,
8645,
1495,
13,
1678,
4974,
525,
29906,
29900,
29906,
29896,
29899,
29900,
29955,
29899,
29900,
29953,
29871,
29900,
29941,
29901,
29900,
29900,
29901,
29900,
29900,
29974,
29900,
29941,
29901,
29900,
29900,
29915,
1275,
851,
29898,
19304,
29918,
1272,
29897,
13,
13,
13,
1688,
29918,
4282,
29918,
267,
29918,
13082,
29918,
2917,
29918,
3207,
353,
525,
267,
29918,
3069,
29892,
831,
29918,
637,
29892,
831,
29918,
13082,
29918,
15619,
29892,
831,
29918,
6717,
29918,
657,
29918,
2587,
29918,
294,
29892,
24250,
29918,
4294,
29918,
25442,
29892,
831,
29918,
6786,
29892,
525,
13,
1688,
29918,
4282,
29918,
267,
29918,
13082,
29918,
2917,
29918,
3207,
4619,
525,
267,
29918,
5630,
29892,
831,
29918,
2754,
29918,
1989,
29892,
831,
29918,
29890,
799,
261,
29892,
25879,
29918,
12803,
29892,
8722,
29892,
671,
29918,
16265,
29892,
11539,
29918,
6327,
29879,
29892,
525,
13,
1688,
29918,
4282,
29918,
267,
29918,
13082,
29918,
2917,
29918,
3207,
4619,
525,
1113,
29918,
6327,
29879,
29892,
3132,
29918,
6327,
29892,
4645,
29918,
1989,
29892,
267,
29918,
2271,
29918,
13506,
29892,
3806,
29918,
1272,
29915,
13,
13,
13,
29992,
2272,
1688,
29889,
3502,
29889,
3207,
300,
374,
911,
29898,
1688,
29918,
4282,
29918,
267,
29918,
13082,
29918,
2917,
29918,
3207,
29892,
518,
13,
1678,
6702,
742,
3986,
15516,
259,
15516,
15516,
15516,
15516,
15516,
15516,
15516,
15516,
15516,
15516,
15516,
15516,
15516,
15516,
15516,
5852,
511,
13,
1678,
6702,
7640,
742,
15516,
259,
15516,
15516,
15516,
15516,
15516,
15516,
15516,
15516,
15516,
15516,
15516,
15516,
15516,
15516,
15516,
5852,
511,
13,
1678,
6702,
7640,
742,
29871,
29929,
29906,
29900,
29900,
29892,
15516,
15516,
15516,
15516,
15516,
15516,
15516,
15516,
15516,
15516,
15516,
15516,
15516,
15516,
15516,
13,
4706,
426,
13,
9651,
525,
1509,
29918,
16265,
2396,
7700,
29892,
13,
9651,
525,
27902,
29918,
6327,
29879,
2396,
5852,
29892,
13,
9651,
525,
1113,
29918,
6327,
29879,
2396,
6213,
29892,
13,
9651,
525,
4645,
29918,
6327,
2396,
6213,
29892,
13,
9651,
525,
4645,
29918,
1989,
2396,
6213,
29892,
13,
9651,
525,
1124,
29918,
5150,
2396,
6213,
29892,
13,
9651,
525,
267,
29918,
6786,
2396,
6213,
29892,
13,
9651,
525,
267,
29918,
5630,
2396,
6213,
29892,
13,
9651,
525,
267,
29918,
2754,
29918,
1989,
2396,
6213,
29892,
13,
9651,
525,
267,
29918,
29890,
799,
261,
2396,
6213,
29892,
13,
9651,
525,
10467,
29918,
12803,
2396,
6213,
29892,
13,
9651,
525,
10185,
2396,
6213,
29892,
13,
9651,
525,
13662,
2396,
6213,
29892,
13,
9651,
525,
267,
29918,
3069,
2396,
525,
7640,
742,
13,
9651,
525,
267,
29918,
637,
2396,
29871,
29929,
29906,
29900,
29900,
29892,
13,
9651,
525,
267,
29918,
2271,
29918,
13506,
2396,
15516,
13,
9651,
525,
267,
29918,
13082,
29918,
15619,
2396,
29871,
29906,
29900,
29892,
13,
9651,
525,
6717,
29918,
657,
29918,
2587,
29918,
294,
2396,
525,
7194,
742,
13,
9651,
525,
16265,
29918,
4294,
29918,
25442,
2396,
5852,
13,
4706,
500,
511,
13,
1678,
6702,
7640,
742,
29871,
29929,
29906,
29900,
29900,
29892,
29871,
29941,
29900,
29892,
525,
5438,
742,
7700,
29892,
525,
1792,
742,
12801,
25711,
17013,
29958,
742,
525,
1989,
742,
525,
29890,
799,
261,
742,
525,
375,
29899,
23027,
29899,
29896,
742,
525,
4381,
742,
13,
268,
5852,
29892,
7700,
29892,
8207,
2084,
29914,
517,
29914,
29883,
562,
814,
29889,
29886,
331,
742,
8207,
2084,
29914,
517,
29914,
4645,
29918,
6327,
29889,
29886,
331,
742,
8207,
2084,
29914,
517,
29914,
4645,
29918,
1989,
29889,
1989,
742,
525,
295,
20291,
742,
13,
4706,
426,
13,
9651,
525,
1509,
29918,
16265,
2396,
5852,
29892,
13,
9651,
525,
27902,
29918,
6327,
29879,
2396,
7700,
29892,
13,
9651,
525,
1113,
29918,
6327,
29879,
2396,
8207,
2084,
29914,
517,
29914,
29883,
562,
814,
29889,
29886,
331,
742,
13,
9651,
525,
4645,
29918,
6327,
2396,
8207,
2084,
29914,
517,
29914,
4645,
29918,
6327,
29889,
29886,
331,
742,
13,
9651,
525,
4645,
29918,
1989,
2396,
8207,
2084,
29914,
517,
29914,
4645,
29918,
1989,
29889,
1989,
742,
13,
9651,
525,
1124,
29918,
5150,
2396,
6213,
29892,
13,
9651,
525,
267,
29918,
6786,
2396,
525,
1792,
742,
13,
9651,
525,
267,
29918,
5630,
2396,
12801,
25711,
17013,
29958,
742,
13,
9651,
525,
267,
29918,
2754,
29918,
1989,
2396,
525,
1989,
742,
13,
9651,
525,
267,
29918,
29890,
799,
261,
2396,
525,
29890,
799,
261,
742,
13,
9651,
525,
10467,
29918,
12803,
2396,
525,
375,
29899,
23027,
29899,
29896,
742,
13,
9651,
525,
10185,
2396,
525,
4381,
742,
13,
9651,
525,
13662,
2396,
6213,
29892,
13,
9651,
525,
267,
29918,
3069,
2396,
525,
7640,
742,
13,
9651,
525,
267,
29918,
637,
2396,
29871,
29929,
29906,
29900,
29900,
29892,
13,
9651,
525,
267,
29918,
2271,
29918,
13506,
2396,
525,
295,
20291,
742,
13,
9651,
525,
267,
29918,
13082,
29918,
15619,
2396,
29871,
29941,
29900,
29892,
13,
9651,
525,
6717,
29918,
657,
29918,
2587,
29918,
294,
2396,
525,
5438,
742,
13,
9651,
525,
16265,
29918,
4294,
29918,
25442,
2396,
7700,
13,
4706,
500,
511,
13,
2314,
13,
1753,
1243,
29918,
4282,
29918,
267,
29918,
13082,
29918,
2917,
29898,
267,
29918,
3069,
29892,
831,
29918,
637,
29892,
831,
29918,
13082,
29918,
15619,
29892,
831,
29918,
6717,
29918,
657,
29918,
2587,
29918,
294,
29892,
24250,
29918,
4294,
29918,
25442,
29892,
831,
29918,
6786,
29892,
13,
462,
795,
831,
29918,
5630,
29892,
831,
29918,
2754,
29918,
1989,
29892,
831,
29918,
29890,
799,
261,
29892,
25879,
29918,
12803,
29892,
8722,
29892,
671,
29918,
16265,
29892,
11539,
29918,
6327,
29879,
29892,
13,
462,
795,
5777,
29918,
6327,
29879,
29892,
3132,
29918,
6327,
29892,
3132,
29918,
1989,
29892,
831,
29918,
2271,
29918,
13506,
29892,
3806,
29918,
1272,
1125,
13,
1678,
1018,
29901,
13,
4706,
1970,
353,
6571,
13,
4706,
565,
831,
29918,
3069,
29901,
13,
9651,
1970,
1839,
267,
29918,
3069,
2033,
353,
831,
29918,
3069,
13,
4706,
565,
831,
29918,
637,
29901,
13,
9651,
1970,
1839,
267,
29918,
637,
2033,
353,
831,
29918,
637,
13,
4706,
565,
831,
29918,
13082,
29918,
15619,
29901,
13,
9651,
1970,
1839,
267,
29918,
13082,
29918,
15619,
2033,
353,
831,
29918,
13082,
29918,
15619,
13,
4706,
565,
831,
29918,
6717,
29918,
657,
29918,
2587,
29918,
294,
29901,
13,
9651,
1970,
1839,
267,
29918,
6717,
29918,
657,
29918,
2587,
29918,
294,
2033,
353,
831,
29918,
6717,
29918,
657,
29918,
2587,
29918,
294,
13,
4706,
565,
24250,
29918,
4294,
29918,
25442,
2804,
525,
2396,
13,
9651,
1970,
1839,
16265,
29918,
4294,
29918,
25442,
2033,
353,
24250,
29918,
4294,
29918,
25442,
13,
4706,
565,
831,
29918,
6786,
29901,
13,
9651,
1970,
1839,
267,
29918,
6786,
2033,
353,
831,
29918,
6786,
13,
4706,
565,
831,
29918,
5630,
29901,
13,
9651,
1970,
1839,
267,
29918,
5630,
2033,
353,
831,
29918,
5630,
13,
4706,
565,
831,
29918,
2754,
29918,
1989,
29901,
13,
9651,
1970,
1839,
267,
29918,
2754,
29918,
1989,
2033,
353,
831,
29918,
2754,
29918,
1989,
13,
4706,
565,
831,
29918,
29890,
799,
261,
29901,
13,
9651,
1970,
1839,
267,
29918,
29890,
799,
261,
2033,
353,
831,
29918,
29890,
799,
261,
13,
4706,
565,
25879,
29918,
12803,
29901,
13,
9651,
1970,
1839,
10467,
29918,
12803,
2033,
353,
25879,
29918,
12803,
13,
4706,
565,
8722,
29901,
13,
9651,
1970,
1839,
10185,
2033,
353,
8722,
13,
4706,
565,
671,
29918,
16265,
2804,
525,
2396,
13,
9651,
1970,
1839,
1509,
29918,
16265,
2033,
353,
671,
29918,
16265,
13,
4706,
565,
11539,
29918,
6327,
29879,
2804,
525,
2396,
13,
9651,
1970,
1839,
27902,
29918,
6327,
29879,
2033,
353,
11539,
29918,
6327,
29879,
13,
4706,
565,
5777,
29918,
6327,
29879,
29901,
13,
9651,
1970,
1839,
1113,
29918,
6327,
29879,
2033,
353,
5777,
29918,
6327,
29879,
13,
4706,
565,
3132,
29918,
6327,
29901,
13,
9651,
1970,
1839,
4645,
29918,
6327,
2033,
353,
3132,
29918,
6327,
13,
4706,
565,
3132,
29918,
1989,
29901,
13,
9651,
1970,
1839,
4645,
29918,
1989,
2033,
353,
3132,
29918,
1989,
13,
4706,
565,
831,
29918,
2271,
29918,
13506,
29901,
13,
9651,
1970,
1839,
267,
29918,
2271,
29918,
13506,
2033,
353,
831,
29918,
2271,
29918,
13506,
13,
4706,
3935,
353,
2048,
29918,
267,
29918,
13082,
29918,
2917,
29898,
5527,
29897,
13,
4706,
4974,
3806,
29918,
1272,
1275,
3935,
13,
1678,
5174,
7670,
2392,
29901,
13,
4706,
4974,
3806,
29918,
1272,
13,
13,
13,
29992,
17640,
29889,
5041,
29889,
8977,
29898,
359,
29889,
21813,
29892,
11117,
2890,
29918,
11889,
5813,
2396,
525,
11889,
742,
13,
462,
795,
525,
2890,
29918,
25711,
17013,
2396,
12801,
25711,
17013,
29958,
742,
13,
462,
795,
525,
2890,
29918,
8787,
29918,
10818,
2396,
525,
10818,
742,
13,
462,
795,
525,
2890,
29918,
15349,
1718,
1001,
2396,
525,
15349,
29909,
1525,
29915,
1800,
13,
1753,
1243,
29918,
4282,
29918,
267,
29918,
13082,
29918,
2917,
29906,
7295,
13,
1678,
1970,
353,
6571,
13,
1678,
1970,
1839,
267,
29918,
3069,
2033,
353,
525,
7640,
29915,
13,
1678,
1970,
1839,
267,
29918,
637,
2033,
353,
29871,
29929,
29906,
29900,
29900,
13,
1678,
3806,
353,
426,
13,
4706,
525,
1509,
29918,
16265,
2396,
7700,
29892,
13,
4706,
525,
27902,
29918,
6327,
29879,
2396,
5852,
29892,
13,
4706,
525,
1113,
29918,
6327,
29879,
2396,
6213,
29892,
13,
4706,
525,
4645,
29918,
6327,
2396,
6213,
29892,
13,
4706,
525,
4645,
29918,
1989,
2396,
6213,
29892,
13,
4706,
525,
1124,
29918,
5150,
2396,
6213,
29892,
13,
4706,
525,
267,
29918,
6786,
2396,
525,
11889,
742,
13,
4706,
525,
267,
29918,
5630,
2396,
12801,
25711,
17013,
29958,
742,
13,
4706,
525,
267,
29918,
2754,
29918,
1989,
2396,
525,
10818,
742,
13,
4706,
525,
267,
29918,
29890,
799,
261,
2396,
525,
15349,
29909,
1525,
742,
13,
4706,
525,
10467,
29918,
12803,
2396,
6213,
29892,
13,
4706,
525,
10185,
2396,
6213,
29892,
13,
4706,
525,
13662,
2396,
6213,
29892,
13,
4706,
525,
267,
29918,
3069,
2396,
525,
7640,
742,
13,
4706,
525,
267,
29918,
637,
2396,
29871,
29929,
29906,
29900,
29900,
29892,
13,
4706,
525,
267,
29918,
2271,
29918,
13506,
2396,
15516,
13,
4706,
525,
267,
29918,
13082,
29918,
15619,
2396,
29871,
29906,
29900,
29892,
13,
4706,
525,
6717,
29918,
657,
29918,
2587,
29918,
294,
2396,
525,
7194,
742,
13,
4706,
525,
16265,
29918,
4294,
29918,
25442,
2396,
5852,
13,
1678,
500,
13,
1678,
3935,
353,
2048,
29918,
267,
29918,
13082,
29918,
2917,
29898,
5527,
29897,
13,
1678,
4974,
3806,
1275,
3935,
13,
13,
13,
29992,
2272,
1688,
29889,
3502,
29889,
3207,
300,
374,
911,
877,
267,
29918,
3069,
29892,
831,
29918,
637,
29892,
831,
29918,
29890,
799,
261,
29892,
831,
29918,
2754,
29918,
1989,
742,
518,
13,
1678,
6702,
7640,
742,
29871,
29929,
29906,
29900,
29900,
29892,
15516,
525,
5477,
13,
1678,
6702,
7640,
742,
29871,
29929,
29906,
29900,
29900,
29892,
525,
29890,
799,
261,
742,
525,
29890,
799,
261,
1495,
13,
2314,
13,
29992,
17640,
29889,
5041,
29889,
8977,
29898,
359,
29889,
21813,
29892,
11117,
29909,
7811,
29918,
23397,
29918,
18166,
2725,
2396,
6629,
1800,
13,
1753,
1243,
29918,
295,
20291,
29918,
4645,
29898,
267,
29918,
3069,
29892,
831,
29918,
637,
29892,
831,
29918,
29890,
799,
261,
29892,
831,
29918,
2754,
29918,
1989,
1125,
13,
1678,
1970,
353,
6571,
13,
1678,
1970,
1839,
267,
29918,
3069,
2033,
353,
831,
29918,
3069,
13,
1678,
1970,
1839,
267,
29918,
637,
2033,
353,
831,
29918,
637,
13,
1678,
565,
831,
29918,
29890,
799,
261,
29901,
13,
4706,
1970,
1839,
267,
29918,
29890,
799,
261,
2033,
353,
831,
29918,
29890,
799,
261,
13,
1678,
565,
831,
29918,
2754,
29918,
1989,
29901,
13,
4706,
1970,
1839,
267,
29918,
2754,
29918,
1989,
2033,
353,
831,
29918,
2754,
29918,
1989,
13,
1678,
1274,
329,
950,
353,
560,
20291,
29918,
4645,
29898,
5527,
29897,
13,
1678,
4974,
6213,
338,
451,
1274,
329,
950,
13,
13,
13,
1753,
1243,
29918,
18837,
29918,
1807,
29918,
8941,
29918,
8977,
7295,
13,
1678,
21503,
29876,
653,
353,
11117,
29992,
16394,
2396,
525,
29906,
29900,
29906,
29896,
29899,
29900,
29955,
29899,
29900,
29953,
29871,
29900,
29896,
29901,
29900,
29900,
29901,
29900,
29900,
742,
525,
16414,
29918,
1212,
4572,
29889,
666,
29894,
29946,
29918,
22992,
29918,
7543,
979,
537,
2396,
29871,
29946,
29900,
29896,
29913,
13,
1678,
1347,
353,
525,
19635,
29889,
4993,
29889,
666,
29915,
13,
1678,
995,
353,
525,
29900,
29889,
29900,
29889,
29900,
29889,
29900,
29915,
13,
13,
1678,
7985,
29918,
1807,
29918,
8941,
29918,
8977,
29898,
29467,
29876,
653,
29892,
1347,
29892,
995,
29897,
13,
1678,
4974,
21503,
29876,
653,
1839,
19635,
16215,
4993,
16215,
666,
2033,
1275,
995,
13,
13,
13,
1753,
1243,
29918,
3742,
29918,
1372,
7295,
13,
1678,
11636,
353,
12865,
29898,
29906,
29900,
29906,
29896,
29892,
29871,
29955,
29892,
29871,
29953,
29892,
7234,
29922,
29900,
29892,
11015,
29922,
29900,
29892,
1473,
29922,
29900,
29897,
13,
1678,
3935,
353,
5528,
29918,
1372,
29898,
6008,
29897,
13,
1678,
3806,
353,
525,
29906,
29900,
29906,
29896,
29899,
29900,
29955,
29899,
29900,
29953,
29911,
29900,
29900,
29901,
29900,
29900,
29901,
29900,
29900,
29889,
29900,
29900,
29896,
29900,
29900,
29900,
29999,
29915,
13,
1678,
4974,
3806,
1275,
3935,
13,
13,
13,
29992,
2272,
1688,
29889,
3502,
29889,
3207,
300,
374,
911,
877,
6008,
29892,
3806,
742,
518,
13,
1678,
313,
8516,
29892,
29871,
29900,
511,
13,
1678,
313,
13,
4706,
5335,
287,
2554,
29898,
13,
9651,
3841,
29922,
29945,
29900,
29892,
6923,
29922,
29906,
29955,
29892,
9200,
23128,
29922,
29896,
29900,
29892,
3533,
21462,
29922,
29906,
29929,
29900,
29900,
29900,
29892,
6233,
29922,
29945,
29892,
6199,
29922,
29947,
29892,
11405,
29922,
29906,
511,
13,
308,
29945,
29945,
29945,
29947,
29955,
29945,
29953,
29889,
29900,
29900,
29900,
29900,
29896,
13,
1678,
1723,
13,
2314,
13,
1753,
1243,
29918,
7827,
29918,
23128,
29898,
6008,
29892,
3806,
1125,
13,
1678,
3935,
353,
3001,
29918,
23128,
29898,
6008,
29897,
13,
1678,
4974,
3806,
1275,
3935,
13,
13,
13,
1753,
1243,
29918,
24538,
1516,
29918,
517,
29918,
6008,
7295,
13,
1678,
18696,
353,
29871,
29896,
29953,
29906,
29953,
29955,
29900,
29955,
29900,
29953,
29955,
13,
1678,
3935,
353,
28167,
1516,
29918,
517,
29918,
6008,
29898,
1372,
29897,
13,
1678,
3806,
353,
12865,
29898,
29896,
29929,
29955,
29900,
29892,
29871,
29896,
29892,
29871,
29896,
29929,
29892,
29871,
29896,
29929,
29892,
29871,
29945,
29896,
29892,
29871,
29946,
29955,
29892,
29871,
29953,
29955,
29900,
29900,
29900,
29892,
260,
29920,
3888,
29922,
17559,
329,
29883,
3101,
13,
1678,
4974,
3806,
1275,
3935,
13,
13,
13,
1753,
1243,
29918,
6008,
29918,
517,
29918,
524,
7295,
13,
1678,
11636,
353,
12865,
29898,
29906,
29900,
29906,
29896,
29892,
29871,
29955,
29892,
29871,
29953,
29892,
7234,
29922,
29900,
29892,
11015,
29922,
29900,
29892,
1473,
29922,
29900,
29897,
13,
1678,
3935,
353,
11636,
29918,
517,
29918,
524,
29898,
6008,
29897,
13,
1678,
3806,
353,
29871,
29896,
29953,
29906,
29945,
29945,
29906,
29929,
29953,
29900,
29900,
29900,
29900,
29900,
13,
1678,
4974,
3806,
1275,
3935,
13,
13,
13,
1753,
1243,
29918,
4830,
29918,
1807,
7295,
13,
1678,
3646,
353,
29871,
29900,
29889,
29929,
29953,
29953,
29953,
29953,
29953,
29953,
29953,
29955,
13,
1678,
3806,
29918,
25376,
29918,
689,
23980,
353,
525,
29900,
29889,
29929,
29955,
29915,
13,
1678,
4974,
3402,
29918,
1807,
877,
15543,
29906,
29888,
742,
3646,
29897,
1275,
3806,
29918,
25376,
29918,
689,
23980,
13,
1678,
3806,
29918,
710,
29918,
689,
23980,
353,
525,
29929,
29953,
29889,
29953,
29955,
29001,
13,
1678,
4974,
3402,
29918,
1807,
877,
25641,
29889,
29906,
29995,
29913,
742,
3646,
29897,
1275,
3806,
29918,
710,
29918,
689,
23980,
13,
13,
13,
1753,
1243,
29918,
1457,
4349,
29918,
1372,
7295,
13,
1678,
18696,
353,
12865,
29898,
6360,
29922,
29906,
29900,
29906,
29896,
29892,
4098,
29922,
29947,
29892,
2462,
29922,
29896,
29953,
29892,
7234,
29922,
29896,
29953,
29892,
11015,
29922,
29941,
29945,
29892,
1473,
29922,
29945,
29897,
13,
1678,
4974,
525,
29906,
29900,
29906,
29896,
29899,
29900,
29947,
29899,
29896,
29953,
29871,
29896,
29953,
29901,
29941,
29945,
17998,
29915,
1275,
5051,
29918,
1372,
29898,
1372,
29897,
13,
1678,
4974,
525,
29906,
29900,
29906,
29896,
29899,
29900,
29947,
29899,
29896,
29953,
29871,
29896,
29953,
29901,
29941,
29945,
525,
1275,
5051,
29918,
1372,
29898,
1372,
29892,
7700,
29897,
13,
1678,
4974,
525,
29906,
29900,
29906,
29896,
29899,
29900,
29947,
29899,
29896,
29953,
29871,
29896,
29953,
29901,
29941,
29945,
718,
29900,
29900,
29900,
29900,
29915,
1275,
5051,
29918,
1372,
29898,
1372,
29892,
18696,
29918,
4830,
2433,
29995,
29979,
19222,
29885,
19222,
29881,
1273,
29950,
16664,
29924,
1273,
29920,
1495,
13,
2
] |
setup.py | mudox/pytav | 0 | 41608 | # -*- coding: utf-8 -*-
"""setup.py: setuptools control."""
import re
from setuptools import find_packages, setup
version = re.search(r"^__version__\s*=\s*'(.*)'",
open('src/tav/cmd.py').read(), re.M).group(1)
setup(
name='tav',
version=version,
description='TBD',
long_description='TBD',
author='Mudox',
author_email='<EMAIL>',
url='https://github.com/mudox/tav',
package_dir={'': 'src'},
packages=find_packages('src'),
install_requires=[
'libtmux',
'ruamel.yaml',
],
package_data={
'': ['resources/*'],
},
scripts=[
'asset/script/tav',
],
entry_points={
"console_scripts": ['tav-core = tav.cmd:run']
})
| [
1,
396,
448,
29930,
29899,
14137,
29901,
23616,
29899,
29947,
448,
29930,
29899,
13,
15945,
29908,
14669,
29889,
2272,
29901,
731,
21245,
8789,
2761,
1213,
15945,
13,
13,
5215,
337,
13,
13,
3166,
731,
21245,
8789,
1053,
1284,
29918,
8318,
29892,
6230,
13,
13,
3259,
353,
337,
29889,
4478,
29898,
29878,
29908,
29985,
1649,
3259,
1649,
29905,
29879,
29930,
2013,
29879,
29930,
12215,
5575,
16029,
613,
13,
462,
1678,
1722,
877,
4351,
29914,
29873,
485,
29914,
9006,
29889,
2272,
2824,
949,
3285,
337,
29889,
29924,
467,
2972,
29898,
29896,
29897,
13,
13,
14669,
29898,
13,
1678,
1024,
2433,
29873,
485,
742,
13,
1678,
1873,
29922,
3259,
29892,
13,
1678,
6139,
2433,
24895,
29928,
742,
13,
1678,
1472,
29918,
8216,
2433,
24895,
29928,
742,
13,
1678,
4148,
2433,
29924,
566,
2251,
742,
13,
1678,
4148,
29918,
5269,
2433,
29966,
26862,
6227,
29958,
742,
13,
1678,
3142,
2433,
991,
597,
3292,
29889,
510,
29914,
29885,
566,
2251,
29914,
29873,
485,
742,
13,
1678,
3577,
29918,
3972,
3790,
29915,
2396,
525,
4351,
16675,
13,
1678,
9741,
29922,
2886,
29918,
8318,
877,
4351,
5477,
13,
1678,
2601,
29918,
276,
339,
2658,
11759,
13,
4706,
525,
1982,
18276,
1314,
742,
13,
4706,
525,
582,
314,
295,
29889,
25162,
742,
13,
1678,
21251,
13,
1678,
3577,
29918,
1272,
3790,
13,
4706,
525,
2396,
6024,
13237,
5515,
7464,
13,
1678,
2981,
13,
1678,
12078,
11759,
13,
4706,
525,
24129,
29914,
2154,
29914,
29873,
485,
742,
13,
1678,
21251,
13,
1678,
6251,
29918,
9748,
3790,
13,
4706,
376,
11058,
29918,
16713,
1115,
6024,
29873,
485,
29899,
3221,
353,
260,
485,
29889,
9006,
29901,
3389,
2033,
13,
1678,
5615,
13,
2
] |
src/utils/regex_utils/regex_utils.py | BichengWang/python-notebook | 0 | 23069 | import re
def find_indices():
return [m.start(0) for m in re.finditer(reg, content)]
def find_content():
return re.findall(reg, content)
if __name__ == "__main__":
content = 'an example word:cat and word:dog'
reg = r'word:\w'
print(find_indices())
print(find_content())
| [
1,
1053,
337,
13,
13,
13,
1753,
1284,
29918,
513,
1575,
7295,
13,
1678,
736,
518,
29885,
29889,
2962,
29898,
29900,
29897,
363,
286,
297,
337,
29889,
2886,
1524,
29898,
1727,
29892,
2793,
4638,
13,
13,
13,
1753,
1284,
29918,
3051,
7295,
13,
1678,
736,
337,
29889,
2886,
497,
29898,
1727,
29892,
2793,
29897,
13,
13,
13,
361,
4770,
978,
1649,
1275,
376,
1649,
3396,
1649,
1115,
13,
1678,
2793,
353,
525,
273,
1342,
1734,
29901,
4117,
322,
1734,
29901,
26169,
29915,
13,
1678,
1072,
353,
364,
29915,
1742,
3583,
29893,
29915,
13,
1678,
1596,
29898,
2886,
29918,
513,
1575,
3101,
13,
1678,
1596,
29898,
2886,
29918,
3051,
3101,
13,
2
] |
webapp/run.py | 128technology/blaster | 0 | 121805 | from blaster import factory
import blaster
if __name__ == "__main__":
app = factory.create_app(celery=blaster.celery)
app.jinja_env.add_extension('jinja2.ext.do')
app.run(host='0.0.0.0', port=80)
| [
1,
515,
1999,
1901,
1053,
12529,
13,
5215,
1999,
1901,
13,
361,
4770,
978,
1649,
1275,
376,
1649,
3396,
1649,
1115,
13,
1678,
623,
353,
12529,
29889,
3258,
29918,
932,
29898,
2242,
708,
29922,
2204,
1901,
29889,
2242,
708,
29897,
13,
1678,
623,
29889,
28789,
1764,
29918,
6272,
29889,
1202,
29918,
17588,
877,
28789,
1764,
29906,
29889,
1062,
29889,
1867,
1495,
13,
1678,
623,
29889,
3389,
29898,
3069,
2433,
29900,
29889,
29900,
29889,
29900,
29889,
29900,
742,
2011,
29922,
29947,
29900,
29897,
13,
2
] |
Exam_Exercises/Sase.py | Konstantin-Bogdanoski/VI | 2 | 68530 | <reponame>Konstantin-Bogdanoski/VI
from Python_neinformirano_prebaruvanje_final import *
# Check if the white Rook is in a valid position (not in the line of fire of all the black Rooks)
def validityOfWhite(gun, A):
#print("TESTING WHITE VALIDITY")
# print(gun)
location = gun
#print(location[0] != A[4][0] and location[0] != A[5][0] and location[0] != A[6][0] and location[0] != A[7][0] and
# location[1] != A[4][1] and location[1] != A[5][1] and location[1] != A[6][1] and location[1] != A[7][1] and
# location[0] < 6 and location[0] > 0 and location[1] > 0 and location[1] < 8)
return (location[0] != A[4][0] and location[0] != A[5][0] and location[0] != A[6][0] and location[0] != A[7][0] and
location[1] != A[4][1] and location[1] != A[5][1] and location[1] != A[6][1] and location[1] != A[7][1] and
location[0] < 6 and location[0] > 0 and location[1] > 0 and location[1] < 8)
# Check if the black Rook is in a valid position (not in the line of fire of all the white Rooks)
def validityOfBlack(gun, A):
#print("TESTING BLACK VALIDITY")
# print(gun)
location = gun
#print(location[0] != A[0][0] and location[0] != A[1][0] and location[0] != A[2][0] and location[0] != A[3][0] and
# location[1] != A[0][1] and location[1] != A[1][1] and location[1] != A[2][1] and location[1] != A[3][1] and
# location[0] < 6 and location[0] > 0 and location[1] > 0 and location[1] < 8)
return (location[0] != A[0][0] and location[0] != A[1][0] and location[0] != A[2][0] and location[0] != A[3][0] and
location[1] != A[0][1] and location[1] != A[1][1] and location[1] != A[2][1] and location[1] != A[3][1] and
location[0] < 6 and location[0] > 0 and location[1] > 0 and location[1] < 8)
# Check if the white rooks are not on top of each other
def validityWhiteOnWhite(A):
#print("TESTING WHITEonWHITE")
#print(A[0][0] != A[1][0] and A[0][0] != A[2][0] and A[0][0] != A[3][0] and
# A[1][0] != A[2][0] and A[1][0] != A[3][0] and
# A[2][0] != A[3][0] and
# A[0][1] != A[1][1] and A[0][1] != A[2][1] and A[0][1] != A[3][1] and
# A[1][1] != A[2][1] and A[1][1] != A[3][1] and
# A[2][1] != A[3][1])
return (A[0][0] != A[1][0] and A[0][0] != A[2][0] and A[0][0] != A[3][0] and
A[1][0] != A[2][0] and A[1][0] != A[3][0] and
A[2][0] != A[3][0] and
A[0][1] != A[1][1] and A[0][1] != A[2][1] and A[0][1] != A[3][1] and
A[1][1] != A[2][1] and A[1][1] != A[3][1] and
A[2][1] != A[3][1])
# Check if the black rooks are not on top of each other
def validityBlackOnBlack(A):
#print("TESTING BLACKonBLACK")
#print(A[0][0] != A[1][0] and A[0][0] != A[2][0] and A[0][0] != A[3][0] and
# A[1][0] != A[2][0] and A[1][0] != A[3][0] and
# A[2][0] != A[3][0] and
# A[0][1] != A[1][1] and A[0][1] != A[2][1] and A[0][1] != A[3][1] and
# A[1][1] != A[2][1] and A[1][1] != A[3][1] and
# A[2][1] != A[3][1])
return (A[4][0] != A[5][0] and A[4][0] != A[6][0] and A[4][0] != A[7][0] and
A[5][0] != A[6][0] and A[5][0] != A[7][0] and
A[6][0] != A[7][0] and
A[4][1] != A[5][1] and A[4][1] != A[6][1] and A[4][1] != A[7][1] and
A[5][1] != A[6][1] and A[5][1] != A[7][1] and
A[6][1] != A[7][1])
class Rooks(Problem):
def __init__(self, initial):
self.initial = initial
def goal_test(self, state):
return ((state[0] == (5,8) or state[0] == (5,7) or state[0] == (5,6) or state[0] == (5,5)) and
(state[1] == (5, 8) or state[1] == (5, 7) or state[1] == (5, 6) or state[1] == (5, 5)) and
(state[2] == (5, 8) or state[2] == (5, 7) or state[2] == (5, 6) or state[2] == (5, 5)) and
(state[3] == (5, 8) or state[3] == (5, 7) or state[3] == (5, 6) or state[3] == (5, 5)) and
(state[4] == (1, 1) or state[4] == (1, 2) or state[4] == (1, 3) or state[4] == (1, 4)) and
(state[5] == (1, 1) or state[5] == (1, 2) or state[5] == (1, 3) or state[5] == (1, 4)) and
(state[6] == (1, 1) or state[6] == (1, 2) or state[6] == (1, 3) or state[6] == (1, 4)) and
(state[7] == (1, 1) or state[7] == (1, 2) or state[7] == (1, 3) or state[7] == (1, 4)))
def actions(self, state):
return self.successor(state).keys()
def result(self, state, action):
possible = self.successor(state)
return possible[action]
def successor(self, state):
successors = dict()
WhiteRook1 = state[0]
WhiteRook2 = state[1]
WhiteRook3 = state[2]
WhiteRook4 = state[3]
BlackRook1 = state[4]
BlackRook2 = state[5]
BlackRook3 = state[6]
BlackRook4 = state[7]
#
#
#
# WHITE ROOK 1
#
#
#
# WhiteRook1 UP
newWhiteRook1 = WhiteRook1
moves=0
tempState = (newWhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
while(not(validityOfWhite(newWhiteRook1, tempState)) and validityWhiteOnWhite(tempState) and validityBlackOnBlack(tempState)):
newWhiteRook1 = (newWhiteRook1[0], newWhiteRook1[1] - 1)
moves+=1
tempState = (newWhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
newWhiteRook1 = (newWhiteRook1[0], newWhiteRook1[1] + 1)
stateNew = (newWhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
successors['WhiteRook1 - UP: ' + str(moves)] = stateNew
# WhiteRook1 DOWN
newWhiteRook1 = WhiteRook1
moves = 0
tempState = (newWhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
while (not(validityOfWhite(newWhiteRook1, tempState)) and validityWhiteOnWhite(tempState) and validityBlackOnBlack(tempState)):
newWhiteRook1 = (newWhiteRook1[0], newWhiteRook1[1] + 1)
moves += 1
tempState = (newWhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
newWhiteRook1 = (newWhiteRook1[0], newWhiteRook1[1] - 1)
stateNew = (newWhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
successors['WhiteRook1 - DOWN: ' + str(moves)] = stateNew
# WhiteRook1 LEFT
newWhiteRook1 = WhiteRook1
moves = 0
tempState = (newWhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
while (not(validityOfWhite(newWhiteRook1, tempState)) and validityWhiteOnWhite(tempState) and validityBlackOnBlack(tempState)):
newWhiteRook1 = (newWhiteRook1[0] - 1, newWhiteRook1[1])
moves += 1
tempState = (newWhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
newWhiteRook1 = (newWhiteRook1[0] + 1, newWhiteRook1[1])
stateNew = (newWhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
successors['WhiteRook1 - LEFT: ' + str(moves)] = stateNew
# WhiteRook1 RIGHT
newWhiteRook1 = WhiteRook1
moves = 0
tempState = (newWhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
while (not(validityOfWhite(newWhiteRook1, tempState)) and validityWhiteOnWhite(tempState) and validityBlackOnBlack(tempState)):
newWhiteRook1 = (newWhiteRook1[0] + 1, newWhiteRook1[1])
moves += 1
tempState = (
newWhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
newWhiteRook1 = (newWhiteRook1[0] - 1, newWhiteRook1[1])
stateNew = (newWhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
successors['WhiteRook1 - RIGHT: ' + str(moves)] = stateNew
#
#
#
#
# WHITE ROOK 2
#
#
#
# WhiteRook2 UP
newWhiteRook2 = WhiteRook2
moves = 0
tempState = (WhiteRook1, newWhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
while (not(validityOfWhite(newWhiteRook2, tempState)) and validityWhiteOnWhite(tempState) and validityBlackOnBlack(tempState)):
newWhiteRook2 = (newWhiteRook2[0], newWhiteRook2[1] - 1)
moves += 1
tempState = (WhiteRook1, newWhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
newWhiteRook2 = (newWhiteRook2[0], newWhiteRook2[1] + 1)
stateNew = (WhiteRook1, newWhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
successors['WhiteRook2 - UP: ' + str(moves)] = stateNew
# WhiteRook2 DOWN
newWhiteRook2 = WhiteRook2
moves = 0
tempState = (WhiteRook1, newWhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
while (not(validityOfWhite(newWhiteRook2, tempState)) and validityWhiteOnWhite(tempState) and validityBlackOnBlack(tempState)):
newWhiteRook2 = (newWhiteRook2[0], newWhiteRook2[1] + 1)
moves += 1
tempState = (WhiteRook1, newWhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
newWhiteRook2 = (newWhiteRook2[0], newWhiteRook2[1] - 1)
stateNew = (WhiteRook1, newWhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
successors['WhiteRook2 - DOWN: ' + str(moves)] = stateNew
# WhiteRook2 LEFT
newWhiteRook2 = WhiteRook2
moves = 0
tempState = (WhiteRook1, newWhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
while (not(validityOfWhite(newWhiteRook2, tempState)) and validityWhiteOnWhite(tempState) and validityBlackOnBlack(tempState)):
newWhiteRook2 = (newWhiteRook2[0] - 1, newWhiteRook2[1])
moves += 1
tempState = (WhiteRook1, newWhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
newWhiteRook2 = (newWhiteRook2[0] + 1, newWhiteRook2[1])
stateNew = (WhiteRook1, newWhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
successors['WhiteRook2 - LEFT: ' + str(moves)] = stateNew
# WhiteRook2 RIGHT
newWhiteRook2 = WhiteRook2
moves = 0
tempState = (WhiteRook1, newWhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
while (not(validityOfWhite(newWhiteRook2, tempState)) and validityWhiteOnWhite(tempState) and validityBlackOnBlack(tempState)):
newWhiteRook2 = (newWhiteRook2[0] + 1, newWhiteRook2[1])
moves += 1
tempState = (WhiteRook1, newWhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
newWhiteRook2 = (newWhiteRook2[0] - 1, newWhiteRook2[1])
stateNew = (WhiteRook1, newWhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
successors['WhiteRook2 - RIGHT: ' + str(moves)] = stateNew
#
#
#
#
# WHITE ROOK 3
#
#
#
# WhiteRook3 UP
newWhiteRook3 = WhiteRook3
moves = 0
tempState = (WhiteRook1, WhiteRook2, newWhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
while (not(validityOfWhite(newWhiteRook3, tempState)) and validityWhiteOnWhite(tempState) and validityBlackOnBlack(tempState)):
newWhiteRook3 = (newWhiteRook3[0], newWhiteRook3[1] - 1)
moves += 1
tempState = (WhiteRook1, WhiteRook2, newWhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
newWhiteRook3 = (newWhiteRook3[0], newWhiteRook3[1] + 1)
stateNew = (WhiteRook1, WhiteRook2, newWhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
successors['WhiteRook3 - UP: ' + str(moves)] = stateNew
# WhiteRook3 DOWN
newWhiteRook3 = WhiteRook3
moves = 0
tempState = (WhiteRook1, WhiteRook2, newWhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
while (not(validityOfWhite(newWhiteRook3, tempState)) and validityWhiteOnWhite(tempState) and validityBlackOnBlack(
tempState)):
newWhiteRook3 = (newWhiteRook3[0], newWhiteRook3[1] + 1)
moves += 1
tempState = (
WhiteRook1, WhiteRook2, newWhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
newWhiteRook3 = (newWhiteRook3[0], newWhiteRook3[1] - 1)
stateNew = (WhiteRook1, WhiteRook2, newWhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
successors['WhiteRook3 - DOWN: ' + str(moves)] = stateNew
# WhiteRook3 LEFT
newWhiteRook3 = WhiteRook3
moves = 0
tempState = (WhiteRook1, WhiteRook2, newWhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
while (not(validityOfWhite(newWhiteRook3, tempState)) and validityWhiteOnWhite(tempState) and validityBlackOnBlack(
tempState)):
newWhiteRook3 = (newWhiteRook3[0] - 1, newWhiteRook3[1])
moves += 1
tempState = (
WhiteRook1, WhiteRook2, newWhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
newWhiteRook3 = (newWhiteRook3[0] + 1, newWhiteRook3[1])
stateNew = (WhiteRook1, WhiteRook2, newWhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
successors['WhiteRook3 - LEFT: ' + str(moves)] = stateNew
# WhiteRook3 RIGHT
newWhiteRook3 = WhiteRook3
moves = 0
tempState = (WhiteRook1, WhiteRook2, newWhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
while (not(validityOfWhite(newWhiteRook3, tempState)) and validityWhiteOnWhite(tempState) and validityBlackOnBlack(
tempState)):
newWhiteRook3 = (newWhiteRook3[0] + 1, newWhiteRook3[1])
moves += 1
tempState = (WhiteRook1, WhiteRook2, newWhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
newWhiteRook3 = (newWhiteRook3[0] - 1, newWhiteRook3[1])
stateNew = (WhiteRook1, WhiteRook2, newWhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
successors['WhiteRook3 - RIGHT: ' + str(moves)] = stateNew
#
#
#
#
# WHITE ROOK 4
#
#
#
# WhiteRook4 UP
newWhiteRook4 = WhiteRook4
moves = 0
tempState = (WhiteRook1, WhiteRook2, WhiteRook3, newWhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
while (not(validityOfWhite(newWhiteRook4, tempState)) and validityWhiteOnWhite(tempState) and validityBlackOnBlack(
tempState)):
newWhiteRook4 = (newWhiteRook4[0], newWhiteRook4[1] - 1)
moves += 1
tempState = (
WhiteRook1, WhiteRook2, WhiteRook3, newWhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
newWhiteRook4 = (newWhiteRook4[0], newWhiteRook4[1] + 1)
stateNew = (WhiteRook1, WhiteRook2, WhiteRook3, newWhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
successors['WhiteRook4 - UP: ' + str(moves)] = stateNew
# WhiteRook4 DOWN
newWhiteRook4 = WhiteRook4
moves = 0
tempState = (WhiteRook1, WhiteRook2, WhiteRook3, newWhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
while (not(validityOfWhite(newWhiteRook4, tempState)) and validityWhiteOnWhite(tempState) and validityBlackOnBlack(
tempState)):
newWhiteRook4 = (newWhiteRook4[0], newWhiteRook4[1] + 1)
moves += 1
tempState = (
WhiteRook1, WhiteRook2, WhiteRook3, newWhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
newWhiteRook4 = (newWhiteRook4[0], newWhiteRook4[1] - 1)
stateNew = (WhiteRook1, WhiteRook2, WhiteRook3, newWhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
successors['WhiteRook4 - DOWN: ' + str(moves)] = stateNew
# WhiteRook4 LEFT
newWhiteRook4 = WhiteRook4
moves = 0
tempState = (WhiteRook1, WhiteRook2, WhiteRook3, newWhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
while (not(validityOfWhite(newWhiteRook4, tempState)) and validityWhiteOnWhite(tempState) and validityBlackOnBlack(
tempState)):
newWhiteRook4 = (newWhiteRook4[0] - 1, newWhiteRook4[1])
moves += 1
tempState = (
WhiteRook1, WhiteRook2, WhiteRook3, newWhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
newWhiteRook4 = (newWhiteRook4[0] + 1, newWhiteRook4[1])
stateNew = (WhiteRook1, WhiteRook2, WhiteRook3, newWhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
successors['WhiteRook4 - LEFT: ' + str(moves)] = stateNew
# WhiteRook4 RIGHT
newWhiteRook4 = WhiteRook4
moves = 0
tempState = (WhiteRook1, WhiteRook2, WhiteRook3, newWhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
while (not(validityOfWhite(newWhiteRook4, tempState)) and validityWhiteOnWhite(tempState) and validityBlackOnBlack(
tempState)):
newWhiteRook4 = (newWhiteRook4[0] + 1, newWhiteRook4[1])
moves += 1
tempState = (WhiteRook1, WhiteRook2, WhiteRook3, newWhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
newWhiteRook4 = (newWhiteRook4[0] - 1, newWhiteRook4[1])
stateNew = (WhiteRook1, WhiteRook2, WhiteRook3, newWhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
successors['WhiteRook4 - RIGHT: ' + str(moves)] = stateNew
#
#
#
# BLACK ROOK 1
#
#
#
# BlackRook1 UP
newBlackRook1 = BlackRook1
moves = 0
tempState = (WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, newBlackRook1, BlackRook2, BlackRook3, BlackRook4)
while (not(validityOfBlack(newBlackRook1, tempState)) and validityWhiteOnWhite(tempState) and validityBlackOnBlack(
tempState)):
newBlackRook1 = (newBlackRook1[0], newBlackRook1[1] - 1)
moves += 1
tempState = (
WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, newBlackRook1, BlackRook2, BlackRook3, BlackRook4)
newBlackRook1 = (newBlackRook1[0], newBlackRook1[1] + 1)
stateNew = (WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, newBlackRook1, BlackRook2, BlackRook3, BlackRook4)
successors['BlackRook1 - UP: ' + str(moves)] = stateNew
# BlackRook1 DOWN
newBlackRook1 = WhiteRook1
moves = 0
tempState = (WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, newBlackRook1, BlackRook2, BlackRook3, BlackRook4)
while (not(validityOfBlack(newBlackRook1, tempState)) and validityWhiteOnWhite(tempState) and validityBlackOnBlack(
tempState)):
newBlackRook1 = (newBlackRook1[0], newBlackRook1[1] + 1)
moves += 1
tempState = (WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, newBlackRook1, BlackRook2, BlackRook3, BlackRook4)
newBlackRook1 = (newBlackRook1[0], newBlackRook1[1] - 1)
stateNew = (WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, newBlackRook1, BlackRook2, BlackRook3, BlackRook4)
successors['BlackRook1 - DOWN: ' + str(moves)] = stateNew
# BlackRook1 LEFT
newBlackRook1 = WhiteRook1
moves = 0
tempState = (WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, newBlackRook1, BlackRook2, BlackRook3, BlackRook4)
while (not(validityOfBlack(newBlackRook1, tempState)) and validityWhiteOnWhite(tempState) and validityBlackOnBlack(
tempState)):
newBlackRook1 = (newBlackRook1[0] - 1, newBlackRook1[1])
moves += 1
tempState = (WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, newBlackRook1, BlackRook2, BlackRook3, BlackRook4)
newBlackRook1 = (newBlackRook1[0] + 1, newBlackRook1[1])
stateNew = (WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, newBlackRook1, BlackRook2, BlackRook3, BlackRook4)
successors['BlackRook1 - LEFT: ' + str(moves)] = stateNew
# BlackRook1 RIGHT
newBlackRook1 = WhiteRook1
moves = 0
tempState = (WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, newBlackRook1, BlackRook2, BlackRook3, BlackRook4)
while (not(validityOfBlack(newBlackRook1, tempState)) and validityWhiteOnWhite(tempState) and validityBlackOnBlack(
tempState)):
newBlackRook1 = (newBlackRook1[0] + 1, newBlackRook1[1])
moves += 1
tempState = (WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, newBlackRook1, BlackRook2, BlackRook3, BlackRook4)
newBlackRook1 = (newBlackRook1[0] - 1, newBlackRook1[1])
stateNew = (WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, newBlackRook1, BlackRook2, BlackRook3, BlackRook4)
successors['BlackRook1 - RIGHT: ' + str(moves)] = stateNew
#
#
#
#
# BLACK ROOK 2
#
#
#
# BlackRook2 UP
newBlackRook2 = BlackRook2
moves = 0
tempState = (WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, newBlackRook2, BlackRook3, BlackRook4)
while (not(validityOfBlack(newBlackRook2, tempState)) and validityWhiteOnWhite(tempState) and validityBlackOnBlack(
tempState)):
newBlackRook2 = (newBlackRook2[0], newBlackRook2[1] - 1)
moves += 1
tempState = (
WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, newBlackRook2, BlackRook3, BlackRook4)
newBlackRook2 = (newBlackRook2[0], newBlackRook2[1] + 1)
stateNew = (WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, newBlackRook2, BlackRook3, BlackRook4)
successors['BlackRook2 - UP: ' + str(moves)] = stateNew
# BlackRook2 DOWN
newBlackRook2 = BlackRook2
moves = 0
tempState = (WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, newBlackRook2, BlackRook3, BlackRook4)
while (not(validityOfBlack(newBlackRook2, tempState)) and validityWhiteOnWhite(tempState) and validityBlackOnBlack(
tempState)):
newBlackRook2 = (newBlackRook2[0], newBlackRook2[1] + 1)
moves += 1
tempState = (
WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, newBlackRook2, BlackRook3, BlackRook4)
newBlackRook2 = (newBlackRook2[0], newBlackRook2[1] - 1)
stateNew = (WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, newBlackRook2, BlackRook3, BlackRook4)
successors['BlackRook2 - DOWN: ' + str(moves)] = stateNew
# BlackRook2 LEFT
newBlackRook2 = BlackRook2
moves = 0
tempState = (WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, newBlackRook2, BlackRook3, BlackRook4)
while (not(validityOfBlack(newBlackRook2, tempState)) and validityWhiteOnWhite(tempState) and validityBlackOnBlack(
tempState)):
newBlackRook2 = (newBlackRook2[0] - 1, newBlackRook2[1])
moves += 1
tempState = (
WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, newBlackRook2, BlackRook3, BlackRook4)
newBlackRook2 = (newBlackRook2[0] + 1, newBlackRook2[1])
stateNew = (WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, newBlackRook2, BlackRook3, BlackRook4)
successors['BlackRook2 - LEFT: ' + str(moves)] = stateNew
# BlackRook2 RIGHT
newBlackRook2 = BlackRook2
moves = 0
tempState = (WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, newBlackRook2, BlackRook3, BlackRook4)
while (not(validityOfBlack(newBlackRook2, tempState)) and validityWhiteOnWhite(tempState) and validityBlackOnBlack(
tempState)):
newBlackRook2 = (newBlackRook2[0] + 1, newBlackRook2[1])
moves += 1
tempState = (
WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, newBlackRook2, BlackRook3, BlackRook4)
newBlackRook2 = (newBlackRook2[0] - 1, newBlackRook2[1])
stateNew = (WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, newBlackRook2, BlackRook3, BlackRook4)
successors['BlackRook2 - RIGHT: ' + str(moves)] = stateNew
#
#
#
#
# BLACK ROOK 3
#
#
#
# BlackRook3 UP
newBlackRook3 = BlackRook3
moves = 0
tempState = (WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, newBlackRook3, BlackRook4)
while (not(validityOfBlack(newBlackRook3, tempState)) and validityWhiteOnWhite(tempState) and validityBlackOnBlack(
tempState)):
newBlackRook3 = (newBlackRook3[0], newBlackRook3[1] - 1)
moves += 1
tempState = (
WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, newBlackRook3, BlackRook4)
newBlackRook3 = (newBlackRook3[0], newBlackRook3[1] + 1)
stateNew = (WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, newBlackRook3, BlackRook4)
successors['BlackRook3 - UP: ' + str(moves)] = stateNew
# BlackRook3 DOWN
newBlackRook3 = BlackRook3
moves = 0
tempState = (WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, newBlackRook3, BlackRook4)
while (not(validityOfBlack(newBlackRook3, tempState)) and validityWhiteOnWhite(tempState) and validityBlackOnBlack(
tempState)):
newBlackRook3 = (newBlackRook3[0], newBlackRook3[1] + 1)
moves += 1
tempState = (
WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, newBlackRook3, BlackRook4)
newBlackRook3 = (newBlackRook3[0], newBlackRook3[1] - 1)
stateNew = (WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, newBlackRook3, BlackRook4)
successors['BlackRook3 - DOWN: ' + str(moves)] = stateNew
# BlackRook3 LEFT
newBlackRook3 = BlackRook3
moves = 0
tempState = (WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, newBlackRook3, BlackRook4)
while (not(validityOfBlack(newBlackRook3, tempState)) and validityWhiteOnWhite(tempState) and validityBlackOnBlack(
tempState)):
newBlackRook3 = (newBlackRook3[0] - 1, newBlackRook3[1])
moves += 1
tempState = (
WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, newBlackRook3, BlackRook4)
newBlackRook3 = (newBlackRook3[0] + 1, newBlackRook3[1] - 1)
stateNew = (WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, newBlackRook3, BlackRook4)
successors['BlackRook3 - LEFT: ' + str(moves)] = stateNew
# BlackRook3 RIGHT
newBlackRook3 = BlackRook3
moves = 0
tempState = (WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, newBlackRook3, BlackRook4)
while (not(validityOfBlack(newBlackRook3, tempState)) and validityWhiteOnWhite(tempState) and validityBlackOnBlack(
tempState)):
newBlackRook3 = (newBlackRook3[0] + 1, newBlackRook3[1])
moves += 1
tempState = (
WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, newBlackRook3, BlackRook4)
newBlackRook3 = (newBlackRook3[0] - 1, newBlackRook3[1])
stateNew = (WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, newBlackRook3, BlackRook4)
successors['BlackRook3 - RIGHT: ' + str(moves)] = stateNew
#
#
#
#
# BLACK ROOK 4
#
#
#
# BlackRook4 UP
newBlackRook4 = BlackRook4
moves = 0
tempState = (WhiteRook1, WhiteRook2, WhiteRook3, newWhiteRook4, BlackRook1, BlackRook2, BlackRook3, BlackRook4)
while (not(validityOfBlack(newBlackRook4, tempState)) and validityWhiteOnWhite(tempState) and validityBlackOnBlack(
tempState)):
newBlackRook4 = (newBlackRook4[0], newBlackRook4[1] - 1)
moves += 1
tempState = (
WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, newBlackRook4)
newBlackRook4 = (newBlackRook4[0], newBlackRook4[1] + 1)
stateNew = (WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, newBlackRook4)
successors['BlackRook4 - UP: ' + str(moves)] = stateNew
# BlackRook4 DOWN
newBlackRook4 = BlackRook4
moves = 0
tempState = (WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, newBlackRook4)
while (not(validityOfBlack(newBlackRook4, tempState)) and validityWhiteOnWhite(tempState) and validityBlackOnBlack(
tempState)):
newBlackRook4 = (newBlackRook4[0], newBlackRook4[1] + 1)
moves += 1
tempState = (
WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, newBlackRook4)
newBlackRook4 = (newBlackRook4[0], newBlackRook4[1] - 1)
stateNew = (WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, newBlackRook4)
successors['BlackRook4 - DOWN: ' + str(moves)] = stateNew
# BlackRook4 LEFT
newBlackRook4 = BlackRook4
moves = 0
tempState = (WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, newBlackRook4)
while (not(validityOfBlack(newBlackRook4, tempState)) and validityWhiteOnWhite(tempState) and validityBlackOnBlack(
tempState)):
newBlackRook4 = (newBlackRook4[0] - 1, newBlackRook4[1])
moves += 1
tempState = (
WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, newBlackRook4)
newBlackRook4 = (newBlackRook4[0] + 1, newBlackRook4[1])
stateNew = (WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, newBlackRook4)
successors['BlackRook4 - LEFT: ' + str(moves)] = stateNew
# BlackRook4 RIGHT
newBlackRook4 = BlackRook4
moves = 0
tempState = (WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, newBlackRook4)
while (not(validityOfBlack(newBlackRook4, tempState)) and validityWhiteOnWhite(tempState) and validityBlackOnBlack(
tempState)):
newBlackRook4 = (newBlackRook4[0] + 1, newBlackRook4[1])
moves += 1
tempState = (
WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, newBlackRook4)
newBlackRook4 = (newBlackRook4[0] - 1, newBlackRook4[1])
stateNew = (WhiteRook1, WhiteRook2, WhiteRook3, WhiteRook4, BlackRook1, BlackRook2, BlackRook3, newBlackRook4)
successors['BlackRook4 - RIGHT: ' + str(moves)] = stateNew
return successors
Testing = Rooks(((1, 1), (1, 2), (1, 3), (1, 4), (5, 5), (5, 6), (5, 7), (5, 8)))
answer = breadth_first_tree_search(Testing)
print (answer.solution()) | [
1,
529,
276,
1112,
420,
29958,
29968,
265,
303,
13027,
29899,
29933,
468,
29881,
16469,
1984,
29914,
18118,
13,
3166,
5132,
29918,
484,
262,
689,
381,
1562,
29918,
1457,
1646,
29884,
3703,
1324,
29918,
8394,
1053,
334,
13,
13,
13,
29937,
5399,
565,
278,
4796,
1528,
554,
338,
297,
263,
2854,
2602,
313,
1333,
297,
278,
1196,
310,
3974,
310,
599,
278,
4628,
1528,
12117,
29897,
13,
1753,
2854,
537,
2776,
21823,
29898,
28798,
29892,
319,
1125,
13,
1678,
396,
2158,
703,
18267,
4214,
12317,
9094,
12599,
1367,
11937,
1159,
13,
1678,
396,
1596,
29898,
28798,
29897,
13,
1678,
4423,
353,
13736,
13,
1678,
396,
2158,
29898,
5479,
29961,
29900,
29962,
2804,
319,
29961,
29946,
3816,
29900,
29962,
322,
4423,
29961,
29900,
29962,
2804,
319,
29961,
29945,
3816,
29900,
29962,
322,
4423,
29961,
29900,
29962,
2804,
319,
29961,
29953,
3816,
29900,
29962,
322,
4423,
29961,
29900,
29962,
2804,
319,
29961,
29955,
3816,
29900,
29962,
322,
13,
1678,
396,
539,
4423,
29961,
29896,
29962,
2804,
319,
29961,
29946,
3816,
29896,
29962,
322,
4423,
29961,
29896,
29962,
2804,
319,
29961,
29945,
3816,
29896,
29962,
322,
4423,
29961,
29896,
29962,
2804,
319,
29961,
29953,
3816,
29896,
29962,
322,
4423,
29961,
29896,
29962,
2804,
319,
29961,
29955,
3816,
29896,
29962,
322,
13,
1678,
396,
4706,
4423,
29961,
29900,
29962,
529,
29871,
29953,
322,
4423,
29961,
29900,
29962,
1405,
29871,
29900,
322,
4423,
29961,
29896,
29962,
1405,
29871,
29900,
322,
4423,
29961,
29896,
29962,
529,
29871,
29947,
29897,
13,
1678,
736,
313,
5479,
29961,
29900,
29962,
2804,
319,
29961,
29946,
3816,
29900,
29962,
322,
4423,
29961,
29900,
29962,
2804,
319,
29961,
29945,
3816,
29900,
29962,
322,
4423,
29961,
29900,
29962,
2804,
319,
29961,
29953,
3816,
29900,
29962,
322,
4423,
29961,
29900,
29962,
2804,
319,
29961,
29955,
3816,
29900,
29962,
322,
13,
9651,
4423,
29961,
29896,
29962,
2804,
319,
29961,
29946,
3816,
29896,
29962,
322,
4423,
29961,
29896,
29962,
2804,
319,
29961,
29945,
3816,
29896,
29962,
322,
4423,
29961,
29896,
29962,
2804,
319,
29961,
29953,
3816,
29896,
29962,
322,
4423,
29961,
29896,
29962,
2804,
319,
29961,
29955,
3816,
29896,
29962,
322,
13,
9651,
4423,
29961,
29900,
29962,
529,
29871,
29953,
322,
4423,
29961,
29900,
29962,
1405,
29871,
29900,
322,
4423,
29961,
29896,
29962,
1405,
29871,
29900,
322,
4423,
29961,
29896,
29962,
529,
29871,
29947,
29897,
13,
13,
13,
29937,
5399,
565,
278,
4628,
1528,
554,
338,
297,
263,
2854,
2602,
313,
1333,
297,
278,
1196,
310,
3974,
310,
599,
278,
4796,
1528,
12117,
29897,
13,
1753,
2854,
537,
2776,
18700,
29898,
28798,
29892,
319,
1125,
13,
1678,
396,
2158,
703,
18267,
4214,
350,
29931,
11375,
12599,
1367,
11937,
1159,
13,
1678,
396,
1596,
29898,
28798,
29897,
13,
1678,
4423,
353,
13736,
13,
1678,
396,
2158,
29898,
5479,
29961,
29900,
29962,
2804,
319,
29961,
29900,
3816,
29900,
29962,
322,
4423,
29961,
29900,
29962,
2804,
319,
29961,
29896,
3816,
29900,
29962,
322,
4423,
29961,
29900,
29962,
2804,
319,
29961,
29906,
3816,
29900,
29962,
322,
4423,
29961,
29900,
29962,
2804,
319,
29961,
29941,
3816,
29900,
29962,
322,
13,
1678,
396,
4706,
4423,
29961,
29896,
29962,
2804,
319,
29961,
29900,
3816,
29896,
29962,
322,
4423,
29961,
29896,
29962,
2804,
319,
29961,
29896,
3816,
29896,
29962,
322,
4423,
29961,
29896,
29962,
2804,
319,
29961,
29906,
3816,
29896,
29962,
322,
4423,
29961,
29896,
29962,
2804,
319,
29961,
29941,
3816,
29896,
29962,
322,
13,
1678,
396,
4706,
4423,
29961,
29900,
29962,
529,
29871,
29953,
322,
4423,
29961,
29900,
29962,
1405,
29871,
29900,
322,
4423,
29961,
29896,
29962,
1405,
29871,
29900,
322,
4423,
29961,
29896,
29962,
529,
29871,
29947,
29897,
13,
1678,
736,
313,
5479,
29961,
29900,
29962,
2804,
319,
29961,
29900,
3816,
29900,
29962,
322,
4423,
29961,
29900,
29962,
2804,
319,
29961,
29896,
3816,
29900,
29962,
322,
4423,
29961,
29900,
29962,
2804,
319,
29961,
29906,
3816,
29900,
29962,
322,
4423,
29961,
29900,
29962,
2804,
319,
29961,
29941,
3816,
29900,
29962,
322,
13,
9651,
4423,
29961,
29896,
29962,
2804,
319,
29961,
29900,
3816,
29896,
29962,
322,
4423,
29961,
29896,
29962,
2804,
319,
29961,
29896,
3816,
29896,
29962,
322,
4423,
29961,
29896,
29962,
2804,
319,
29961,
29906,
3816,
29896,
29962,
322,
4423,
29961,
29896,
29962,
2804,
319,
29961,
29941,
3816,
29896,
29962,
322,
13,
9651,
4423,
29961,
29900,
29962,
529,
29871,
29953,
322,
4423,
29961,
29900,
29962,
1405,
29871,
29900,
322,
4423,
29961,
29896,
29962,
1405,
29871,
29900,
322,
4423,
29961,
29896,
29962,
529,
29871,
29947,
29897,
13,
13,
13,
29937,
5399,
565,
278,
4796,
696,
12117,
526,
451,
373,
2246,
310,
1269,
916,
13,
1753,
2854,
537,
21823,
2951,
21823,
29898,
29909,
1125,
13,
1678,
396,
2158,
703,
18267,
4214,
12317,
9094,
265,
25039,
9094,
1159,
13,
1678,
396,
2158,
29898,
29909,
29961,
29900,
3816,
29900,
29962,
2804,
319,
29961,
29896,
3816,
29900,
29962,
322,
319,
29961,
29900,
3816,
29900,
29962,
2804,
319,
29961,
29906,
3816,
29900,
29962,
322,
319,
29961,
29900,
3816,
29900,
29962,
2804,
319,
29961,
29941,
3816,
29900,
29962,
322,
13,
1678,
396,
4706,
319,
29961,
29896,
3816,
29900,
29962,
2804,
319,
29961,
29906,
3816,
29900,
29962,
322,
319,
29961,
29896,
3816,
29900,
29962,
2804,
319,
29961,
29941,
3816,
29900,
29962,
322,
13,
1678,
396,
4706,
319,
29961,
29906,
3816,
29900,
29962,
2804,
319,
29961,
29941,
3816,
29900,
29962,
322,
13,
1678,
396,
4706,
319,
29961,
29900,
3816,
29896,
29962,
2804,
319,
29961,
29896,
3816,
29896,
29962,
322,
319,
29961,
29900,
3816,
29896,
29962,
2804,
319,
29961,
29906,
3816,
29896,
29962,
322,
319,
29961,
29900,
3816,
29896,
29962,
2804,
319,
29961,
29941,
3816,
29896,
29962,
322,
13,
1678,
396,
4706,
319,
29961,
29896,
3816,
29896,
29962,
2804,
319,
29961,
29906,
3816,
29896,
29962,
322,
319,
29961,
29896,
3816,
29896,
29962,
2804,
319,
29961,
29941,
3816,
29896,
29962,
322,
13,
1678,
396,
4706,
319,
29961,
29906,
3816,
29896,
29962,
2804,
319,
29961,
29941,
3816,
29896,
2314,
13,
1678,
736,
313,
29909,
29961,
29900,
3816,
29900,
29962,
2804,
319,
29961,
29896,
3816,
29900,
29962,
322,
319,
29961,
29900,
3816,
29900,
29962,
2804,
319,
29961,
29906,
3816,
29900,
29962,
322,
319,
29961,
29900,
3816,
29900,
29962,
2804,
319,
29961,
29941,
3816,
29900,
29962,
322,
13,
9651,
319,
29961,
29896,
3816,
29900,
29962,
2804,
319,
29961,
29906,
3816,
29900,
29962,
322,
319,
29961,
29896,
3816,
29900,
29962,
2804,
319,
29961,
29941,
3816,
29900,
29962,
322,
13,
9651,
319,
29961,
29906,
3816,
29900,
29962,
2804,
319,
29961,
29941,
3816,
29900,
29962,
322,
13,
9651,
319,
29961,
29900,
3816,
29896,
29962,
2804,
319,
29961,
29896,
3816,
29896,
29962,
322,
319,
29961,
29900,
3816,
29896,
29962,
2804,
319,
29961,
29906,
3816,
29896,
29962,
322,
319,
29961,
29900,
3816,
29896,
29962,
2804,
319,
29961,
29941,
3816,
29896,
29962,
322,
13,
9651,
319,
29961,
29896,
3816,
29896,
29962,
2804,
319,
29961,
29906,
3816,
29896,
29962,
322,
319,
29961,
29896,
3816,
29896,
29962,
2804,
319,
29961,
29941,
3816,
29896,
29962,
322,
13,
9651,
319,
29961,
29906,
3816,
29896,
29962,
2804,
319,
29961,
29941,
3816,
29896,
2314,
13,
13,
29937,
5399,
565,
278,
4628,
696,
12117,
526,
451,
373,
2246,
310,
1269,
916,
13,
1753,
2854,
537,
18700,
2951,
18700,
29898,
29909,
1125,
13,
1678,
396,
2158,
703,
18267,
4214,
350,
29931,
11375,
265,
13367,
11375,
1159,
13,
1678,
396,
2158,
29898,
29909,
29961,
29900,
3816,
29900,
29962,
2804,
319,
29961,
29896,
3816,
29900,
29962,
322,
319,
29961,
29900,
3816,
29900,
29962,
2804,
319,
29961,
29906,
3816,
29900,
29962,
322,
319,
29961,
29900,
3816,
29900,
29962,
2804,
319,
29961,
29941,
3816,
29900,
29962,
322,
13,
1678,
396,
4706,
319,
29961,
29896,
3816,
29900,
29962,
2804,
319,
29961,
29906,
3816,
29900,
29962,
322,
319,
29961,
29896,
3816,
29900,
29962,
2804,
319,
29961,
29941,
3816,
29900,
29962,
322,
13,
1678,
396,
4706,
319,
29961,
29906,
3816,
29900,
29962,
2804,
319,
29961,
29941,
3816,
29900,
29962,
322,
13,
1678,
396,
4706,
319,
29961,
29900,
3816,
29896,
29962,
2804,
319,
29961,
29896,
3816,
29896,
29962,
322,
319,
29961,
29900,
3816,
29896,
29962,
2804,
319,
29961,
29906,
3816,
29896,
29962,
322,
319,
29961,
29900,
3816,
29896,
29962,
2804,
319,
29961,
29941,
3816,
29896,
29962,
322,
13,
1678,
396,
4706,
319,
29961,
29896,
3816,
29896,
29962,
2804,
319,
29961,
29906,
3816,
29896,
29962,
322,
319,
29961,
29896,
3816,
29896,
29962,
2804,
319,
29961,
29941,
3816,
29896,
29962,
322,
13,
1678,
396,
4706,
319,
29961,
29906,
3816,
29896,
29962,
2804,
319,
29961,
29941,
3816,
29896,
2314,
13,
1678,
736,
313,
29909,
29961,
29946,
3816,
29900,
29962,
2804,
319,
29961,
29945,
3816,
29900,
29962,
322,
319,
29961,
29946,
3816,
29900,
29962,
2804,
319,
29961,
29953,
3816,
29900,
29962,
322,
319,
29961,
29946,
3816,
29900,
29962,
2804,
319,
29961,
29955,
3816,
29900,
29962,
322,
13,
9651,
319,
29961,
29945,
3816,
29900,
29962,
2804,
319,
29961,
29953,
3816,
29900,
29962,
322,
319,
29961,
29945,
3816,
29900,
29962,
2804,
319,
29961,
29955,
3816,
29900,
29962,
322,
13,
9651,
319,
29961,
29953,
3816,
29900,
29962,
2804,
319,
29961,
29955,
3816,
29900,
29962,
322,
13,
9651,
319,
29961,
29946,
3816,
29896,
29962,
2804,
319,
29961,
29945,
3816,
29896,
29962,
322,
319,
29961,
29946,
3816,
29896,
29962,
2804,
319,
29961,
29953,
3816,
29896,
29962,
322,
319,
29961,
29946,
3816,
29896,
29962,
2804,
319,
29961,
29955,
3816,
29896,
29962,
322,
13,
9651,
319,
29961,
29945,
3816,
29896,
29962,
2804,
319,
29961,
29953,
3816,
29896,
29962,
322,
319,
29961,
29945,
3816,
29896,
29962,
2804,
319,
29961,
29955,
3816,
29896,
29962,
322,
13,
9651,
319,
29961,
29953,
3816,
29896,
29962,
2804,
319,
29961,
29955,
3816,
29896,
2314,
13,
13,
1990,
1528,
12117,
29898,
26604,
1125,
13,
1678,
822,
4770,
2344,
12035,
1311,
29892,
2847,
1125,
13,
4706,
1583,
29889,
11228,
353,
2847,
13,
13,
1678,
822,
7306,
29918,
1688,
29898,
1311,
29892,
2106,
1125,
13,
4706,
736,
5135,
3859,
29961,
29900,
29962,
1275,
313,
29945,
29892,
29947,
29897,
470,
2106,
29961,
29900,
29962,
1275,
313,
29945,
29892,
29955,
29897,
470,
2106,
29961,
29900,
29962,
1275,
313,
29945,
29892,
29953,
29897,
470,
2106,
29961,
29900,
29962,
1275,
313,
29945,
29892,
29945,
876,
322,
13,
18884,
313,
3859,
29961,
29896,
29962,
1275,
313,
29945,
29892,
29871,
29947,
29897,
470,
2106,
29961,
29896,
29962,
1275,
313,
29945,
29892,
29871,
29955,
29897,
470,
2106,
29961,
29896,
29962,
1275,
313,
29945,
29892,
29871,
29953,
29897,
470,
2106,
29961,
29896,
29962,
1275,
313,
29945,
29892,
29871,
29945,
876,
322,
13,
18884,
313,
3859,
29961,
29906,
29962,
1275,
313,
29945,
29892,
29871,
29947,
29897,
470,
2106,
29961,
29906,
29962,
1275,
313,
29945,
29892,
29871,
29955,
29897,
470,
2106,
29961,
29906,
29962,
1275,
313,
29945,
29892,
29871,
29953,
29897,
470,
2106,
29961,
29906,
29962,
1275,
313,
29945,
29892,
29871,
29945,
876,
322,
13,
18884,
313,
3859,
29961,
29941,
29962,
1275,
313,
29945,
29892,
29871,
29947,
29897,
470,
2106,
29961,
29941,
29962,
1275,
313,
29945,
29892,
29871,
29955,
29897,
470,
2106,
29961,
29941,
29962,
1275,
313,
29945,
29892,
29871,
29953,
29897,
470,
2106,
29961,
29941,
29962,
1275,
313,
29945,
29892,
29871,
29945,
876,
322,
13,
18884,
313,
3859,
29961,
29946,
29962,
1275,
313,
29896,
29892,
29871,
29896,
29897,
470,
2106,
29961,
29946,
29962,
1275,
313,
29896,
29892,
29871,
29906,
29897,
470,
2106,
29961,
29946,
29962,
1275,
313,
29896,
29892,
29871,
29941,
29897,
470,
2106,
29961,
29946,
29962,
1275,
313,
29896,
29892,
29871,
29946,
876,
322,
13,
18884,
313,
3859,
29961,
29945,
29962,
1275,
313,
29896,
29892,
29871,
29896,
29897,
470,
2106,
29961,
29945,
29962,
1275,
313,
29896,
29892,
29871,
29906,
29897,
470,
2106,
29961,
29945,
29962,
1275,
313,
29896,
29892,
29871,
29941,
29897,
470,
2106,
29961,
29945,
29962,
1275,
313,
29896,
29892,
29871,
29946,
876,
322,
13,
18884,
313,
3859,
29961,
29953,
29962,
1275,
313,
29896,
29892,
29871,
29896,
29897,
470,
2106,
29961,
29953,
29962,
1275,
313,
29896,
29892,
29871,
29906,
29897,
470,
2106,
29961,
29953,
29962,
1275,
313,
29896,
29892,
29871,
29941,
29897,
470,
2106,
29961,
29953,
29962,
1275,
313,
29896,
29892,
29871,
29946,
876,
322,
13,
18884,
313,
3859,
29961,
29955,
29962,
1275,
313,
29896,
29892,
29871,
29896,
29897,
470,
2106,
29961,
29955,
29962,
1275,
313,
29896,
29892,
29871,
29906,
29897,
470,
2106,
29961,
29955,
29962,
1275,
313,
29896,
29892,
29871,
29941,
29897,
470,
2106,
29961,
29955,
29962,
1275,
313,
29896,
29892,
29871,
29946,
4961,
13,
13,
1678,
822,
8820,
29898,
1311,
29892,
2106,
1125,
13,
4706,
736,
1583,
29889,
8698,
272,
29898,
3859,
467,
8149,
580,
13,
13,
1678,
822,
1121,
29898,
1311,
29892,
2106,
29892,
3158,
1125,
13,
4706,
1950,
353,
1583,
29889,
8698,
272,
29898,
3859,
29897,
13,
4706,
736,
1950,
29961,
2467,
29962,
13,
13,
1678,
822,
29433,
29898,
1311,
29892,
2106,
1125,
13,
4706,
2551,
943,
353,
9657,
580,
13,
13,
4706,
8037,
29934,
2550,
29896,
353,
2106,
29961,
29900,
29962,
13,
4706,
8037,
29934,
2550,
29906,
353,
2106,
29961,
29896,
29962,
13,
4706,
8037,
29934,
2550,
29941,
353,
2106,
29961,
29906,
29962,
13,
4706,
8037,
29934,
2550,
29946,
353,
2106,
29961,
29941,
29962,
13,
13,
4706,
6054,
29934,
2550,
29896,
353,
2106,
29961,
29946,
29962,
13,
4706,
6054,
29934,
2550,
29906,
353,
2106,
29961,
29945,
29962,
13,
4706,
6054,
29934,
2550,
29941,
353,
2106,
29961,
29953,
29962,
13,
4706,
6054,
29934,
2550,
29946,
353,
2106,
29961,
29955,
29962,
13,
4706,
396,
13,
4706,
396,
13,
4706,
396,
13,
4706,
396,
12317,
9094,
16641,
8949,
29871,
29896,
13,
4706,
396,
13,
4706,
396,
13,
4706,
396,
13,
4706,
396,
8037,
29934,
2550,
29896,
11901,
13,
4706,
716,
21823,
29934,
2550,
29896,
353,
8037,
29934,
2550,
29896,
13,
4706,
16229,
29922,
29900,
13,
4706,
5694,
2792,
353,
313,
1482,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
1550,
29898,
1333,
29898,
3084,
537,
2776,
21823,
29898,
1482,
21823,
29934,
2550,
29896,
29892,
5694,
2792,
876,
322,
2854,
537,
21823,
2951,
21823,
29898,
7382,
2792,
29897,
322,
2854,
537,
18700,
2951,
18700,
29898,
7382,
2792,
22164,
13,
9651,
716,
21823,
29934,
2550,
29896,
353,
313,
1482,
21823,
29934,
2550,
29896,
29961,
29900,
1402,
716,
21823,
29934,
2550,
29896,
29961,
29896,
29962,
448,
29871,
29896,
29897,
13,
9651,
16229,
23661,
29896,
13,
9651,
5694,
2792,
353,
313,
1482,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
716,
21823,
29934,
2550,
29896,
353,
313,
1482,
21823,
29934,
2550,
29896,
29961,
29900,
1402,
716,
21823,
29934,
2550,
29896,
29961,
29896,
29962,
718,
29871,
29896,
29897,
13,
4706,
2106,
4373,
353,
313,
1482,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
2551,
943,
1839,
21823,
29934,
2550,
29896,
448,
11901,
29901,
525,
718,
851,
29898,
13529,
267,
4638,
353,
2106,
4373,
13,
13,
4706,
396,
8037,
29934,
2550,
29896,
360,
9806,
29940,
13,
4706,
716,
21823,
29934,
2550,
29896,
353,
8037,
29934,
2550,
29896,
13,
4706,
16229,
353,
29871,
29900,
13,
4706,
5694,
2792,
353,
313,
1482,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
1550,
313,
1333,
29898,
3084,
537,
2776,
21823,
29898,
1482,
21823,
29934,
2550,
29896,
29892,
5694,
2792,
876,
322,
2854,
537,
21823,
2951,
21823,
29898,
7382,
2792,
29897,
322,
2854,
537,
18700,
2951,
18700,
29898,
7382,
2792,
22164,
13,
9651,
716,
21823,
29934,
2550,
29896,
353,
313,
1482,
21823,
29934,
2550,
29896,
29961,
29900,
1402,
716,
21823,
29934,
2550,
29896,
29961,
29896,
29962,
718,
29871,
29896,
29897,
13,
9651,
16229,
4619,
29871,
29896,
13,
9651,
5694,
2792,
353,
313,
1482,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
716,
21823,
29934,
2550,
29896,
353,
313,
1482,
21823,
29934,
2550,
29896,
29961,
29900,
1402,
716,
21823,
29934,
2550,
29896,
29961,
29896,
29962,
448,
29871,
29896,
29897,
13,
4706,
2106,
4373,
353,
313,
1482,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
2551,
943,
1839,
21823,
29934,
2550,
29896,
448,
360,
9806,
29940,
29901,
525,
718,
851,
29898,
13529,
267,
4638,
353,
2106,
4373,
13,
13,
4706,
396,
8037,
29934,
2550,
29896,
19246,
13,
4706,
716,
21823,
29934,
2550,
29896,
353,
8037,
29934,
2550,
29896,
13,
4706,
16229,
353,
29871,
29900,
13,
4706,
5694,
2792,
353,
313,
1482,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
1550,
313,
1333,
29898,
3084,
537,
2776,
21823,
29898,
1482,
21823,
29934,
2550,
29896,
29892,
5694,
2792,
876,
322,
2854,
537,
21823,
2951,
21823,
29898,
7382,
2792,
29897,
322,
2854,
537,
18700,
2951,
18700,
29898,
7382,
2792,
22164,
13,
9651,
716,
21823,
29934,
2550,
29896,
353,
313,
1482,
21823,
29934,
2550,
29896,
29961,
29900,
29962,
448,
29871,
29896,
29892,
716,
21823,
29934,
2550,
29896,
29961,
29896,
2314,
13,
9651,
16229,
4619,
29871,
29896,
13,
9651,
5694,
2792,
353,
313,
1482,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
716,
21823,
29934,
2550,
29896,
353,
313,
1482,
21823,
29934,
2550,
29896,
29961,
29900,
29962,
718,
29871,
29896,
29892,
716,
21823,
29934,
2550,
29896,
29961,
29896,
2314,
13,
4706,
2106,
4373,
353,
313,
1482,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
2551,
943,
1839,
21823,
29934,
2550,
29896,
448,
19246,
29901,
525,
718,
851,
29898,
13529,
267,
4638,
353,
2106,
4373,
13,
13,
4706,
396,
8037,
29934,
2550,
29896,
390,
22530,
13,
4706,
716,
21823,
29934,
2550,
29896,
353,
8037,
29934,
2550,
29896,
13,
4706,
16229,
353,
29871,
29900,
13,
4706,
5694,
2792,
353,
313,
1482,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
1550,
313,
1333,
29898,
3084,
537,
2776,
21823,
29898,
1482,
21823,
29934,
2550,
29896,
29892,
5694,
2792,
876,
322,
2854,
537,
21823,
2951,
21823,
29898,
7382,
2792,
29897,
322,
2854,
537,
18700,
2951,
18700,
29898,
7382,
2792,
22164,
13,
9651,
716,
21823,
29934,
2550,
29896,
353,
313,
1482,
21823,
29934,
2550,
29896,
29961,
29900,
29962,
718,
29871,
29896,
29892,
716,
21823,
29934,
2550,
29896,
29961,
29896,
2314,
13,
9651,
16229,
4619,
29871,
29896,
13,
9651,
5694,
2792,
353,
313,
13,
9651,
716,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
716,
21823,
29934,
2550,
29896,
353,
313,
1482,
21823,
29934,
2550,
29896,
29961,
29900,
29962,
448,
29871,
29896,
29892,
716,
21823,
29934,
2550,
29896,
29961,
29896,
2314,
13,
4706,
2106,
4373,
353,
313,
1482,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
2551,
943,
1839,
21823,
29934,
2550,
29896,
448,
390,
22530,
29901,
525,
718,
851,
29898,
13529,
267,
4638,
353,
2106,
4373,
13,
4706,
396,
13,
4706,
396,
13,
4706,
396,
13,
4706,
396,
13,
4706,
396,
12317,
9094,
16641,
8949,
29871,
29906,
13,
4706,
396,
13,
4706,
396,
13,
4706,
396,
13,
4706,
396,
8037,
29934,
2550,
29906,
11901,
13,
4706,
716,
21823,
29934,
2550,
29906,
353,
8037,
29934,
2550,
29906,
13,
4706,
16229,
353,
29871,
29900,
13,
4706,
5694,
2792,
353,
313,
21823,
29934,
2550,
29896,
29892,
716,
21823,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
1550,
313,
1333,
29898,
3084,
537,
2776,
21823,
29898,
1482,
21823,
29934,
2550,
29906,
29892,
5694,
2792,
876,
322,
2854,
537,
21823,
2951,
21823,
29898,
7382,
2792,
29897,
322,
2854,
537,
18700,
2951,
18700,
29898,
7382,
2792,
22164,
13,
9651,
716,
21823,
29934,
2550,
29906,
353,
313,
1482,
21823,
29934,
2550,
29906,
29961,
29900,
1402,
716,
21823,
29934,
2550,
29906,
29961,
29896,
29962,
448,
29871,
29896,
29897,
13,
9651,
16229,
4619,
29871,
29896,
13,
9651,
5694,
2792,
353,
313,
21823,
29934,
2550,
29896,
29892,
716,
21823,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
716,
21823,
29934,
2550,
29906,
353,
313,
1482,
21823,
29934,
2550,
29906,
29961,
29900,
1402,
716,
21823,
29934,
2550,
29906,
29961,
29896,
29962,
718,
29871,
29896,
29897,
13,
4706,
2106,
4373,
353,
313,
21823,
29934,
2550,
29896,
29892,
716,
21823,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
2551,
943,
1839,
21823,
29934,
2550,
29906,
448,
11901,
29901,
525,
718,
851,
29898,
13529,
267,
4638,
353,
2106,
4373,
13,
13,
4706,
396,
8037,
29934,
2550,
29906,
360,
9806,
29940,
13,
4706,
716,
21823,
29934,
2550,
29906,
353,
8037,
29934,
2550,
29906,
13,
4706,
16229,
353,
29871,
29900,
13,
4706,
5694,
2792,
353,
313,
21823,
29934,
2550,
29896,
29892,
716,
21823,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
1550,
313,
1333,
29898,
3084,
537,
2776,
21823,
29898,
1482,
21823,
29934,
2550,
29906,
29892,
5694,
2792,
876,
322,
2854,
537,
21823,
2951,
21823,
29898,
7382,
2792,
29897,
322,
2854,
537,
18700,
2951,
18700,
29898,
7382,
2792,
22164,
13,
9651,
716,
21823,
29934,
2550,
29906,
353,
313,
1482,
21823,
29934,
2550,
29906,
29961,
29900,
1402,
716,
21823,
29934,
2550,
29906,
29961,
29896,
29962,
718,
29871,
29896,
29897,
13,
9651,
16229,
4619,
29871,
29896,
13,
9651,
5694,
2792,
353,
313,
21823,
29934,
2550,
29896,
29892,
716,
21823,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
716,
21823,
29934,
2550,
29906,
353,
313,
1482,
21823,
29934,
2550,
29906,
29961,
29900,
1402,
716,
21823,
29934,
2550,
29906,
29961,
29896,
29962,
448,
29871,
29896,
29897,
13,
4706,
2106,
4373,
353,
313,
21823,
29934,
2550,
29896,
29892,
716,
21823,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
2551,
943,
1839,
21823,
29934,
2550,
29906,
448,
360,
9806,
29940,
29901,
525,
718,
851,
29898,
13529,
267,
4638,
353,
2106,
4373,
13,
13,
4706,
396,
8037,
29934,
2550,
29906,
19246,
13,
4706,
716,
21823,
29934,
2550,
29906,
353,
8037,
29934,
2550,
29906,
13,
4706,
16229,
353,
29871,
29900,
13,
4706,
5694,
2792,
353,
313,
21823,
29934,
2550,
29896,
29892,
716,
21823,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
1550,
313,
1333,
29898,
3084,
537,
2776,
21823,
29898,
1482,
21823,
29934,
2550,
29906,
29892,
5694,
2792,
876,
322,
2854,
537,
21823,
2951,
21823,
29898,
7382,
2792,
29897,
322,
2854,
537,
18700,
2951,
18700,
29898,
7382,
2792,
22164,
13,
9651,
716,
21823,
29934,
2550,
29906,
353,
313,
1482,
21823,
29934,
2550,
29906,
29961,
29900,
29962,
448,
29871,
29896,
29892,
716,
21823,
29934,
2550,
29906,
29961,
29896,
2314,
13,
9651,
16229,
4619,
29871,
29896,
13,
9651,
5694,
2792,
353,
313,
21823,
29934,
2550,
29896,
29892,
716,
21823,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
716,
21823,
29934,
2550,
29906,
353,
313,
1482,
21823,
29934,
2550,
29906,
29961,
29900,
29962,
718,
29871,
29896,
29892,
716,
21823,
29934,
2550,
29906,
29961,
29896,
2314,
13,
4706,
2106,
4373,
353,
313,
21823,
29934,
2550,
29896,
29892,
716,
21823,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
2551,
943,
1839,
21823,
29934,
2550,
29906,
448,
19246,
29901,
525,
718,
851,
29898,
13529,
267,
4638,
353,
2106,
4373,
13,
13,
4706,
396,
8037,
29934,
2550,
29906,
390,
22530,
13,
4706,
716,
21823,
29934,
2550,
29906,
353,
8037,
29934,
2550,
29906,
13,
4706,
16229,
353,
29871,
29900,
13,
4706,
5694,
2792,
353,
313,
21823,
29934,
2550,
29896,
29892,
716,
21823,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
1550,
313,
1333,
29898,
3084,
537,
2776,
21823,
29898,
1482,
21823,
29934,
2550,
29906,
29892,
5694,
2792,
876,
322,
2854,
537,
21823,
2951,
21823,
29898,
7382,
2792,
29897,
322,
2854,
537,
18700,
2951,
18700,
29898,
7382,
2792,
22164,
13,
9651,
716,
21823,
29934,
2550,
29906,
353,
313,
1482,
21823,
29934,
2550,
29906,
29961,
29900,
29962,
718,
29871,
29896,
29892,
716,
21823,
29934,
2550,
29906,
29961,
29896,
2314,
13,
9651,
16229,
4619,
29871,
29896,
13,
9651,
5694,
2792,
353,
313,
21823,
29934,
2550,
29896,
29892,
716,
21823,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
716,
21823,
29934,
2550,
29906,
353,
313,
1482,
21823,
29934,
2550,
29906,
29961,
29900,
29962,
448,
29871,
29896,
29892,
716,
21823,
29934,
2550,
29906,
29961,
29896,
2314,
13,
4706,
2106,
4373,
353,
313,
21823,
29934,
2550,
29896,
29892,
716,
21823,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
2551,
943,
1839,
21823,
29934,
2550,
29906,
448,
390,
22530,
29901,
525,
718,
851,
29898,
13529,
267,
4638,
353,
2106,
4373,
13,
4706,
396,
13,
4706,
396,
13,
4706,
396,
13,
4706,
396,
13,
4706,
396,
12317,
9094,
16641,
8949,
29871,
29941,
13,
4706,
396,
13,
4706,
396,
13,
4706,
396,
13,
4706,
396,
8037,
29934,
2550,
29941,
11901,
13,
4706,
716,
21823,
29934,
2550,
29941,
353,
8037,
29934,
2550,
29941,
13,
4706,
16229,
353,
29871,
29900,
13,
4706,
5694,
2792,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
716,
21823,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
1550,
313,
1333,
29898,
3084,
537,
2776,
21823,
29898,
1482,
21823,
29934,
2550,
29941,
29892,
5694,
2792,
876,
322,
2854,
537,
21823,
2951,
21823,
29898,
7382,
2792,
29897,
322,
2854,
537,
18700,
2951,
18700,
29898,
7382,
2792,
22164,
13,
9651,
716,
21823,
29934,
2550,
29941,
353,
313,
1482,
21823,
29934,
2550,
29941,
29961,
29900,
1402,
716,
21823,
29934,
2550,
29941,
29961,
29896,
29962,
448,
29871,
29896,
29897,
13,
9651,
16229,
4619,
29871,
29896,
13,
9651,
5694,
2792,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
716,
21823,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
716,
21823,
29934,
2550,
29941,
353,
313,
1482,
21823,
29934,
2550,
29941,
29961,
29900,
1402,
716,
21823,
29934,
2550,
29941,
29961,
29896,
29962,
718,
29871,
29896,
29897,
13,
4706,
2106,
4373,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
716,
21823,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
2551,
943,
1839,
21823,
29934,
2550,
29941,
448,
11901,
29901,
525,
718,
851,
29898,
13529,
267,
4638,
353,
2106,
4373,
13,
13,
4706,
396,
8037,
29934,
2550,
29941,
360,
9806,
29940,
13,
4706,
716,
21823,
29934,
2550,
29941,
353,
8037,
29934,
2550,
29941,
13,
4706,
16229,
353,
29871,
29900,
13,
4706,
5694,
2792,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
716,
21823,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
1550,
313,
1333,
29898,
3084,
537,
2776,
21823,
29898,
1482,
21823,
29934,
2550,
29941,
29892,
5694,
2792,
876,
322,
2854,
537,
21823,
2951,
21823,
29898,
7382,
2792,
29897,
322,
2854,
537,
18700,
2951,
18700,
29898,
13,
18884,
5694,
2792,
22164,
13,
9651,
716,
21823,
29934,
2550,
29941,
353,
313,
1482,
21823,
29934,
2550,
29941,
29961,
29900,
1402,
716,
21823,
29934,
2550,
29941,
29961,
29896,
29962,
718,
29871,
29896,
29897,
13,
9651,
16229,
4619,
29871,
29896,
13,
9651,
5694,
2792,
353,
313,
13,
9651,
8037,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
716,
21823,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
716,
21823,
29934,
2550,
29941,
353,
313,
1482,
21823,
29934,
2550,
29941,
29961,
29900,
1402,
716,
21823,
29934,
2550,
29941,
29961,
29896,
29962,
448,
29871,
29896,
29897,
13,
4706,
2106,
4373,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
716,
21823,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
2551,
943,
1839,
21823,
29934,
2550,
29941,
448,
360,
9806,
29940,
29901,
525,
718,
851,
29898,
13529,
267,
4638,
353,
2106,
4373,
13,
13,
4706,
396,
8037,
29934,
2550,
29941,
19246,
13,
4706,
716,
21823,
29934,
2550,
29941,
353,
8037,
29934,
2550,
29941,
13,
4706,
16229,
353,
29871,
29900,
13,
4706,
5694,
2792,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
716,
21823,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
1550,
313,
1333,
29898,
3084,
537,
2776,
21823,
29898,
1482,
21823,
29934,
2550,
29941,
29892,
5694,
2792,
876,
322,
2854,
537,
21823,
2951,
21823,
29898,
7382,
2792,
29897,
322,
2854,
537,
18700,
2951,
18700,
29898,
13,
18884,
5694,
2792,
22164,
13,
9651,
716,
21823,
29934,
2550,
29941,
353,
313,
1482,
21823,
29934,
2550,
29941,
29961,
29900,
29962,
448,
29871,
29896,
29892,
716,
21823,
29934,
2550,
29941,
29961,
29896,
2314,
13,
9651,
16229,
4619,
29871,
29896,
13,
9651,
5694,
2792,
353,
313,
13,
9651,
8037,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
716,
21823,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
716,
21823,
29934,
2550,
29941,
353,
313,
1482,
21823,
29934,
2550,
29941,
29961,
29900,
29962,
718,
29871,
29896,
29892,
716,
21823,
29934,
2550,
29941,
29961,
29896,
2314,
13,
4706,
2106,
4373,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
716,
21823,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
2551,
943,
1839,
21823,
29934,
2550,
29941,
448,
19246,
29901,
525,
718,
851,
29898,
13529,
267,
4638,
353,
2106,
4373,
13,
13,
4706,
396,
8037,
29934,
2550,
29941,
390,
22530,
13,
4706,
716,
21823,
29934,
2550,
29941,
353,
8037,
29934,
2550,
29941,
13,
4706,
16229,
353,
29871,
29900,
13,
4706,
5694,
2792,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
716,
21823,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
1550,
313,
1333,
29898,
3084,
537,
2776,
21823,
29898,
1482,
21823,
29934,
2550,
29941,
29892,
5694,
2792,
876,
322,
2854,
537,
21823,
2951,
21823,
29898,
7382,
2792,
29897,
322,
2854,
537,
18700,
2951,
18700,
29898,
13,
18884,
5694,
2792,
22164,
13,
9651,
716,
21823,
29934,
2550,
29941,
353,
313,
1482,
21823,
29934,
2550,
29941,
29961,
29900,
29962,
718,
29871,
29896,
29892,
716,
21823,
29934,
2550,
29941,
29961,
29896,
2314,
13,
9651,
16229,
4619,
29871,
29896,
13,
9651,
5694,
2792,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
716,
21823,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
716,
21823,
29934,
2550,
29941,
353,
313,
1482,
21823,
29934,
2550,
29941,
29961,
29900,
29962,
448,
29871,
29896,
29892,
716,
21823,
29934,
2550,
29941,
29961,
29896,
2314,
13,
4706,
2106,
4373,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
716,
21823,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
2551,
943,
1839,
21823,
29934,
2550,
29941,
448,
390,
22530,
29901,
525,
718,
851,
29898,
13529,
267,
4638,
353,
2106,
4373,
13,
4706,
396,
13,
4706,
396,
13,
4706,
396,
13,
4706,
396,
13,
4706,
396,
12317,
9094,
16641,
8949,
29871,
29946,
13,
4706,
396,
13,
4706,
396,
13,
4706,
396,
13,
4706,
396,
8037,
29934,
2550,
29946,
11901,
13,
4706,
716,
21823,
29934,
2550,
29946,
353,
8037,
29934,
2550,
29946,
13,
4706,
16229,
353,
29871,
29900,
13,
4706,
5694,
2792,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
716,
21823,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
1550,
313,
1333,
29898,
3084,
537,
2776,
21823,
29898,
1482,
21823,
29934,
2550,
29946,
29892,
5694,
2792,
876,
322,
2854,
537,
21823,
2951,
21823,
29898,
7382,
2792,
29897,
322,
2854,
537,
18700,
2951,
18700,
29898,
13,
18884,
5694,
2792,
22164,
13,
9651,
716,
21823,
29934,
2550,
29946,
353,
313,
1482,
21823,
29934,
2550,
29946,
29961,
29900,
1402,
716,
21823,
29934,
2550,
29946,
29961,
29896,
29962,
448,
29871,
29896,
29897,
13,
9651,
16229,
4619,
29871,
29896,
13,
9651,
5694,
2792,
353,
313,
13,
9651,
8037,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
716,
21823,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
716,
21823,
29934,
2550,
29946,
353,
313,
1482,
21823,
29934,
2550,
29946,
29961,
29900,
1402,
716,
21823,
29934,
2550,
29946,
29961,
29896,
29962,
718,
29871,
29896,
29897,
13,
4706,
2106,
4373,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
716,
21823,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
2551,
943,
1839,
21823,
29934,
2550,
29946,
448,
11901,
29901,
525,
718,
851,
29898,
13529,
267,
4638,
353,
2106,
4373,
13,
13,
4706,
396,
8037,
29934,
2550,
29946,
360,
9806,
29940,
13,
4706,
716,
21823,
29934,
2550,
29946,
353,
8037,
29934,
2550,
29946,
13,
4706,
16229,
353,
29871,
29900,
13,
4706,
5694,
2792,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
716,
21823,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
1550,
313,
1333,
29898,
3084,
537,
2776,
21823,
29898,
1482,
21823,
29934,
2550,
29946,
29892,
5694,
2792,
876,
322,
2854,
537,
21823,
2951,
21823,
29898,
7382,
2792,
29897,
322,
2854,
537,
18700,
2951,
18700,
29898,
13,
18884,
5694,
2792,
22164,
13,
9651,
716,
21823,
29934,
2550,
29946,
353,
313,
1482,
21823,
29934,
2550,
29946,
29961,
29900,
1402,
716,
21823,
29934,
2550,
29946,
29961,
29896,
29962,
718,
29871,
29896,
29897,
13,
9651,
16229,
4619,
29871,
29896,
13,
9651,
5694,
2792,
353,
313,
13,
18884,
8037,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
716,
21823,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
716,
21823,
29934,
2550,
29946,
353,
313,
1482,
21823,
29934,
2550,
29946,
29961,
29900,
1402,
716,
21823,
29934,
2550,
29946,
29961,
29896,
29962,
448,
29871,
29896,
29897,
13,
4706,
2106,
4373,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
716,
21823,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
2551,
943,
1839,
21823,
29934,
2550,
29946,
448,
360,
9806,
29940,
29901,
525,
718,
851,
29898,
13529,
267,
4638,
353,
2106,
4373,
13,
13,
4706,
396,
8037,
29934,
2550,
29946,
19246,
13,
4706,
716,
21823,
29934,
2550,
29946,
353,
8037,
29934,
2550,
29946,
13,
4706,
16229,
353,
29871,
29900,
13,
4706,
5694,
2792,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
716,
21823,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
1550,
313,
1333,
29898,
3084,
537,
2776,
21823,
29898,
1482,
21823,
29934,
2550,
29946,
29892,
5694,
2792,
876,
322,
2854,
537,
21823,
2951,
21823,
29898,
7382,
2792,
29897,
322,
2854,
537,
18700,
2951,
18700,
29898,
13,
18884,
5694,
2792,
22164,
13,
9651,
716,
21823,
29934,
2550,
29946,
353,
313,
1482,
21823,
29934,
2550,
29946,
29961,
29900,
29962,
448,
29871,
29896,
29892,
716,
21823,
29934,
2550,
29946,
29961,
29896,
2314,
13,
9651,
16229,
4619,
29871,
29896,
13,
9651,
5694,
2792,
353,
313,
13,
18884,
8037,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
716,
21823,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
716,
21823,
29934,
2550,
29946,
353,
313,
1482,
21823,
29934,
2550,
29946,
29961,
29900,
29962,
718,
29871,
29896,
29892,
716,
21823,
29934,
2550,
29946,
29961,
29896,
2314,
13,
4706,
2106,
4373,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
716,
21823,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
2551,
943,
1839,
21823,
29934,
2550,
29946,
448,
19246,
29901,
525,
718,
851,
29898,
13529,
267,
4638,
353,
2106,
4373,
13,
13,
4706,
396,
8037,
29934,
2550,
29946,
390,
22530,
13,
4706,
716,
21823,
29934,
2550,
29946,
353,
8037,
29934,
2550,
29946,
13,
4706,
16229,
353,
29871,
29900,
13,
4706,
5694,
2792,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
716,
21823,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
1550,
313,
1333,
29898,
3084,
537,
2776,
21823,
29898,
1482,
21823,
29934,
2550,
29946,
29892,
5694,
2792,
876,
322,
2854,
537,
21823,
2951,
21823,
29898,
7382,
2792,
29897,
322,
2854,
537,
18700,
2951,
18700,
29898,
13,
18884,
5694,
2792,
22164,
13,
9651,
716,
21823,
29934,
2550,
29946,
353,
313,
1482,
21823,
29934,
2550,
29946,
29961,
29900,
29962,
718,
29871,
29896,
29892,
716,
21823,
29934,
2550,
29946,
29961,
29896,
2314,
13,
9651,
16229,
4619,
29871,
29896,
13,
9651,
5694,
2792,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
716,
21823,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
716,
21823,
29934,
2550,
29946,
353,
313,
1482,
21823,
29934,
2550,
29946,
29961,
29900,
29962,
448,
29871,
29896,
29892,
716,
21823,
29934,
2550,
29946,
29961,
29896,
2314,
13,
4706,
2106,
4373,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
716,
21823,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
2551,
943,
1839,
21823,
29934,
2550,
29946,
448,
390,
22530,
29901,
525,
718,
851,
29898,
13529,
267,
4638,
353,
2106,
4373,
13,
13,
4706,
396,
13,
4706,
396,
13,
4706,
396,
13,
4706,
396,
350,
29931,
11375,
16641,
8949,
29871,
29896,
13,
4706,
396,
13,
4706,
396,
13,
4706,
396,
13,
4706,
396,
6054,
29934,
2550,
29896,
11901,
13,
4706,
716,
18700,
29934,
2550,
29896,
353,
6054,
29934,
2550,
29896,
13,
4706,
16229,
353,
29871,
29900,
13,
4706,
5694,
2792,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
716,
18700,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
1550,
313,
1333,
29898,
3084,
537,
2776,
18700,
29898,
1482,
18700,
29934,
2550,
29896,
29892,
5694,
2792,
876,
322,
2854,
537,
21823,
2951,
21823,
29898,
7382,
2792,
29897,
322,
2854,
537,
18700,
2951,
18700,
29898,
13,
18884,
5694,
2792,
22164,
13,
9651,
716,
18700,
29934,
2550,
29896,
353,
313,
1482,
18700,
29934,
2550,
29896,
29961,
29900,
1402,
716,
18700,
29934,
2550,
29896,
29961,
29896,
29962,
448,
29871,
29896,
29897,
13,
9651,
16229,
4619,
29871,
29896,
13,
9651,
5694,
2792,
353,
313,
13,
9651,
8037,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
716,
18700,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
716,
18700,
29934,
2550,
29896,
353,
313,
1482,
18700,
29934,
2550,
29896,
29961,
29900,
1402,
716,
18700,
29934,
2550,
29896,
29961,
29896,
29962,
718,
29871,
29896,
29897,
13,
4706,
2106,
4373,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
716,
18700,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
2551,
943,
1839,
18700,
29934,
2550,
29896,
448,
11901,
29901,
525,
718,
851,
29898,
13529,
267,
4638,
353,
2106,
4373,
13,
13,
4706,
396,
6054,
29934,
2550,
29896,
360,
9806,
29940,
13,
4706,
716,
18700,
29934,
2550,
29896,
353,
8037,
29934,
2550,
29896,
13,
4706,
16229,
353,
29871,
29900,
13,
4706,
5694,
2792,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
716,
18700,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
1550,
313,
1333,
29898,
3084,
537,
2776,
18700,
29898,
1482,
18700,
29934,
2550,
29896,
29892,
5694,
2792,
876,
322,
2854,
537,
21823,
2951,
21823,
29898,
7382,
2792,
29897,
322,
2854,
537,
18700,
2951,
18700,
29898,
13,
18884,
5694,
2792,
22164,
13,
9651,
716,
18700,
29934,
2550,
29896,
353,
313,
1482,
18700,
29934,
2550,
29896,
29961,
29900,
1402,
716,
18700,
29934,
2550,
29896,
29961,
29896,
29962,
718,
29871,
29896,
29897,
13,
9651,
16229,
4619,
29871,
29896,
13,
9651,
5694,
2792,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
716,
18700,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
716,
18700,
29934,
2550,
29896,
353,
313,
1482,
18700,
29934,
2550,
29896,
29961,
29900,
1402,
716,
18700,
29934,
2550,
29896,
29961,
29896,
29962,
448,
29871,
29896,
29897,
13,
4706,
2106,
4373,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
716,
18700,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
2551,
943,
1839,
18700,
29934,
2550,
29896,
448,
360,
9806,
29940,
29901,
525,
718,
851,
29898,
13529,
267,
4638,
353,
2106,
4373,
13,
13,
4706,
396,
6054,
29934,
2550,
29896,
19246,
13,
4706,
716,
18700,
29934,
2550,
29896,
353,
8037,
29934,
2550,
29896,
13,
4706,
16229,
353,
29871,
29900,
13,
4706,
5694,
2792,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
716,
18700,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
1550,
313,
1333,
29898,
3084,
537,
2776,
18700,
29898,
1482,
18700,
29934,
2550,
29896,
29892,
5694,
2792,
876,
322,
2854,
537,
21823,
2951,
21823,
29898,
7382,
2792,
29897,
322,
2854,
537,
18700,
2951,
18700,
29898,
13,
18884,
5694,
2792,
22164,
13,
9651,
716,
18700,
29934,
2550,
29896,
353,
313,
1482,
18700,
29934,
2550,
29896,
29961,
29900,
29962,
448,
29871,
29896,
29892,
716,
18700,
29934,
2550,
29896,
29961,
29896,
2314,
13,
9651,
16229,
4619,
29871,
29896,
13,
9651,
5694,
2792,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
716,
18700,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
716,
18700,
29934,
2550,
29896,
353,
313,
1482,
18700,
29934,
2550,
29896,
29961,
29900,
29962,
718,
29871,
29896,
29892,
716,
18700,
29934,
2550,
29896,
29961,
29896,
2314,
13,
4706,
2106,
4373,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
716,
18700,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
2551,
943,
1839,
18700,
29934,
2550,
29896,
448,
19246,
29901,
525,
718,
851,
29898,
13529,
267,
4638,
353,
2106,
4373,
13,
13,
4706,
396,
6054,
29934,
2550,
29896,
390,
22530,
13,
4706,
716,
18700,
29934,
2550,
29896,
353,
8037,
29934,
2550,
29896,
13,
4706,
16229,
353,
29871,
29900,
13,
4706,
5694,
2792,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
716,
18700,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
1550,
313,
1333,
29898,
3084,
537,
2776,
18700,
29898,
1482,
18700,
29934,
2550,
29896,
29892,
5694,
2792,
876,
322,
2854,
537,
21823,
2951,
21823,
29898,
7382,
2792,
29897,
322,
2854,
537,
18700,
2951,
18700,
29898,
13,
18884,
5694,
2792,
22164,
13,
9651,
716,
18700,
29934,
2550,
29896,
353,
313,
1482,
18700,
29934,
2550,
29896,
29961,
29900,
29962,
718,
29871,
29896,
29892,
716,
18700,
29934,
2550,
29896,
29961,
29896,
2314,
13,
9651,
16229,
4619,
29871,
29896,
13,
9651,
5694,
2792,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
716,
18700,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
716,
18700,
29934,
2550,
29896,
353,
313,
1482,
18700,
29934,
2550,
29896,
29961,
29900,
29962,
448,
29871,
29896,
29892,
716,
18700,
29934,
2550,
29896,
29961,
29896,
2314,
13,
4706,
2106,
4373,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
716,
18700,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
2551,
943,
1839,
18700,
29934,
2550,
29896,
448,
390,
22530,
29901,
525,
718,
851,
29898,
13529,
267,
4638,
353,
2106,
4373,
13,
4706,
396,
13,
4706,
396,
13,
4706,
396,
13,
4706,
396,
13,
4706,
396,
350,
29931,
11375,
16641,
8949,
29871,
29906,
13,
4706,
396,
13,
4706,
396,
13,
4706,
396,
13,
4706,
396,
6054,
29934,
2550,
29906,
11901,
13,
4706,
716,
18700,
29934,
2550,
29906,
353,
6054,
29934,
2550,
29906,
13,
4706,
16229,
353,
29871,
29900,
13,
4706,
5694,
2792,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
716,
18700,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
1550,
313,
1333,
29898,
3084,
537,
2776,
18700,
29898,
1482,
18700,
29934,
2550,
29906,
29892,
5694,
2792,
876,
322,
2854,
537,
21823,
2951,
21823,
29898,
7382,
2792,
29897,
322,
2854,
537,
18700,
2951,
18700,
29898,
13,
18884,
5694,
2792,
22164,
13,
9651,
716,
18700,
29934,
2550,
29906,
353,
313,
1482,
18700,
29934,
2550,
29906,
29961,
29900,
1402,
716,
18700,
29934,
2550,
29906,
29961,
29896,
29962,
448,
29871,
29896,
29897,
13,
9651,
16229,
4619,
29871,
29896,
13,
9651,
5694,
2792,
353,
313,
13,
18884,
8037,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
716,
18700,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
716,
18700,
29934,
2550,
29906,
353,
313,
1482,
18700,
29934,
2550,
29906,
29961,
29900,
1402,
716,
18700,
29934,
2550,
29906,
29961,
29896,
29962,
718,
29871,
29896,
29897,
13,
4706,
2106,
4373,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
716,
18700,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
2551,
943,
1839,
18700,
29934,
2550,
29906,
448,
11901,
29901,
525,
718,
851,
29898,
13529,
267,
4638,
353,
2106,
4373,
13,
13,
4706,
396,
6054,
29934,
2550,
29906,
360,
9806,
29940,
13,
4706,
716,
18700,
29934,
2550,
29906,
353,
6054,
29934,
2550,
29906,
13,
4706,
16229,
353,
29871,
29900,
13,
4706,
5694,
2792,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
716,
18700,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
1550,
313,
1333,
29898,
3084,
537,
2776,
18700,
29898,
1482,
18700,
29934,
2550,
29906,
29892,
5694,
2792,
876,
322,
2854,
537,
21823,
2951,
21823,
29898,
7382,
2792,
29897,
322,
2854,
537,
18700,
2951,
18700,
29898,
13,
18884,
5694,
2792,
22164,
13,
9651,
716,
18700,
29934,
2550,
29906,
353,
313,
1482,
18700,
29934,
2550,
29906,
29961,
29900,
1402,
716,
18700,
29934,
2550,
29906,
29961,
29896,
29962,
718,
29871,
29896,
29897,
13,
9651,
16229,
4619,
29871,
29896,
13,
9651,
5694,
2792,
353,
313,
13,
18884,
8037,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
716,
18700,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
716,
18700,
29934,
2550,
29906,
353,
313,
1482,
18700,
29934,
2550,
29906,
29961,
29900,
1402,
716,
18700,
29934,
2550,
29906,
29961,
29896,
29962,
448,
29871,
29896,
29897,
13,
4706,
2106,
4373,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
716,
18700,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
2551,
943,
1839,
18700,
29934,
2550,
29906,
448,
360,
9806,
29940,
29901,
525,
718,
851,
29898,
13529,
267,
4638,
353,
2106,
4373,
13,
13,
4706,
396,
6054,
29934,
2550,
29906,
19246,
13,
4706,
716,
18700,
29934,
2550,
29906,
353,
6054,
29934,
2550,
29906,
13,
4706,
16229,
353,
29871,
29900,
13,
4706,
5694,
2792,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
716,
18700,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
1550,
313,
1333,
29898,
3084,
537,
2776,
18700,
29898,
1482,
18700,
29934,
2550,
29906,
29892,
5694,
2792,
876,
322,
2854,
537,
21823,
2951,
21823,
29898,
7382,
2792,
29897,
322,
2854,
537,
18700,
2951,
18700,
29898,
13,
18884,
5694,
2792,
22164,
13,
9651,
716,
18700,
29934,
2550,
29906,
353,
313,
1482,
18700,
29934,
2550,
29906,
29961,
29900,
29962,
448,
29871,
29896,
29892,
716,
18700,
29934,
2550,
29906,
29961,
29896,
2314,
13,
9651,
16229,
4619,
29871,
29896,
13,
9651,
5694,
2792,
353,
313,
13,
18884,
8037,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
716,
18700,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
716,
18700,
29934,
2550,
29906,
353,
313,
1482,
18700,
29934,
2550,
29906,
29961,
29900,
29962,
718,
29871,
29896,
29892,
716,
18700,
29934,
2550,
29906,
29961,
29896,
2314,
13,
4706,
2106,
4373,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
716,
18700,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
2551,
943,
1839,
18700,
29934,
2550,
29906,
448,
19246,
29901,
525,
718,
851,
29898,
13529,
267,
4638,
353,
2106,
4373,
13,
13,
4706,
396,
6054,
29934,
2550,
29906,
390,
22530,
13,
4706,
716,
18700,
29934,
2550,
29906,
353,
6054,
29934,
2550,
29906,
13,
4706,
16229,
353,
29871,
29900,
13,
4706,
5694,
2792,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
716,
18700,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
1550,
313,
1333,
29898,
3084,
537,
2776,
18700,
29898,
1482,
18700,
29934,
2550,
29906,
29892,
5694,
2792,
876,
322,
2854,
537,
21823,
2951,
21823,
29898,
7382,
2792,
29897,
322,
2854,
537,
18700,
2951,
18700,
29898,
13,
18884,
5694,
2792,
22164,
13,
9651,
716,
18700,
29934,
2550,
29906,
353,
313,
1482,
18700,
29934,
2550,
29906,
29961,
29900,
29962,
718,
29871,
29896,
29892,
716,
18700,
29934,
2550,
29906,
29961,
29896,
2314,
13,
9651,
16229,
4619,
29871,
29896,
13,
9651,
5694,
2792,
353,
313,
13,
18884,
8037,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
716,
18700,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
716,
18700,
29934,
2550,
29906,
353,
313,
1482,
18700,
29934,
2550,
29906,
29961,
29900,
29962,
448,
29871,
29896,
29892,
716,
18700,
29934,
2550,
29906,
29961,
29896,
2314,
13,
4706,
2106,
4373,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
716,
18700,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
2551,
943,
1839,
18700,
29934,
2550,
29906,
448,
390,
22530,
29901,
525,
718,
851,
29898,
13529,
267,
4638,
353,
2106,
4373,
13,
4706,
396,
13,
4706,
396,
13,
4706,
396,
13,
4706,
396,
13,
4706,
396,
350,
29931,
11375,
16641,
8949,
29871,
29941,
13,
4706,
396,
13,
4706,
396,
13,
4706,
396,
13,
4706,
396,
6054,
29934,
2550,
29941,
11901,
13,
4706,
716,
18700,
29934,
2550,
29941,
353,
6054,
29934,
2550,
29941,
13,
4706,
16229,
353,
29871,
29900,
13,
4706,
5694,
2792,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
716,
18700,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
1550,
313,
1333,
29898,
3084,
537,
2776,
18700,
29898,
1482,
18700,
29934,
2550,
29941,
29892,
5694,
2792,
876,
322,
2854,
537,
21823,
2951,
21823,
29898,
7382,
2792,
29897,
322,
2854,
537,
18700,
2951,
18700,
29898,
13,
18884,
5694,
2792,
22164,
13,
9651,
716,
18700,
29934,
2550,
29941,
353,
313,
1482,
18700,
29934,
2550,
29941,
29961,
29900,
1402,
716,
18700,
29934,
2550,
29941,
29961,
29896,
29962,
448,
29871,
29896,
29897,
13,
9651,
16229,
4619,
29871,
29896,
13,
9651,
5694,
2792,
353,
313,
13,
18884,
8037,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
716,
18700,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
716,
18700,
29934,
2550,
29941,
353,
313,
1482,
18700,
29934,
2550,
29941,
29961,
29900,
1402,
716,
18700,
29934,
2550,
29941,
29961,
29896,
29962,
718,
29871,
29896,
29897,
13,
4706,
2106,
4373,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
716,
18700,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
2551,
943,
1839,
18700,
29934,
2550,
29941,
448,
11901,
29901,
525,
718,
851,
29898,
13529,
267,
4638,
353,
2106,
4373,
13,
13,
4706,
396,
6054,
29934,
2550,
29941,
360,
9806,
29940,
13,
4706,
716,
18700,
29934,
2550,
29941,
353,
6054,
29934,
2550,
29941,
13,
4706,
16229,
353,
29871,
29900,
13,
4706,
5694,
2792,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
716,
18700,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
1550,
313,
1333,
29898,
3084,
537,
2776,
18700,
29898,
1482,
18700,
29934,
2550,
29941,
29892,
5694,
2792,
876,
322,
2854,
537,
21823,
2951,
21823,
29898,
7382,
2792,
29897,
322,
2854,
537,
18700,
2951,
18700,
29898,
13,
18884,
5694,
2792,
22164,
13,
9651,
716,
18700,
29934,
2550,
29941,
353,
313,
1482,
18700,
29934,
2550,
29941,
29961,
29900,
1402,
716,
18700,
29934,
2550,
29941,
29961,
29896,
29962,
718,
29871,
29896,
29897,
13,
9651,
16229,
4619,
29871,
29896,
13,
9651,
5694,
2792,
353,
313,
13,
18884,
8037,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
716,
18700,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
716,
18700,
29934,
2550,
29941,
353,
313,
1482,
18700,
29934,
2550,
29941,
29961,
29900,
1402,
716,
18700,
29934,
2550,
29941,
29961,
29896,
29962,
448,
29871,
29896,
29897,
13,
4706,
2106,
4373,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
716,
18700,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
2551,
943,
1839,
18700,
29934,
2550,
29941,
448,
360,
9806,
29940,
29901,
525,
718,
851,
29898,
13529,
267,
4638,
353,
2106,
4373,
13,
13,
4706,
396,
6054,
29934,
2550,
29941,
19246,
13,
4706,
716,
18700,
29934,
2550,
29941,
353,
6054,
29934,
2550,
29941,
13,
4706,
16229,
353,
29871,
29900,
13,
4706,
5694,
2792,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
716,
18700,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
1550,
313,
1333,
29898,
3084,
537,
2776,
18700,
29898,
1482,
18700,
29934,
2550,
29941,
29892,
5694,
2792,
876,
322,
2854,
537,
21823,
2951,
21823,
29898,
7382,
2792,
29897,
322,
2854,
537,
18700,
2951,
18700,
29898,
13,
18884,
5694,
2792,
22164,
13,
9651,
716,
18700,
29934,
2550,
29941,
353,
313,
1482,
18700,
29934,
2550,
29941,
29961,
29900,
29962,
448,
29871,
29896,
29892,
716,
18700,
29934,
2550,
29941,
29961,
29896,
2314,
13,
9651,
16229,
4619,
29871,
29896,
13,
9651,
5694,
2792,
353,
313,
13,
18884,
8037,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
716,
18700,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
716,
18700,
29934,
2550,
29941,
353,
313,
1482,
18700,
29934,
2550,
29941,
29961,
29900,
29962,
718,
29871,
29896,
29892,
716,
18700,
29934,
2550,
29941,
29961,
29896,
29962,
448,
29871,
29896,
29897,
13,
4706,
2106,
4373,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
716,
18700,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
2551,
943,
1839,
18700,
29934,
2550,
29941,
448,
19246,
29901,
525,
718,
851,
29898,
13529,
267,
4638,
353,
2106,
4373,
13,
13,
4706,
396,
6054,
29934,
2550,
29941,
390,
22530,
13,
4706,
716,
18700,
29934,
2550,
29941,
353,
6054,
29934,
2550,
29941,
13,
4706,
16229,
353,
29871,
29900,
13,
4706,
5694,
2792,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
716,
18700,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
1550,
313,
1333,
29898,
3084,
537,
2776,
18700,
29898,
1482,
18700,
29934,
2550,
29941,
29892,
5694,
2792,
876,
322,
2854,
537,
21823,
2951,
21823,
29898,
7382,
2792,
29897,
322,
2854,
537,
18700,
2951,
18700,
29898,
13,
18884,
5694,
2792,
22164,
13,
9651,
716,
18700,
29934,
2550,
29941,
353,
313,
1482,
18700,
29934,
2550,
29941,
29961,
29900,
29962,
718,
29871,
29896,
29892,
716,
18700,
29934,
2550,
29941,
29961,
29896,
2314,
13,
9651,
16229,
4619,
29871,
29896,
13,
9651,
5694,
2792,
353,
313,
13,
18884,
8037,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
716,
18700,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
716,
18700,
29934,
2550,
29941,
353,
313,
1482,
18700,
29934,
2550,
29941,
29961,
29900,
29962,
448,
29871,
29896,
29892,
716,
18700,
29934,
2550,
29941,
29961,
29896,
2314,
13,
4706,
2106,
4373,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
716,
18700,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
2551,
943,
1839,
18700,
29934,
2550,
29941,
448,
390,
22530,
29901,
525,
718,
851,
29898,
13529,
267,
4638,
353,
2106,
4373,
13,
4706,
396,
13,
4706,
396,
13,
4706,
396,
13,
4706,
396,
13,
4706,
396,
350,
29931,
11375,
16641,
8949,
29871,
29946,
13,
4706,
396,
13,
4706,
396,
13,
4706,
396,
13,
4706,
396,
6054,
29934,
2550,
29946,
11901,
13,
4706,
716,
18700,
29934,
2550,
29946,
353,
6054,
29934,
2550,
29946,
13,
4706,
16229,
353,
29871,
29900,
13,
4706,
5694,
2792,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
716,
21823,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
6054,
29934,
2550,
29946,
29897,
13,
4706,
1550,
313,
1333,
29898,
3084,
537,
2776,
18700,
29898,
1482,
18700,
29934,
2550,
29946,
29892,
5694,
2792,
876,
322,
2854,
537,
21823,
2951,
21823,
29898,
7382,
2792,
29897,
322,
2854,
537,
18700,
2951,
18700,
29898,
13,
18884,
5694,
2792,
22164,
13,
9651,
716,
18700,
29934,
2550,
29946,
353,
313,
1482,
18700,
29934,
2550,
29946,
29961,
29900,
1402,
716,
18700,
29934,
2550,
29946,
29961,
29896,
29962,
448,
29871,
29896,
29897,
13,
9651,
16229,
4619,
29871,
29896,
13,
9651,
5694,
2792,
353,
313,
13,
18884,
8037,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
716,
18700,
29934,
2550,
29946,
29897,
13,
4706,
716,
18700,
29934,
2550,
29946,
353,
313,
1482,
18700,
29934,
2550,
29946,
29961,
29900,
1402,
716,
18700,
29934,
2550,
29946,
29961,
29896,
29962,
718,
29871,
29896,
29897,
13,
4706,
2106,
4373,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
716,
18700,
29934,
2550,
29946,
29897,
13,
4706,
2551,
943,
1839,
18700,
29934,
2550,
29946,
448,
11901,
29901,
525,
718,
851,
29898,
13529,
267,
4638,
353,
2106,
4373,
13,
13,
4706,
396,
6054,
29934,
2550,
29946,
360,
9806,
29940,
13,
4706,
716,
18700,
29934,
2550,
29946,
353,
6054,
29934,
2550,
29946,
13,
4706,
16229,
353,
29871,
29900,
13,
4706,
5694,
2792,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
716,
18700,
29934,
2550,
29946,
29897,
13,
4706,
1550,
313,
1333,
29898,
3084,
537,
2776,
18700,
29898,
1482,
18700,
29934,
2550,
29946,
29892,
5694,
2792,
876,
322,
2854,
537,
21823,
2951,
21823,
29898,
7382,
2792,
29897,
322,
2854,
537,
18700,
2951,
18700,
29898,
13,
18884,
5694,
2792,
22164,
13,
9651,
716,
18700,
29934,
2550,
29946,
353,
313,
1482,
18700,
29934,
2550,
29946,
29961,
29900,
1402,
716,
18700,
29934,
2550,
29946,
29961,
29896,
29962,
718,
29871,
29896,
29897,
13,
9651,
16229,
4619,
29871,
29896,
13,
9651,
5694,
2792,
353,
313,
13,
18884,
8037,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
716,
18700,
29934,
2550,
29946,
29897,
13,
4706,
716,
18700,
29934,
2550,
29946,
353,
313,
1482,
18700,
29934,
2550,
29946,
29961,
29900,
1402,
716,
18700,
29934,
2550,
29946,
29961,
29896,
29962,
448,
29871,
29896,
29897,
13,
4706,
2106,
4373,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
716,
18700,
29934,
2550,
29946,
29897,
13,
4706,
2551,
943,
1839,
18700,
29934,
2550,
29946,
448,
360,
9806,
29940,
29901,
525,
718,
851,
29898,
13529,
267,
4638,
353,
2106,
4373,
13,
13,
4706,
396,
6054,
29934,
2550,
29946,
19246,
13,
4706,
716,
18700,
29934,
2550,
29946,
353,
6054,
29934,
2550,
29946,
13,
4706,
16229,
353,
29871,
29900,
13,
4706,
5694,
2792,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
716,
18700,
29934,
2550,
29946,
29897,
13,
4706,
1550,
313,
1333,
29898,
3084,
537,
2776,
18700,
29898,
1482,
18700,
29934,
2550,
29946,
29892,
5694,
2792,
876,
322,
2854,
537,
21823,
2951,
21823,
29898,
7382,
2792,
29897,
322,
2854,
537,
18700,
2951,
18700,
29898,
13,
18884,
5694,
2792,
22164,
13,
9651,
716,
18700,
29934,
2550,
29946,
353,
313,
1482,
18700,
29934,
2550,
29946,
29961,
29900,
29962,
448,
29871,
29896,
29892,
716,
18700,
29934,
2550,
29946,
29961,
29896,
2314,
13,
9651,
16229,
4619,
29871,
29896,
13,
9651,
5694,
2792,
353,
313,
13,
18884,
8037,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
716,
18700,
29934,
2550,
29946,
29897,
13,
4706,
716,
18700,
29934,
2550,
29946,
353,
313,
1482,
18700,
29934,
2550,
29946,
29961,
29900,
29962,
718,
29871,
29896,
29892,
716,
18700,
29934,
2550,
29946,
29961,
29896,
2314,
13,
4706,
2106,
4373,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
716,
18700,
29934,
2550,
29946,
29897,
13,
4706,
2551,
943,
1839,
18700,
29934,
2550,
29946,
448,
19246,
29901,
525,
718,
851,
29898,
13529,
267,
4638,
353,
2106,
4373,
13,
13,
4706,
396,
6054,
29934,
2550,
29946,
390,
22530,
13,
4706,
716,
18700,
29934,
2550,
29946,
353,
6054,
29934,
2550,
29946,
13,
4706,
16229,
353,
29871,
29900,
13,
4706,
5694,
2792,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
716,
18700,
29934,
2550,
29946,
29897,
13,
4706,
1550,
313,
1333,
29898,
3084,
537,
2776,
18700,
29898,
1482,
18700,
29934,
2550,
29946,
29892,
5694,
2792,
876,
322,
2854,
537,
21823,
2951,
21823,
29898,
7382,
2792,
29897,
322,
2854,
537,
18700,
2951,
18700,
29898,
13,
18884,
5694,
2792,
22164,
13,
9651,
716,
18700,
29934,
2550,
29946,
353,
313,
1482,
18700,
29934,
2550,
29946,
29961,
29900,
29962,
718,
29871,
29896,
29892,
716,
18700,
29934,
2550,
29946,
29961,
29896,
2314,
13,
9651,
16229,
4619,
29871,
29896,
13,
9651,
5694,
2792,
353,
313,
13,
18884,
8037,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
716,
18700,
29934,
2550,
29946,
29897,
13,
4706,
716,
18700,
29934,
2550,
29946,
353,
313,
1482,
18700,
29934,
2550,
29946,
29961,
29900,
29962,
448,
29871,
29896,
29892,
716,
18700,
29934,
2550,
29946,
29961,
29896,
2314,
13,
4706,
2106,
4373,
353,
313,
21823,
29934,
2550,
29896,
29892,
8037,
29934,
2550,
29906,
29892,
8037,
29934,
2550,
29941,
29892,
8037,
29934,
2550,
29946,
29892,
6054,
29934,
2550,
29896,
29892,
6054,
29934,
2550,
29906,
29892,
6054,
29934,
2550,
29941,
29892,
716,
18700,
29934,
2550,
29946,
29897,
13,
4706,
2551,
943,
1839,
18700,
29934,
2550,
29946,
448,
390,
22530,
29901,
525,
718,
851,
29898,
13529,
267,
4638,
353,
2106,
4373,
13,
13,
4706,
736,
2551,
943,
13,
13,
13,
3057,
292,
353,
1528,
12117,
3552,
29898,
29896,
29892,
29871,
29896,
511,
313,
29896,
29892,
29871,
29906,
511,
313,
29896,
29892,
29871,
29941,
511,
313,
29896,
29892,
29871,
29946,
511,
313,
29945,
29892,
29871,
29945,
511,
313,
29945,
29892,
29871,
29953,
511,
313,
29945,
29892,
29871,
29955,
511,
313,
29945,
29892,
29871,
29947,
4961,
13,
12011,
353,
18423,
386,
29918,
4102,
29918,
8336,
29918,
4478,
29898,
3057,
292,
29897,
13,
2158,
313,
12011,
29889,
2929,
918,
3101,
2
] |
Content/Networking/loadbalancers/AzureELB/WorkloadManager/src/azurelb/common.py | saikirangurijal/cloudcentersuite | 8 | 127598 | <reponame>saikirangurijal/cloudcentersuite<gh_stars>1-10
#!/usr/bin/env python
def construct_fip_id(subscription_id, group_name, lb_name, fip_name):
"""Build the future FrontEndId based on components name.
"""
return ('/subscriptions/{}'
'/resourceGroups/{}'
'/providers/Microsoft.Network'
'/loadBalancers/{}'
'/frontendIPConfigurations/{}').format(
subscription_id, group_name, lb_name, fip_name
)
def construct_bap_id(subscription_id, group_name, lb_name, address_pool_name):
"""Build the future BackEndId based on components name.
"""
return ('/subscriptions/{}'
'/resourceGroups/{}'
'/providers/Microsoft.Network'
'/loadBalancers/{}'
'/backendAddressPools/{}').format(
subscription_id, group_name, lb_name, address_pool_name
)
def construct_probe_id(subscription_id, group_name, lb_name, probe_name):
"""Build the future ProbeId based on components name.
"""
return ('/subscriptions/{}'
'/resourceGroups/{}'
'/providers/Microsoft.Network'
'/loadBalancers/{}'
'/probes/{}').format(
subscription_id, group_name, lb_name, probe_name
)
def update_nic_paramaters(address_pool_id, location, nic_info, params):
"""Update the NIC parameters structure.
"""
nic_params = params['nicParams']
nic_params['location'] = location
nic_params['ip_configurations'][0]['name'] = nic_info.ip_configurations[0].name
nic_params['ip_configurations'][0]['subnet']['id'] = nic_info.ip_configurations[0].subnet.id
nic_params['ip_configurations'][0]['load_balancer_backend_address_pools'] = [{
"id": address_pool_id
}]
return nic_params
#nic_params['ip_configurations'][0]['load_balancer_inbound_nat_rules'][0]['id'] = natrule_id
def create_vm_parameters(nic_id, is_nic_primary, location, vm_info, params):
"""Create the VM parameters structure.
"""
vm_params = params['vmParams']
vm_params['location'] = location
vm_params['network_profile']['network_interfaces'][0]['id'] = nic_id
vm_params['network_profile']['network_interfaces'][0]['primary'] = is_nic_primary
return vm_params
| [
1,
529,
276,
1112,
420,
29958,
4977,
638,
381,
574,
332,
823,
284,
29914,
9274,
1760,
414,
29884,
568,
29966,
12443,
29918,
303,
1503,
29958,
29896,
29899,
29896,
29900,
13,
29937,
14708,
4855,
29914,
2109,
29914,
6272,
3017,
13,
13,
1753,
3386,
29918,
29888,
666,
29918,
333,
29898,
1491,
22371,
29918,
333,
29892,
2318,
29918,
978,
29892,
27981,
29918,
978,
29892,
285,
666,
29918,
978,
1125,
13,
1678,
9995,
8893,
278,
5434,
13960,
5044,
1204,
2729,
373,
7117,
1024,
29889,
13,
1678,
9995,
13,
1678,
736,
6702,
29914,
1491,
7588,
1980,
29914,
8875,
29915,
13,
9651,
8207,
10314,
24020,
29914,
8875,
29915,
13,
9651,
8207,
771,
29454,
29914,
11277,
29889,
13724,
29915,
13,
9651,
8207,
1359,
22031,
4564,
414,
29914,
8875,
29915,
13,
9651,
8207,
8862,
355,
5690,
3991,
332,
800,
29914,
8875,
2824,
4830,
29898,
13,
18884,
25691,
29918,
333,
29892,
2318,
29918,
978,
29892,
27981,
29918,
978,
29892,
285,
666,
29918,
978,
13,
9651,
1723,
13,
13,
1753,
3386,
29918,
29890,
481,
29918,
333,
29898,
1491,
22371,
29918,
333,
29892,
2318,
29918,
978,
29892,
27981,
29918,
978,
29892,
3211,
29918,
10109,
29918,
978,
1125,
13,
1678,
9995,
8893,
278,
5434,
7437,
5044,
1204,
2729,
373,
7117,
1024,
29889,
13,
1678,
9995,
13,
1678,
736,
6702,
29914,
1491,
7588,
1980,
29914,
8875,
29915,
13,
9651,
8207,
10314,
24020,
29914,
8875,
29915,
13,
9651,
8207,
771,
29454,
29914,
11277,
29889,
13724,
29915,
13,
9651,
8207,
1359,
22031,
4564,
414,
29914,
8875,
29915,
13,
9651,
8207,
27852,
7061,
29925,
8789,
29914,
8875,
2824,
4830,
29898,
13,
18884,
25691,
29918,
333,
29892,
2318,
29918,
978,
29892,
27981,
29918,
978,
29892,
3211,
29918,
10109,
29918,
978,
13,
9651,
1723,
13,
13,
1753,
3386,
29918,
771,
915,
29918,
333,
29898,
1491,
22371,
29918,
333,
29892,
2318,
29918,
978,
29892,
27981,
29918,
978,
29892,
410,
915,
29918,
978,
1125,
13,
1678,
9995,
8893,
278,
5434,
1019,
915,
1204,
2729,
373,
7117,
1024,
29889,
13,
1678,
9995,
13,
1678,
736,
6702,
29914,
1491,
7588,
1980,
29914,
8875,
29915,
13,
9651,
8207,
10314,
24020,
29914,
8875,
29915,
13,
9651,
8207,
771,
29454,
29914,
11277,
29889,
13724,
29915,
13,
9651,
8207,
1359,
22031,
4564,
414,
29914,
8875,
29915,
13,
9651,
8207,
771,
5707,
29914,
8875,
2824,
4830,
29898,
13,
18884,
25691,
29918,
333,
29892,
2318,
29918,
978,
29892,
27981,
29918,
978,
29892,
410,
915,
29918,
978,
13,
9651,
1723,
3986,
13,
13,
1753,
2767,
29918,
7823,
29918,
3207,
10412,
29898,
7328,
29918,
10109,
29918,
333,
29892,
4423,
29892,
16588,
29918,
3888,
29892,
8636,
1125,
13,
1678,
9995,
6422,
278,
405,
2965,
4128,
3829,
29889,
13,
1678,
9995,
13,
1678,
16588,
29918,
7529,
353,
8636,
1839,
7823,
9629,
2033,
13,
1678,
16588,
29918,
7529,
1839,
5479,
2033,
353,
4423,
13,
1678,
16588,
29918,
7529,
1839,
666,
29918,
2917,
332,
800,
2033,
29961,
29900,
22322,
978,
2033,
353,
16588,
29918,
3888,
29889,
666,
29918,
2917,
332,
800,
29961,
29900,
1822,
978,
13,
1678,
16588,
29918,
7529,
1839,
666,
29918,
2917,
332,
800,
2033,
29961,
29900,
22322,
1491,
1212,
16215,
333,
2033,
353,
16588,
29918,
3888,
29889,
666,
29918,
2917,
332,
800,
29961,
29900,
1822,
1491,
1212,
29889,
333,
13,
1678,
16588,
29918,
7529,
1839,
666,
29918,
2917,
332,
800,
2033,
29961,
29900,
22322,
1359,
29918,
5521,
25856,
29918,
27852,
29918,
7328,
29918,
1129,
3775,
2033,
353,
15974,
13,
4706,
376,
333,
1115,
3211,
29918,
10109,
29918,
333,
13,
1678,
500,
29962,
13,
13,
1678,
736,
16588,
29918,
7529,
13,
13,
1678,
396,
7823,
29918,
7529,
1839,
666,
29918,
2917,
332,
800,
2033,
29961,
29900,
22322,
1359,
29918,
5521,
25856,
29918,
262,
9917,
29918,
8924,
29918,
19238,
2033,
29961,
29900,
22322,
333,
2033,
353,
14033,
7491,
29918,
333,
13,
13,
1753,
1653,
29918,
6925,
29918,
16744,
29898,
7823,
29918,
333,
29892,
338,
29918,
7823,
29918,
16072,
29892,
4423,
29892,
22419,
29918,
3888,
29892,
8636,
1125,
13,
1678,
9995,
4391,
278,
11400,
4128,
3829,
29889,
13,
1678,
9995,
13,
1678,
22419,
29918,
7529,
353,
8636,
1839,
6925,
9629,
2033,
13,
1678,
22419,
29918,
7529,
1839,
5479,
2033,
353,
4423,
13,
1678,
22419,
29918,
7529,
1839,
11618,
29918,
10185,
16215,
11618,
29918,
1639,
8726,
2033,
29961,
29900,
22322,
333,
2033,
353,
16588,
29918,
333,
13,
1678,
22419,
29918,
7529,
1839,
11618,
29918,
10185,
16215,
11618,
29918,
1639,
8726,
2033,
29961,
29900,
22322,
16072,
2033,
353,
338,
29918,
7823,
29918,
16072,
13,
1678,
736,
22419,
29918,
7529,
418,
13,
13,
13,
2
] |
Core/chekhabar.py | hossshakiba/Che-Khabar-Bot | 3 | 101719 | from telegram.ext import Updater, CommandHandler, callbackcontext
from telegram import Update, ReplyKeyboardMarkup
from telegram.chataction import ChatAction
from telegram.ext import MessageHandler
from telegram.ext.filters import Filters
from currency import *
from coin_gold import *
from crypto import *
from stock import *
from data import date
from decouple import config
token = config("TOKEN")
date = date()
def main_menu_handler(update: Update, context: callbackcontext):
dollar_emoji = '\U0001F4B5'
coin_emoji = '\U0001F4B0'
stock_emoji = '\U0001F4B9'
crypto_emoji = '\U0001F4C8'
buttons = [
[f"{coin_emoji} قیمت طلا و سکه",
f"{dollar_emoji} نرخ ارز"],
[f"{crypto_emoji} ارزهای دیجیتال",
f"{stock_emoji} بورس"],
["تبدیل ارز"]
]
update.message.reply_text(text="منو اصلی",
reply_markup= ReplyKeyboardMarkup(buttons, resize_keyboard=True))
def start_handler(update: Update, context: callbackcontext):
chat_id = update.message.chat_id
first_name = update.message.chat.first_name
context.bot.send_chat_action(chat_id, ChatAction.TYPING)
update.message.reply_text(f"سلام {first_name} عزیز.\nبه 'چخبر' خوش اومدی!")
main_menu_handler(update, context)
def sekke_gold(update: Update, context: callbackcontext):
buttons = [
["طلای ۲۴ عیار","طلای ۱۸ عیار"],
["سکه امامی","سکه بهار آزادی"],
["ربع سکه", "نیم سکه"],
["بازگشت"]
]
update.message.reply_text(text=f"قیمت طلا و سکه در تاریخ {date}",
reply_markup= ReplyKeyboardMarkup(buttons, resize_keyboard=True))
def exchange(update: Update, context: callbackcontext):
buttons = [
["بازگشت \U0001F519"]
]
text = '''
برای تبدیل ارز از الگوهای زیر استفاده کنید :
مثال : ۱۵ دلار به ریال
مثال : ۱۵۰۰۰۰ ریال به دلار
*فعلا تبدیل ارزهای دلار و ریال امکانپذیر است.
*اعداد اعشاری موجب بروز خطای محاسباتی میشوند.
برای مثال : ۳۴.۶ دلار به ریال'''
update.message.reply_text(text=f"{text}",
reply_markup= ReplyKeyboardMarkup(buttons, resize_keyboard=True))
def arz(update: Update, context: callbackcontext):
buttons = [
["پوند انگلیس","یورو", "دلار آمریکا"],
["لیر ترکیه", "درهم امارات","فرانک سوئیس"],
["دلار کانادا", "ین ژاپن","یوان چین"],
["بازگشت \U0001F519"]
]
update.message.reply_text(text=f"نرخ ارز در تاریخ {date}",
reply_markup= ReplyKeyboardMarkup(buttons, resize_keyboard=True))
def crypto(update: Update, context: callbackcontext):
buttons = [
["تتر","اتریوم", "بیتکوین"],
["دش", "ریپل","لایتکوین"],
["بازگشت \U0001F519"]
]
update.message.reply_text(text=f"نرخ ارزهای دیجیتال در تاریخ {date}",
reply_markup= ReplyKeyboardMarkup(buttons, resize_keyboard=True))
def return_handler(update: Updater, context: callbackcontext):
main_menu_handler(update, context)
def main():
updater = Updater(token, use_context=True)
updater.dispatcher.add_handler(CommandHandler("start", start_handler))
updater.dispatcher.add_handler(MessageHandler(Filters.regex("قیمت طلا و سکه"), sekke_gold))
updater.dispatcher.add_handler(MessageHandler(Filters.regex("نرخ ارز"), arz))
updater.dispatcher.add_handler(MessageHandler(Filters.regex("ارزهای دیجیتال"), crypto))
updater.dispatcher.add_handler(MessageHandler(Filters.regex("تبدیل ارز"), exchange))
updater.dispatcher.add_handler(MessageHandler(Filters.regex("بازگشت"), return_handler))
updater.dispatcher.add_handler(MessageHandler(Filters.regex("سکه بهار آزادی"), bahar))
updater.dispatcher.add_handler(MessageHandler(Filters.regex("سکه امامی"), emami))
updater.dispatcher.add_handler(MessageHandler(Filters.regex("نیم سکه"), nim))
updater.dispatcher.add_handler(MessageHandler(Filters.regex("ربع سکه"), rob))
updater.dispatcher.add_handler(MessageHandler(Filters.regex("طلای ۱۸ عیار"), gold_18))
updater.dispatcher.add_handler(MessageHandler(Filters.regex("طلای ۲۴ عیار"), gold_24))
updater.dispatcher.add_handler(MessageHandler(Filters.regex("دلار آمریکا"),dollar_usa))
updater.dispatcher.add_handler(MessageHandler(Filters.regex("یورو"), euro))
updater.dispatcher.add_handler(MessageHandler(Filters.regex("پوند انگلیس"), pond))
updater.dispatcher.add_handler(MessageHandler(Filters.regex("فرانک سوئیس"), frank))
updater.dispatcher.add_handler(MessageHandler(Filters.regex("درهم امارات"), derham))
updater.dispatcher.add_handler(MessageHandler(Filters.regex("لیر ترکیه"), lir))
updater.dispatcher.add_handler(MessageHandler(Filters.regex("یوان چین"), youan))
updater.dispatcher.add_handler(MessageHandler(Filters.regex("ین ژاپن"), yen))
updater.dispatcher.add_handler(MessageHandler(Filters.regex("دلار کانادا"), dollar_canada))
updater.dispatcher.add_handler(MessageHandler(Filters.regex("بورس"), stock_price))
updater.dispatcher.add_handler(MessageHandler(Filters.regex("بیتکوین"), bitcoin))
updater.dispatcher.add_handler(MessageHandler(Filters.regex("اتریوم"), etherium))
updater.dispatcher.add_handler(MessageHandler(Filters.regex("تتر"), tether))
updater.dispatcher.add_handler(MessageHandler(Filters.regex("دش"), dash))
updater.dispatcher.add_handler(MessageHandler(Filters.regex("ریپل"), riple))
updater.dispatcher.add_handler(MessageHandler(Filters.regex("لایتکوین"), litecoin))
updater.dispatcher.add_handler(MessageHandler(Filters.regex("\d دلار به ریال"), dollar_to_rial))
updater.dispatcher.add_handler(MessageHandler(Filters.regex("\d ریال به دلار"), rial_to_dollar))
updater.start_polling()
updater.idle()
main()
| [
1,
515,
4382,
1393,
29889,
1062,
1053,
5020,
29881,
1008,
29892,
10516,
4598,
29892,
6939,
4703,
13,
3166,
4382,
1393,
1053,
10318,
29892,
10088,
368,
2558,
3377,
9802,
786,
13,
3166,
4382,
1393,
29889,
305,
532,
428,
1053,
678,
271,
4276,
13,
3166,
4382,
1393,
29889,
1062,
1053,
7777,
4598,
13,
3166,
4382,
1393,
29889,
1062,
29889,
26705,
1053,
2514,
2153,
13,
3166,
27550,
1053,
334,
13,
3166,
19480,
29918,
29887,
1025,
1053,
334,
13,
3166,
274,
17929,
1053,
334,
13,
3166,
10961,
1053,
334,
13,
3166,
848,
1053,
2635,
13,
3166,
1602,
283,
552,
1053,
2295,
13,
13,
13,
6979,
353,
2295,
703,
4986,
29968,
1430,
1159,
13,
1256,
353,
2635,
580,
13,
13,
1753,
1667,
29918,
6510,
29918,
13789,
29898,
5504,
29901,
10318,
29892,
3030,
29901,
6939,
4703,
1125,
13,
1678,
11232,
279,
29918,
15810,
2397,
353,
11297,
29965,
29900,
29900,
29900,
29896,
29943,
29946,
29933,
29945,
29915,
13,
1678,
19480,
29918,
15810,
2397,
353,
11297,
29965,
29900,
29900,
29900,
29896,
29943,
29946,
29933,
29900,
29915,
13,
1678,
10961,
29918,
15810,
2397,
353,
11297,
29965,
29900,
29900,
29900,
29896,
29943,
29946,
29933,
29929,
29915,
13,
1678,
274,
17929,
29918,
15810,
2397,
353,
11297,
29965,
29900,
29900,
29900,
29896,
29943,
29946,
29907,
29947,
29915,
13,
1678,
9828,
353,
518,
13,
4706,
518,
29888,
29908,
29912,
1111,
262,
29918,
15810,
2397,
29913,
29871,
30265,
30202,
30159,
30195,
29871,
30367,
30138,
30112,
29871,
30171,
29871,
30198,
30343,
30204,
613,
13,
4706,
285,
29908,
29912,
29881,
26810,
29918,
15810,
2397,
29913,
29871,
30162,
30156,
30321,
29871,
30112,
30156,
30295,
12436,
13,
4706,
518,
29888,
29908,
29912,
29883,
17929,
29918,
15810,
2397,
29913,
29871,
30112,
30156,
30295,
30204,
30112,
30202,
29871,
30172,
30202,
30270,
30202,
30195,
19233,
613,
13,
4706,
285,
29908,
29912,
17712,
29918,
15810,
2397,
29913,
259,
30177,
30171,
30156,
30198,
12436,
13,
4706,
6796,
30195,
30177,
30172,
30202,
30138,
29871,
30112,
30156,
30295,
3108,
13,
1678,
4514,
13,
1678,
2767,
29889,
4906,
29889,
3445,
368,
29918,
726,
29898,
726,
543,
30159,
30162,
30171,
29871,
30112,
30360,
30138,
30202,
613,
13,
1678,
8908,
29918,
3502,
786,
29922,
10088,
368,
2558,
3377,
9802,
786,
29898,
4187,
7453,
29892,
19490,
29918,
1989,
3377,
29922,
5574,
876,
13,
13,
1753,
1369,
29918,
13789,
29898,
5504,
29901,
10318,
29892,
3030,
29901,
6939,
4703,
1125,
13,
1678,
13563,
29918,
333,
353,
2767,
29889,
4906,
29889,
13496,
29918,
333,
13,
1678,
937,
29918,
978,
353,
2767,
29889,
4906,
29889,
13496,
29889,
4102,
29918,
978,
13,
1678,
3030,
29889,
7451,
29889,
6717,
29918,
13496,
29918,
2467,
29898,
13496,
29918,
333,
29892,
678,
271,
4276,
29889,
15631,
29925,
4214,
29897,
13,
1678,
2767,
29889,
4906,
29889,
3445,
368,
29918,
726,
29898,
29888,
29908,
30198,
30138,
30112,
30159,
426,
4102,
29918,
978,
29913,
29871,
30218,
30295,
30202,
30295,
7790,
29876,
30177,
30204,
525,
30905,
30430,
30321,
30177,
30156,
29915,
29871,
30321,
30171,
30256,
29871,
30112,
30171,
30159,
30172,
30202,
29991,
1159,
13,
1678,
1667,
29918,
6510,
29918,
13789,
29898,
5504,
29892,
3030,
29897,
13,
13,
1753,
409,
29895,
446,
29918,
29887,
1025,
29898,
5504,
29901,
10318,
29892,
3030,
29901,
6939,
4703,
1125,
13,
1678,
9828,
353,
518,
13,
4706,
6796,
30367,
30138,
30112,
30202,
29871,
222,
181,
222,
183,
29871,
30218,
30202,
30112,
30156,
3284,
30367,
30138,
30112,
30202,
29871,
222,
180,
222,
187,
29871,
30218,
30202,
30112,
30156,
12436,
13,
4706,
6796,
30198,
30343,
30204,
29871,
30112,
30159,
30112,
30159,
30202,
3284,
30198,
30343,
30204,
29871,
30177,
30204,
30112,
30156,
29871,
30726,
30295,
30112,
30172,
30202,
12436,
13,
4706,
6796,
30156,
30177,
30218,
29871,
30198,
30343,
30204,
613,
376,
30162,
30202,
30159,
29871,
30198,
30343,
30204,
12436,
13,
4706,
6796,
30177,
30112,
30295,
30421,
30256,
30195,
3108,
13,
1678,
4514,
13,
1678,
2767,
29889,
4906,
29889,
3445,
368,
29918,
726,
29898,
726,
29922,
29888,
29908,
30265,
30202,
30159,
30195,
29871,
30367,
30138,
30112,
29871,
30171,
29871,
30198,
30343,
30204,
29871,
30172,
30156,
29871,
30195,
30112,
30156,
30202,
30321,
426,
1256,
17671,
13,
1678,
8908,
29918,
3502,
786,
29922,
10088,
368,
2558,
3377,
9802,
786,
29898,
4187,
7453,
29892,
19490,
29918,
1989,
3377,
29922,
5574,
876,
13,
13,
1753,
14523,
29898,
5504,
29901,
10318,
29892,
3030,
29901,
6939,
4703,
1125,
13,
1678,
9828,
353,
518,
13,
4706,
6796,
30177,
30112,
30295,
30421,
30256,
30195,
320,
29965,
29900,
29900,
29900,
29896,
29943,
29945,
29896,
29929,
3108,
13,
1678,
4514,
13,
1678,
1426,
353,
14550,
13,
268,
30177,
30156,
30112,
30202,
29871,
30195,
30177,
30172,
30202,
30138,
29871,
30112,
30156,
30295,
29871,
30112,
30295,
24508,
30421,
30171,
30204,
30112,
30202,
29871,
30295,
30202,
30156,
29871,
30112,
30198,
30195,
30241,
30112,
30172,
30204,
29871,
30343,
30162,
30202,
30172,
584,
29871,
13,
268,
13,
268,
30159,
30839,
19233,
584,
29871,
222,
180,
222,
184,
29871,
30172,
30138,
30112,
30156,
29871,
30177,
30204,
29871,
30156,
30202,
19233,
13,
268,
13,
268,
30159,
30839,
19233,
584,
29871,
222,
180,
222,
184,
222,
179,
222,
179,
222,
179,
222,
179,
29871,
30156,
30202,
19233,
29871,
30177,
30204,
29871,
30172,
30138,
30112,
30156,
13,
268,
13,
1678,
334,
30241,
30218,
30138,
30112,
29871,
30195,
30177,
30172,
30202,
30138,
29871,
30112,
30156,
30295,
30204,
30112,
30202,
29871,
30172,
30138,
30112,
30156,
29871,
30171,
29871,
30156,
30202,
19233,
29871,
30112,
30159,
30343,
30112,
30162,
30430,
30585,
30851,
30202,
30156,
29871,
30112,
30198,
30195,
29889,
13,
1678,
334,
30112,
30218,
30172,
30112,
30172,
29871,
30112,
30218,
30256,
30112,
30156,
30202,
29871,
30159,
30171,
30270,
30177,
29871,
30177,
30156,
30171,
30295,
29871,
30321,
30367,
30112,
30202,
29871,
30159,
30240,
30112,
30198,
30177,
30112,
30195,
30202,
29871,
30159,
30202,
30430,
30256,
30171,
30162,
30172,
29889,
13,
268,
30177,
30156,
30112,
30202,
29871,
30159,
30839,
19233,
584,
29871,
222,
182,
222,
183,
29889,
222,
185,
29871,
30172,
30138,
30112,
30156,
29871,
30177,
30204,
29871,
30156,
30202,
19233,
12008,
13,
1678,
2767,
29889,
4906,
29889,
3445,
368,
29918,
726,
29898,
726,
29922,
29888,
29908,
29912,
726,
17671,
13,
1678,
8908,
29918,
3502,
786,
29922,
10088,
368,
2558,
3377,
9802,
786,
29898,
4187,
7453,
29892,
19490,
29918,
1989,
3377,
29922,
5574,
876,
13,
13,
13,
1753,
564,
29920,
29898,
5504,
29901,
10318,
29892,
3030,
29901,
6939,
4703,
1125,
13,
1678,
9828,
353,
518,
13,
4706,
6796,
30585,
30171,
30162,
30172,
29871,
30112,
30162,
30421,
30138,
30202,
30198,
3284,
30202,
30171,
30156,
30171,
613,
376,
30172,
30138,
30112,
30156,
29871,
30726,
30159,
30156,
30202,
30343,
30112,
12436,
13,
4706,
6796,
30138,
30202,
30156,
29871,
30195,
30156,
30343,
30202,
30204,
613,
376,
30172,
30156,
30204,
30159,
29871,
30112,
30159,
30112,
30156,
30112,
30195,
3284,
30241,
30156,
30112,
30162,
30343,
29871,
30198,
30171,
30818,
30202,
30198,
12436,
13,
4706,
6796,
30172,
30138,
30112,
30156,
29871,
30343,
30112,
30162,
30112,
30172,
30112,
613,
376,
30202,
30162,
29871,
221,
155,
30112,
30585,
30162,
3284,
30202,
30171,
30112,
30162,
29871,
30905,
30202,
30162,
12436,
13,
4706,
6796,
30177,
30112,
30295,
30421,
30256,
30195,
320,
29965,
29900,
29900,
29900,
29896,
29943,
29945,
29896,
29929,
3108,
13,
1678,
4514,
13,
1678,
2767,
29889,
4906,
29889,
3445,
368,
29918,
726,
29898,
726,
29922,
29888,
29908,
30162,
30156,
30321,
29871,
30112,
30156,
30295,
29871,
30172,
30156,
29871,
30195,
30112,
30156,
30202,
30321,
426,
1256,
17671,
13,
1678,
8908,
29918,
3502,
786,
29922,
10088,
368,
2558,
3377,
9802,
786,
29898,
4187,
7453,
29892,
19490,
29918,
1989,
3377,
29922,
5574,
876,
13,
13,
1753,
274,
17929,
29898,
5504,
29901,
10318,
29892,
3030,
29901,
6939,
4703,
1125,
13,
1678,
9828,
353,
518,
13,
4706,
6796,
30195,
30195,
30156,
3284,
30112,
30195,
30156,
30202,
30171,
30159,
613,
376,
30177,
30202,
30195,
30430,
30343,
30171,
30202,
30162,
12436,
13,
4706,
6796,
30172,
30256,
613,
376,
30156,
30202,
30585,
30138,
3284,
30138,
30112,
30202,
30195,
30430,
30343,
30171,
30202,
30162,
12436,
13,
4706,
6796,
30177,
30112,
30295,
30421,
30256,
30195,
320,
29965,
29900,
29900,
29900,
29896,
29943,
29945,
29896,
29929,
3108,
13,
1678,
4514,
13,
1678,
2767,
29889,
4906,
29889,
3445,
368,
29918,
726,
29898,
726,
29922,
29888,
29908,
30162,
30156,
30321,
29871,
30112,
30156,
30295,
30204,
30112,
30202,
29871,
30172,
30202,
30270,
30202,
30195,
19233,
29871,
30172,
30156,
29871,
30195,
30112,
30156,
30202,
30321,
426,
1256,
17671,
13,
1678,
8908,
29918,
3502,
786,
29922,
10088,
368,
2558,
3377,
9802,
786,
29898,
4187,
7453,
29892,
19490,
29918,
1989,
3377,
29922,
5574,
876,
13,
13,
1753,
736,
29918,
13789,
29898,
5504,
29901,
5020,
29881,
1008,
29892,
3030,
29901,
6939,
4703,
1125,
13,
1678,
1667,
29918,
6510,
29918,
13789,
29898,
5504,
29892,
3030,
29897,
13,
13,
13,
13,
1753,
1667,
7295,
13,
1678,
3329,
1008,
353,
5020,
29881,
1008,
29898,
6979,
29892,
671,
29918,
4703,
29922,
5574,
29897,
13,
1678,
3329,
1008,
29889,
13369,
261,
29889,
1202,
29918,
13789,
29898,
6255,
4598,
703,
2962,
613,
1369,
29918,
13789,
876,
13,
1678,
3329,
1008,
29889,
13369,
261,
29889,
1202,
29918,
13789,
29898,
3728,
4598,
29898,
3434,
2153,
29889,
13087,
703,
30265,
30202,
30159,
30195,
29871,
30367,
30138,
30112,
29871,
30171,
29871,
30198,
30343,
30204,
4968,
409,
29895,
446,
29918,
29887,
1025,
876,
13,
1678,
3329,
1008,
29889,
13369,
261,
29889,
1202,
29918,
13789,
29898,
3728,
4598,
29898,
3434,
2153,
29889,
13087,
703,
30162,
30156,
30321,
29871,
30112,
30156,
30295,
4968,
564,
29920,
876,
13,
1678,
3329,
1008,
29889,
13369,
261,
29889,
1202,
29918,
13789,
29898,
3728,
4598,
29898,
3434,
2153,
29889,
13087,
703,
30112,
30156,
30295,
30204,
30112,
30202,
29871,
30172,
30202,
30270,
30202,
30195,
19233,
4968,
274,
17929,
876,
13,
1678,
3329,
1008,
29889,
13369,
261,
29889,
1202,
29918,
13789,
29898,
3728,
4598,
29898,
3434,
2153,
29889,
13087,
703,
30195,
30177,
30172,
30202,
30138,
29871,
30112,
30156,
30295,
4968,
14523,
876,
13,
1678,
3329,
1008,
29889,
13369,
261,
29889,
1202,
29918,
13789,
29898,
3728,
4598,
29898,
3434,
2153,
29889,
13087,
703,
30177,
30112,
30295,
30421,
30256,
30195,
4968,
736,
29918,
13789,
876,
13,
1678,
3329,
1008,
29889,
13369,
261,
29889,
1202,
29918,
13789,
29898,
3728,
4598,
29898,
3434,
2153,
29889,
13087,
703,
30198,
30343,
30204,
29871,
30177,
30204,
30112,
30156,
29871,
30726,
30295,
30112,
30172,
30202,
4968,
289,
801,
279,
876,
13,
1678,
3329,
1008,
29889,
13369,
261,
29889,
1202,
29918,
13789,
29898,
3728,
4598,
29898,
3434,
2153,
29889,
13087,
703,
30198,
30343,
30204,
29871,
30112,
30159,
30112,
30159,
30202,
4968,
953,
4479,
876,
13,
1678,
3329,
1008,
29889,
13369,
261,
29889,
1202,
29918,
13789,
29898,
3728,
4598,
29898,
3434,
2153,
29889,
13087,
703,
30162,
30202,
30159,
29871,
30198,
30343,
30204,
4968,
21930,
876,
13,
1678,
3329,
1008,
29889,
13369,
261,
29889,
1202,
29918,
13789,
29898,
3728,
4598,
29898,
3434,
2153,
29889,
13087,
703,
30156,
30177,
30218,
29871,
30198,
30343,
30204,
4968,
10832,
876,
13,
1678,
3329,
1008,
29889,
13369,
261,
29889,
1202,
29918,
13789,
29898,
3728,
4598,
29898,
3434,
2153,
29889,
13087,
703,
30367,
30138,
30112,
30202,
29871,
222,
180,
222,
187,
29871,
30218,
30202,
30112,
30156,
4968,
7684,
29918,
29896,
29947,
876,
13,
1678,
3329,
1008,
29889,
13369,
261,
29889,
1202,
29918,
13789,
29898,
3728,
4598,
29898,
3434,
2153,
29889,
13087,
703,
30367,
30138,
30112,
30202,
29871,
222,
181,
222,
183,
29871,
30218,
30202,
30112,
30156,
4968,
7684,
29918,
29906,
29946,
876,
13,
1678,
3329,
1008,
29889,
13369,
261,
29889,
1202,
29918,
13789,
29898,
3728,
4598,
29898,
3434,
2153,
29889,
13087,
703,
30172,
30138,
30112,
30156,
29871,
30726,
30159,
30156,
30202,
30343,
30112,
4968,
29881,
26810,
29918,
11326,
876,
13,
1678,
3329,
1008,
29889,
13369,
261,
29889,
1202,
29918,
13789,
29898,
3728,
4598,
29898,
3434,
2153,
29889,
13087,
703,
30202,
30171,
30156,
30171,
4968,
27889,
876,
13,
1678,
3329,
1008,
29889,
13369,
261,
29889,
1202,
29918,
13789,
29898,
3728,
4598,
29898,
3434,
2153,
29889,
13087,
703,
30585,
30171,
30162,
30172,
29871,
30112,
30162,
30421,
30138,
30202,
30198,
4968,
282,
898,
876,
13,
1678,
3329,
1008,
29889,
13369,
261,
29889,
1202,
29918,
13789,
29898,
3728,
4598,
29898,
3434,
2153,
29889,
13087,
703,
30241,
30156,
30112,
30162,
30343,
29871,
30198,
30171,
30818,
30202,
30198,
4968,
2524,
29895,
876,
13,
1678,
3329,
1008,
29889,
13369,
261,
29889,
1202,
29918,
13789,
29898,
3728,
4598,
29898,
3434,
2153,
29889,
13087,
703,
30172,
30156,
30204,
30159,
29871,
30112,
30159,
30112,
30156,
30112,
30195,
4968,
589,
3391,
876,
13,
1678,
3329,
1008,
29889,
13369,
261,
29889,
1202,
29918,
13789,
29898,
3728,
4598,
29898,
3434,
2153,
29889,
13087,
703,
30138,
30202,
30156,
29871,
30195,
30156,
30343,
30202,
30204,
4968,
301,
381,
876,
13,
1678,
3329,
1008,
29889,
13369,
261,
29889,
1202,
29918,
13789,
29898,
3728,
4598,
29898,
3434,
2153,
29889,
13087,
703,
30202,
30171,
30112,
30162,
29871,
30905,
30202,
30162,
4968,
366,
273,
876,
13,
1678,
3329,
1008,
29889,
13369,
261,
29889,
1202,
29918,
13789,
29898,
3728,
4598,
29898,
3434,
2153,
29889,
13087,
703,
30202,
30162,
29871,
221,
155,
30112,
30585,
30162,
4968,
343,
264,
876,
13,
1678,
3329,
1008,
29889,
13369,
261,
29889,
1202,
29918,
13789,
29898,
3728,
4598,
29898,
3434,
2153,
29889,
13087,
703,
30172,
30138,
30112,
30156,
29871,
30343,
30112,
30162,
30112,
30172,
30112,
4968,
11232,
279,
29918,
3068,
1114,
876,
13,
1678,
3329,
1008,
29889,
13369,
261,
29889,
1202,
29918,
13789,
29898,
3728,
4598,
29898,
3434,
2153,
29889,
13087,
703,
30177,
30171,
30156,
30198,
4968,
10961,
29918,
9175,
876,
13,
1678,
3329,
1008,
29889,
13369,
261,
29889,
1202,
29918,
13789,
29898,
3728,
4598,
29898,
3434,
2153,
29889,
13087,
703,
30177,
30202,
30195,
30430,
30343,
30171,
30202,
30162,
4968,
2586,
1111,
262,
876,
13,
1678,
3329,
1008,
29889,
13369,
261,
29889,
1202,
29918,
13789,
29898,
3728,
4598,
29898,
3434,
2153,
29889,
13087,
703,
30112,
30195,
30156,
30202,
30171,
30159,
4968,
29871,
1979,
1974,
876,
13,
1678,
3329,
1008,
29889,
13369,
261,
29889,
1202,
29918,
13789,
29898,
3728,
4598,
29898,
3434,
2153,
29889,
13087,
703,
30195,
30195,
30156,
4968,
260,
1979,
876,
13,
1678,
3329,
1008,
29889,
13369,
261,
29889,
1202,
29918,
13789,
29898,
3728,
4598,
29898,
3434,
2153,
29889,
13087,
703,
30172,
30256,
4968,
12569,
876,
13,
1678,
3329,
1008,
29889,
13369,
261,
29889,
1202,
29918,
13789,
29898,
3728,
4598,
29898,
3434,
2153,
29889,
13087,
703,
30156,
30202,
30585,
30138,
4968,
10107,
552,
876,
13,
1678,
3329,
1008,
29889,
13369,
261,
29889,
1202,
29918,
13789,
29898,
3728,
4598,
29898,
3434,
2153,
29889,
13087,
703,
30138,
30112,
30202,
30195,
30430,
30343,
30171,
30202,
30162,
4968,
301,
568,
1111,
262,
876,
13,
1678,
3329,
1008,
29889,
13369,
261,
29889,
1202,
29918,
13789,
29898,
3728,
4598,
29898,
3434,
2153,
29889,
13087,
14182,
29881,
29871,
30172,
30138,
30112,
30156,
29871,
30177,
30204,
29871,
30156,
30202,
19233,
4968,
11232,
279,
29918,
517,
29918,
9315,
876,
13,
1678,
3329,
1008,
29889,
13369,
261,
29889,
1202,
29918,
13789,
29898,
3728,
4598,
29898,
3434,
2153,
29889,
13087,
14182,
29881,
29871,
30156,
30202,
19233,
29871,
30177,
30204,
29871,
30172,
30138,
30112,
30156,
4968,
364,
616,
29918,
517,
29918,
29881,
26810,
876,
13,
1678,
3329,
1008,
29889,
2962,
29918,
3733,
1847,
580,
13,
1678,
3329,
1008,
29889,
333,
280,
580,
13,
13,
3396,
580,
13,
2
] |
saas/backend/apps/group/views.py | Canway-shiisa/bk-iam-saas | 0 | 5428 | # -*- coding: utf-8 -*-
"""
TencentBlueKing is pleased to support the open source community by making 蓝鲸智云-权限中心(BlueKing-IAM) available.
Copyright (C) 2017-2021 THL A29 Limited, a Tencent company. All rights reserved.
Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License.
You may obtain a copy of the License at http://opensource.org/licenses/MIT
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 logging
from functools import wraps
from typing import List
from django.shortcuts import get_object_or_404
from django.utils.translation import gettext as _
from drf_yasg.utils import swagger_auto_schema
from pydantic.tools import parse_obj_as
from rest_framework import serializers, status, views
from rest_framework.pagination import LimitOffsetPagination
from rest_framework.response import Response
from rest_framework.viewsets import GenericViewSet, mixins
from backend.account.permissions import RolePermission, role_perm_class
from backend.apps.application.serializers import ConditionCompareSLZ, ConditionTagSLZ
from backend.apps.group import tasks # noqa
from backend.apps.group.models import Group
from backend.apps.policy.serializers import PolicyDeleteSLZ, PolicySLZ, PolicySystemSLZ
from backend.apps.template.models import PermTemplatePolicyAuthorized
from backend.audit.audit import audit_context_setter, view_audit_decorator
from backend.biz.group import GroupBiz, GroupCheckBiz, GroupMemberExpiredAtBean
from backend.biz.policy import PolicyBean, PolicyOperationBiz, PolicyQueryBiz
from backend.biz.policy_tag import ConditionTagBean, ConditionTagBiz
from backend.biz.role import RoleBiz, RoleListQuery, RoleObjectRelationChecker
from backend.biz.template import TemplateBiz
from backend.common.error_codes import error_codes
from backend.common.filters import NoCheckModelFilterBackend
from backend.common.serializers import SystemQuerySLZ
from backend.common.time import PERMANENT_SECONDS
from backend.service.constants import PermissionCodeEnum, RoleType, SubjectType
from backend.service.models import Subject
from backend.trans.group import GroupTrans
from .audit import (
GroupCreateAuditProvider,
GroupDeleteAuditProvider,
GroupMemberCreateAuditProvider,
GroupMemberDeleteAuditProvider,
GroupMemberRenewAuditProvider,
GroupPolicyDeleteAuditProvider,
GroupPolicyUpdateAuditProvider,
GroupTemplateCreateAuditProvider,
GroupTransferAuditProvider,
GroupUpdateAuditProvider,
)
from .constants import OperateEnum
from .filters import GroupFilter, GroupTemplateSystemFilter
from .serializers import (
GroupAddMemberSLZ,
GroupAuthoriedConditionSLZ,
GroupAuthorizationSLZ,
GroupCreateSLZ,
GroupDeleteMemberSLZ,
GroupIdSLZ,
GroupMemberUpdateExpiredAtSLZ,
GroupPolicyUpdateSLZ,
GroupSLZ,
GroupTemplateDetailSchemaSLZ,
GroupTemplateDetailSLZ,
GroupTemplateSchemaSLZ,
GroupTemplateSLZ,
GroupTransferSLZ,
GroupUpdateSLZ,
MemberSLZ,
SearchMemberSLZ,
)
permission_logger = logging.getLogger("permission")
def check_readonly_group(operation):
"""用户组可读检测"""
def decorate(func):
@wraps(func)
def wrapper(view, request, *args, **kwargs):
group = view.get_object()
readonly = group.readonly
if readonly:
raise error_codes.FORBIDDEN.format(
message=_("只读用户组({})无法进行({})操作!").format(group.id, operation), replace=True
)
response = func(view, request, *args, **kwargs)
return response
return wrapper
return decorate
class GroupQueryMixin:
def get_queryset(self):
request = self.request
return RoleListQuery(request.role, request.user).query_group()
class GroupPermissionMixin:
def check_object_permissions(self, request, obj):
if not RoleObjectRelationChecker(request.role).check_group(obj):
self.permission_denied(request, message=f"{request.role.type} role can not access group {obj.id}")
class GroupViewSet(mixins.RetrieveModelMixin, mixins.ListModelMixin, GenericViewSet):
permission_classes = [RolePermission]
action_permission = {
"create": PermissionCodeEnum.MANAGE_GROUP.value,
"update": PermissionCodeEnum.MANAGE_GROUP.value,
"destroy": PermissionCodeEnum.MANAGE_GROUP.value,
}
queryset = Group.objects.all()
serializer_class = GroupSLZ
filterset_class = GroupFilter
lookup_field = "id"
group_biz = GroupBiz()
group_check_biz = GroupCheckBiz()
role_biz = RoleBiz()
group_trans = GroupTrans()
@swagger_auto_schema(
operation_description="创建用户组",
request_body=GroupCreateSLZ(label="用户组"),
responses={status.HTTP_201_CREATED: GroupIdSLZ(label="用户组ID")},
tags=["group"],
)
@view_audit_decorator(GroupCreateAuditProvider)
def create(self, request, *args, **kwargs):
"""
创建用户组
"""
serializer = GroupCreateSLZ(data=request.data)
serializer.is_valid(raise_exception=True)
user_id = request.user.username
data = serializer.validated_data
# 用户组名称在角色内唯一
self.group_check_biz.check_role_group_name_unique(request.role.id, data["name"])
# 用户组数量在角色内是否超限
number_of_new_group = 1 # 接口只支持创建一个用户组,不支持批量,所以新增用户组数量为1
self.group_check_biz.check_role_group_limit(request.role, number_of_new_group)
# 检测成员是否满足管理的授权范围
members = parse_obj_as(List[Subject], data["members"])
self.group_check_biz.check_role_subject_scope(request.role, members)
group = self.group_biz.create_and_add_members(
request.role.id, data["name"], data["description"], user_id, members, data["expired_at"]
)
# 使用长时任务触发多个模板同时授权
if data["templates"]:
templates = self.group_trans.from_group_grant_data(data["templates"])
self.group_biz.grant(request.role, group, templates)
# 写入审计上下文
audit_context_setter(group=group)
return Response({"id": group.id}, status=status.HTTP_201_CREATED)
def get_queryset(self):
request = self.request
role = request.role
username = request.user.username
filter_role_id = request.query_params.get("role_id")
# 如果当前角色是staff 并且 存在筛选的role_id
if role.type == RoleType.STAFF.value and filter_role_id:
# 检查用户是否在角色的授权范围内
filter_role = self.role_biz.get_role_scope_include_user(filter_role_id, username)
if not filter_role:
return Group.objects.none()
# 返回角色的用户组列表
return RoleListQuery(filter_role, request.user).query_group()
return RoleListQuery(role, request.user).query_group()
@swagger_auto_schema(
operation_description="用户组列表",
responses={status.HTTP_200_OK: GroupSLZ(label="用户组", many=True)},
tags=["group"],
)
def list(self, request, *args, **kwargs):
return super().list(request, *args, **kwargs)
@swagger_auto_schema(
operation_description="用户组详情",
responses={status.HTTP_200_OK: GroupSLZ(label="用户组")},
tags=["group"],
)
def retrieve(self, request, *args, **kwargs):
return super().retrieve(request, *args, **kwargs)
@swagger_auto_schema(
operation_description="修改用户组",
request_body=GroupUpdateSLZ(label="用户组"),
responses={status.HTTP_200_OK: GroupUpdateSLZ(label="用户组")},
tags=["group"],
)
@view_audit_decorator(GroupUpdateAuditProvider)
@check_readonly_group(operation=OperateEnum.GROUP_UPDATE.label)
def update(self, request, *args, **kwargs):
group = self.get_object()
serializer = GroupUpdateSLZ(group, data=request.data)
serializer.is_valid(raise_exception=True)
user_id = request.user.username
data = serializer.validated_data
# 用户组名称在角色内唯一
self.group_check_biz.check_role_group_name_unique(request.role.id, data["name"], group.id)
group = self.group_biz.update(group, data["name"], data["description"], user_id)
# 写入审计上下文
audit_context_setter(group=group)
return Response(serializer.data)
@swagger_auto_schema(
operation_description="删除用户组",
responses={status.HTTP_200_OK: serializers.Serializer()},
tags=["group"],
)
@view_audit_decorator(GroupDeleteAuditProvider)
@check_readonly_group(operation=OperateEnum.GROUP_DELETE.label)
def destroy(self, request, *args, **kwargs):
group = self.get_object()
self.group_biz.delete(group.id)
# 写入审计上下文
audit_context_setter(group=group)
return Response({})
class GroupMemberViewSet(GroupPermissionMixin, GenericViewSet):
permission_classes = [RolePermission]
action_permission = {
"list": PermissionCodeEnum.MANAGE_GROUP.value,
"create": PermissionCodeEnum.MANAGE_GROUP.value,
"destroy": PermissionCodeEnum.MANAGE_GROUP.value,
}
queryset = Group.objects.all()
lookup_field = "id"
biz = GroupBiz()
group_check_biz = GroupCheckBiz()
@swagger_auto_schema(
operation_description="用户组成员列表",
query_serializer=SearchMemberSLZ(label="keyword"),
responses={status.HTTP_200_OK: MemberSLZ(label="成员")},
tags=["group"],
)
def list(self, request, *args, **kwargs):
group = get_object_or_404(self.queryset, pk=kwargs["id"])
# 校验权限
checker = RoleObjectRelationChecker(request.role)
if not checker.check_group(group):
raise error_codes.FORBIDDEN.format(message=_("用户组({})不在当前用户身份可访问的范围内").format(group.id), replace=True)
if request.query_params.get("keyword"):
slz = SearchMemberSLZ(data=request.query_params)
slz.is_valid(raise_exception=True)
keyword = slz.validated_data["keyword"].lower()
group_members = self.biz.search_member_by_keyword(group.id, keyword)
return Response({"results": [one.dict() for one in group_members]})
pagination = LimitOffsetPagination()
limit = pagination.get_limit(request)
offset = pagination.get_offset(request)
count, group_members = self.biz.list_paging_group_member(group.id, limit, offset)
return Response({"count": count, "results": [one.dict() for one in group_members]})
@swagger_auto_schema(
operation_description="用户组添加成员",
request_body=GroupAddMemberSLZ(label="成员"),
responses={status.HTTP_200_OK: serializers.Serializer()},
tags=["group"],
)
@view_audit_decorator(GroupMemberCreateAuditProvider)
@check_readonly_group(operation=OperateEnum.GROUP_MEMBER_CREATE.label)
def create(self, request, *args, **kwargs):
serializer = GroupAddMemberSLZ(data=request.data)
serializer.is_valid(raise_exception=True)
group = self.get_object()
data = serializer.validated_data
members_data = data["members"]
expired_at = data["expired_at"]
# 成员Dict结构转换为Subject结构,并去重
members = list(set(parse_obj_as(List[Subject], members_data)))
# 检测成员是否满足管理的授权范围
self.group_check_biz.check_role_subject_scope(request.role, members)
self.group_check_biz.check_member_count(group.id, len(members))
permission_logger.info("group %s add members %s by user %s", group.id, members, request.user.username)
# 添加成员
self.biz.add_members(group.id, members, expired_at)
# 写入审计上下文
audit_context_setter(group=group, members=[m.dict() for m in members])
return Response({}, status=status.HTTP_201_CREATED)
@swagger_auto_schema(
operation_description="用户组删除成员",
request_body=GroupDeleteMemberSLZ(label="成员"),
responses={status.HTTP_200_OK: serializers.Serializer()},
tags=["group"],
)
@view_audit_decorator(GroupMemberDeleteAuditProvider)
@check_readonly_group(operation=OperateEnum.GROUP_MEMBER_DELETE.label)
def destroy(self, request, *args, **kwargs):
serializer = GroupDeleteMemberSLZ(data=request.data)
serializer.is_valid(raise_exception=True)
group = self.get_object()
data = serializer.validated_data
permission_logger.info(
"group %s delete members %s by user %s", group.id, data["members"], request.user.username
)
self.biz.remove_members(str(group.id), parse_obj_as(List[Subject], data["members"]))
# 写入审计上下文
audit_context_setter(group=group, members=data["members"])
return Response({})
class GroupMemberUpdateExpiredAtViewSet(GroupPermissionMixin, GenericViewSet):
permission_classes = [role_perm_class(PermissionCodeEnum.MANAGE_GROUP.value)]
queryset = Group.objects.all()
lookup_field = "id"
# service
group_biz = GroupBiz()
@swagger_auto_schema(
operation_description="用户组成员续期",
request_body=GroupMemberUpdateExpiredAtSLZ(label="成员"),
responses={status.HTTP_200_OK: serializers.Serializer()},
tags=["group"],
)
@view_audit_decorator(GroupMemberRenewAuditProvider)
@check_readonly_group(operation=OperateEnum.GROUP_MEMBER_RENEW.label)
def create(self, request, *args, **kwargs):
serializer = GroupMemberUpdateExpiredAtSLZ(data=request.data)
serializer.is_valid(raise_exception=True)
group = self.get_object()
data = serializer.validated_data
permission_logger.info(
"group %s update members %s expired_at by user %s", group.id, data["members"], request.user.username
)
for m in data["members"]:
m["policy_expired_at"] = m.pop("expired_at")
self.group_biz.update_members_expired_at(
group.id, parse_obj_as(List[GroupMemberExpiredAtBean], data["members"])
)
# 写入审计上下文
audit_context_setter(group=group, members=data["members"])
return Response({})
class GroupTemplateViewSet(GroupPermissionMixin, GenericViewSet):
permission_classes = [RolePermission]
action_permission = {"create": PermissionCodeEnum.MANAGE_GROUP.value}
pagination_class = None # 去掉swagger中的limit offset参数
queryset = Group.objects.all()
filterset_class = GroupTemplateSystemFilter
filter_backends = [NoCheckModelFilterBackend]
lookup_field = "id"
template_biz = TemplateBiz()
@swagger_auto_schema(
operation_description="用户组拥有的权限模板列表",
responses={status.HTTP_200_OK: GroupTemplateSchemaSLZ(label="权限模板", many=True)},
tags=["group"],
)
def list(self, request, *args, **kwargs):
group = get_object_or_404(self.queryset, pk=kwargs["id"])
subject = Subject(type=SubjectType.GROUP.value, id=str(group.id))
queryset = PermTemplatePolicyAuthorized.objects.filter_by_subject(subject).defer("_data")
queryset = self.filter_queryset(queryset)
return Response(GroupTemplateSLZ(queryset, many=True).data)
@swagger_auto_schema(
operation_description="用户组权限模板授权信息",
responses={status.HTTP_200_OK: GroupTemplateDetailSchemaSLZ(label="授权信息")},
tags=["group"],
)
def retrieve(self, request, *args, **kwargs):
group = get_object_or_404(self.queryset, pk=kwargs["id"])
template_id = kwargs["template_id"]
subject = Subject(type=SubjectType.GROUP.value, id=str(group.id))
authorized_template = PermTemplatePolicyAuthorized.objects.get_by_subject_template(subject, int(template_id))
return Response(GroupTemplateDetailSLZ(authorized_template).data)
class GroupPolicyViewSet(GroupPermissionMixin, GenericViewSet):
permission_classes = [RolePermission]
action_permission = {
"create": PermissionCodeEnum.MANAGE_GROUP.value,
"destroy": PermissionCodeEnum.MANAGE_GROUP.value,
"update": PermissionCodeEnum.MANAGE_GROUP.value,
}
pagination_class = None # 去掉swagger中的limit offset参数
queryset = Group.objects.all()
lookup_field = "id"
policy_query_biz = PolicyQueryBiz()
policy_operation_biz = PolicyOperationBiz()
group_biz = GroupBiz()
group_trans = GroupTrans()
@swagger_auto_schema(
operation_description="用户组添加权限",
request_body=GroupAuthorizationSLZ(label="授权信息"),
responses={status.HTTP_201_CREATED: serializers.Serializer()},
tags=["group"],
)
@view_audit_decorator(GroupTemplateCreateAuditProvider)
@check_readonly_group(operation=OperateEnum.GROUP_POLICY_CREATE.label)
def create(self, request, *args, **kwargs):
serializer = GroupAuthorizationSLZ(data=request.data)
serializer.is_valid(raise_exception=True)
group = self.get_object()
data = serializer.validated_data
templates = self.group_trans.from_group_grant_data(data["templates"])
self.group_biz.grant(request.role, group, templates)
# 写入审计上下文
audit_context_setter(
group=group,
templates=[{"system_id": t["system_id"], "template_id": t["template_id"]} for t in data["templates"]],
)
return Response({}, status=status.HTTP_201_CREATED)
@swagger_auto_schema(
operation_description="用户组自定义权限列表",
query_serializer=SystemQuerySLZ,
responses={status.HTTP_200_OK: PolicySLZ(label="策略", many=True)},
tags=["group"],
)
def list(self, request, *args, **kwargs):
slz = SystemQuerySLZ(data=request.query_params)
slz.is_valid(raise_exception=True)
system_id = slz.validated_data["system_id"]
group = get_object_or_404(self.queryset, pk=kwargs["id"])
subject = Subject(type=SubjectType.GROUP.value, id=str(group.id))
policies = self.policy_query_biz.list_by_subject(system_id, subject)
# ResourceNameAutoUpdate
updated_policies = self.policy_operation_biz.update_due_to_renamed_resource(system_id, subject, policies)
return Response([p.dict() for p in updated_policies])
@swagger_auto_schema(
operation_description="用户组删除自定义权限",
request_body=PolicyDeleteSLZ(label="ids"),
responses={status.HTTP_200_OK: serializers.Serializer()},
tags=["group"],
)
@view_audit_decorator(GroupPolicyDeleteAuditProvider)
@check_readonly_group(operation=OperateEnum.GROUP_POLICY_DELETE.label)
def destroy(self, request, *args, **kwargs):
slz = PolicyDeleteSLZ(data=request.data)
slz.is_valid(raise_exception=True)
system_id = slz.validated_data["system_id"]
ids = slz.validated_data["ids"]
group = self.get_object()
subject = Subject(type=SubjectType.GROUP.value, id=str(group.id))
permission_logger.info(
"subject type=%s, id=%s policy deleted by user %s", subject.type, subject.id, request.user.username
)
policy_list = self.policy_query_biz.query_policy_list_by_policy_ids(system_id, subject, ids)
# 删除权限
self.policy_operation_biz.delete_by_ids(system_id, subject, ids)
# 写入审计上下文
audit_context_setter(group=group, system_id=system_id, policies=policy_list.policies)
return Response()
@swagger_auto_schema(
operation_description="用户组权限修改",
request_body=GroupPolicyUpdateSLZ(label="修改策略"),
responses={status.HTTP_200_OK: serializers.Serializer()},
tags=["group"],
)
@view_audit_decorator(GroupPolicyUpdateAuditProvider)
@check_readonly_group(operation=OperateEnum.GROUP_POLICY_UPDATE.label)
def update(self, request, *args, **kwargs):
group = self.get_object()
slz = GroupPolicyUpdateSLZ(data=request.data)
slz.is_valid(raise_exception=True)
data = slz.validated_data
system_id = data["system_id"]
template_id = data["template_id"]
policies = [PolicyBean(expired_at=PERMANENT_SECONDS, **action) for action in data["actions"]]
self.group_biz.update_policies(request.role, group.id, system_id, template_id, policies)
# 写入审计上下文
audit_context_setter(group=group, system_id=system_id, template_id=template_id, policies=policies)
return Response({})
class GroupSystemViewSet(GenericViewSet):
pagination_class = None # 去掉swagger中的limit offset参数
queryset = Group.objects.all()
lookup_field = "id"
biz = GroupBiz()
@swagger_auto_schema(
operation_description="用户组有权限的所有系统列表",
responses={status.HTTP_200_OK: PolicySystemSLZ(label="系统", many=True)},
tags=["group"],
)
def list(self, request, *args, **kwargs):
group = self.get_object()
data = self.biz.list_system_counter(group.id)
return Response([one.dict() for one in data])
class GroupTransferView(views.APIView):
"""
用户组转出
"""
permission_classes = [role_perm_class(PermissionCodeEnum.TRANSFER_GROUP.value)]
role_biz = RoleBiz()
@swagger_auto_schema(
operation_description="用户组批量转出",
request_body=GroupTransferSLZ(label="用户转移"),
responses={status.HTTP_200_OK: serializers.Serializer()},
tags=["group"],
)
@view_audit_decorator(GroupTransferAuditProvider)
def post(self, request, *args, **kwargs):
slz = GroupTransferSLZ(data=request.data, context={"role": request.role})
slz.is_valid(raise_exception=True)
group_ids = slz.validated_data["group_ids"]
role_id = slz.validated_data["role_id"]
self.role_biz.transfer_groups_role(group_ids, role_id)
audit_context_setter(group_ids=group_ids, role_id=role_id)
return Response({})
class GroupTemplateConditionCompareView(GroupPermissionMixin, GenericViewSet):
condition_biz = ConditionTagBiz()
template_biz = TemplateBiz()
queryset = Group.objects.all()
lookup_field = "id"
@swagger_auto_schema(
operation_description="权限模板操作条件对比",
request_body=GroupAuthoriedConditionSLZ(label="操作条件"),
responses={status.HTTP_200_OK: ConditionTagSLZ(label="条件差异", many=True)},
tags=["group"],
)
def create(self, request, *args, **kwargs):
serializer = GroupAuthoriedConditionSLZ(data=request.data)
serializer.is_valid(raise_exception=True)
data = serializer.validated_data
group = self.get_object()
action_id = data["action_id"]
resource_group_id = data["resource_group_id"]
related_resource_type = data["related_resource_type"]
new_condition = parse_obj_as(List[ConditionTagBean], related_resource_type["condition"])
# 从模板数据中查找匹配的操作, 资源类型的条件
template_id = kwargs["template_id"]
subject = Subject(type=SubjectType.GROUP.value, id=str(group.id))
authorized_template = PermTemplatePolicyAuthorized.objects.get_by_subject_template(subject, int(template_id))
for action in authorized_template.data["actions"]:
policy = PolicyBean.parse_obj(action)
# 查询对应的操作
if policy.action_id == action_id:
# 操作操作中对应于资源类型的操作
related_resource_type = policy.get_related_resource_type(
resource_group_id, related_resource_type["system_id"], related_resource_type["type"]
)
old_condition = related_resource_type.condition if related_resource_type else []
# 对比用户组已有的条件与用户提交的条件
conditions = self.condition_biz.compare_and_tag(
new_condition, parse_obj_as(List[ConditionTagBean], old_condition), is_template=True
)
return Response([c.dict() for c in conditions])
raise error_codes.VALIDATE_ERROR.format(_("模板: {} 没有操作: {} 的权限").format(template_id, action_id))
class GroupCustomPolicyConditionCompareView(GroupPermissionMixin, GenericViewSet):
policy_biz = PolicyQueryBiz()
condition_biz = ConditionTagBiz()
queryset = Group.objects.all()
lookup_field = "id"
@swagger_auto_schema(
operation_description="条件差异对比",
request_body=ConditionCompareSLZ(label="资源条件"),
responses={status.HTTP_200_OK: ConditionTagSLZ(label="条件差异", many=True)},
tags=["group"],
)
def create(self, request, *args, **kwargs):
serializer = ConditionCompareSLZ(data=request.data)
serializer.is_valid(raise_exception=True)
data = serializer.validated_data
group = self.get_object()
subject = Subject(type=SubjectType.GROUP.value, id=str(group.id))
# 1. 查询policy的condition
related_resource_type = data["related_resource_type"]
old_condition = self.policy_biz.get_policy_resource_type_conditions(
subject,
data["policy_id"],
data["resource_group_id"],
related_resource_type["system_id"],
related_resource_type["type"],
)
# 2. 对比合并差异
conditions = self.condition_biz.compare_and_tag(
parse_obj_as(List[ConditionTagBean], related_resource_type["condition"]),
parse_obj_as(List[ConditionTagBean], old_condition),
is_template=True,
)
return Response([c.dict() for c in conditions])
| [
1,
396,
448,
29930,
29899,
14137,
29901,
23616,
29899,
29947,
448,
29930,
29899,
13,
15945,
29908,
13,
29911,
264,
1760,
21319,
29968,
292,
338,
22301,
304,
2304,
278,
1722,
2752,
7881,
491,
3907,
29871,
235,
150,
160,
236,
181,
187,
31676,
31784,
29899,
233,
160,
134,
31175,
30275,
30869,
29898,
21319,
29968,
292,
29899,
29902,
5194,
29897,
3625,
29889,
13,
11882,
1266,
313,
29907,
29897,
29871,
29906,
29900,
29896,
29955,
29899,
29906,
29900,
29906,
29896,
3446,
29931,
319,
29906,
29929,
28873,
29892,
263,
12444,
1760,
5001,
29889,
2178,
10462,
21676,
29889,
13,
29931,
293,
21144,
1090,
278,
341,
1806,
19245,
313,
1552,
376,
29931,
293,
1947,
1496,
366,
1122,
451,
671,
445,
934,
5174,
297,
752,
13036,
411,
278,
19245,
29889,
13,
3492,
1122,
4017,
263,
3509,
310,
278,
19245,
472,
1732,
597,
22156,
1167,
29889,
990,
29914,
506,
11259,
29914,
26349,
13,
2525,
2222,
3734,
491,
22903,
4307,
470,
15502,
304,
297,
5007,
29892,
7047,
13235,
1090,
278,
19245,
338,
13235,
373,
13,
273,
376,
3289,
8519,
29908,
350,
3289,
3235,
29892,
399,
1806,
8187,
2692,
399,
1718,
29934,
13566,
29059,
6323,
8707,
29928,
22122,
29903,
8079,
13764,
29979,
476,
22255,
29892,
2845,
4653,
470,
2411,
2957,
29889,
2823,
278,
19245,
363,
278,
13,
14940,
4086,
14765,
1076,
11239,
322,
27028,
1090,
278,
19245,
29889,
13,
15945,
29908,
13,
5215,
12183,
13,
3166,
2090,
312,
8789,
1053,
11463,
567,
13,
3166,
19229,
1053,
2391,
13,
13,
3166,
9557,
29889,
12759,
7582,
29879,
1053,
679,
29918,
3318,
29918,
272,
29918,
29946,
29900,
29946,
13,
3166,
9557,
29889,
13239,
29889,
3286,
18411,
1053,
679,
726,
408,
903,
13,
3166,
4192,
29888,
29918,
29891,
294,
29887,
29889,
13239,
1053,
2381,
9921,
29918,
6921,
29918,
11010,
13,
3166,
282,
2941,
7716,
29889,
8504,
1053,
6088,
29918,
5415,
29918,
294,
13,
3166,
1791,
29918,
4468,
1053,
7797,
19427,
29892,
4660,
29892,
8386,
13,
3166,
1791,
29918,
4468,
29889,
13573,
3381,
1053,
9628,
277,
10302,
29925,
351,
3381,
13,
3166,
1791,
29918,
4468,
29889,
5327,
1053,
13291,
13,
3166,
1791,
29918,
4468,
29889,
1493,
7224,
1053,
3251,
293,
1043,
2697,
29892,
6837,
1144,
13,
13,
3166,
14998,
29889,
10149,
29889,
17858,
6847,
1053,
1528,
280,
27293,
29892,
6297,
29918,
17858,
29918,
1990,
13,
3166,
14998,
29889,
13371,
29889,
6214,
29889,
15550,
19427,
1053,
11790,
654,
6843,
598,
12750,
29999,
29892,
11790,
654,
8176,
12750,
29999,
13,
3166,
14998,
29889,
13371,
29889,
2972,
1053,
9595,
29871,
396,
694,
25621,
13,
3166,
14998,
29889,
13371,
29889,
2972,
29889,
9794,
1053,
6431,
13,
3166,
14998,
29889,
13371,
29889,
22197,
29889,
15550,
19427,
1053,
25219,
12498,
12750,
29999,
29892,
25219,
12750,
29999,
29892,
25219,
3924,
12750,
29999,
13,
3166,
14998,
29889,
13371,
29889,
6886,
29889,
9794,
1053,
20894,
6733,
15644,
13720,
1891,
13,
3166,
14998,
29889,
15052,
277,
29889,
15052,
277,
1053,
12990,
277,
29918,
4703,
29918,
842,
357,
29892,
1776,
29918,
15052,
277,
29918,
19557,
1061,
13,
3166,
14998,
29889,
29890,
466,
29889,
2972,
1053,
6431,
29933,
466,
29892,
6431,
5596,
29933,
466,
29892,
6431,
13404,
9544,
2859,
4178,
8217,
13,
3166,
14998,
29889,
29890,
466,
29889,
22197,
1053,
25219,
8217,
29892,
25219,
10925,
29933,
466,
29892,
25219,
3010,
29933,
466,
13,
3166,
14998,
29889,
29890,
466,
29889,
22197,
29918,
4039,
1053,
11790,
654,
8176,
8217,
29892,
11790,
654,
8176,
29933,
466,
13,
3166,
14998,
29889,
29890,
466,
29889,
12154,
1053,
1528,
280,
29933,
466,
29892,
1528,
280,
1293,
3010,
29892,
1528,
280,
2061,
9662,
362,
5596,
261,
13,
3166,
14998,
29889,
29890,
466,
29889,
6886,
1053,
25663,
29933,
466,
13,
3166,
14998,
29889,
9435,
29889,
2704,
29918,
18137,
1053,
1059,
29918,
18137,
13,
3166,
14998,
29889,
9435,
29889,
26705,
1053,
1939,
5596,
3195,
5072,
5841,
355,
13,
3166,
14998,
29889,
9435,
29889,
15550,
19427,
1053,
2184,
3010,
12750,
29999,
13,
3166,
14998,
29889,
9435,
29889,
2230,
1053,
349,
1001,
27616,
3919,
29918,
1660,
6007,
8452,
13,
3166,
14998,
29889,
5509,
29889,
3075,
1934,
1053,
20894,
2333,
3399,
16854,
29892,
1528,
280,
1542,
29892,
3323,
622,
1542,
13,
3166,
14998,
29889,
5509,
29889,
9794,
1053,
3323,
622,
13,
3166,
14998,
29889,
3286,
29889,
2972,
1053,
6431,
4300,
13,
13,
3166,
869,
15052,
277,
1053,
313,
13,
1678,
6431,
4391,
29909,
566,
277,
6980,
29892,
13,
1678,
6431,
12498,
29909,
566,
277,
6980,
29892,
13,
1678,
6431,
13404,
4391,
29909,
566,
277,
6980,
29892,
13,
1678,
6431,
13404,
12498,
29909,
566,
277,
6980,
29892,
13,
1678,
6431,
13404,
29934,
264,
809,
29909,
566,
277,
6980,
29892,
13,
1678,
6431,
15644,
12498,
29909,
566,
277,
6980,
29892,
13,
1678,
6431,
15644,
6422,
29909,
566,
277,
6980,
29892,
13,
1678,
6431,
6733,
4391,
29909,
566,
277,
6980,
29892,
13,
1678,
6431,
4300,
571,
29909,
566,
277,
6980,
29892,
13,
1678,
6431,
6422,
29909,
566,
277,
6980,
29892,
13,
29897,
13,
3166,
869,
3075,
1934,
1053,
6607,
403,
16854,
13,
3166,
869,
26705,
1053,
6431,
5072,
29892,
6431,
6733,
3924,
5072,
13,
3166,
869,
15550,
19427,
1053,
313,
13,
1678,
6431,
2528,
13404,
12750,
29999,
29892,
13,
1678,
6431,
13720,
1000,
25255,
12750,
29999,
29892,
13,
1678,
6431,
25471,
12750,
29999,
29892,
13,
1678,
6431,
4391,
12750,
29999,
29892,
13,
1678,
6431,
12498,
13404,
12750,
29999,
29892,
13,
1678,
6431,
1204,
12750,
29999,
29892,
13,
1678,
6431,
13404,
6422,
9544,
2859,
4178,
12750,
29999,
29892,
13,
1678,
6431,
15644,
6422,
12750,
29999,
29892,
13,
1678,
6431,
12750,
29999,
29892,
13,
1678,
6431,
6733,
16570,
12763,
12750,
29999,
29892,
13,
1678,
6431,
6733,
16570,
12750,
29999,
29892,
13,
1678,
6431,
6733,
12763,
12750,
29999,
29892,
13,
1678,
6431,
6733,
12750,
29999,
29892,
13,
1678,
6431,
4300,
571,
12750,
29999,
29892,
13,
1678,
6431,
6422,
12750,
29999,
29892,
13,
1678,
19495,
12750,
29999,
29892,
13,
1678,
11856,
13404,
12750,
29999,
29892,
13,
29897,
13,
13,
16074,
29918,
21707,
353,
12183,
29889,
657,
16363,
703,
16074,
1159,
13,
13,
13,
1753,
1423,
29918,
949,
6194,
29918,
2972,
29898,
16453,
1125,
13,
1678,
9995,
30406,
31229,
31263,
30682,
235,
178,
190,
233,
166,
131,
31851,
15945,
29908,
13,
13,
1678,
822,
10200,
403,
29898,
9891,
1125,
13,
4706,
732,
29893,
336,
567,
29898,
9891,
29897,
13,
4706,
822,
14476,
29898,
1493,
29892,
2009,
29892,
334,
5085,
29892,
3579,
19290,
1125,
13,
9651,
2318,
353,
1776,
29889,
657,
29918,
3318,
580,
13,
9651,
20623,
353,
2318,
29889,
949,
6194,
13,
13,
9651,
565,
20623,
29901,
13,
18884,
12020,
1059,
29918,
18137,
29889,
22051,
29933,
1367,
29928,
1430,
29889,
4830,
29898,
13,
462,
1678,
2643,
29922,
29918,
703,
31557,
235,
178,
190,
30406,
31229,
31263,
3319,
1800,
31352,
30545,
31174,
30448,
3319,
1800,
31904,
30732,
30584,
2564,
4830,
29898,
2972,
29889,
333,
29892,
5858,
511,
5191,
29922,
5574,
13,
18884,
1723,
13,
13,
9651,
2933,
353,
3653,
29898,
1493,
29892,
2009,
29892,
334,
5085,
29892,
3579,
19290,
29897,
13,
13,
9651,
736,
2933,
13,
13,
4706,
736,
14476,
13,
13,
1678,
736,
10200,
403,
13,
13,
13,
1990,
6431,
3010,
29924,
861,
262,
29901,
13,
1678,
822,
679,
29918,
1972,
842,
29898,
1311,
1125,
13,
4706,
2009,
353,
1583,
29889,
3827,
13,
4706,
736,
1528,
280,
1293,
3010,
29898,
3827,
29889,
12154,
29892,
2009,
29889,
1792,
467,
1972,
29918,
2972,
580,
13,
13,
13,
1990,
6431,
27293,
29924,
861,
262,
29901,
13,
1678,
822,
1423,
29918,
3318,
29918,
17858,
6847,
29898,
1311,
29892,
2009,
29892,
5446,
1125,
13,
4706,
565,
451,
1528,
280,
2061,
9662,
362,
5596,
261,
29898,
3827,
29889,
12154,
467,
3198,
29918,
2972,
29898,
5415,
1125,
13,
9651,
1583,
29889,
16074,
29918,
1145,
1000,
29898,
3827,
29892,
2643,
29922,
29888,
29908,
29912,
3827,
29889,
12154,
29889,
1853,
29913,
6297,
508,
451,
2130,
2318,
426,
5415,
29889,
333,
27195,
13,
13,
13,
1990,
6431,
1043,
2697,
29898,
28084,
1144,
29889,
8015,
29878,
2418,
3195,
29924,
861,
262,
29892,
6837,
1144,
29889,
1293,
3195,
29924,
861,
262,
29892,
3251,
293,
1043,
2697,
1125,
13,
13,
1678,
10751,
29918,
13203,
353,
518,
16727,
27293,
29962,
13,
1678,
3158,
29918,
16074,
353,
426,
13,
4706,
376,
3258,
1115,
20894,
2333,
3399,
16854,
29889,
1529,
3521,
1692,
29918,
26284,
29889,
1767,
29892,
13,
4706,
376,
5504,
1115,
20894,
2333,
3399,
16854,
29889,
1529,
3521,
1692,
29918,
26284,
29889,
1767,
29892,
13,
4706,
376,
20524,
1115,
20894,
2333,
3399,
16854,
29889,
1529,
3521,
1692,
29918,
26284,
29889,
1767,
29892,
13,
1678,
500,
13,
13,
1678,
2346,
842,
353,
6431,
29889,
12650,
29889,
497,
580,
13,
1678,
7797,
3950,
29918,
1990,
353,
6431,
12750,
29999,
13,
1678,
4175,
842,
29918,
1990,
353,
6431,
5072,
13,
1678,
16280,
29918,
2671,
353,
376,
333,
29908,
13,
13,
1678,
2318,
29918,
29890,
466,
353,
6431,
29933,
466,
580,
13,
1678,
2318,
29918,
3198,
29918,
29890,
466,
353,
6431,
5596,
29933,
466,
580,
13,
1678,
6297,
29918,
29890,
466,
353,
1528,
280,
29933,
466,
580,
13,
13,
1678,
2318,
29918,
3286,
353,
6431,
4300,
580,
13,
13,
1678,
732,
2774,
9921,
29918,
6921,
29918,
11010,
29898,
13,
4706,
5858,
29918,
8216,
543,
31441,
30886,
30406,
31229,
31263,
613,
13,
4706,
2009,
29918,
2587,
29922,
4782,
4391,
12750,
29999,
29898,
1643,
543,
30406,
31229,
31263,
4968,
13,
4706,
20890,
3790,
4882,
29889,
10493,
29918,
29906,
29900,
29896,
29918,
27045,
29928,
29901,
6431,
1204,
12750,
29999,
29898,
1643,
543,
30406,
31229,
31263,
1367,
1159,
1118,
13,
4706,
8282,
29922,
3366,
2972,
12436,
13,
1678,
1723,
13,
1678,
732,
1493,
29918,
15052,
277,
29918,
19557,
1061,
29898,
4782,
4391,
29909,
566,
277,
6980,
29897,
13,
1678,
822,
1653,
29898,
1311,
29892,
2009,
29892,
334,
5085,
29892,
3579,
19290,
1125,
13,
4706,
9995,
13,
308,
31441,
30886,
30406,
31229,
31263,
13,
4706,
9995,
13,
4706,
7797,
3950,
353,
6431,
4391,
12750,
29999,
29898,
1272,
29922,
3827,
29889,
1272,
29897,
13,
4706,
7797,
3950,
29889,
275,
29918,
3084,
29898,
22692,
29918,
11739,
29922,
5574,
29897,
13,
13,
4706,
1404,
29918,
333,
353,
2009,
29889,
1792,
29889,
6786,
13,
4706,
848,
353,
7797,
3950,
29889,
3084,
630,
29918,
1272,
13,
13,
4706,
396,
29871,
30406,
31229,
31263,
30548,
31685,
30505,
31432,
31085,
30728,
232,
151,
178,
30287,
13,
4706,
1583,
29889,
2972,
29918,
3198,
29918,
29890,
466,
29889,
3198,
29918,
12154,
29918,
2972,
29918,
978,
29918,
13092,
29898,
3827,
29889,
12154,
29889,
333,
29892,
848,
3366,
978,
20068,
13,
4706,
396,
29871,
30406,
31229,
31263,
30354,
31180,
30505,
31432,
31085,
30728,
30392,
31191,
31480,
31175,
13,
4706,
1353,
29918,
974,
29918,
1482,
29918,
2972,
353,
29871,
29896,
29871,
396,
29871,
31092,
30856,
31557,
31541,
31695,
31441,
30886,
30287,
30502,
30406,
31229,
31263,
30214,
30413,
31541,
31695,
233,
140,
188,
31180,
30214,
30744,
30651,
30374,
232,
165,
161,
30406,
31229,
31263,
30354,
31180,
30573,
29896,
13,
4706,
1583,
29889,
2972,
29918,
3198,
29918,
29890,
466,
29889,
3198,
29918,
12154,
29918,
2972,
29918,
13400,
29898,
3827,
29889,
12154,
29892,
1353,
29918,
974,
29918,
1482,
29918,
2972,
29897,
13,
13,
4706,
396,
29871,
233,
166,
131,
31851,
30494,
31911,
30392,
31191,
233,
190,
164,
31722,
31624,
30687,
30210,
233,
145,
139,
233,
160,
134,
235,
143,
134,
232,
158,
183,
13,
4706,
5144,
353,
6088,
29918,
5415,
29918,
294,
29898,
1293,
29961,
20622,
1402,
848,
3366,
28109,
20068,
13,
4706,
1583,
29889,
2972,
29918,
3198,
29918,
29890,
466,
29889,
3198,
29918,
12154,
29918,
16009,
29918,
6078,
29898,
3827,
29889,
12154,
29892,
5144,
29897,
13,
13,
4706,
2318,
353,
1583,
29889,
2972,
29918,
29890,
466,
29889,
3258,
29918,
392,
29918,
1202,
29918,
28109,
29898,
13,
9651,
2009,
29889,
12154,
29889,
333,
29892,
848,
3366,
978,
12436,
848,
3366,
8216,
12436,
1404,
29918,
333,
29892,
5144,
29892,
848,
3366,
4548,
2859,
29918,
271,
3108,
13,
4706,
1723,
13,
13,
4706,
396,
29871,
30785,
30406,
31143,
30594,
31450,
31358,
235,
170,
169,
30910,
30923,
30502,
31382,
233,
160,
194,
30980,
30594,
233,
145,
139,
233,
160,
134,
13,
4706,
565,
848,
3366,
20943,
3108,
29901,
13,
9651,
17475,
353,
1583,
29889,
2972,
29918,
3286,
29889,
3166,
29918,
2972,
29918,
629,
424,
29918,
1272,
29898,
1272,
3366,
20943,
20068,
13,
9651,
1583,
29889,
2972,
29918,
29890,
466,
29889,
629,
424,
29898,
3827,
29889,
12154,
29892,
2318,
29892,
17475,
29897,
13,
13,
4706,
396,
29871,
31479,
30752,
232,
177,
164,
31466,
30429,
30557,
30333,
13,
4706,
12990,
277,
29918,
4703,
29918,
842,
357,
29898,
2972,
29922,
2972,
29897,
13,
13,
4706,
736,
13291,
3319,
29908,
333,
1115,
2318,
29889,
333,
1118,
4660,
29922,
4882,
29889,
10493,
29918,
29906,
29900,
29896,
29918,
27045,
29928,
29897,
13,
13,
1678,
822,
679,
29918,
1972,
842,
29898,
1311,
1125,
13,
4706,
2009,
353,
1583,
29889,
3827,
13,
4706,
6297,
353,
2009,
29889,
12154,
13,
4706,
8952,
353,
2009,
29889,
1792,
29889,
6786,
13,
4706,
4175,
29918,
12154,
29918,
333,
353,
2009,
29889,
1972,
29918,
7529,
29889,
657,
703,
12154,
29918,
333,
1159,
13,
13,
4706,
396,
29871,
30847,
30801,
30948,
30658,
31432,
31085,
30392,
303,
3470,
29871,
31666,
231,
187,
151,
29871,
30946,
30505,
234,
176,
158,
31333,
30210,
12154,
29918,
333,
13,
4706,
565,
6297,
29889,
1853,
1275,
1528,
280,
1542,
29889,
1254,
29909,
4198,
29889,
1767,
322,
4175,
29918,
12154,
29918,
333,
29901,
13,
9651,
396,
29871,
233,
166,
131,
31213,
30406,
31229,
30392,
31191,
30505,
31432,
31085,
30210,
233,
145,
139,
233,
160,
134,
235,
143,
134,
232,
158,
183,
30728,
13,
9651,
4175,
29918,
12154,
353,
1583,
29889,
12154,
29918,
29890,
466,
29889,
657,
29918,
12154,
29918,
6078,
29918,
2856,
29918,
1792,
29898,
4572,
29918,
12154,
29918,
333,
29892,
8952,
29897,
13,
9651,
565,
451,
4175,
29918,
12154,
29901,
13,
18884,
736,
6431,
29889,
12650,
29889,
9290,
580,
13,
13,
9651,
396,
29871,
31086,
30742,
31432,
31085,
30210,
30406,
31229,
31263,
31025,
30746,
13,
9651,
736,
1528,
280,
1293,
3010,
29898,
4572,
29918,
12154,
29892,
2009,
29889,
1792,
467,
1972,
29918,
2972,
580,
13,
13,
4706,
736,
1528,
280,
1293,
3010,
29898,
12154,
29892,
2009,
29889,
1792,
467,
1972,
29918,
2972,
580,
13,
13,
1678,
732,
2774,
9921,
29918,
6921,
29918,
11010,
29898,
13,
4706,
5858,
29918,
8216,
543,
30406,
31229,
31263,
31025,
30746,
613,
13,
4706,
20890,
3790,
4882,
29889,
10493,
29918,
29906,
29900,
29900,
29918,
8949,
29901,
6431,
12750,
29999,
29898,
1643,
543,
30406,
31229,
31263,
613,
1784,
29922,
5574,
19230,
13,
4706,
8282,
29922,
3366,
2972,
12436,
13,
1678,
1723,
13,
1678,
822,
1051,
29898,
1311,
29892,
2009,
29892,
334,
5085,
29892,
3579,
19290,
1125,
13,
4706,
736,
2428,
2141,
1761,
29898,
3827,
29892,
334,
5085,
29892,
3579,
19290,
29897,
13,
13,
1678,
732,
2774,
9921,
29918,
6921,
29918,
11010,
29898,
13,
4706,
5858,
29918,
8216,
543,
30406,
31229,
31263,
235,
178,
169,
30993,
613,
13,
4706,
20890,
3790,
4882,
29889,
10493,
29918,
29906,
29900,
29900,
29918,
8949,
29901,
6431,
12750,
29999,
29898,
1643,
543,
30406,
31229,
31263,
1159,
1118,
13,
4706,
8282,
29922,
3366,
2972,
12436,
13,
1678,
1723,
13,
1678,
822,
10563,
29898,
1311,
29892,
2009,
29892,
334,
5085,
29892,
3579,
19290,
1125,
13,
4706,
736,
2428,
2141,
276,
509,
2418,
29898,
3827,
29892,
334,
5085,
29892,
3579,
19290,
29897,
13,
13,
1678,
732,
2774,
9921,
29918,
6921,
29918,
11010,
29898,
13,
4706,
5858,
29918,
8216,
543,
31273,
31264,
30406,
31229,
31263,
613,
13,
4706,
2009,
29918,
2587,
29922,
4782,
6422,
12750,
29999,
29898,
1643,
543,
30406,
31229,
31263,
4968,
13,
4706,
20890,
3790,
4882,
29889,
10493,
29918,
29906,
29900,
29900,
29918,
8949,
29901,
6431,
6422,
12750,
29999,
29898,
1643,
543,
30406,
31229,
31263,
1159,
1118,
13,
4706,
8282,
29922,
3366,
2972,
12436,
13,
1678,
1723,
13,
1678,
732,
1493,
29918,
15052,
277,
29918,
19557,
1061,
29898,
4782,
6422,
29909,
566,
277,
6980,
29897,
13,
1678,
732,
3198,
29918,
949,
6194,
29918,
2972,
29898,
16453,
29922,
7094,
403,
16854,
29889,
26284,
29918,
14474,
29889,
1643,
29897,
13,
1678,
822,
2767,
29898,
1311,
29892,
2009,
29892,
334,
5085,
29892,
3579,
19290,
1125,
13,
4706,
2318,
353,
1583,
29889,
657,
29918,
3318,
580,
13,
4706,
7797,
3950,
353,
6431,
6422,
12750,
29999,
29898,
2972,
29892,
848,
29922,
3827,
29889,
1272,
29897,
13,
4706,
7797,
3950,
29889,
275,
29918,
3084,
29898,
22692,
29918,
11739,
29922,
5574,
29897,
13,
13,
4706,
1404,
29918,
333,
353,
2009,
29889,
1792,
29889,
6786,
13,
4706,
848,
353,
7797,
3950,
29889,
3084,
630,
29918,
1272,
13,
13,
4706,
396,
29871,
30406,
31229,
31263,
30548,
31685,
30505,
31432,
31085,
30728,
232,
151,
178,
30287,
13,
4706,
1583,
29889,
2972,
29918,
3198,
29918,
29890,
466,
29889,
3198,
29918,
12154,
29918,
2972,
29918,
978,
29918,
13092,
29898,
3827,
29889,
12154,
29889,
333,
29892,
848,
3366,
978,
12436,
2318,
29889,
333,
29897,
13,
13,
4706,
2318,
353,
1583,
29889,
2972,
29918,
29890,
466,
29889,
5504,
29898,
2972,
29892,
848,
3366,
978,
12436,
848,
3366,
8216,
12436,
1404,
29918,
333,
29897,
13,
13,
4706,
396,
29871,
31479,
30752,
232,
177,
164,
31466,
30429,
30557,
30333,
13,
4706,
12990,
277,
29918,
4703,
29918,
842,
357,
29898,
2972,
29922,
2972,
29897,
13,
13,
4706,
736,
13291,
29898,
15550,
3950,
29889,
1272,
29897,
13,
13,
1678,
732,
2774,
9921,
29918,
6921,
29918,
11010,
29898,
13,
4706,
5858,
29918,
8216,
543,
31916,
31152,
30406,
31229,
31263,
613,
13,
4706,
20890,
3790,
4882,
29889,
10493,
29918,
29906,
29900,
29900,
29918,
8949,
29901,
7797,
19427,
29889,
17679,
580,
1118,
13,
4706,
8282,
29922,
3366,
2972,
12436,
13,
1678,
1723,
13,
1678,
732,
1493,
29918,
15052,
277,
29918,
19557,
1061,
29898,
4782,
12498,
29909,
566,
277,
6980,
29897,
13,
1678,
732,
3198,
29918,
949,
6194,
29918,
2972,
29898,
16453,
29922,
7094,
403,
16854,
29889,
26284,
29918,
2287,
18476,
29889,
1643,
29897,
13,
1678,
822,
8174,
29898,
1311,
29892,
2009,
29892,
334,
5085,
29892,
3579,
19290,
1125,
13,
4706,
2318,
353,
1583,
29889,
657,
29918,
3318,
580,
13,
13,
4706,
1583,
29889,
2972,
29918,
29890,
466,
29889,
8143,
29898,
2972,
29889,
333,
29897,
13,
13,
4706,
396,
29871,
31479,
30752,
232,
177,
164,
31466,
30429,
30557,
30333,
13,
4706,
12990,
277,
29918,
4703,
29918,
842,
357,
29898,
2972,
29922,
2972,
29897,
13,
13,
4706,
736,
13291,
3319,
1800,
13,
13,
13,
1990,
6431,
13404,
1043,
2697,
29898,
4782,
27293,
29924,
861,
262,
29892,
3251,
293,
1043,
2697,
1125,
13,
13,
1678,
10751,
29918,
13203,
353,
518,
16727,
27293,
29962,
13,
1678,
3158,
29918,
16074,
353,
426,
13,
4706,
376,
1761,
1115,
20894,
2333,
3399,
16854,
29889,
1529,
3521,
1692,
29918,
26284,
29889,
1767,
29892,
13,
4706,
376,
3258,
1115,
20894,
2333,
3399,
16854,
29889,
1529,
3521,
1692,
29918,
26284,
29889,
1767,
29892,
13,
4706,
376,
20524,
1115,
20894,
2333,
3399,
16854,
29889,
1529,
3521,
1692,
29918,
26284,
29889,
1767,
29892,
13,
1678,
500,
13,
13,
1678,
2346,
842,
353,
6431,
29889,
12650,
29889,
497,
580,
13,
1678,
16280,
29918,
2671,
353,
376,
333,
29908,
13,
13,
1678,
20132,
353,
6431,
29933,
466,
580,
13,
1678,
2318,
29918,
3198,
29918,
29890,
466,
353,
6431,
5596,
29933,
466,
580,
13,
13,
1678,
732,
2774,
9921,
29918,
6921,
29918,
11010,
29898,
13,
4706,
5858,
29918,
8216,
543,
30406,
31229,
31263,
30494,
31911,
31025,
30746,
613,
13,
4706,
2346,
29918,
15550,
3950,
29922,
7974,
13404,
12750,
29999,
29898,
1643,
543,
26766,
4968,
13,
4706,
20890,
3790,
4882,
29889,
10493,
29918,
29906,
29900,
29900,
29918,
8949,
29901,
19495,
12750,
29999,
29898,
1643,
543,
30494,
31911,
1159,
1118,
13,
4706,
8282,
29922,
3366,
2972,
12436,
13,
1678,
1723,
13,
1678,
822,
1051,
29898,
1311,
29892,
2009,
29892,
334,
5085,
29892,
3579,
19290,
1125,
13,
4706,
2318,
353,
679,
29918,
3318,
29918,
272,
29918,
29946,
29900,
29946,
29898,
1311,
29889,
1972,
842,
29892,
282,
29895,
29922,
19290,
3366,
333,
20068,
13,
13,
4706,
396,
29871,
31071,
236,
173,
143,
233,
160,
134,
31175,
13,
4706,
1423,
261,
353,
1528,
280,
2061,
9662,
362,
5596,
261,
29898,
3827,
29889,
12154,
29897,
13,
4706,
565,
451,
1423,
261,
29889,
3198,
29918,
2972,
29898,
2972,
1125,
13,
9651,
12020,
1059,
29918,
18137,
29889,
22051,
29933,
1367,
29928,
1430,
29889,
4830,
29898,
4906,
29922,
29918,
703,
30406,
31229,
31263,
3319,
1800,
30413,
30505,
30948,
30658,
30406,
31229,
31687,
231,
190,
192,
30682,
235,
177,
194,
31658,
30210,
235,
143,
134,
232,
158,
183,
30728,
2564,
4830,
29898,
2972,
29889,
333,
511,
5191,
29922,
5574,
29897,
13,
13,
4706,
565,
2009,
29889,
1972,
29918,
7529,
29889,
657,
703,
26766,
29908,
1125,
13,
9651,
2243,
29920,
353,
11856,
13404,
12750,
29999,
29898,
1272,
29922,
3827,
29889,
1972,
29918,
7529,
29897,
13,
9651,
2243,
29920,
29889,
275,
29918,
3084,
29898,
22692,
29918,
11739,
29922,
5574,
29897,
13,
9651,
13553,
353,
2243,
29920,
29889,
3084,
630,
29918,
1272,
3366,
26766,
16862,
13609,
580,
13,
13,
9651,
2318,
29918,
28109,
353,
1583,
29889,
29890,
466,
29889,
4478,
29918,
14242,
29918,
1609,
29918,
26766,
29898,
2972,
29889,
333,
29892,
13553,
29897,
13,
13,
9651,
736,
13291,
3319,
29908,
9902,
1115,
518,
650,
29889,
8977,
580,
363,
697,
297,
2318,
29918,
28109,
29962,
1800,
13,
13,
4706,
10203,
3381,
353,
9628,
277,
10302,
29925,
351,
3381,
580,
13,
4706,
4046,
353,
10203,
3381,
29889,
657,
29918,
13400,
29898,
3827,
29897,
13,
4706,
9210,
353,
10203,
3381,
29889,
657,
29918,
10289,
29898,
3827,
29897,
13,
13,
4706,
2302,
29892,
2318,
29918,
28109,
353,
1583,
29889,
29890,
466,
29889,
1761,
29918,
29886,
6751,
29918,
2972,
29918,
14242,
29898,
2972,
29889,
333,
29892,
4046,
29892,
9210,
29897,
13,
4706,
736,
13291,
3319,
29908,
2798,
1115,
2302,
29892,
376,
9902,
1115,
518,
650,
29889,
8977,
580,
363,
697,
297,
2318,
29918,
28109,
29962,
1800,
13,
13,
1678,
732,
2774,
9921,
29918,
6921,
29918,
11010,
29898,
13,
4706,
5858,
29918,
8216,
543,
30406,
31229,
31263,
31538,
30666,
30494,
31911,
613,
13,
4706,
2009,
29918,
2587,
29922,
4782,
2528,
13404,
12750,
29999,
29898,
1643,
543,
30494,
31911,
4968,
13,
4706,
20890,
3790,
4882,
29889,
10493,
29918,
29906,
29900,
29900,
29918,
8949,
29901,
7797,
19427,
29889,
17679,
580,
1118,
13,
4706,
8282,
29922,
3366,
2972,
12436,
13,
1678,
1723,
13,
1678,
732,
1493,
29918,
15052,
277,
29918,
19557,
1061,
29898,
4782,
13404,
4391,
29909,
566,
277,
6980,
29897,
13,
1678,
732,
3198,
29918,
949,
6194,
29918,
2972,
29898,
16453,
29922,
7094,
403,
16854,
29889,
26284,
29918,
2303,
9486,
1001,
29918,
27045,
29889,
1643,
29897,
13,
1678,
822,
1653,
29898,
1311,
29892,
2009,
29892,
334,
5085,
29892,
3579,
19290,
1125,
13,
4706,
7797,
3950,
353,
6431,
2528,
13404,
12750,
29999,
29898,
1272,
29922,
3827,
29889,
1272,
29897,
13,
4706,
7797,
3950,
29889,
275,
29918,
3084,
29898,
22692,
29918,
11739,
29922,
5574,
29897,
13,
13,
4706,
2318,
353,
1583,
29889,
657,
29918,
3318,
580,
13,
4706,
848,
353,
7797,
3950,
29889,
3084,
630,
29918,
1272,
13,
13,
4706,
5144,
29918,
1272,
353,
848,
3366,
28109,
3108,
13,
4706,
1518,
2859,
29918,
271,
353,
848,
3366,
4548,
2859,
29918,
271,
3108,
13,
13,
4706,
396,
29871,
30494,
31911,
21533,
31320,
31901,
31415,
31640,
30573,
20622,
31320,
31901,
30214,
31666,
31475,
30908,
13,
4706,
5144,
353,
1051,
29898,
842,
29898,
5510,
29918,
5415,
29918,
294,
29898,
1293,
29961,
20622,
1402,
5144,
29918,
1272,
4961,
13,
4706,
396,
29871,
233,
166,
131,
31851,
30494,
31911,
30392,
31191,
233,
190,
164,
31722,
31624,
30687,
30210,
233,
145,
139,
233,
160,
134,
235,
143,
134,
232,
158,
183,
13,
4706,
1583,
29889,
2972,
29918,
3198,
29918,
29890,
466,
29889,
3198,
29918,
12154,
29918,
16009,
29918,
6078,
29898,
3827,
29889,
12154,
29892,
5144,
29897,
13,
4706,
1583,
29889,
2972,
29918,
3198,
29918,
29890,
466,
29889,
3198,
29918,
14242,
29918,
2798,
29898,
2972,
29889,
333,
29892,
7431,
29898,
28109,
876,
13,
13,
4706,
10751,
29918,
21707,
29889,
3888,
703,
2972,
1273,
29879,
788,
5144,
1273,
29879,
491,
1404,
1273,
29879,
613,
2318,
29889,
333,
29892,
5144,
29892,
2009,
29889,
1792,
29889,
6786,
29897,
13,
13,
4706,
396,
29871,
31538,
30666,
30494,
31911,
13,
4706,
1583,
29889,
29890,
466,
29889,
1202,
29918,
28109,
29898,
2972,
29889,
333,
29892,
5144,
29892,
1518,
2859,
29918,
271,
29897,
13,
13,
4706,
396,
29871,
31479,
30752,
232,
177,
164,
31466,
30429,
30557,
30333,
13,
4706,
12990,
277,
29918,
4703,
29918,
842,
357,
29898,
2972,
29922,
2972,
29892,
5144,
11759,
29885,
29889,
8977,
580,
363,
286,
297,
5144,
2314,
13,
13,
4706,
736,
13291,
3319,
1118,
4660,
29922,
4882,
29889,
10493,
29918,
29906,
29900,
29896,
29918,
27045,
29928,
29897,
13,
13,
1678,
732,
2774,
9921,
29918,
6921,
29918,
11010,
29898,
13,
4706,
5858,
29918,
8216,
543,
30406,
31229,
31263,
31916,
31152,
30494,
31911,
613,
13,
4706,
2009,
29918,
2587,
29922,
4782,
12498,
13404,
12750,
29999,
29898,
1643,
543,
30494,
31911,
4968,
13,
4706,
20890,
3790,
4882,
29889,
10493,
29918,
29906,
29900,
29900,
29918,
8949,
29901,
7797,
19427,
29889,
17679,
580,
1118,
13,
4706,
8282,
29922,
3366,
2972,
12436,
13,
1678,
1723,
13,
1678,
732,
1493,
29918,
15052,
277,
29918,
19557,
1061,
29898,
4782,
13404,
12498,
29909,
566,
277,
6980,
29897,
13,
1678,
732,
3198,
29918,
949,
6194,
29918,
2972,
29898,
16453,
29922,
7094,
403,
16854,
29889,
26284,
29918,
2303,
9486,
1001,
29918,
2287,
18476,
29889,
1643,
29897,
13,
1678,
822,
8174,
29898,
1311,
29892,
2009,
29892,
334,
5085,
29892,
3579,
19290,
1125,
13,
4706,
7797,
3950,
353,
6431,
12498,
13404,
12750,
29999,
29898,
1272,
29922,
3827,
29889,
1272,
29897,
13,
4706,
7797,
3950,
29889,
275,
29918,
3084,
29898,
22692,
29918,
11739,
29922,
5574,
29897,
13,
13,
4706,
2318,
353,
1583,
29889,
657,
29918,
3318,
580,
13,
4706,
848,
353,
7797,
3950,
29889,
3084,
630,
29918,
1272,
13,
13,
4706,
10751,
29918,
21707,
29889,
3888,
29898,
13,
9651,
376,
2972,
1273,
29879,
5217,
5144,
1273,
29879,
491,
1404,
1273,
29879,
613,
2318,
29889,
333,
29892,
848,
3366,
28109,
12436,
2009,
29889,
1792,
29889,
6786,
13,
4706,
1723,
13,
13,
4706,
1583,
29889,
29890,
466,
29889,
5992,
29918,
28109,
29898,
710,
29898,
2972,
29889,
333,
511,
6088,
29918,
5415,
29918,
294,
29898,
1293,
29961,
20622,
1402,
848,
3366,
28109,
3108,
876,
13,
13,
4706,
396,
29871,
31479,
30752,
232,
177,
164,
31466,
30429,
30557,
30333,
13,
4706,
12990,
277,
29918,
4703,
29918,
842,
357,
29898,
2972,
29922,
2972,
29892,
5144,
29922,
1272,
3366,
28109,
20068,
13,
13,
4706,
736,
13291,
3319,
1800,
13,
13,
13,
1990,
6431,
13404,
6422,
9544,
2859,
4178,
1043,
2697,
29898,
4782,
27293,
29924,
861,
262,
29892,
3251,
293,
1043,
2697,
1125,
13,
13,
1678,
10751,
29918,
13203,
353,
518,
12154,
29918,
17858,
29918,
1990,
29898,
27293,
3399,
16854,
29889,
1529,
3521,
1692,
29918,
26284,
29889,
1767,
4638,
13,
13,
1678,
2346,
842,
353,
6431,
29889,
12650,
29889,
497,
580,
13,
1678,
16280,
29918,
2671,
353,
376,
333,
29908,
13,
13,
1678,
396,
2669,
13,
1678,
2318,
29918,
29890,
466,
353,
6431,
29933,
466,
580,
13,
13,
1678,
732,
2774,
9921,
29918,
6921,
29918,
11010,
29898,
13,
4706,
5858,
29918,
8216,
543,
30406,
31229,
31263,
30494,
31911,
234,
190,
176,
31117,
613,
13,
4706,
2009,
29918,
2587,
29922,
4782,
13404,
6422,
9544,
2859,
4178,
12750,
29999,
29898,
1643,
543,
30494,
31911,
4968,
13,
4706,
20890,
3790,
4882,
29889,
10493,
29918,
29906,
29900,
29900,
29918,
8949,
29901,
7797,
19427,
29889,
17679,
580,
1118,
13,
4706,
8282,
29922,
3366,
2972,
12436,
13,
1678,
1723,
13,
1678,
732,
1493,
29918,
15052,
277,
29918,
19557,
1061,
29898,
4782,
13404,
29934,
264,
809,
29909,
566,
277,
6980,
29897,
13,
1678,
732,
3198,
29918,
949,
6194,
29918,
2972,
29898,
16453,
29922,
7094,
403,
16854,
29889,
26284,
29918,
2303,
9486,
1001,
29918,
29934,
1430,
29923,
29956,
29889,
1643,
29897,
13,
1678,
822,
1653,
29898,
1311,
29892,
2009,
29892,
334,
5085,
29892,
3579,
19290,
1125,
13,
4706,
7797,
3950,
353,
6431,
13404,
6422,
9544,
2859,
4178,
12750,
29999,
29898,
1272,
29922,
3827,
29889,
1272,
29897,
13,
4706,
7797,
3950,
29889,
275,
29918,
3084,
29898,
22692,
29918,
11739,
29922,
5574,
29897,
13,
13,
4706,
2318,
353,
1583,
29889,
657,
29918,
3318,
580,
13,
4706,
848,
353,
7797,
3950,
29889,
3084,
630,
29918,
1272,
13,
13,
4706,
10751,
29918,
21707,
29889,
3888,
29898,
13,
9651,
376,
2972,
1273,
29879,
2767,
5144,
1273,
29879,
1518,
2859,
29918,
271,
491,
1404,
1273,
29879,
613,
2318,
29889,
333,
29892,
848,
3366,
28109,
12436,
2009,
29889,
1792,
29889,
6786,
13,
4706,
1723,
13,
13,
4706,
363,
286,
297,
848,
3366,
28109,
3108,
29901,
13,
9651,
286,
3366,
22197,
29918,
4548,
2859,
29918,
271,
3108,
353,
286,
29889,
7323,
703,
4548,
2859,
29918,
271,
1159,
13,
13,
4706,
1583,
29889,
2972,
29918,
29890,
466,
29889,
5504,
29918,
28109,
29918,
4548,
2859,
29918,
271,
29898,
13,
9651,
2318,
29889,
333,
29892,
6088,
29918,
5415,
29918,
294,
29898,
1293,
29961,
4782,
13404,
9544,
2859,
4178,
8217,
1402,
848,
3366,
28109,
20068,
13,
4706,
1723,
13,
13,
4706,
396,
29871,
31479,
30752,
232,
177,
164,
31466,
30429,
30557,
30333,
13,
4706,
12990,
277,
29918,
4703,
29918,
842,
357,
29898,
2972,
29922,
2972,
29892,
5144,
29922,
1272,
3366,
28109,
20068,
13,
13,
4706,
736,
13291,
3319,
1800,
13,
13,
13,
1990,
6431,
6733,
1043,
2697,
29898,
4782,
27293,
29924,
861,
262,
29892,
3251,
293,
1043,
2697,
1125,
13,
13,
1678,
10751,
29918,
13203,
353,
518,
16727,
27293,
29962,
13,
1678,
3158,
29918,
16074,
353,
8853,
3258,
1115,
20894,
2333,
3399,
16854,
29889,
1529,
3521,
1692,
29918,
26284,
29889,
1767,
29913,
13,
13,
1678,
10203,
3381,
29918,
1990,
353,
6213,
29871,
396,
29871,
31475,
233,
145,
140,
2774,
9921,
30275,
30210,
13400,
9210,
31125,
30354,
13,
1678,
2346,
842,
353,
6431,
29889,
12650,
29889,
497,
580,
13,
1678,
4175,
842,
29918,
1990,
353,
6431,
6733,
3924,
5072,
13,
1678,
4175,
29918,
1627,
1975,
353,
518,
3782,
5596,
3195,
5072,
5841,
355,
29962,
13,
1678,
16280,
29918,
2671,
353,
376,
333,
29908,
13,
13,
1678,
4472,
29918,
29890,
466,
353,
25663,
29933,
466,
580,
13,
13,
1678,
732,
2774,
9921,
29918,
6921,
29918,
11010,
29898,
13,
4706,
5858,
29918,
8216,
543,
30406,
31229,
31263,
233,
142,
168,
30417,
30210,
233,
160,
134,
31175,
31382,
233,
160,
194,
31025,
30746,
613,
13,
4706,
20890,
3790,
4882,
29889,
10493,
29918,
29906,
29900,
29900,
29918,
8949,
29901,
6431,
6733,
12763,
12750,
29999,
29898,
1643,
543,
233,
160,
134,
31175,
31382,
233,
160,
194,
613,
1784,
29922,
5574,
19230,
13,
4706,
8282,
29922,
3366,
2972,
12436,
13,
1678,
1723,
13,
1678,
822,
1051,
29898,
1311,
29892,
2009,
29892,
334,
5085,
29892,
3579,
19290,
1125,
13,
4706,
2318,
353,
679,
29918,
3318,
29918,
272,
29918,
29946,
29900,
29946,
29898,
1311,
29889,
1972,
842,
29892,
282,
29895,
29922,
19290,
3366,
333,
20068,
13,
4706,
4967,
353,
3323,
622,
29898,
1853,
29922,
20622,
1542,
29889,
26284,
29889,
1767,
29892,
1178,
29922,
710,
29898,
2972,
29889,
333,
876,
13,
4706,
2346,
842,
353,
20894,
6733,
15644,
13720,
1891,
29889,
12650,
29889,
4572,
29918,
1609,
29918,
16009,
29898,
16009,
467,
311,
571,
703,
29918,
1272,
1159,
13,
13,
4706,
2346,
842,
353,
1583,
29889,
4572,
29918,
1972,
842,
29898,
1972,
842,
29897,
13,
4706,
736,
13291,
29898,
4782,
6733,
12750,
29999,
29898,
1972,
842,
29892,
1784,
29922,
5574,
467,
1272,
29897,
13,
13,
1678,
732,
2774,
9921,
29918,
6921,
29918,
11010,
29898,
13,
4706,
5858,
29918,
8216,
543,
30406,
31229,
31263,
233,
160,
134,
31175,
31382,
233,
160,
194,
233,
145,
139,
233,
160,
134,
30689,
31021,
613,
13,
4706,
20890,
3790,
4882,
29889,
10493,
29918,
29906,
29900,
29900,
29918,
8949,
29901,
6431,
6733,
16570,
12763,
12750,
29999,
29898,
1643,
543,
233,
145,
139,
233,
160,
134,
30689,
31021,
1159,
1118,
13,
4706,
8282,
29922,
3366,
2972,
12436,
13,
1678,
1723,
13,
1678,
822,
10563,
29898,
1311,
29892,
2009,
29892,
334,
5085,
29892,
3579,
19290,
1125,
13,
4706,
2318,
353,
679,
29918,
3318,
29918,
272,
29918,
29946,
29900,
29946,
29898,
1311,
29889,
1972,
842,
29892,
282,
29895,
29922,
19290,
3366,
333,
20068,
13,
4706,
4472,
29918,
333,
353,
9049,
5085,
3366,
6886,
29918,
333,
3108,
13,
13,
4706,
4967,
353,
3323,
622,
29898,
1853,
29922,
20622,
1542,
29889,
26284,
29889,
1767,
29892,
1178,
29922,
710,
29898,
2972,
29889,
333,
876,
13,
4706,
4148,
1891,
29918,
6886,
353,
20894,
6733,
15644,
13720,
1891,
29889,
12650,
29889,
657,
29918,
1609,
29918,
16009,
29918,
6886,
29898,
16009,
29892,
938,
29898,
6886,
29918,
333,
876,
13,
4706,
736,
13291,
29898,
4782,
6733,
16570,
12750,
29999,
29898,
8921,
1891,
29918,
6886,
467,
1272,
29897,
13,
13,
13,
1990,
6431,
15644,
1043,
2697,
29898,
4782,
27293,
29924,
861,
262,
29892,
3251,
293,
1043,
2697,
1125,
13,
13,
1678,
10751,
29918,
13203,
353,
518,
16727,
27293,
29962,
13,
1678,
3158,
29918,
16074,
353,
426,
13,
4706,
376,
3258,
1115,
20894,
2333,
3399,
16854,
29889,
1529,
3521,
1692,
29918,
26284,
29889,
1767,
29892,
13,
4706,
376,
20524,
1115,
20894,
2333,
3399,
16854,
29889,
1529,
3521,
1692,
29918,
26284,
29889,
1767,
29892,
13,
4706,
376,
5504,
1115,
20894,
2333,
3399,
16854,
29889,
1529,
3521,
1692,
29918,
26284,
29889,
1767,
29892,
13,
1678,
500,
13,
13,
1678,
10203,
3381,
29918,
1990,
353,
6213,
29871,
396,
29871,
31475,
233,
145,
140,
2774,
9921,
30275,
30210,
13400,
9210,
31125,
30354,
13,
1678,
2346,
842,
353,
6431,
29889,
12650,
29889,
497,
580,
13,
1678,
16280,
29918,
2671,
353,
376,
333,
29908,
13,
13,
1678,
8898,
29918,
1972,
29918,
29890,
466,
353,
25219,
3010,
29933,
466,
580,
13,
1678,
8898,
29918,
16453,
29918,
29890,
466,
353,
25219,
10925,
29933,
466,
580,
13,
1678,
2318,
29918,
29890,
466,
353,
6431,
29933,
466,
580,
13,
13,
1678,
2318,
29918,
3286,
353,
6431,
4300,
580,
13,
13,
1678,
732,
2774,
9921,
29918,
6921,
29918,
11010,
29898,
13,
4706,
5858,
29918,
8216,
543,
30406,
31229,
31263,
31538,
30666,
233,
160,
134,
31175,
613,
13,
4706,
2009,
29918,
2587,
29922,
4782,
25471,
12750,
29999,
29898,
1643,
543,
233,
145,
139,
233,
160,
134,
30689,
31021,
4968,
13,
4706,
20890,
3790,
4882,
29889,
10493,
29918,
29906,
29900,
29896,
29918,
27045,
29928,
29901,
7797,
19427,
29889,
17679,
580,
1118,
13,
4706,
8282,
29922,
3366,
2972,
12436,
13,
1678,
1723,
13,
1678,
732,
1493,
29918,
15052,
277,
29918,
19557,
1061,
29898,
4782,
6733,
4391,
29909,
566,
277,
6980,
29897,
13,
1678,
732,
3198,
29918,
949,
6194,
29918,
2972,
29898,
16453,
29922,
7094,
403,
16854,
29889,
26284,
29918,
29925,
5607,
2965,
29979,
29918,
27045,
29889,
1643,
29897,
13,
1678,
822,
1653,
29898,
1311,
29892,
2009,
29892,
334,
5085,
29892,
3579,
19290,
1125,
13,
4706,
7797,
3950,
353,
6431,
25471,
12750,
29999,
29898,
1272,
29922,
3827,
29889,
1272,
29897,
13,
4706,
7797,
3950,
29889,
275,
29918,
3084,
29898,
22692,
29918,
11739,
29922,
5574,
29897,
13,
13,
4706,
2318,
353,
1583,
29889,
657,
29918,
3318,
580,
13,
4706,
848,
353,
7797,
3950,
29889,
3084,
630,
29918,
1272,
13,
13,
4706,
17475,
353,
1583,
29889,
2972,
29918,
3286,
29889,
3166,
29918,
2972,
29918,
629,
424,
29918,
1272,
29898,
1272,
3366,
20943,
20068,
13,
4706,
1583,
29889,
2972,
29918,
29890,
466,
29889,
629,
424,
29898,
3827,
29889,
12154,
29892,
2318,
29892,
17475,
29897,
13,
13,
4706,
396,
29871,
31479,
30752,
232,
177,
164,
31466,
30429,
30557,
30333,
13,
4706,
12990,
277,
29918,
4703,
29918,
842,
357,
29898,
13,
9651,
2318,
29922,
2972,
29892,
13,
9651,
17475,
11759,
6377,
5205,
29918,
333,
1115,
260,
3366,
5205,
29918,
333,
12436,
376,
6886,
29918,
333,
1115,
260,
3366,
6886,
29918,
333,
3108,
29913,
363,
260,
297,
848,
3366,
20943,
3108,
1402,
13,
4706,
1723,
13,
13,
4706,
736,
13291,
3319,
1118,
4660,
29922,
4882,
29889,
10493,
29918,
29906,
29900,
29896,
29918,
27045,
29928,
29897,
13,
13,
1678,
732,
2774,
9921,
29918,
6921,
29918,
11010,
29898,
13,
4706,
5858,
29918,
8216,
543,
30406,
31229,
31263,
30688,
30495,
31349,
233,
160,
134,
31175,
31025,
30746,
613,
13,
4706,
2346,
29918,
15550,
3950,
29922,
3924,
3010,
12750,
29999,
29892,
13,
4706,
20890,
3790,
4882,
29889,
10493,
29918,
29906,
29900,
29900,
29918,
8949,
29901,
25219,
12750,
29999,
29898,
1643,
543,
234,
176,
153,
234,
152,
168,
613,
1784,
29922,
5574,
19230,
13,
4706,
8282,
29922,
3366,
2972,
12436,
13,
1678,
1723,
13,
1678,
822,
1051,
29898,
1311,
29892,
2009,
29892,
334,
5085,
29892,
3579,
19290,
1125,
13,
4706,
2243,
29920,
353,
2184,
3010,
12750,
29999,
29898,
1272,
29922,
3827,
29889,
1972,
29918,
7529,
29897,
13,
4706,
2243,
29920,
29889,
275,
29918,
3084,
29898,
22692,
29918,
11739,
29922,
5574,
29897,
13,
13,
4706,
1788,
29918,
333,
353,
2243,
29920,
29889,
3084,
630,
29918,
1272,
3366,
5205,
29918,
333,
3108,
13,
4706,
2318,
353,
679,
29918,
3318,
29918,
272,
29918,
29946,
29900,
29946,
29898,
1311,
29889,
1972,
842,
29892,
282,
29895,
29922,
19290,
3366,
333,
20068,
13,
13,
4706,
4967,
353,
3323,
622,
29898,
1853,
29922,
20622,
1542,
29889,
26284,
29889,
1767,
29892,
1178,
29922,
710,
29898,
2972,
29889,
333,
876,
13,
13,
4706,
24833,
353,
1583,
29889,
22197,
29918,
1972,
29918,
29890,
466,
29889,
1761,
29918,
1609,
29918,
16009,
29898,
5205,
29918,
333,
29892,
4967,
29897,
13,
13,
4706,
396,
18981,
1170,
12300,
6422,
13,
4706,
4784,
29918,
3733,
293,
583,
353,
1583,
29889,
22197,
29918,
16453,
29918,
29890,
466,
29889,
5504,
29918,
29123,
29918,
517,
29918,
1267,
2795,
29918,
10314,
29898,
5205,
29918,
333,
29892,
4967,
29892,
24833,
29897,
13,
13,
4706,
736,
13291,
4197,
29886,
29889,
8977,
580,
363,
282,
297,
4784,
29918,
3733,
293,
583,
2314,
13,
13,
1678,
732,
2774,
9921,
29918,
6921,
29918,
11010,
29898,
13,
4706,
5858,
29918,
8216,
543,
30406,
31229,
31263,
31916,
31152,
30688,
30495,
31349,
233,
160,
134,
31175,
613,
13,
4706,
2009,
29918,
2587,
29922,
15644,
12498,
12750,
29999,
29898,
1643,
543,
4841,
4968,
13,
4706,
20890,
3790,
4882,
29889,
10493,
29918,
29906,
29900,
29900,
29918,
8949,
29901,
7797,
19427,
29889,
17679,
580,
1118,
13,
4706,
8282,
29922,
3366,
2972,
12436,
13,
1678,
1723,
13,
1678,
732,
1493,
29918,
15052,
277,
29918,
19557,
1061,
29898,
4782,
15644,
12498,
29909,
566,
277,
6980,
29897,
13,
1678,
732,
3198,
29918,
949,
6194,
29918,
2972,
29898,
16453,
29922,
7094,
403,
16854,
29889,
26284,
29918,
29925,
5607,
2965,
29979,
29918,
2287,
18476,
29889,
1643,
29897,
13,
1678,
822,
8174,
29898,
1311,
29892,
2009,
29892,
334,
5085,
29892,
3579,
19290,
1125,
13,
4706,
2243,
29920,
353,
25219,
12498,
12750,
29999,
29898,
1272,
29922,
3827,
29889,
1272,
29897,
13,
4706,
2243,
29920,
29889,
275,
29918,
3084,
29898,
22692,
29918,
11739,
29922,
5574,
29897,
13,
13,
4706,
1788,
29918,
333,
353,
2243,
29920,
29889,
3084,
630,
29918,
1272,
3366,
5205,
29918,
333,
3108,
13,
4706,
18999,
353,
2243,
29920,
29889,
3084,
630,
29918,
1272,
3366,
4841,
3108,
13,
4706,
2318,
353,
1583,
29889,
657,
29918,
3318,
580,
13,
4706,
4967,
353,
3323,
622,
29898,
1853,
29922,
20622,
1542,
29889,
26284,
29889,
1767,
29892,
1178,
29922,
710,
29898,
2972,
29889,
333,
876,
13,
13,
4706,
10751,
29918,
21707,
29889,
3888,
29898,
13,
9651,
376,
16009,
1134,
16328,
29879,
29892,
1178,
16328,
29879,
8898,
11132,
491,
1404,
1273,
29879,
613,
4967,
29889,
1853,
29892,
4967,
29889,
333,
29892,
2009,
29889,
1792,
29889,
6786,
13,
4706,
1723,
13,
13,
4706,
8898,
29918,
1761,
353,
1583,
29889,
22197,
29918,
1972,
29918,
29890,
466,
29889,
1972,
29918,
22197,
29918,
1761,
29918,
1609,
29918,
22197,
29918,
4841,
29898,
5205,
29918,
333,
29892,
4967,
29892,
18999,
29897,
13,
13,
4706,
396,
29871,
31916,
31152,
233,
160,
134,
31175,
13,
4706,
1583,
29889,
22197,
29918,
16453,
29918,
29890,
466,
29889,
8143,
29918,
1609,
29918,
4841,
29898,
5205,
29918,
333,
29892,
4967,
29892,
18999,
29897,
13,
13,
4706,
396,
29871,
31479,
30752,
232,
177,
164,
31466,
30429,
30557,
30333,
13,
4706,
12990,
277,
29918,
4703,
29918,
842,
357,
29898,
2972,
29922,
2972,
29892,
1788,
29918,
333,
29922,
5205,
29918,
333,
29892,
24833,
29922,
22197,
29918,
1761,
29889,
3733,
293,
583,
29897,
13,
13,
4706,
736,
13291,
580,
13,
13,
1678,
732,
2774,
9921,
29918,
6921,
29918,
11010,
29898,
13,
4706,
5858,
29918,
8216,
543,
30406,
31229,
31263,
233,
160,
134,
31175,
31273,
31264,
613,
13,
4706,
2009,
29918,
2587,
29922,
4782,
15644,
6422,
12750,
29999,
29898,
1643,
543,
31273,
31264,
234,
176,
153,
234,
152,
168,
4968,
13,
4706,
20890,
3790,
4882,
29889,
10493,
29918,
29906,
29900,
29900,
29918,
8949,
29901,
7797,
19427,
29889,
17679,
580,
1118,
13,
4706,
8282,
29922,
3366,
2972,
12436,
13,
1678,
1723,
13,
1678,
732,
1493,
29918,
15052,
277,
29918,
19557,
1061,
29898,
4782,
15644,
6422,
29909,
566,
277,
6980,
29897,
13,
1678,
732,
3198,
29918,
949,
6194,
29918,
2972,
29898,
16453,
29922,
7094,
403,
16854,
29889,
26284,
29918,
29925,
5607,
2965,
29979,
29918,
14474,
29889,
1643,
29897,
13,
1678,
822,
2767,
29898,
1311,
29892,
2009,
29892,
334,
5085,
29892,
3579,
19290,
1125,
13,
4706,
2318,
353,
1583,
29889,
657,
29918,
3318,
580,
13,
13,
4706,
2243,
29920,
353,
6431,
15644,
6422,
12750,
29999,
29898,
1272,
29922,
3827,
29889,
1272,
29897,
13,
4706,
2243,
29920,
29889,
275,
29918,
3084,
29898,
22692,
29918,
11739,
29922,
5574,
29897,
13,
13,
4706,
848,
353,
2243,
29920,
29889,
3084,
630,
29918,
1272,
13,
4706,
1788,
29918,
333,
353,
848,
3366,
5205,
29918,
333,
3108,
13,
4706,
4472,
29918,
333,
353,
848,
3366,
6886,
29918,
333,
3108,
13,
13,
4706,
24833,
353,
518,
15644,
8217,
29898,
4548,
2859,
29918,
271,
29922,
13171,
27616,
3919,
29918,
1660,
6007,
8452,
29892,
3579,
2467,
29897,
363,
3158,
297,
848,
3366,
7387,
3108,
29962,
13,
4706,
1583,
29889,
2972,
29918,
29890,
466,
29889,
5504,
29918,
3733,
293,
583,
29898,
3827,
29889,
12154,
29892,
2318,
29889,
333,
29892,
1788,
29918,
333,
29892,
4472,
29918,
333,
29892,
24833,
29897,
13,
13,
4706,
396,
29871,
31479,
30752,
232,
177,
164,
31466,
30429,
30557,
30333,
13,
4706,
12990,
277,
29918,
4703,
29918,
842,
357,
29898,
2972,
29922,
2972,
29892,
1788,
29918,
333,
29922,
5205,
29918,
333,
29892,
4472,
29918,
333,
29922,
6886,
29918,
333,
29892,
24833,
29922,
3733,
293,
583,
29897,
13,
13,
4706,
736,
13291,
3319,
1800,
13,
13,
13,
1990,
6431,
3924,
1043,
2697,
29898,
15809,
1043,
2697,
1125,
13,
13,
1678,
10203,
3381,
29918,
1990,
353,
6213,
29871,
396,
29871,
31475,
233,
145,
140,
2774,
9921,
30275,
30210,
13400,
9210,
31125,
30354,
13,
1678,
2346,
842,
353,
6431,
29889,
12650,
29889,
497,
580,
13,
1678,
16280,
29918,
2671,
353,
376,
333,
29908,
13,
13,
1678,
20132,
353,
6431,
29933,
466,
580,
13,
13,
1678,
732,
2774,
9921,
29918,
6921,
29918,
11010,
29898,
13,
4706,
5858,
29918,
8216,
543,
30406,
31229,
31263,
30417,
233,
160,
134,
31175,
30210,
30744,
30417,
31185,
31675,
31025,
30746,
613,
13,
4706,
20890,
3790,
4882,
29889,
10493,
29918,
29906,
29900,
29900,
29918,
8949,
29901,
25219,
3924,
12750,
29999,
29898,
1643,
543,
31185,
31675,
613,
1784,
29922,
5574,
19230,
13,
4706,
8282,
29922,
3366,
2972,
12436,
13,
1678,
1723,
13,
1678,
822,
1051,
29898,
1311,
29892,
2009,
29892,
334,
5085,
29892,
3579,
19290,
1125,
13,
4706,
2318,
353,
1583,
29889,
657,
29918,
3318,
580,
13,
4706,
848,
353,
1583,
29889,
29890,
466,
29889,
1761,
29918,
5205,
29918,
11808,
29898,
2972,
29889,
333,
29897,
13,
4706,
736,
13291,
4197,
650,
29889,
8977,
580,
363,
697,
297,
848,
2314,
13,
13,
13,
1990,
6431,
4300,
571,
1043,
29898,
7406,
29889,
8787,
1043,
1125,
13,
1678,
9995,
13,
268,
30406,
31229,
31263,
31415,
30544,
13,
1678,
9995,
13,
13,
1678,
10751,
29918,
13203,
353,
518,
12154,
29918,
17858,
29918,
1990,
29898,
27293,
3399,
16854,
29889,
26813,
20322,
1001,
29918,
26284,
29889,
1767,
4638,
13,
13,
1678,
6297,
29918,
29890,
466,
353,
1528,
280,
29933,
466,
580,
13,
13,
1678,
732,
2774,
9921,
29918,
6921,
29918,
11010,
29898,
13,
4706,
5858,
29918,
8216,
543,
30406,
31229,
31263,
233,
140,
188,
31180,
31415,
30544,
613,
13,
4706,
2009,
29918,
2587,
29922,
4782,
4300,
571,
12750,
29999,
29898,
1643,
543,
30406,
31229,
31415,
31618,
4968,
13,
4706,
20890,
3790,
4882,
29889,
10493,
29918,
29906,
29900,
29900,
29918,
8949,
29901,
7797,
19427,
29889,
17679,
580,
1118,
13,
4706,
8282,
29922,
3366,
2972,
12436,
13,
1678,
1723,
13,
1678,
732,
1493,
29918,
15052,
277,
29918,
19557,
1061,
29898,
4782,
4300,
571,
29909,
566,
277,
6980,
29897,
13,
1678,
822,
1400,
29898,
1311,
29892,
2009,
29892,
334,
5085,
29892,
3579,
19290,
1125,
13,
4706,
2243,
29920,
353,
6431,
4300,
571,
12750,
29999,
29898,
1272,
29922,
3827,
29889,
1272,
29892,
3030,
3790,
29908,
12154,
1115,
2009,
29889,
12154,
1800,
13,
4706,
2243,
29920,
29889,
275,
29918,
3084,
29898,
22692,
29918,
11739,
29922,
5574,
29897,
13,
13,
4706,
2318,
29918,
4841,
353,
2243,
29920,
29889,
3084,
630,
29918,
1272,
3366,
2972,
29918,
4841,
3108,
13,
4706,
6297,
29918,
333,
353,
2243,
29920,
29889,
3084,
630,
29918,
1272,
3366,
12154,
29918,
333,
3108,
13,
13,
4706,
1583,
29889,
12154,
29918,
29890,
466,
29889,
3286,
571,
29918,
13155,
29918,
12154,
29898,
2972,
29918,
4841,
29892,
6297,
29918,
333,
29897,
13,
13,
4706,
12990,
277,
29918,
4703,
29918,
842,
357,
29898,
2972,
29918,
4841,
29922,
2972,
29918,
4841,
29892,
6297,
29918,
333,
29922,
12154,
29918,
333,
29897,
13,
13,
4706,
736,
13291,
3319,
1800,
13,
13,
13,
1990,
6431,
6733,
25255,
6843,
598,
1043,
29898,
4782,
27293,
29924,
861,
262,
29892,
3251,
293,
1043,
2697,
1125,
13,
1678,
4195,
29918,
29890,
466,
353,
11790,
654,
8176,
29933,
466,
580,
13,
1678,
4472,
29918,
29890,
466,
353,
25663,
29933,
466,
580,
13,
13,
1678,
2346,
842,
353,
6431,
29889,
12650,
29889,
497,
580,
13,
1678,
16280,
29918,
2671,
353,
376,
333,
29908,
13,
13,
1678,
732,
2774,
9921,
29918,
6921,
29918,
11010,
29898,
13,
4706,
5858,
29918,
8216,
543,
233,
160,
134,
31175,
31382,
233,
160,
194,
31904,
30732,
31217,
30631,
30783,
31419,
613,
13,
4706,
2009,
29918,
2587,
29922,
4782,
13720,
1000,
25255,
12750,
29999,
29898,
1643,
543,
31904,
30732,
31217,
30631,
4968,
13,
4706,
20890,
3790,
4882,
29889,
10493,
29918,
29906,
29900,
29900,
29918,
8949,
29901,
11790,
654,
8176,
12750,
29999,
29898,
1643,
543,
31217,
30631,
232,
186,
177,
232,
191,
133,
613,
1784,
29922,
5574,
19230,
13,
4706,
8282,
29922,
3366,
2972,
12436,
13,
1678,
1723,
13,
1678,
822,
1653,
29898,
1311,
29892,
2009,
29892,
334,
5085,
29892,
3579,
19290,
1125,
13,
4706,
7797,
3950,
353,
6431,
13720,
1000,
25255,
12750,
29999,
29898,
1272,
29922,
3827,
29889,
1272,
29897,
13,
4706,
7797,
3950,
29889,
275,
29918,
3084,
29898,
22692,
29918,
11739,
29922,
5574,
29897,
13,
4706,
848,
353,
7797,
3950,
29889,
3084,
630,
29918,
1272,
13,
13,
4706,
2318,
353,
1583,
29889,
657,
29918,
3318,
580,
13,
13,
4706,
3158,
29918,
333,
353,
848,
3366,
2467,
29918,
333,
3108,
13,
4706,
6503,
29918,
2972,
29918,
333,
353,
848,
3366,
10314,
29918,
2972,
29918,
333,
3108,
13,
4706,
4475,
29918,
10314,
29918,
1853,
353,
848,
3366,
12817,
29918,
10314,
29918,
1853,
3108,
13,
13,
4706,
716,
29918,
16122,
353,
6088,
29918,
5415,
29918,
294,
29898,
1293,
29961,
25255,
8176,
8217,
1402,
4475,
29918,
10314,
29918,
1853,
3366,
16122,
20068,
13,
4706,
396,
29871,
31594,
31382,
233,
160,
194,
30354,
30763,
30275,
31213,
233,
140,
193,
232,
143,
188,
31361,
30210,
31904,
30732,
29892,
29871,
235,
184,
135,
31193,
30832,
30883,
30210,
31217,
30631,
13,
4706,
4472,
29918,
333,
353,
9049,
5085,
3366,
6886,
29918,
333,
3108,
13,
13,
4706,
4967,
353,
3323,
622,
29898,
1853,
29922,
20622,
1542,
29889,
26284,
29889,
1767,
29892,
1178,
29922,
710,
29898,
2972,
29889,
333,
876,
13,
4706,
4148,
1891,
29918,
6886,
353,
20894,
6733,
15644,
13720,
1891,
29889,
12650,
29889,
657,
29918,
1609,
29918,
16009,
29918,
6886,
29898,
16009,
29892,
938,
29898,
6886,
29918,
333,
876,
13,
4706,
363,
3158,
297,
4148,
1891,
29918,
6886,
29889,
1272,
3366,
7387,
3108,
29901,
13,
9651,
8898,
353,
25219,
8217,
29889,
5510,
29918,
5415,
29898,
2467,
29897,
13,
9651,
396,
29871,
31213,
235,
178,
165,
30783,
31370,
30210,
31904,
30732,
13,
9651,
565,
8898,
29889,
2467,
29918,
333,
1275,
3158,
29918,
333,
29901,
13,
18884,
396,
29871,
31904,
30732,
31904,
30732,
30275,
30783,
31370,
30909,
235,
184,
135,
31193,
30832,
30883,
30210,
31904,
30732,
13,
18884,
4475,
29918,
10314,
29918,
1853,
353,
8898,
29889,
657,
29918,
12817,
29918,
10314,
29918,
1853,
29898,
13,
462,
1678,
6503,
29918,
2972,
29918,
333,
29892,
4475,
29918,
10314,
29918,
1853,
3366,
5205,
29918,
333,
12436,
4475,
29918,
10314,
29918,
1853,
3366,
1853,
3108,
13,
18884,
1723,
13,
18884,
2030,
29918,
16122,
353,
4475,
29918,
10314,
29918,
1853,
29889,
16122,
565,
4475,
29918,
10314,
29918,
1853,
1683,
5159,
13,
13,
18884,
396,
29871,
30783,
31419,
30406,
31229,
31263,
31290,
30417,
30210,
31217,
30631,
31267,
30406,
31229,
31302,
31398,
30210,
31217,
30631,
13,
18884,
5855,
353,
1583,
29889,
16122,
29918,
29890,
466,
29889,
18307,
29918,
392,
29918,
4039,
29898,
13,
462,
1678,
716,
29918,
16122,
29892,
6088,
29918,
5415,
29918,
294,
29898,
1293,
29961,
25255,
8176,
8217,
1402,
2030,
29918,
16122,
511,
338,
29918,
6886,
29922,
5574,
13,
18884,
1723,
13,
13,
18884,
736,
13291,
4197,
29883,
29889,
8977,
580,
363,
274,
297,
5855,
2314,
13,
13,
4706,
12020,
1059,
29918,
18137,
29889,
26707,
3040,
29918,
11432,
29889,
4830,
7373,
703,
31382,
233,
160,
194,
29901,
6571,
29871,
31423,
30417,
31904,
30732,
29901,
6571,
29871,
30210,
233,
160,
134,
31175,
2564,
4830,
29898,
6886,
29918,
333,
29892,
3158,
29918,
333,
876,
13,
13,
13,
1990,
6431,
7281,
15644,
25255,
6843,
598,
1043,
29898,
4782,
27293,
29924,
861,
262,
29892,
3251,
293,
1043,
2697,
1125,
13,
1678,
8898,
29918,
29890,
466,
353,
25219,
3010,
29933,
466,
580,
13,
1678,
4195,
29918,
29890,
466,
353,
11790,
654,
8176,
29933,
466,
580,
13,
13,
1678,
2346,
842,
353,
6431,
29889,
12650,
29889,
497,
580,
13,
1678,
16280,
29918,
2671,
353,
376,
333,
29908,
13,
13,
1678,
732,
2774,
9921,
29918,
6921,
29918,
11010,
29898,
13,
4706,
5858,
29918,
8216,
543,
31217,
30631,
232,
186,
177,
232,
191,
133,
30783,
31419,
613,
13,
4706,
2009,
29918,
2587,
29922,
25255,
6843,
598,
12750,
29999,
29898,
1643,
543,
235,
184,
135,
31193,
31217,
30631,
4968,
13,
4706,
20890,
3790,
4882,
29889,
10493,
29918,
29906,
29900,
29900,
29918,
8949,
29901,
11790,
654,
8176,
12750,
29999,
29898,
1643,
543,
31217,
30631,
232,
186,
177,
232,
191,
133,
613,
1784,
29922,
5574,
19230,
13,
4706,
8282,
29922,
3366,
2972,
12436,
13,
1678,
1723,
13,
1678,
822,
1653,
29898,
1311,
29892,
2009,
29892,
334,
5085,
29892,
3579,
19290,
1125,
13,
4706,
7797,
3950,
353,
11790,
654,
6843,
598,
12750,
29999,
29898,
1272,
29922,
3827,
29889,
1272,
29897,
13,
4706,
7797,
3950,
29889,
275,
29918,
3084,
29898,
22692,
29918,
11739,
29922,
5574,
29897,
13,
13,
4706,
848,
353,
7797,
3950,
29889,
3084,
630,
29918,
1272,
13,
13,
4706,
2318,
353,
1583,
29889,
657,
29918,
3318,
580,
13,
4706,
4967,
353,
3323,
622,
29898,
1853,
29922,
20622,
1542,
29889,
26284,
29889,
1767,
29892,
1178,
29922,
710,
29898,
2972,
29889,
333,
876,
13,
13,
4706,
396,
29871,
29896,
29889,
29871,
31213,
235,
178,
165,
22197,
30210,
16122,
13,
4706,
4475,
29918,
10314,
29918,
1853,
353,
848,
3366,
12817,
29918,
10314,
29918,
1853,
3108,
13,
4706,
2030,
29918,
16122,
353,
1583,
29889,
22197,
29918,
29890,
466,
29889,
657,
29918,
22197,
29918,
10314,
29918,
1853,
29918,
1116,
2187,
29898,
13,
9651,
4967,
29892,
13,
9651,
848,
3366,
22197,
29918,
333,
12436,
13,
9651,
848,
3366,
10314,
29918,
2972,
29918,
333,
12436,
13,
9651,
4475,
29918,
10314,
29918,
1853,
3366,
5205,
29918,
333,
12436,
13,
9651,
4475,
29918,
10314,
29918,
1853,
3366,
1853,
12436,
13,
4706,
1723,
13,
13,
4706,
396,
29871,
29906,
29889,
29871,
30783,
31419,
30733,
31666,
232,
186,
177,
232,
191,
133,
13,
4706,
5855,
353,
1583,
29889,
16122,
29918,
29890,
466,
29889,
18307,
29918,
392,
29918,
4039,
29898,
13,
9651,
6088,
29918,
5415,
29918,
294,
29898,
1293,
29961,
25255,
8176,
8217,
1402,
4475,
29918,
10314,
29918,
1853,
3366,
16122,
3108,
511,
13,
9651,
6088,
29918,
5415,
29918,
294,
29898,
1293,
29961,
25255,
8176,
8217,
1402,
2030,
29918,
16122,
511,
13,
9651,
338,
29918,
6886,
29922,
5574,
29892,
13,
4706,
1723,
13,
13,
4706,
736,
13291,
4197,
29883,
29889,
8977,
580,
363,
274,
297,
5855,
2314,
13,
2
] |
app/realoem.py | ballon3/electricdisc | 0 | 51335 | import httpx
import requests
from bs4 import BeautifulSoup as bso
class BMW:
BASE_URL = 'https://www.realoem.com/bmw/'
LANGUAGE = 'enUS'
URL = f"{BASE_URL}{LANGUAGE}"
'https://www.realoem.com/bmw/enUS/partgrp?id=0573-USA-12-1991-K569-BMW-K_75_RT_0565,0573_&mg=46'
'https://www.realoem.com/bmw/enUS/showparts?id=0573-USA-12-1991-K569-BMW-K_75_RT_0565,0573_&diagId=34_1906'
'https://www.realoem.com/bmw/enUS/showparts?id=0573-USA-12-1991-K569-BMW-K_75_RT_0565,0573_&diagId=34_1905'
def get_main_group(id):
params = {'id':id}
r = httpx.get(f'{URL}/partgrp', params=params)
print(r)
print(r.url)
return r.text
def get_sub_group(url, filter):
pass
def get_part(diagId):
pass
def extract_link(soupy):
soup = bso(soupy, "html.parser")
for links in soup.find_all("a"):
href = links.
print(href,title)
def test_main_group(id):
BASE_URL = 'https://www.realoem.com/bmw/'
LANGUAGE = 'enUS'
URL = f"{BASE_URL}{LANGUAGE}"
params = {'id':id}
r = httpx.get(f'{URL}/partgrp', params=params)
soup = bso(r.text, "html.parser")
for links in soup.find_all("div", {"class": "mg-thumb"}):
href = links.
print(href,title)
K75 = '0573-USA-12-1991-K569-BMW-K_75_RT_0565%2C0573_'
test_main_group(K75) | [
1,
1053,
1732,
29916,
29871,
13,
5215,
7274,
13,
3166,
24512,
29946,
1053,
25685,
29903,
1132,
408,
289,
578,
13,
13,
1990,
350,
25365,
29901,
13,
13,
1678,
350,
8127,
29918,
4219,
353,
525,
991,
597,
1636,
29889,
6370,
21942,
29889,
510,
29914,
5838,
29893,
22208,
13,
1678,
365,
19453,
29965,
10461,
353,
525,
264,
3308,
29915,
13,
1678,
3988,
353,
285,
29908,
29912,
25416,
29918,
4219,
1157,
29931,
19453,
29965,
10461,
5038,
13,
13,
1678,
525,
991,
597,
1636,
29889,
6370,
21942,
29889,
510,
29914,
5838,
29893,
29914,
264,
3308,
29914,
1595,
629,
29886,
29973,
333,
29922,
29900,
29945,
29955,
29941,
29899,
27019,
29899,
29896,
29906,
29899,
29896,
29929,
29929,
29896,
29899,
29968,
29945,
29953,
29929,
29899,
29933,
25365,
29899,
29968,
29918,
29955,
29945,
29918,
13079,
29918,
29900,
29945,
29953,
29945,
29892,
29900,
29945,
29955,
29941,
29918,
29987,
29885,
29887,
29922,
29946,
29953,
29915,
13,
1678,
525,
991,
597,
1636,
29889,
6370,
21942,
29889,
510,
29914,
5838,
29893,
29914,
264,
3308,
29914,
4294,
20895,
29973,
333,
29922,
29900,
29945,
29955,
29941,
29899,
27019,
29899,
29896,
29906,
29899,
29896,
29929,
29929,
29896,
29899,
29968,
29945,
29953,
29929,
29899,
29933,
25365,
29899,
29968,
29918,
29955,
29945,
29918,
13079,
29918,
29900,
29945,
29953,
29945,
29892,
29900,
29945,
29955,
29941,
29918,
29987,
6051,
351,
1204,
29922,
29941,
29946,
29918,
29896,
29929,
29900,
29953,
29915,
13,
1678,
525,
991,
597,
1636,
29889,
6370,
21942,
29889,
510,
29914,
5838,
29893,
29914,
264,
3308,
29914,
4294,
20895,
29973,
333,
29922,
29900,
29945,
29955,
29941,
29899,
27019,
29899,
29896,
29906,
29899,
29896,
29929,
29929,
29896,
29899,
29968,
29945,
29953,
29929,
29899,
29933,
25365,
29899,
29968,
29918,
29955,
29945,
29918,
13079,
29918,
29900,
29945,
29953,
29945,
29892,
29900,
29945,
29955,
29941,
29918,
29987,
6051,
351,
1204,
29922,
29941,
29946,
29918,
29896,
29929,
29900,
29945,
29915,
13,
13,
1678,
822,
679,
29918,
3396,
29918,
2972,
29898,
333,
1125,
13,
4706,
8636,
353,
11117,
333,
2396,
333,
29913,
13,
4706,
364,
353,
1732,
29916,
29889,
657,
29898,
29888,
29915,
29912,
4219,
6822,
1595,
629,
29886,
742,
8636,
29922,
7529,
29897,
13,
4706,
1596,
29898,
29878,
29897,
13,
4706,
1596,
29898,
29878,
29889,
2271,
29897,
13,
4706,
736,
364,
29889,
726,
29871,
13,
13,
13,
1678,
822,
679,
29918,
1491,
29918,
2972,
29898,
2271,
29892,
4175,
1125,
13,
4706,
1209,
13,
13,
1678,
822,
679,
29918,
1595,
29898,
6051,
351,
1204,
1125,
13,
4706,
1209,
13,
13,
1753,
6597,
29918,
2324,
29898,
29879,
1132,
29891,
1125,
13,
1678,
22300,
353,
289,
578,
29898,
29879,
1132,
29891,
29892,
376,
1420,
29889,
16680,
1159,
13,
632,
13,
1678,
363,
2988,
297,
22300,
29889,
2886,
29918,
497,
703,
29874,
29908,
1125,
13,
4706,
2822,
353,
2988,
29889,
13,
4706,
1596,
29898,
12653,
29892,
3257,
29897,
13,
268,
13,
13,
1753,
1243,
29918,
3396,
29918,
2972,
29898,
333,
1125,
13,
1678,
350,
8127,
29918,
4219,
353,
525,
991,
597,
1636,
29889,
6370,
21942,
29889,
510,
29914,
5838,
29893,
22208,
13,
1678,
365,
19453,
29965,
10461,
353,
525,
264,
3308,
29915,
13,
1678,
3988,
353,
285,
29908,
29912,
25416,
29918,
4219,
1157,
29931,
19453,
29965,
10461,
5038,
13,
1678,
8636,
353,
11117,
333,
2396,
333,
29913,
13,
1678,
364,
353,
1732,
29916,
29889,
657,
29898,
29888,
29915,
29912,
4219,
6822,
1595,
629,
29886,
742,
8636,
29922,
7529,
29897,
13,
1678,
22300,
353,
289,
578,
29898,
29878,
29889,
726,
29892,
376,
1420,
29889,
16680,
1159,
13,
632,
13,
1678,
363,
2988,
297,
22300,
29889,
2886,
29918,
497,
703,
4563,
613,
8853,
1990,
1115,
376,
29885,
29887,
29899,
386,
3774,
9092,
1125,
13,
4706,
2822,
353,
2988,
29889,
13,
4706,
1596,
29898,
12653,
29892,
3257,
29897,
13,
13,
29968,
29955,
29945,
353,
525,
29900,
29945,
29955,
29941,
29899,
27019,
29899,
29896,
29906,
29899,
29896,
29929,
29929,
29896,
29899,
29968,
29945,
29953,
29929,
29899,
29933,
25365,
29899,
29968,
29918,
29955,
29945,
29918,
13079,
29918,
29900,
29945,
29953,
29945,
29995,
29906,
29907,
29900,
29945,
29955,
29941,
29918,
29915,
13,
13,
1688,
29918,
3396,
29918,
2972,
29898,
29968,
29955,
29945,
29897,
2
] |
catalogo/views/empleado_view.py | lp2-20172/polleria-serve | 0 | 113709 | from ..models_raiz import Empleado
from rest_framework import serializers, viewsets
from rest_framework import permissions
from django.db.models import Q
from operator import __or__ as OR
from functools import reduce
class EmpleadoSerializer(serializers.ModelSerializer):
class Meta:
model = Empleado
fields = '__all__'
#fields = ('id', 'username', 'email', 'is_staff')
class EmpleadoViewSet(viewsets.ModelViewSet):
queryset = Empleado.objects.all()
serializer_class = EmpleadoSerializer
| [
1,
515,
6317,
9794,
29918,
336,
466,
1053,
2812,
552,
912,
13,
3166,
1791,
29918,
4468,
1053,
7797,
19427,
29892,
1776,
7224,
13,
3166,
1791,
29918,
4468,
1053,
11239,
13,
3166,
9557,
29889,
2585,
29889,
9794,
1053,
660,
13,
3166,
5455,
1053,
4770,
272,
1649,
408,
6323,
13,
3166,
2090,
312,
8789,
1053,
10032,
13,
13,
13,
1990,
2812,
552,
912,
17679,
29898,
15550,
19427,
29889,
3195,
17679,
1125,
13,
13,
1678,
770,
20553,
29901,
13,
4706,
1904,
353,
2812,
552,
912,
13,
4706,
4235,
353,
525,
1649,
497,
1649,
29915,
13,
4706,
396,
9621,
353,
6702,
333,
742,
525,
6786,
742,
525,
5269,
742,
525,
275,
29918,
303,
3470,
1495,
13,
13,
13,
1990,
2812,
552,
912,
1043,
2697,
29898,
1493,
7224,
29889,
3195,
1043,
2697,
1125,
13,
1678,
2346,
842,
353,
2812,
552,
912,
29889,
12650,
29889,
497,
580,
13,
1678,
7797,
3950,
29918,
1990,
353,
2812,
552,
912,
17679,
13,
268,
13,
2
] |
O.py | duongnguyenkt11/data-realtime | 0 | 19835 | <reponame>duongnguyenkt11/data-realtime
from functools import reduce
from bokeh.plotting import figure, output_file, show
from bokeh.io import output_notebook
from CONSTANTS import *
from utilities import *
from bokeh.plotting import figure, output_file, show
import pandas as pd, numpy as np
ENVIRON = C.LOCAL
def mmap(*args):
return list(map(*args))
class O:
################################################################################
# Init #
################################################################################
def __init__(self, cleansed, df=None):
self.cleansed = cleansed
self.n = len(cleansed[C.CTIME])
self.hoseData = {cleansed[C.CTIME][i]: cleansed[C.CHOSE][i] for i in range(len(cleansed[C.CTIME]))}
self.hoseArr = cleansed[C.CHOSE]
self.stocks = sorted(list(cleansed[C.CHOSE][0].keys()))
self.times = cleansed[C.CTIME]
self.errorDataPoints = []
self.hours = mmap(numerizeTime, self.times)
self.seconds = mmap(toSeconds, self.times)
self.Xs = mmap(numerizeTime, self.times)
self.p = figure(plot_width=1400, plot_height=400)
self.df = pd.DataFrame.from_dict(self.cleansed)
self.nnBuyVolumes = [-1] * self.n
self.nnSellVolumes = [-1] * self.n
self.nnBuyValues = [-1] * self.n
self.nnSellValues = [-1] * self.n
self.numpied = False
self.allPlots = []
self.intervals = []
self.totalLiquidity = []
def numpyItUp(self):
if self.numpied: return
self.numpied = True
a = [self.nnBuyVolumes, self.nnSellVolumes, self.nnBuyValues, self.nnSellValues,
self.hours, self.seconds, self.Xs, self.times]
for x in a:
x = np.array(x)
################################################################################
# Utilities - Misc #
################################################################################
def timeRange(self, start, end):
resStart, resEnd = -1, -1
for i in range(1, len(self.Xs)):
if self.Xs[i] > start:
resStart = i - 1
break
for i in range(len(self.Xs) - 1, 0, -1):
if self.Xs[i] < end:
resEnd = i + 1
break
return resStart, resEnd
def setInterval(self, STEP=60):
return
###############################################################################
# Computation #
###############################################################################
def _calculateNNVolumes_i(self, i):
time = self.times[i]
print(f"\r{i}: {time}", end="")
hose = self.hoseData[time]
buys, sells = [], []
try:
buys = mmap(lambda stock: hose[stock][C.NN_BUY], self.stocks)
sells = mmap(lambda stock: hose[stock][C.NN_SELL], self.stocks)
except:
self.errorDataPoints.append(time)
finally:
if len(buys) > 0 and len(sells) > 0:
self.nnBuyVolumes[i] = buys
self.nnSellVolumes[i] = sells
def calculateNNVolumes(self):
mmap(self._calculateNNVolumes_i, range(self.n))
def _calculateNNValues_i(self, i):
time = self.times[i]
hose = self.hoseData[time]
print(f"\r{i}: {time}", end="")
self.nnBuyValues[i] = (reduce(lambda a, b: a + b,
map(lambda stock: hose[stock][C.NN_BUY] * hose[stock][C.COL_AVG_PRICE], self.stocks)))
self.nnSellValues[i] = (reduce(lambda a, b: a + b,
map(lambda stock: hose[stock][C.NN_SELL] * hose[stock][C.COL_AVG_PRICE],
self.stocks)))
def calculateNNValues(self):
mmap(self._calculateNNValues_i, range(self.n))
def applyPricingConventions(self):
self.nnBuyValues = [x / 100000 for x in self.nnBuyValues]
self.nnSellValues = [x / 100000 for x in self.nnSellValues]
def calculateTradedValues(self):
def valAtSnapShot(time):
hose = self.hoseData[time]
stockTradedValue = lambda stock: hose[stock][C.COL_TOTAL_VOL]*hose[stock][C.COL_AVG_PRICE]
vals = mmap(stockTradedValue, self.stocks)
return reduce(lambda a, b: a + b, vals)
self.totalLiquidity = mmap(valAtSnapShot, self.times)
################################################################################
# Plotting #
################################################################################
def plot_Liquidity_Bar(self):
return
def initializePlot(self, file,p, ENVIRON=ENVIRON, title="HOSE"):
if ENVIRON == C.LOCAL:
output_file(file)
else:
output_notebook()
if p is None:
p = figure(plot_width=PC.WIDTH, plot_height=PC.HEIGHT, title=title)
self.allPlots.append(p)
return p
return p
def plot_BS_Pressure(self, p=None, file=FN.PLOT_BUY_SELL_PRESSURE_FILE):
p = self.initializePlot(file, p, ENVIRON=ENVIRON, title="Ap luc mua, apluc ban")
p.line(self.Xs, self.cleansed[C.CBUYP], line_width=2, color="green")
p.line(self.Xs, self.cleansed[C.CSELLP], line_width=2, color="red")
show(p)
def plot_NN_Liquidity_Bar(self, file="/home/sotola/foo.html", p=None):
def prep(seconds, vals, STEP=20, REVERSED=False): # Prepare Data
bins2 = []; x = [];bins, xs = intervalize(seconds, vals, STEP=STEP)
for i in range(len(bins)):
bins2.append(bins[i]); bins2.append(bins[i])
for i in range(len(xs)):
x.append(xs[i][0]); x.append(xs[i][1])
if REVERSED: return x, [bin * -1 for bin in bins2]
else: return x, bins2
p = self.initializePlot(file, p, ENVIRON=ENVIRON, title="Thanh khoan khoi nuoc ngoai")
xbuy, topbuy = prep(self.seconds, self.nnBuyValues)
p.vbar(x=xbuy, top=toDelta(topbuy), width=0.01, color="green")
xsell, topsell = prep(self.seconds, self.nnSellValues, REVERSED=True)
p.vbar(x=xsell, top=toDelta(topsell), width=0.01, color="red")
show(p)
def plot__Liquidity_Bar(self, file="/home/sotola/Hose-MarketLiquidity.html", p=None):
def prep(seconds, vals, STEP=20, REVERSED=False): # Prepare Data
bins2 = []; x = [];bins, xs = intervalize(seconds, vals, STEP=STEP)
for i in range(len(bins)):
bins2.append(bins[i]); bins2.append(bins[i])
for i in range(len(xs)):
x.append(xs[i][0]); x.append(xs[i][1])
if REVERSED: return x, [bin * -1 for bin in bins2]
else: return x, bins2
p = self.initializePlot(file, p, ENVIRON=ENVIRON, title="Thanh Khoan Thi Truong")
xbuy, topbuy = prep(self.seconds, self.totalLiquidity)
p.vbar(x=xbuy, top=toDelta(topbuy), width=0.01, color="green")
show(p)
def plot_NN_Accumulated_Values(self, p=None, file=FN.PLOT_NN_VALUES_FILE):
p = self.initializePlot(file, p, ENVIRON=ENVIRON, title="Tong Thanh Khoan (NN)")
p.line(self.Xs, np.array(self.nnBuyValues ) / 100000, line_width=2, color="green")
p.line(self.Xs, np.array(self.nnSellValues) / 100000, line_width=2, color="red")
show(p)
def plot_NN_Velocity_Values(self, p=None, start=None, end=None, file=FN.PLOT_NN_VELOCITY_FILE):
p = self.initializePlot(file, p, ENVIRON=ENVIRON)
if not(start is None):
start_i, end_i = self.timeRange(start, end)
else:
start_i = 0; end_i = -1
buys = [x / 100000 for x in toDelta(self.nnBuyValues)[start_i:end_i]]
sells = [x / 100000 for x in toDelta(self.nnSellValues)[start_i:end_i]]
diffs = [buys[i] - sells[i] for i in range(len(sells))][start_i:end_i]
p.line(self.Xs[start_i:end_i], buys, line_width=2, color="green")
p.line(self.Xs[start_i:end_i], sells, line_width=2, color="red")
show(p)
| [
1,
529,
276,
1112,
420,
29958,
700,
549,
865,
8631,
264,
1193,
29896,
29896,
29914,
1272,
29899,
276,
1997,
603,
13,
3166,
2090,
312,
8789,
1053,
10032,
13,
3166,
1045,
446,
29882,
29889,
5317,
1259,
1053,
4377,
29892,
1962,
29918,
1445,
29892,
1510,
13,
3166,
1045,
446,
29882,
29889,
601,
1053,
1962,
29918,
1333,
19273,
13,
3166,
8707,
1254,
2190,
9375,
1053,
334,
13,
3166,
3667,
1907,
1053,
334,
13,
3166,
1045,
446,
29882,
29889,
5317,
1259,
1053,
4377,
29892,
1962,
29918,
1445,
29892,
1510,
13,
5215,
11701,
408,
10518,
29892,
12655,
408,
7442,
13,
13,
25838,
8193,
1164,
353,
315,
29889,
16652,
1964,
13,
13,
1753,
286,
1958,
10456,
5085,
1125,
13,
1678,
736,
1051,
29898,
1958,
10456,
5085,
876,
13,
13,
1990,
438,
29901,
13,
1678,
835,
13383,
13383,
13383,
13383,
7346,
4136,
29937,
13,
1678,
396,
462,
462,
1678,
10886,
462,
462,
418,
396,
13,
1678,
835,
13383,
13383,
13383,
13383,
7346,
4136,
29937,
13,
1678,
822,
4770,
2344,
12035,
1311,
29892,
4531,
550,
287,
29892,
4489,
29922,
8516,
1125,
13,
4706,
1583,
29889,
2841,
550,
287,
353,
4531,
550,
287,
13,
4706,
1583,
29889,
29876,
353,
7431,
29898,
2841,
550,
287,
29961,
29907,
29889,
1783,
8890,
2314,
13,
4706,
1583,
29889,
29882,
852,
1469,
353,
426,
2841,
550,
287,
29961,
29907,
29889,
1783,
8890,
3816,
29875,
5387,
4531,
550,
287,
29961,
29907,
29889,
3210,
29949,
1660,
3816,
29875,
29962,
363,
474,
297,
3464,
29898,
2435,
29898,
2841,
550,
287,
29961,
29907,
29889,
1783,
8890,
12622,
29913,
13,
4706,
1583,
29889,
29882,
852,
16401,
353,
4531,
550,
287,
29961,
29907,
29889,
3210,
29949,
1660,
29962,
13,
4706,
1583,
29889,
17712,
29879,
353,
12705,
29898,
1761,
29898,
2841,
550,
287,
29961,
29907,
29889,
3210,
29949,
1660,
3816,
29900,
1822,
8149,
22130,
13,
4706,
1583,
29889,
3706,
353,
4531,
550,
287,
29961,
29907,
29889,
1783,
8890,
29962,
13,
4706,
1583,
29889,
2704,
1469,
20325,
353,
5159,
13,
13,
4706,
1583,
29889,
29882,
2470,
353,
286,
1958,
29898,
8058,
675,
2481,
29892,
1583,
29889,
3706,
29897,
13,
4706,
1583,
29889,
23128,
353,
286,
1958,
29898,
517,
27535,
29892,
1583,
29889,
3706,
29897,
13,
4706,
1583,
29889,
29990,
29879,
353,
286,
1958,
29898,
8058,
675,
2481,
29892,
1583,
29889,
3706,
29897,
13,
4706,
1583,
29889,
29886,
353,
4377,
29898,
5317,
29918,
2103,
29922,
29896,
29946,
29900,
29900,
29892,
6492,
29918,
3545,
29922,
29946,
29900,
29900,
29897,
13,
4706,
1583,
29889,
2176,
353,
10518,
29889,
17271,
29889,
3166,
29918,
8977,
29898,
1311,
29889,
2841,
550,
287,
29897,
13,
13,
4706,
1583,
29889,
15755,
3727,
29891,
13072,
9351,
353,
21069,
29896,
29962,
334,
1583,
29889,
29876,
13,
4706,
1583,
29889,
15755,
29903,
514,
13072,
9351,
353,
21069,
29896,
29962,
334,
1583,
29889,
29876,
13,
4706,
1583,
29889,
15755,
3727,
29891,
9065,
353,
21069,
29896,
29962,
334,
1583,
29889,
29876,
13,
4706,
1583,
29889,
15755,
29903,
514,
9065,
353,
21069,
29896,
29962,
334,
1583,
29889,
29876,
13,
13,
4706,
1583,
29889,
1949,
29886,
1000,
353,
7700,
13,
4706,
1583,
29889,
497,
3247,
1862,
353,
5159,
13,
4706,
1583,
29889,
19207,
29879,
353,
5159,
13,
4706,
1583,
29889,
7827,
29931,
8105,
333,
537,
353,
5159,
13,
13,
1678,
822,
12655,
3112,
3373,
29898,
1311,
1125,
13,
4706,
565,
1583,
29889,
1949,
29886,
1000,
29901,
736,
13,
4706,
1583,
29889,
1949,
29886,
1000,
353,
5852,
13,
4706,
263,
353,
518,
1311,
29889,
15755,
3727,
29891,
13072,
9351,
29892,
1583,
29889,
15755,
29903,
514,
13072,
9351,
29892,
29871,
1583,
29889,
15755,
3727,
29891,
9065,
29892,
1583,
29889,
15755,
29903,
514,
9065,
29892,
13,
632,
1583,
29889,
29882,
2470,
29892,
1583,
29889,
23128,
29892,
1583,
29889,
29990,
29879,
29892,
1583,
29889,
3706,
29962,
13,
4706,
363,
921,
297,
263,
29901,
13,
9651,
921,
353,
7442,
29889,
2378,
29898,
29916,
29897,
13,
13,
13,
1678,
835,
13383,
13383,
13383,
13383,
7346,
4136,
29937,
13,
1678,
396,
462,
1669,
22310,
1907,
448,
341,
10669,
462,
1669,
396,
13,
1678,
835,
13383,
13383,
13383,
13383,
7346,
4136,
29937,
13,
13,
1678,
822,
931,
6069,
29898,
1311,
29892,
1369,
29892,
1095,
1125,
13,
4706,
620,
4763,
29892,
620,
5044,
353,
448,
29896,
29892,
448,
29896,
13,
4706,
363,
474,
297,
3464,
29898,
29896,
29892,
7431,
29898,
1311,
29889,
29990,
29879,
22164,
13,
9651,
565,
1583,
29889,
29990,
29879,
29961,
29875,
29962,
1405,
1369,
29901,
13,
18884,
620,
4763,
353,
474,
448,
29871,
29896,
13,
18884,
2867,
13,
4706,
363,
474,
297,
3464,
29898,
2435,
29898,
1311,
29889,
29990,
29879,
29897,
448,
29871,
29896,
29892,
29871,
29900,
29892,
448,
29896,
1125,
13,
9651,
565,
1583,
29889,
29990,
29879,
29961,
29875,
29962,
529,
1095,
29901,
13,
18884,
620,
5044,
353,
474,
718,
29871,
29896,
13,
18884,
2867,
13,
4706,
736,
620,
4763,
29892,
620,
5044,
13,
13,
1678,
822,
731,
12506,
29898,
1311,
29892,
317,
4330,
29925,
29922,
29953,
29900,
1125,
13,
4706,
736,
13,
13,
13,
1678,
835,
13383,
13383,
13383,
13383,
7346,
4136,
13,
1678,
396,
462,
462,
29871,
11796,
362,
462,
18884,
396,
13,
1678,
835,
13383,
13383,
13383,
13383,
7346,
4136,
13,
13,
1678,
822,
903,
15807,
403,
10262,
13072,
9351,
29918,
29875,
29898,
1311,
29892,
474,
1125,
13,
4706,
931,
353,
1583,
29889,
3706,
29961,
29875,
29962,
13,
4706,
1596,
29898,
29888,
26732,
29878,
29912,
29875,
6177,
426,
2230,
17671,
1095,
543,
1159,
13,
4706,
298,
852,
353,
1583,
29889,
29882,
852,
1469,
29961,
2230,
29962,
13,
4706,
1321,
952,
29892,
269,
10071,
353,
19997,
5159,
13,
4706,
1018,
29901,
13,
9651,
1321,
952,
353,
286,
1958,
29898,
2892,
10961,
29901,
298,
852,
29961,
17712,
3816,
29907,
29889,
10262,
29918,
7838,
29979,
1402,
1583,
29889,
17712,
29879,
29897,
13,
9651,
269,
10071,
353,
286,
1958,
29898,
2892,
10961,
29901,
298,
852,
29961,
17712,
3816,
29907,
29889,
10262,
29918,
1660,
2208,
1402,
1583,
29889,
17712,
29879,
29897,
13,
4706,
5174,
29901,
13,
9651,
1583,
29889,
2704,
1469,
20325,
29889,
4397,
29898,
2230,
29897,
13,
4706,
7146,
29901,
13,
9651,
565,
7431,
29898,
2423,
952,
29897,
1405,
29871,
29900,
322,
7431,
29898,
29879,
10071,
29897,
1405,
29871,
29900,
29901,
13,
18884,
1583,
29889,
15755,
3727,
29891,
13072,
9351,
29961,
29875,
29962,
353,
1321,
952,
13,
18884,
1583,
29889,
15755,
29903,
514,
13072,
9351,
29961,
29875,
29962,
353,
269,
10071,
13,
13,
1678,
822,
8147,
10262,
13072,
9351,
29898,
1311,
1125,
13,
4706,
286,
1958,
29898,
1311,
3032,
15807,
403,
10262,
13072,
9351,
29918,
29875,
29892,
3464,
29898,
1311,
29889,
29876,
876,
13,
13,
13,
1678,
822,
903,
15807,
403,
10262,
9065,
29918,
29875,
29898,
1311,
29892,
474,
1125,
13,
4706,
931,
353,
1583,
29889,
3706,
29961,
29875,
29962,
13,
4706,
298,
852,
353,
1583,
29889,
29882,
852,
1469,
29961,
2230,
29962,
13,
4706,
1596,
29898,
29888,
26732,
29878,
29912,
29875,
6177,
426,
2230,
17671,
1095,
543,
1159,
13,
4706,
1583,
29889,
15755,
3727,
29891,
9065,
29961,
29875,
29962,
353,
313,
17469,
29898,
2892,
263,
29892,
289,
29901,
263,
718,
289,
29892,
13,
462,
462,
418,
2910,
29898,
2892,
10961,
29901,
298,
852,
29961,
17712,
3816,
29907,
29889,
10262,
29918,
7838,
29979,
29962,
334,
298,
852,
29961,
17712,
3816,
29907,
29889,
15032,
29918,
7520,
29954,
29918,
10593,
12107,
1402,
1583,
29889,
17712,
29879,
4961,
13,
4706,
1583,
29889,
15755,
29903,
514,
9065,
29961,
29875,
29962,
353,
313,
17469,
29898,
2892,
263,
29892,
289,
29901,
263,
718,
289,
29892,
13,
462,
462,
539,
2910,
29898,
2892,
10961,
29901,
298,
852,
29961,
17712,
3816,
29907,
29889,
10262,
29918,
1660,
2208,
29962,
334,
298,
852,
29961,
17712,
3816,
29907,
29889,
15032,
29918,
7520,
29954,
29918,
10593,
12107,
1402,
13,
462,
462,
965,
1583,
29889,
17712,
29879,
4961,
13,
13,
1678,
822,
8147,
10262,
9065,
29898,
1311,
1125,
13,
4706,
286,
1958,
29898,
1311,
3032,
15807,
403,
10262,
9065,
29918,
29875,
29892,
3464,
29898,
1311,
29889,
29876,
876,
13,
13,
1678,
822,
3394,
29925,
2200,
292,
1168,
794,
1080,
29898,
1311,
1125,
13,
4706,
1583,
29889,
15755,
3727,
29891,
9065,
353,
518,
29916,
847,
29871,
29896,
29900,
29900,
29900,
29900,
29900,
363,
921,
297,
1583,
29889,
15755,
3727,
29891,
9065,
29962,
13,
4706,
1583,
29889,
15755,
29903,
514,
9065,
353,
518,
29916,
847,
29871,
29896,
29900,
29900,
29900,
29900,
29900,
363,
921,
297,
1583,
29889,
15755,
29903,
514,
9065,
29962,
13,
13,
1678,
822,
8147,
2308,
11932,
9065,
29898,
1311,
1125,
13,
4706,
822,
659,
4178,
29903,
8971,
2713,
327,
29898,
2230,
1125,
13,
9651,
298,
852,
353,
1583,
29889,
29882,
852,
1469,
29961,
2230,
29962,
13,
9651,
10961,
2308,
11932,
1917,
353,
14013,
10961,
29901,
298,
852,
29961,
17712,
3816,
29907,
29889,
15032,
29918,
29911,
2891,
1964,
29918,
29963,
5607,
14178,
29882,
852,
29961,
17712,
3816,
29907,
29889,
15032,
29918,
7520,
29954,
29918,
10593,
12107,
29962,
13,
9651,
659,
29879,
353,
286,
1958,
29898,
17712,
2308,
11932,
1917,
29892,
1583,
29889,
17712,
29879,
29897,
13,
9651,
736,
10032,
29898,
2892,
263,
29892,
289,
29901,
263,
718,
289,
29892,
659,
29879,
29897,
13,
4706,
1583,
29889,
7827,
29931,
8105,
333,
537,
353,
286,
1958,
29898,
791,
4178,
29903,
8971,
2713,
327,
29892,
1583,
29889,
3706,
29897,
13,
13,
13,
1678,
835,
13383,
13383,
13383,
13383,
7346,
4136,
29937,
13,
1678,
396,
462,
462,
418,
18399,
1259,
462,
18884,
396,
13,
1678,
835,
13383,
13383,
13383,
13383,
7346,
4136,
29937,
13,
13,
1678,
822,
6492,
29918,
29931,
8105,
333,
537,
29918,
4297,
29898,
1311,
1125,
13,
4706,
736,
13,
13,
1678,
822,
11905,
20867,
29898,
1311,
29892,
934,
29892,
29886,
29892,
12524,
29963,
8193,
1164,
29922,
25838,
8193,
1164,
29892,
3611,
543,
8187,
1660,
29908,
1125,
13,
4706,
565,
12524,
29963,
8193,
1164,
1275,
315,
29889,
16652,
1964,
29901,
13,
9651,
1962,
29918,
1445,
29898,
1445,
29897,
13,
4706,
1683,
29901,
13,
9651,
1962,
29918,
1333,
19273,
580,
13,
4706,
565,
282,
338,
6213,
29901,
13,
9651,
282,
353,
4377,
29898,
5317,
29918,
2103,
29922,
9026,
29889,
22574,
29892,
6492,
29918,
3545,
29922,
9026,
29889,
9606,
22530,
29892,
3611,
29922,
3257,
29897,
13,
9651,
1583,
29889,
497,
3247,
1862,
29889,
4397,
29898,
29886,
29897,
13,
9651,
736,
282,
13,
4706,
736,
282,
13,
13,
13,
1678,
822,
6492,
29918,
9851,
29918,
10923,
545,
29898,
1311,
29892,
282,
29922,
8516,
29892,
934,
29922,
29943,
29940,
29889,
7390,
2891,
29918,
7838,
29979,
29918,
1660,
2208,
29918,
15094,
1799,
11499,
29918,
7724,
1125,
13,
4706,
282,
353,
1583,
29889,
24926,
20867,
29898,
1445,
29892,
282,
29892,
12524,
29963,
8193,
1164,
29922,
25838,
8193,
1164,
29892,
3611,
543,
17396,
21626,
286,
3357,
29892,
263,
572,
1682,
9892,
1159,
13,
4706,
282,
29889,
1220,
29898,
1311,
29889,
29990,
29879,
29892,
1583,
29889,
2841,
550,
287,
29961,
29907,
29889,
29907,
7838,
29979,
29925,
1402,
1196,
29918,
2103,
29922,
29906,
29892,
2927,
543,
12692,
1159,
13,
4706,
282,
29889,
1220,
29898,
1311,
29889,
29990,
29879,
29892,
1583,
29889,
2841,
550,
287,
29961,
29907,
29889,
29907,
1660,
2208,
29925,
1402,
1196,
29918,
2103,
29922,
29906,
29892,
2927,
543,
1127,
1159,
13,
4706,
1510,
29898,
29886,
29897,
13,
13,
13,
1678,
822,
6492,
29918,
10262,
29918,
29931,
8105,
333,
537,
29918,
4297,
29898,
1311,
29892,
934,
13802,
5184,
29914,
29879,
327,
2963,
29914,
5431,
29889,
1420,
613,
282,
29922,
8516,
1125,
13,
4706,
822,
8273,
29898,
23128,
29892,
659,
29879,
29892,
317,
4330,
29925,
29922,
29906,
29900,
29892,
5195,
5348,
1660,
29928,
29922,
8824,
1125,
396,
349,
3445,
598,
3630,
13,
9651,
289,
1144,
29906,
353,
13769,
921,
353,
13769,
29890,
1144,
29892,
14492,
353,
7292,
675,
29898,
23128,
29892,
659,
29879,
29892,
317,
4330,
29925,
29922,
1254,
15488,
29897,
13,
9651,
363,
474,
297,
3464,
29898,
2435,
29898,
29890,
1144,
22164,
13,
18884,
289,
1144,
29906,
29889,
4397,
29898,
29890,
1144,
29961,
29875,
5691,
289,
1144,
29906,
29889,
4397,
29898,
29890,
1144,
29961,
29875,
2314,
13,
9651,
363,
474,
297,
3464,
29898,
2435,
29898,
10351,
22164,
13,
18884,
921,
29889,
4397,
29898,
10351,
29961,
29875,
3816,
29900,
5691,
921,
29889,
4397,
29898,
10351,
29961,
29875,
3816,
29896,
2314,
13,
9651,
565,
5195,
5348,
1660,
29928,
29901,
736,
921,
29892,
518,
2109,
334,
448,
29896,
363,
9016,
297,
289,
1144,
29906,
29962,
13,
9651,
1683,
29901,
736,
921,
29892,
289,
1144,
29906,
13,
13,
4706,
282,
353,
1583,
29889,
24926,
20867,
29898,
1445,
29892,
282,
29892,
12524,
29963,
8193,
1164,
29922,
25838,
8193,
1164,
29892,
3611,
543,
1349,
27731,
413,
1251,
273,
413,
1251,
29875,
4948,
542,
302,
1484,
1794,
1159,
13,
4706,
921,
2423,
29891,
29892,
2246,
2423,
29891,
353,
8273,
29898,
1311,
29889,
23128,
29892,
1583,
29889,
15755,
3727,
29891,
9065,
29897,
13,
4706,
282,
29889,
29894,
1646,
29898,
29916,
29922,
29916,
2423,
29891,
29892,
2246,
29922,
517,
5268,
29898,
3332,
2423,
29891,
511,
2920,
29922,
29900,
29889,
29900,
29896,
29892,
2927,
543,
12692,
1159,
13,
4706,
14492,
514,
29892,
304,
567,
514,
353,
8273,
29898,
1311,
29889,
23128,
29892,
1583,
29889,
15755,
29903,
514,
9065,
29892,
5195,
5348,
1660,
29928,
29922,
5574,
29897,
13,
4706,
282,
29889,
29894,
1646,
29898,
29916,
29922,
10351,
514,
29892,
2246,
29922,
517,
5268,
29898,
3332,
29879,
514,
511,
2920,
29922,
29900,
29889,
29900,
29896,
29892,
2927,
543,
1127,
1159,
13,
4706,
1510,
29898,
29886,
29897,
13,
13,
1678,
822,
6492,
1649,
29931,
8105,
333,
537,
29918,
4297,
29898,
1311,
29892,
934,
13802,
5184,
29914,
29879,
327,
2963,
29914,
29950,
852,
29899,
9802,
300,
29931,
8105,
333,
537,
29889,
1420,
613,
282,
29922,
8516,
1125,
13,
4706,
822,
8273,
29898,
23128,
29892,
659,
29879,
29892,
317,
4330,
29925,
29922,
29906,
29900,
29892,
5195,
5348,
1660,
29928,
29922,
8824,
1125,
396,
349,
3445,
598,
3630,
13,
9651,
289,
1144,
29906,
353,
13769,
921,
353,
13769,
29890,
1144,
29892,
14492,
353,
7292,
675,
29898,
23128,
29892,
659,
29879,
29892,
317,
4330,
29925,
29922,
1254,
15488,
29897,
13,
9651,
363,
474,
297,
3464,
29898,
2435,
29898,
29890,
1144,
22164,
13,
18884,
289,
1144,
29906,
29889,
4397,
29898,
29890,
1144,
29961,
29875,
5691,
289,
1144,
29906,
29889,
4397,
29898,
29890,
1144,
29961,
29875,
2314,
13,
9651,
363,
474,
297,
3464,
29898,
2435,
29898,
10351,
22164,
13,
18884,
921,
29889,
4397,
29898,
10351,
29961,
29875,
3816,
29900,
5691,
921,
29889,
4397,
29898,
10351,
29961,
29875,
3816,
29896,
2314,
13,
9651,
565,
5195,
5348,
1660,
29928,
29901,
736,
921,
29892,
518,
2109,
334,
448,
29896,
363,
9016,
297,
289,
1144,
29906,
29962,
13,
9651,
1683,
29901,
736,
921,
29892,
289,
1144,
29906,
13,
13,
4706,
282,
353,
1583,
29889,
24926,
20867,
29898,
1445,
29892,
282,
29892,
12524,
29963,
8193,
1164,
29922,
25838,
8193,
1164,
29892,
3611,
543,
1349,
27731,
476,
1251,
273,
498,
29875,
17238,
549,
1159,
13,
4706,
921,
2423,
29891,
29892,
2246,
2423,
29891,
353,
8273,
29898,
1311,
29889,
23128,
29892,
1583,
29889,
7827,
29931,
8105,
333,
537,
29897,
13,
4706,
282,
29889,
29894,
1646,
29898,
29916,
29922,
29916,
2423,
29891,
29892,
2246,
29922,
517,
5268,
29898,
3332,
2423,
29891,
511,
2920,
29922,
29900,
29889,
29900,
29896,
29892,
2927,
543,
12692,
1159,
13,
4706,
1510,
29898,
29886,
29897,
13,
13,
13,
1678,
822,
6492,
29918,
10262,
29918,
7504,
398,
7964,
29918,
9065,
29898,
1311,
29892,
282,
29922,
8516,
29892,
934,
29922,
29943,
29940,
29889,
7390,
2891,
29918,
10262,
29918,
8932,
12996,
29918,
7724,
1125,
13,
4706,
282,
353,
1583,
29889,
24926,
20867,
29898,
1445,
29892,
282,
29892,
12524,
29963,
8193,
1164,
29922,
25838,
8193,
1164,
29892,
3611,
543,
29911,
549,
498,
27731,
476,
1251,
273,
313,
10262,
25760,
13,
4706,
282,
29889,
1220,
29898,
1311,
29889,
29990,
29879,
29892,
7442,
29889,
2378,
29898,
1311,
29889,
15755,
3727,
29891,
9065,
1723,
847,
29871,
29896,
29900,
29900,
29900,
29900,
29900,
29892,
1196,
29918,
2103,
29922,
29906,
29892,
2927,
543,
12692,
1159,
13,
4706,
282,
29889,
1220,
29898,
1311,
29889,
29990,
29879,
29892,
7442,
29889,
2378,
29898,
1311,
29889,
15755,
29903,
514,
9065,
29897,
847,
29871,
29896,
29900,
29900,
29900,
29900,
29900,
29892,
1196,
29918,
2103,
29922,
29906,
29892,
2927,
543,
1127,
1159,
13,
4706,
1510,
29898,
29886,
29897,
13,
13,
1678,
822,
6492,
29918,
10262,
29918,
29963,
295,
25245,
29918,
9065,
29898,
1311,
29892,
282,
29922,
8516,
29892,
1369,
29922,
8516,
29892,
1095,
29922,
8516,
29892,
934,
29922,
29943,
29940,
29889,
7390,
2891,
29918,
10262,
29918,
12064,
16652,
11937,
29918,
7724,
1125,
13,
4706,
282,
353,
1583,
29889,
24926,
20867,
29898,
1445,
29892,
282,
29892,
12524,
29963,
8193,
1164,
29922,
25838,
8193,
1164,
29897,
13,
4706,
565,
451,
29898,
2962,
338,
6213,
1125,
13,
9651,
1369,
29918,
29875,
29892,
1095,
29918,
29875,
353,
1583,
29889,
2230,
6069,
29898,
2962,
29892,
1095,
29897,
13,
4706,
1683,
29901,
13,
9651,
1369,
29918,
29875,
353,
29871,
29900,
29936,
1095,
29918,
29875,
353,
448,
29896,
13,
13,
4706,
1321,
952,
353,
518,
29916,
847,
29871,
29896,
29900,
29900,
29900,
29900,
29900,
363,
921,
297,
304,
5268,
29898,
1311,
29889,
15755,
3727,
29891,
9065,
9601,
2962,
29918,
29875,
29901,
355,
29918,
29875,
5262,
13,
4706,
269,
10071,
353,
518,
29916,
847,
29871,
29896,
29900,
29900,
29900,
29900,
29900,
363,
921,
297,
304,
5268,
29898,
1311,
29889,
15755,
29903,
514,
9065,
9601,
2962,
29918,
29875,
29901,
355,
29918,
29875,
5262,
13,
4706,
2923,
29879,
353,
518,
2423,
952,
29961,
29875,
29962,
448,
269,
10071,
29961,
29875,
29962,
363,
474,
297,
3464,
29898,
2435,
29898,
29879,
10071,
876,
3816,
2962,
29918,
29875,
29901,
355,
29918,
29875,
29962,
13,
4706,
282,
29889,
1220,
29898,
1311,
29889,
29990,
29879,
29961,
2962,
29918,
29875,
29901,
355,
29918,
29875,
1402,
1321,
952,
29892,
1196,
29918,
2103,
29922,
29906,
29892,
2927,
543,
12692,
1159,
13,
4706,
282,
29889,
1220,
29898,
1311,
29889,
29990,
29879,
29961,
2962,
29918,
29875,
29901,
355,
29918,
29875,
1402,
269,
10071,
29892,
1196,
29918,
2103,
29922,
29906,
29892,
2927,
543,
1127,
1159,
13,
4706,
1510,
29898,
29886,
29897,
13,
13,
13,
13,
13,
2
] |
stats/management/commands/cachewarmup.py | OlexandrTopuzov/Data_converter | 0 | 1614950 | <filename>stats/management/commands/cachewarmup.py
from django.core.management.base import BaseCommand
from stats.tasks import cache_warm_up
class Command(BaseCommand):
help = 'Cache warming up for stats for now.'
def handle(self, *args, **options):
cache_warm_up()
| [
1,
529,
9507,
29958,
16202,
29914,
21895,
29914,
26381,
29914,
29883,
496,
809,
2817,
786,
29889,
2272,
13,
3166,
9557,
29889,
3221,
29889,
21895,
29889,
3188,
1053,
7399,
6255,
13,
3166,
22663,
29889,
20673,
1053,
7090,
29918,
29893,
2817,
29918,
786,
13,
13,
13,
1990,
10516,
29898,
5160,
6255,
1125,
13,
1678,
1371,
353,
525,
10408,
1370,
4056,
701,
363,
22663,
363,
1286,
6169,
13,
13,
1678,
822,
4386,
29898,
1311,
29892,
334,
5085,
29892,
3579,
6768,
1125,
13,
4706,
7090,
29918,
29893,
2817,
29918,
786,
580,
13,
2
] |
tests/integration/test_map_failure.py | elin1231/htmap | 21 | 52556 | # Copyright 2018 HTCondor Team, Computer Sciences Department,
# University of Wisconsin-Madison, WI.
#
# 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 pytest
from htmap import mapping
def test_exception_inside_submit_removes_map_dir(mocker, doubler):
class Marker(Exception):
pass
def bad_execute_submit(*args, **kwargs):
raise Marker()
mocker.patch("htmap.mapping.execute_submit", bad_execute_submit)
with pytest.raises(Marker):
mapping.map(doubler, range(10))
assert len(list(mapping.maps_dir_path().iterdir())) == 0
| [
1,
396,
14187,
1266,
29871,
29906,
29900,
29896,
29947,
3154,
10983,
272,
8583,
29892,
20972,
17253,
10317,
29892,
13,
29937,
3014,
310,
22581,
29899,
21878,
2285,
29892,
399,
29902,
29889,
13,
29937,
13,
29937,
10413,
21144,
1090,
278,
13380,
19245,
29892,
10079,
29871,
29906,
29889,
29900,
313,
1552,
376,
29931,
293,
1947,
1496,
13,
29937,
366,
1122,
451,
671,
445,
934,
5174,
297,
752,
13036,
411,
278,
19245,
29889,
13,
29937,
887,
1122,
4017,
263,
3509,
310,
278,
19245,
472,
13,
29937,
13,
29937,
1678,
1732,
597,
1636,
29889,
4288,
29889,
990,
29914,
506,
11259,
29914,
27888,
1430,
1660,
29899,
29906,
29889,
29900,
13,
29937,
13,
29937,
25870,
3734,
491,
22903,
4307,
470,
15502,
304,
297,
5007,
29892,
7047,
13,
29937,
13235,
1090,
278,
19245,
338,
13235,
373,
385,
376,
3289,
8519,
29908,
350,
3289,
3235,
29892,
13,
29937,
399,
1806,
8187,
2692,
399,
1718,
29934,
13566,
29059,
6323,
8707,
29928,
22122,
29903,
8079,
13764,
29979,
476,
22255,
29892,
2845,
4653,
470,
2411,
2957,
29889,
13,
29937,
2823,
278,
19245,
363,
278,
2702,
4086,
14765,
1076,
11239,
322,
13,
29937,
27028,
1090,
278,
19245,
29889,
13,
13,
5215,
11451,
1688,
13,
13,
3166,
298,
29873,
1958,
1053,
10417,
13,
13,
13,
1753,
1243,
29918,
11739,
29918,
26102,
29918,
7892,
29918,
1745,
586,
267,
29918,
1958,
29918,
3972,
29898,
29885,
8658,
29892,
27455,
1358,
1125,
13,
1678,
770,
4485,
261,
29898,
2451,
1125,
13,
4706,
1209,
13,
13,
1678,
822,
4319,
29918,
7978,
29918,
7892,
10456,
5085,
29892,
3579,
19290,
1125,
13,
4706,
12020,
4485,
261,
580,
13,
13,
1678,
286,
8658,
29889,
5041,
703,
400,
1958,
29889,
20698,
29889,
7978,
29918,
7892,
613,
4319,
29918,
7978,
29918,
7892,
29897,
13,
13,
1678,
411,
11451,
1688,
29889,
336,
4637,
29898,
24619,
1125,
13,
4706,
10417,
29889,
1958,
29898,
29881,
283,
29890,
1358,
29892,
3464,
29898,
29896,
29900,
876,
13,
13,
1678,
4974,
7431,
29898,
1761,
29898,
20698,
29889,
10339,
29918,
3972,
29918,
2084,
2141,
1524,
3972,
22130,
1275,
29871,
29900,
13,
2
] |
multi_agent.py | liuruoze/HierNet-SC2 | 2 | 190654 | # Copyright 2017 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS-IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""A random agent for starcraft."""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
import numpy as np
import tensorflow as tf
from pysc2.agents import base_agent
from pysc2.lib import actions as sc2_actions
import lib.utils as U
from new_network import HierNetwork
from lib import config as C
from lib import transform_pos as T
from lib import human_expert_statis as HES
from lib import option as M
from lib import environment
from lib import my_sc2_env as sc2_env
from lib.replay_buffer import Buffer, Cnn_Buffer
from logging import warning as logging
import param as P
class MultiAgent(base_agent.BaseAgent):
"""My first agent for starcraft."""
def __init__(self, index=0, rl_training=False, restore_model=False, global_buffer=None, net=None):
super(MultiAgent, self).__init__()
self.net = net
self.index = index
self.global_buffer = global_buffer
self.restore_model = restore_model
# count num
self.step = 0
self.controller_wait_secs = 8
self.base_wait_secs = 1
self.battle_wait_secs = 1
self.controller_flag = False
self.base_flag = True
self.battle_flag = True
self.env = None
self.obs = None
self.use_fight = False
self.restore_fight = False
# buffer
self.controller_buffer = Buffer()
self.base_buffer = Buffer()
self.tech_buffer = Buffer()
self.pop_buffer = Buffer()
self.battle_buffer = Buffer()
self.fight_buffer = Cnn_Buffer()
self.fight_temp = None
self.num_players = 2
self.on_select = None
self._result = None
self.is_end = False
self.rl_training = rl_training
self.update_counter = 0
self.use_triple_reward = False
self.use_only_result_reward = True
self.use_battle_net = True
self.use_trick_1 = False
self.use_trick_2 = False
self.use_trick_3 = False
def reset(self):
super(MultiAgent, self).reset()
self.step = 0
self.obs = None
self._result = None
self.is_end = False
self.controller_flag = False
self.base_flag = True
self.battle_flag = True
self.controller_buffer.reset()
self.base_buffer.reset()
self.tech_buffer.reset()
self.pop_buffer.reset()
self.battle_buffer.reset()
self.fight_buffer.reset()
self.fight_temp = None
def set_env(self, env):
self.env = env
def init_network(self):
self.net.initialize()
if self.restore_model:
self.net.restore_controller()
self.net.restore_base()
self.net.restore_tech()
self.net.restore_pop()
self.net.restore_battle()
if self.restore_fight:
self.net.restore_fight()
def reset_old_network(self):
self.net.reset_old_network()
def save_model(self):
self.net.save_controller()
self.net.save_base()
self.net.save_tech()
self.net.save_pop()
self.net.save_battle()
if self.use_fight:
self.net.save_fight()
def update_network(self, result_list):
self.update_counter += 1
if self.use_trick_1:
pass
if P.use_alternative_update:
logging('use_alternative_update, update_counter: %d', int(self.update_counter))
if self.update_counter % 20 < 10:
logging('only update controller')
self.net.Update_controller(self.global_buffer.controller_buffer)
else:
logging('update all')
self.net.Update_controller(self.global_buffer.controller_buffer)
self.net.Update_base_net(self.global_buffer.base_buffer)
self.net.Update_tech_net(self.global_buffer.tech_buffer)
self.net.Update_pop_net(self.global_buffer.pop_buffer)
self.net.Update_battle_net(self.global_buffer.battle_buffer)
if self.use_fight:
self.net.Update_fight(self.global_buffer.fight_buffer)
else:
self.net.Update_controller(self.global_buffer.controller_buffer)
self.net.Update_base_net(self.global_buffer.base_buffer)
self.net.Update_tech_net(self.global_buffer.tech_buffer)
self.net.Update_pop_net(self.global_buffer.pop_buffer)
self.net.Update_battle_net(self.global_buffer.battle_buffer)
if self.use_fight:
self.net.Update_fight(self.global_buffer.fight_buffer)
self.net.Update_result(result_list)
def update_summary(self, counter):
return self.net.Update_summary(counter)
def get_controller_input(self):
controller_input, _, _ = U.get_input(self.obs)
return controller_input
def get_base_input(self):
high_input, tech_cost, pop_num = U.get_input(self.obs)
base_input = np.concatenate([high_input, tech_cost, pop_num], axis=0)
return base_input
def get_tech_input(self):
high_input, tech_cost, _ = U.get_input(self.obs)
tech_obs = np.concatenate([high_input, tech_cost], axis=0)
return tech_obs
def get_pop_input(self):
high_input, _, pop_num = U.get_input(self.obs)
pop_obs = np.concatenate([high_input, pop_num], axis=0)
return pop_obs
def get_battle_input(self):
high_input, tech_cost, pop_num = U.get_input(self.obs)
battle_input = np.concatenate([high_input, tech_cost, pop_num], axis=0)
return battle_input
def tech_step(self, tech_action):
# to execute a tech_action
# [pylon, gas1, gas2, gateway, cyber]
if tech_action == 0: # pylon
no_unit_index = U.get_unit_mask_screen(self.obs, size=2)
pos = U.get_pos(no_unit_index)
M.build_by_idle_worker(self, C._BUILD_PYLON_S, pos)
elif tech_action == 1 and not U.find_gas(self.obs, 1): # gas_1
gas_1 = U.find_gas_pos(self.obs, 1)
gas_1_pos = T.world_to_screen_pos(self.env.game_info, gas_1.pos, self.obs)
M.build_by_idle_worker(self, C._BUILD_ASSIMILATOR_S, gas_1_pos)
elif tech_action == 1 and not U.find_gas(self.obs, 2): # gas_2
gas_2 = U.find_gas_pos(self.obs, 2)
gas_2_pos = T.world_to_screen_pos(self.env.game_info, gas_2.pos, self.obs)
M.build_by_idle_worker(self, C._BUILD_ASSIMILATOR_S, gas_2_pos)
elif tech_action == 2: # gateway
power_index = U.get_power_mask_screen(self.obs, size=5)
pos = U.get_pos(power_index)
M.build_by_idle_worker(self, C._BUILD_GATEWAY_S, pos)
elif tech_action == 3: # cyber
power_index = U.get_power_mask_screen(self.obs, size=3)
pos = U.get_pos(power_index)
M.build_by_idle_worker(self, C._BUILD_CYBER_S, pos)
else:
self.safe_action(C._NO_OP, 0, [])
def pop_step(self, pop_action):
# to execute a pop_action
# [ mineral_probe, zealot, stalker]
if pop_action == 0: # mineral_probe
M.mineral_worker(self)
elif pop_action == 1: # zealot
M.train_army(self, C._TRAIN_ZEALOT)
elif pop_action == 2: # stalker
M.train_army(self, C._TRAIN_STALKER)
else:
self.safe_action(C._NO_OP, 0, [])
def fight_step(self, fight_action, fight_pos):
army, army_pos = U.get_best_army(self.env.game_info, self.obs)
if army:
self.safe_action(C._MOVE_CAMERA, 0, [army_pos])
if fight_action == 1: # attack
M.attack_step(self, fight_pos)
elif fight_action == 2: # retreat
M.retreat_step(self, fight_pos)
else:
self.safe_action(C._NO_OP, 0, [])
def play(self):
# M.set_source(self)
self.safe_action(C._NO_OP, 0, [])
while True:
controller_input = self.get_controller_input()
_, controller_pred, controller_v_pred = self.net.controller.act(controller_input, verbose=False)
controller_reward = 0
# enemy_num = controller_input[18]
# army_count = controller_input[10]
self.controller_flag = False
if controller_pred == 0: # base net
self.safe_action(C._MOVE_CAMERA, 0, [C.base_camera_pos])
while (not self.controller_flag) and (not self.is_end):
self.safe_action(C._NO_OP, 0, [])
if self.base_flag:
base_input = self.get_base_input()
_, base_pred, base_v_pred = self.net.base_net.act(base_input, verbose=False)
base_reward = 0
self.base_flag = False
if base_pred == 0:
base_reward += self.tech_action()
elif base_pred == 1:
base_reward += self.pop_action()
else:
self.safe_action(C._NO_OP, 0, [])
now_base_input = self.get_base_input()
base_v_pred_next = self.net.base_net.get_values(now_base_input)
base_v_pred_next = self.get_values(base_v_pred_next)
if self.use_only_result_reward:
base_reward = 0
self.base_buffer.append(base_input, base_pred, base_reward, base_v_pred, base_v_pred_next)
controller_reward += base_reward
else: # battle net
while (not self.controller_flag) and (not self.is_end):
self.safe_action(C._NO_OP, 0, [])
if self.battle_flag:
if self.use_battle_net:
battle_input = self.get_battle_input()
_, battle_pred, battle_v_pred = self.net.battle_net.act(battle_input, verbose=False)
battle_reward = 0
self.battle_flag = False
if battle_pred == 0:
battle_reward += self.pop_action()
elif battle_pred == 1:
battle_reward += self.fight_action()
else:
self.safe_action(C._NO_OP, 0, [])
now_battle_input = self.get_battle_input()
battle_v_pred_next = self.net.battle_net.get_values(now_battle_input)
battle_v_pred_next = self.get_values(battle_v_pred_next)
if self.use_only_result_reward:
battle_reward = 0
self.battle_buffer.append(battle_input, battle_pred, battle_reward, battle_v_pred, battle_v_pred_next)
controller_reward += battle_reward
else:
battle_reward = 0
self.battle_flag = False
battle_reward += self.fight_action()
if self.use_trick_2:
self.pop_action() # TODO: remove
controller_reward += battle_reward
now_controller_input = self.get_controller_input()
controller_v_pred_next = self.net.controller.get_values(now_controller_input)
controller_v_pred_next = self.get_values(controller_v_pred_next)
if self.use_only_result_reward:
controller_reward = 0
self.controller_buffer.append(controller_input, controller_pred, controller_reward, controller_v_pred, controller_v_pred_next)
if self.is_end:
logging('self.is_end')
if self.rl_training:
logging('self.rl_training')
if not self.use_only_result_reward:
logging('self.use_only_result_reward %d', int(self.use_only_result_reward))
self.controller_buffer.rewards[-1] -= 10 * self.obs.raw_observation.observation.game_loop // (22.4 * 60)
self.controller_buffer.rewards[-1] += 50 * self.result['win']
self.base_buffer.rewards[-1] -= 10 * self.obs.raw_observation.observation.game_loop // (22.4 * 60)
self.base_buffer.rewards[-1] += 50 * self.result['win']
self.battle_buffer.rewards[-1] -= 10 * self.obs.raw_observation.observation.game_loop // (22.4 * 60)
self.battle_buffer.rewards[-1] += 50 * self.result['win']
self.tech_buffer.rewards[-1] += 50 * self.result['win']
self.pop_buffer.rewards[-1] += 50 * self.result['win']
else:
logging('self.use_only_result_reward %d', int(self.use_only_result_reward))
self.controller_buffer.rewards[-1] += P.reward_weight[0] * self.result['reward']
logging('self.controller_buffer.rewards' + str(self.controller_buffer.rewards)[1:-1])
self.base_buffer.rewards[-1] += P.reward_weight[1] * self.result['reward']
self.battle_buffer.rewards[-1] += P.reward_weight[4] * self.result['reward']
self.tech_buffer.rewards[-1] += P.reward_weight[2] * self.result['reward']
self.pop_buffer.rewards[-1] += P.reward_weight[3] * self.result['reward']
self.global_buffer.append(self.controller_buffer, self.base_buffer, self.tech_buffer, self.pop_buffer, self.battle_buffer)
break
def tech_action(self):
# act
tech_obs = self.get_tech_input()
act_array, act, v_pred = self.net.tech_net.act(tech_obs, verbose=False)
self.tech_step(act)
# TODO: next state should be the action call next once
# get next state and next values
now_tech_obs = self.get_tech_input()
v_pred_next = self.net.tech_net.get_values(now_tech_obs)
v_pred_next = self.get_values(v_pred_next)
reward = 0
if self.rl_training and self.obs.raw_observation.observation.game_loop < 10000:
# get reward
pylon_num_idx = 14
gas_num_idx = 15
gateway_num_idx = 16
cyber_num_idx = 17
last_building_count = tech_obs[[pylon_num_idx, gas_num_idx, gateway_num_idx, cyber_num_idx]]
last_building_count += tech_obs[-4:]
now_building_count = now_tech_obs[[pylon_num_idx, gas_num_idx, gateway_num_idx, cyber_num_idx]]
now_building_count += now_tech_obs[-4:]
if now_building_count[0] <= HES.pylon:
reward += now_building_count[0] - last_building_count[0]
else:
reward -= now_building_count[0] - last_building_count[0]
if now_building_count[1] <= HES.gas:
reward += now_building_count[1] - last_building_count[1]
else:
reward -= now_building_count[1] - last_building_count[1]
if now_building_count[2] <= HES.gateway:
reward += now_building_count[2] - last_building_count[2]
else:
reward -= now_building_count[2] - last_building_count[2]
if now_building_count[3] <= HES.cyber:
reward += (now_building_count[3] - last_building_count[3]) * 1
else:
reward -= (now_building_count[3] - last_building_count[3]) * 1
if self.use_only_result_reward:
reward = 0
self.tech_buffer.append(tech_obs, act, reward, v_pred, v_pred_next)
return reward
def pop_action(self):
# act
pop_obs = self.get_pop_input()
act_array, act, v_pred = self.net.pop_net.act(pop_obs, verbose=False)
self.pop_step(act)
# get next state and next values
now_pop_obs = self.get_pop_input()
v_pred_next = self.net.pop_net.get_values(now_pop_obs)
v_pred_next = self.get_values(v_pred_next)
reward = 0
if self.rl_training:
worker_index = C._SIZE_HIGH_NET_INPUT
army_index = 10
last_worker_count = pop_obs[worker_index] + pop_obs[worker_index + 9]
now_worker_count = now_pop_obs[worker_index] + now_pop_obs[worker_index + 9]
ideal_worker_count = now_pop_obs[worker_index + 1]
last_army_count = pop_obs[army_index] + pop_obs[worker_index + 10] + pop_obs[worker_index + 11]
now_army_count = now_pop_obs[army_index] + now_pop_obs[worker_index + 10] + now_pop_obs[worker_index + 11]
if now_worker_count <= ideal_worker_count:
reward += now_worker_count - last_worker_count
elif act == 0:
reward -= now_worker_count - last_worker_count
if now_army_count <= HES.army:
reward += now_army_count - last_army_count
if self.use_only_result_reward:
reward = 0
self.pop_buffer.append(pop_obs, act, reward, v_pred, v_pred_next)
return reward
def fight_action(self):
reward = 0
# move camera
army, army_pos = U.get_best_army(self.env.game_info, self.obs)
if army:
self.safe_action(C._MOVE_CAMERA, 0, [army_pos])
self.select(C._SELECT_ARMY, C._ARMY_INDEX, [[0]])
if not self.use_fight:
M.attack_step(self)
if self.use_trick_3:
if self.obs.raw_observation.observation.player_common.army_count >= 8:
# M.control_step(self)
# M.attack_step(self)
reward = 1
return reward
def set_flag(self):
if self.step % C.time_wait(self.controller_wait_secs) == 1:
self.controller_flag = True
if self.step % C.time_wait(self.base_wait_secs) == 1:
self.base_flag = True
if self.step % C.time_wait(self.battle_wait_secs) == 1:
self.battle_flag = True
def safe_action(self, action, unit_type, args):
if M.check_params(self, action, unit_type, args, 1):
obs = self.env.step([sc2_actions.FunctionCall(action, args)])[0]
self.obs = obs
self.step += 1
self.update_result()
self.set_flag()
def select(self, action, unit_type, args):
# safe select
if M.check_params(self, action, unit_type, args, 0):
self.obs = self.env.step([sc2_actions.FunctionCall(action, args)])[0]
self.on_select = unit_type
self.update_result()
self.step += 1
self.set_flag()
# else:
# print('Unavailable_actions id:', action, ' and type:', unit_type, ' and args:', args)
@property
def result(self):
return self._result
def update_result(self):
if self.obs is None:
return
if self.obs.last() or self.env.state == environment.StepType.LAST:
self.is_end = True
outcome = 0
o = self.obs.raw_observation
player_id = o.observation.player_common.player_id
for r in o.player_result:
if r.player_id == player_id:
outcome = sc2_env._possible_results.get(r.result, 0)
frames = o.observation.game_loop
result = dict()
result['outcome'] = outcome
result['reward'] = self.obs.reward
result['frames'] = frames
if not self.use_triple_reward:
result['win'] = -1 # TODO, change it
if result['reward'] == 1:
result['win'] = 1
else:
result['win'] = self.obs.reward
self._result = result
print('play end, total return', self.obs.reward)
self.step = 0
def get_values(self, values):
# check if the game is end
if self.is_end:
return 0
else:
return values
| [
1,
396,
14187,
1266,
29871,
29906,
29900,
29896,
29955,
5087,
9266,
29889,
2178,
26863,
2538,
9841,
29889,
13,
29937,
13,
29937,
10413,
21144,
1090,
278,
13380,
19245,
29892,
10079,
29871,
29906,
29889,
29900,
313,
1552,
376,
29931,
293,
1947,
1496,
13,
29937,
366,
1122,
451,
671,
445,
934,
5174,
297,
752,
13036,
411,
278,
19245,
29889,
13,
29937,
887,
1122,
4017,
263,
3509,
310,
278,
19245,
472,
13,
29937,
13,
29937,
418,
1732,
597,
1636,
29889,
4288,
29889,
990,
29914,
506,
11259,
29914,
27888,
1430,
1660,
29899,
29906,
29889,
29900,
13,
29937,
13,
29937,
25870,
3734,
491,
22903,
4307,
470,
15502,
304,
297,
5007,
29892,
7047,
13,
29937,
13235,
1090,
278,
19245,
338,
13235,
373,
385,
376,
3289,
29899,
3235,
29908,
350,
3289,
3235,
29892,
13,
29937,
399,
1806,
8187,
2692,
399,
1718,
29934,
13566,
29059,
6323,
8707,
29928,
22122,
29903,
8079,
13764,
29979,
476,
22255,
29892,
2845,
4653,
470,
2411,
2957,
29889,
13,
29937,
2823,
278,
19245,
363,
278,
2702,
4086,
14765,
1076,
11239,
322,
13,
29937,
27028,
1090,
278,
19245,
29889,
13,
15945,
29908,
29909,
4036,
10823,
363,
380,
5666,
4154,
1213,
15945,
13,
13,
3166,
4770,
29888,
9130,
1649,
1053,
8380,
29918,
5215,
13,
3166,
4770,
29888,
9130,
1649,
1053,
8542,
13,
3166,
4770,
29888,
9130,
1649,
1053,
1596,
29918,
2220,
13,
13,
5215,
12655,
408,
7442,
13,
5215,
26110,
408,
15886,
13,
3166,
282,
952,
29883,
29906,
29889,
351,
1237,
1053,
2967,
29918,
14748,
13,
3166,
282,
952,
29883,
29906,
29889,
1982,
1053,
8820,
408,
885,
29906,
29918,
7387,
13,
13,
5215,
4303,
29889,
13239,
408,
501,
13,
3166,
716,
29918,
11618,
1053,
12433,
13724,
13,
3166,
4303,
1053,
2295,
408,
315,
13,
3166,
4303,
1053,
4327,
29918,
1066,
408,
323,
13,
3166,
4303,
1053,
5199,
29918,
735,
10700,
29918,
6112,
275,
408,
379,
2890,
13,
3166,
4303,
1053,
2984,
408,
341,
13,
3166,
4303,
1053,
5177,
13,
3166,
4303,
1053,
590,
29918,
1557,
29906,
29918,
6272,
408,
885,
29906,
29918,
6272,
13,
3166,
4303,
29889,
276,
1456,
29918,
9040,
1053,
16534,
29892,
315,
15755,
29918,
7701,
13,
13,
3166,
12183,
1053,
9177,
408,
12183,
13,
13,
5215,
1828,
408,
349,
13,
13,
13,
1990,
14974,
19661,
29898,
3188,
29918,
14748,
29889,
5160,
19661,
1125,
13,
1678,
9995,
3421,
937,
10823,
363,
380,
5666,
4154,
1213,
15945,
13,
13,
1678,
822,
4770,
2344,
12035,
1311,
29892,
2380,
29922,
29900,
29892,
364,
29880,
29918,
26495,
29922,
8824,
29892,
17749,
29918,
4299,
29922,
8824,
29892,
5534,
29918,
9040,
29922,
8516,
29892,
7787,
29922,
8516,
1125,
13,
4706,
2428,
29898,
15329,
19661,
29892,
1583,
467,
1649,
2344,
1649,
580,
13,
4706,
1583,
29889,
1212,
353,
7787,
13,
4706,
1583,
29889,
2248,
353,
2380,
13,
4706,
1583,
29889,
10945,
29918,
9040,
353,
5534,
29918,
9040,
13,
4706,
1583,
29889,
5060,
487,
29918,
4299,
353,
17749,
29918,
4299,
13,
13,
4706,
396,
2302,
954,
13,
4706,
1583,
29889,
10568,
353,
29871,
29900,
13,
13,
4706,
1583,
29889,
8299,
29918,
10685,
29918,
344,
2395,
353,
29871,
29947,
13,
4706,
1583,
29889,
3188,
29918,
10685,
29918,
344,
2395,
353,
29871,
29896,
13,
4706,
1583,
29889,
29890,
5315,
29918,
10685,
29918,
344,
2395,
353,
29871,
29896,
13,
13,
4706,
1583,
29889,
8299,
29918,
15581,
353,
7700,
13,
4706,
1583,
29889,
3188,
29918,
15581,
353,
5852,
13,
4706,
1583,
29889,
29890,
5315,
29918,
15581,
353,
5852,
13,
13,
4706,
1583,
29889,
6272,
353,
6213,
13,
4706,
1583,
29889,
26290,
353,
6213,
13,
13,
4706,
1583,
29889,
1509,
29918,
29888,
523,
353,
7700,
13,
4706,
1583,
29889,
5060,
487,
29918,
29888,
523,
353,
7700,
13,
13,
4706,
396,
6835,
13,
4706,
1583,
29889,
8299,
29918,
9040,
353,
16534,
580,
13,
4706,
1583,
29889,
3188,
29918,
9040,
353,
16534,
580,
13,
4706,
1583,
29889,
11345,
29918,
9040,
353,
16534,
580,
13,
4706,
1583,
29889,
7323,
29918,
9040,
353,
16534,
580,
13,
4706,
1583,
29889,
29890,
5315,
29918,
9040,
353,
16534,
580,
13,
13,
4706,
1583,
29889,
29888,
523,
29918,
9040,
353,
315,
15755,
29918,
7701,
580,
13,
4706,
1583,
29889,
29888,
523,
29918,
7382,
353,
6213,
13,
13,
4706,
1583,
29889,
1949,
29918,
1456,
414,
353,
29871,
29906,
13,
4706,
1583,
29889,
265,
29918,
2622,
353,
6213,
13,
4706,
1583,
3032,
2914,
353,
6213,
13,
4706,
1583,
29889,
275,
29918,
355,
353,
7700,
13,
13,
4706,
1583,
29889,
2096,
29918,
26495,
353,
364,
29880,
29918,
26495,
13,
4706,
1583,
29889,
5504,
29918,
11808,
353,
29871,
29900,
13,
13,
4706,
1583,
29889,
1509,
29918,
3626,
552,
29918,
276,
1328,
353,
7700,
13,
4706,
1583,
29889,
1509,
29918,
6194,
29918,
2914,
29918,
276,
1328,
353,
5852,
13,
13,
4706,
1583,
29889,
1509,
29918,
29890,
5315,
29918,
1212,
353,
5852,
13,
13,
4706,
1583,
29889,
1509,
29918,
509,
860,
29918,
29896,
353,
7700,
13,
4706,
1583,
29889,
1509,
29918,
509,
860,
29918,
29906,
353,
7700,
13,
4706,
1583,
29889,
1509,
29918,
509,
860,
29918,
29941,
353,
7700,
13,
13,
1678,
822,
10092,
29898,
1311,
1125,
13,
4706,
2428,
29898,
15329,
19661,
29892,
1583,
467,
12071,
580,
13,
4706,
1583,
29889,
10568,
353,
29871,
29900,
13,
4706,
1583,
29889,
26290,
353,
6213,
13,
4706,
1583,
3032,
2914,
353,
6213,
13,
4706,
1583,
29889,
275,
29918,
355,
353,
7700,
13,
13,
4706,
1583,
29889,
8299,
29918,
15581,
353,
7700,
13,
4706,
1583,
29889,
3188,
29918,
15581,
353,
5852,
13,
4706,
1583,
29889,
29890,
5315,
29918,
15581,
353,
5852,
13,
13,
4706,
1583,
29889,
8299,
29918,
9040,
29889,
12071,
580,
13,
4706,
1583,
29889,
3188,
29918,
9040,
29889,
12071,
580,
13,
4706,
1583,
29889,
11345,
29918,
9040,
29889,
12071,
580,
13,
4706,
1583,
29889,
7323,
29918,
9040,
29889,
12071,
580,
13,
4706,
1583,
29889,
29890,
5315,
29918,
9040,
29889,
12071,
580,
13,
13,
4706,
1583,
29889,
29888,
523,
29918,
9040,
29889,
12071,
580,
13,
13,
4706,
1583,
29889,
29888,
523,
29918,
7382,
353,
6213,
13,
13,
1678,
822,
731,
29918,
6272,
29898,
1311,
29892,
8829,
1125,
13,
4706,
1583,
29889,
6272,
353,
8829,
13,
13,
1678,
822,
2069,
29918,
11618,
29898,
1311,
1125,
13,
4706,
1583,
29889,
1212,
29889,
24926,
580,
13,
4706,
565,
1583,
29889,
5060,
487,
29918,
4299,
29901,
13,
9651,
1583,
29889,
1212,
29889,
5060,
487,
29918,
8299,
580,
13,
9651,
1583,
29889,
1212,
29889,
5060,
487,
29918,
3188,
580,
13,
9651,
1583,
29889,
1212,
29889,
5060,
487,
29918,
11345,
580,
13,
9651,
1583,
29889,
1212,
29889,
5060,
487,
29918,
7323,
580,
13,
9651,
1583,
29889,
1212,
29889,
5060,
487,
29918,
29890,
5315,
580,
13,
13,
9651,
565,
1583,
29889,
5060,
487,
29918,
29888,
523,
29901,
13,
18884,
1583,
29889,
1212,
29889,
5060,
487,
29918,
29888,
523,
580,
13,
13,
1678,
822,
10092,
29918,
1025,
29918,
11618,
29898,
1311,
1125,
13,
4706,
1583,
29889,
1212,
29889,
12071,
29918,
1025,
29918,
11618,
580,
13,
13,
1678,
822,
4078,
29918,
4299,
29898,
1311,
1125,
13,
4706,
1583,
29889,
1212,
29889,
7620,
29918,
8299,
580,
13,
4706,
1583,
29889,
1212,
29889,
7620,
29918,
3188,
580,
13,
4706,
1583,
29889,
1212,
29889,
7620,
29918,
11345,
580,
13,
4706,
1583,
29889,
1212,
29889,
7620,
29918,
7323,
580,
13,
4706,
1583,
29889,
1212,
29889,
7620,
29918,
29890,
5315,
580,
13,
13,
4706,
565,
1583,
29889,
1509,
29918,
29888,
523,
29901,
13,
9651,
1583,
29889,
1212,
29889,
7620,
29918,
29888,
523,
580,
13,
13,
1678,
822,
2767,
29918,
11618,
29898,
1311,
29892,
1121,
29918,
1761,
1125,
13,
4706,
1583,
29889,
5504,
29918,
11808,
4619,
29871,
29896,
13,
13,
4706,
565,
1583,
29889,
1509,
29918,
509,
860,
29918,
29896,
29901,
13,
9651,
1209,
13,
13,
4706,
565,
349,
29889,
1509,
29918,
26123,
1230,
29918,
5504,
29901,
13,
9651,
12183,
877,
1509,
29918,
26123,
1230,
29918,
5504,
29892,
2767,
29918,
11808,
29901,
1273,
29881,
742,
938,
29898,
1311,
29889,
5504,
29918,
11808,
876,
13,
9651,
565,
1583,
29889,
5504,
29918,
11808,
1273,
29871,
29906,
29900,
529,
29871,
29896,
29900,
29901,
13,
18884,
12183,
877,
6194,
2767,
4701,
1495,
13,
18884,
1583,
29889,
1212,
29889,
6422,
29918,
8299,
29898,
1311,
29889,
10945,
29918,
9040,
29889,
8299,
29918,
9040,
29897,
13,
9651,
1683,
29901,
13,
18884,
12183,
877,
5504,
599,
1495,
13,
18884,
1583,
29889,
1212,
29889,
6422,
29918,
8299,
29898,
1311,
29889,
10945,
29918,
9040,
29889,
8299,
29918,
9040,
29897,
13,
18884,
1583,
29889,
1212,
29889,
6422,
29918,
3188,
29918,
1212,
29898,
1311,
29889,
10945,
29918,
9040,
29889,
3188,
29918,
9040,
29897,
13,
18884,
1583,
29889,
1212,
29889,
6422,
29918,
11345,
29918,
1212,
29898,
1311,
29889,
10945,
29918,
9040,
29889,
11345,
29918,
9040,
29897,
13,
18884,
1583,
29889,
1212,
29889,
6422,
29918,
7323,
29918,
1212,
29898,
1311,
29889,
10945,
29918,
9040,
29889,
7323,
29918,
9040,
29897,
13,
18884,
1583,
29889,
1212,
29889,
6422,
29918,
29890,
5315,
29918,
1212,
29898,
1311,
29889,
10945,
29918,
9040,
29889,
29890,
5315,
29918,
9040,
29897,
13,
18884,
565,
1583,
29889,
1509,
29918,
29888,
523,
29901,
13,
462,
1678,
1583,
29889,
1212,
29889,
6422,
29918,
29888,
523,
29898,
1311,
29889,
10945,
29918,
9040,
29889,
29888,
523,
29918,
9040,
29897,
13,
4706,
1683,
29901,
13,
13,
9651,
1583,
29889,
1212,
29889,
6422,
29918,
8299,
29898,
1311,
29889,
10945,
29918,
9040,
29889,
8299,
29918,
9040,
29897,
13,
9651,
1583,
29889,
1212,
29889,
6422,
29918,
3188,
29918,
1212,
29898,
1311,
29889,
10945,
29918,
9040,
29889,
3188,
29918,
9040,
29897,
13,
9651,
1583,
29889,
1212,
29889,
6422,
29918,
11345,
29918,
1212,
29898,
1311,
29889,
10945,
29918,
9040,
29889,
11345,
29918,
9040,
29897,
13,
9651,
1583,
29889,
1212,
29889,
6422,
29918,
7323,
29918,
1212,
29898,
1311,
29889,
10945,
29918,
9040,
29889,
7323,
29918,
9040,
29897,
13,
9651,
1583,
29889,
1212,
29889,
6422,
29918,
29890,
5315,
29918,
1212,
29898,
1311,
29889,
10945,
29918,
9040,
29889,
29890,
5315,
29918,
9040,
29897,
13,
13,
9651,
565,
1583,
29889,
1509,
29918,
29888,
523,
29901,
13,
18884,
1583,
29889,
1212,
29889,
6422,
29918,
29888,
523,
29898,
1311,
29889,
10945,
29918,
9040,
29889,
29888,
523,
29918,
9040,
29897,
13,
13,
4706,
1583,
29889,
1212,
29889,
6422,
29918,
2914,
29898,
2914,
29918,
1761,
29897,
13,
13,
1678,
822,
2767,
29918,
7727,
29898,
1311,
29892,
6795,
1125,
13,
4706,
736,
1583,
29889,
1212,
29889,
6422,
29918,
7727,
29898,
11808,
29897,
13,
13,
1678,
822,
679,
29918,
8299,
29918,
2080,
29898,
1311,
1125,
13,
4706,
4701,
29918,
2080,
29892,
17117,
903,
353,
501,
29889,
657,
29918,
2080,
29898,
1311,
29889,
26290,
29897,
13,
4706,
736,
4701,
29918,
2080,
13,
13,
1678,
822,
679,
29918,
3188,
29918,
2080,
29898,
1311,
1125,
13,
4706,
1880,
29918,
2080,
29892,
734,
305,
29918,
18253,
29892,
1835,
29918,
1949,
353,
501,
29889,
657,
29918,
2080,
29898,
1311,
29889,
26290,
29897,
13,
4706,
2967,
29918,
2080,
353,
7442,
29889,
535,
29883,
2579,
403,
4197,
9812,
29918,
2080,
29892,
734,
305,
29918,
18253,
29892,
1835,
29918,
1949,
1402,
9685,
29922,
29900,
29897,
13,
4706,
736,
2967,
29918,
2080,
13,
13,
1678,
822,
679,
29918,
11345,
29918,
2080,
29898,
1311,
1125,
13,
4706,
1880,
29918,
2080,
29892,
734,
305,
29918,
18253,
29892,
903,
353,
501,
29889,
657,
29918,
2080,
29898,
1311,
29889,
26290,
29897,
13,
4706,
734,
305,
29918,
26290,
353,
7442,
29889,
535,
29883,
2579,
403,
4197,
9812,
29918,
2080,
29892,
734,
305,
29918,
18253,
1402,
9685,
29922,
29900,
29897,
13,
4706,
736,
734,
305,
29918,
26290,
13,
13,
1678,
822,
679,
29918,
7323,
29918,
2080,
29898,
1311,
1125,
13,
4706,
1880,
29918,
2080,
29892,
17117,
1835,
29918,
1949,
353,
501,
29889,
657,
29918,
2080,
29898,
1311,
29889,
26290,
29897,
13,
4706,
1835,
29918,
26290,
353,
7442,
29889,
535,
29883,
2579,
403,
4197,
9812,
29918,
2080,
29892,
1835,
29918,
1949,
1402,
9685,
29922,
29900,
29897,
13,
4706,
736,
1835,
29918,
26290,
13,
13,
1678,
822,
679,
29918,
29890,
5315,
29918,
2080,
29898,
1311,
1125,
13,
4706,
1880,
29918,
2080,
29892,
734,
305,
29918,
18253,
29892,
1835,
29918,
1949,
353,
501,
29889,
657,
29918,
2080,
29898,
1311,
29889,
26290,
29897,
13,
4706,
10555,
29918,
2080,
353,
7442,
29889,
535,
29883,
2579,
403,
4197,
9812,
29918,
2080,
29892,
734,
305,
29918,
18253,
29892,
1835,
29918,
1949,
1402,
9685,
29922,
29900,
29897,
13,
4706,
736,
10555,
29918,
2080,
13,
13,
1678,
822,
734,
305,
29918,
10568,
29898,
1311,
29892,
734,
305,
29918,
2467,
1125,
13,
4706,
396,
304,
6222,
263,
734,
305,
29918,
2467,
13,
4706,
396,
518,
2272,
12957,
29892,
10489,
29896,
29892,
10489,
29906,
29892,
28646,
29892,
5094,
495,
29962,
13,
13,
4706,
565,
734,
305,
29918,
2467,
1275,
29871,
29900,
29901,
29871,
396,
282,
2904,
265,
13,
9651,
694,
29918,
5441,
29918,
2248,
353,
501,
29889,
657,
29918,
5441,
29918,
13168,
29918,
10525,
29898,
1311,
29889,
26290,
29892,
2159,
29922,
29906,
29897,
13,
9651,
926,
353,
501,
29889,
657,
29918,
1066,
29898,
1217,
29918,
5441,
29918,
2248,
29897,
13,
9651,
341,
29889,
4282,
29918,
1609,
29918,
333,
280,
29918,
24602,
29898,
1311,
29892,
315,
3032,
29933,
25282,
29918,
20055,
29931,
1164,
29918,
29903,
29892,
926,
29897,
13,
13,
4706,
25342,
734,
305,
29918,
2467,
1275,
29871,
29896,
322,
451,
501,
29889,
2886,
29918,
25496,
29898,
1311,
29889,
26290,
29892,
29871,
29896,
1125,
29871,
396,
10489,
29918,
29896,
13,
9651,
10489,
29918,
29896,
353,
501,
29889,
2886,
29918,
25496,
29918,
1066,
29898,
1311,
29889,
26290,
29892,
29871,
29896,
29897,
13,
9651,
10489,
29918,
29896,
29918,
1066,
353,
323,
29889,
11526,
29918,
517,
29918,
10525,
29918,
1066,
29898,
1311,
29889,
6272,
29889,
11802,
29918,
3888,
29892,
10489,
29918,
29896,
29889,
1066,
29892,
1583,
29889,
26290,
29897,
13,
9651,
341,
29889,
4282,
29918,
1609,
29918,
333,
280,
29918,
24602,
29898,
1311,
29892,
315,
3032,
29933,
25282,
29918,
22933,
7833,
6227,
1299,
1955,
29918,
29903,
29892,
10489,
29918,
29896,
29918,
1066,
29897,
13,
13,
4706,
25342,
734,
305,
29918,
2467,
1275,
29871,
29896,
322,
451,
501,
29889,
2886,
29918,
25496,
29898,
1311,
29889,
26290,
29892,
29871,
29906,
1125,
29871,
396,
10489,
29918,
29906,
13,
9651,
10489,
29918,
29906,
353,
501,
29889,
2886,
29918,
25496,
29918,
1066,
29898,
1311,
29889,
26290,
29892,
29871,
29906,
29897,
13,
9651,
10489,
29918,
29906,
29918,
1066,
353,
323,
29889,
11526,
29918,
517,
29918,
10525,
29918,
1066,
29898,
1311,
29889,
6272,
29889,
11802,
29918,
3888,
29892,
10489,
29918,
29906,
29889,
1066,
29892,
1583,
29889,
26290,
29897,
13,
9651,
341,
29889,
4282,
29918,
1609,
29918,
333,
280,
29918,
24602,
29898,
1311,
29892,
315,
3032,
29933,
25282,
29918,
22933,
7833,
6227,
1299,
1955,
29918,
29903,
29892,
10489,
29918,
29906,
29918,
1066,
29897,
13,
13,
4706,
25342,
734,
305,
29918,
2467,
1275,
29871,
29906,
29901,
29871,
396,
28646,
13,
9651,
3081,
29918,
2248,
353,
501,
29889,
657,
29918,
13519,
29918,
13168,
29918,
10525,
29898,
1311,
29889,
26290,
29892,
2159,
29922,
29945,
29897,
13,
9651,
926,
353,
501,
29889,
657,
29918,
1066,
29898,
13519,
29918,
2248,
29897,
13,
9651,
341,
29889,
4282,
29918,
1609,
29918,
333,
280,
29918,
24602,
29898,
1311,
29892,
315,
3032,
29933,
25282,
29918,
29954,
3040,
12982,
29979,
29918,
29903,
29892,
926,
29897,
13,
13,
4706,
25342,
734,
305,
29918,
2467,
1275,
29871,
29941,
29901,
29871,
396,
5094,
495,
13,
9651,
3081,
29918,
2248,
353,
501,
29889,
657,
29918,
13519,
29918,
13168,
29918,
10525,
29898,
1311,
29889,
26290,
29892,
2159,
29922,
29941,
29897,
13,
9651,
926,
353,
501,
29889,
657,
29918,
1066,
29898,
13519,
29918,
2248,
29897,
13,
9651,
341,
29889,
4282,
29918,
1609,
29918,
333,
280,
29918,
24602,
29898,
1311,
29892,
315,
3032,
29933,
25282,
29918,
29907,
29979,
13635,
29918,
29903,
29892,
926,
29897,
13,
13,
4706,
1683,
29901,
13,
9651,
1583,
29889,
11177,
29918,
2467,
29898,
29907,
3032,
6632,
29918,
4590,
29892,
29871,
29900,
29892,
518,
2314,
13,
13,
1678,
822,
1835,
29918,
10568,
29898,
1311,
29892,
1835,
29918,
2467,
1125,
13,
4706,
396,
304,
6222,
263,
1835,
29918,
2467,
13,
4706,
396,
518,
1375,
13537,
29918,
771,
915,
29892,
3777,
284,
327,
29892,
380,
2235,
261,
29962,
13,
13,
4706,
565,
1835,
29918,
2467,
1275,
29871,
29900,
29901,
29871,
396,
1375,
13537,
29918,
771,
915,
13,
9651,
341,
29889,
1195,
13537,
29918,
24602,
29898,
1311,
29897,
13,
13,
4706,
25342,
1835,
29918,
2467,
1275,
29871,
29896,
29901,
29871,
396,
3777,
284,
327,
13,
9651,
341,
29889,
14968,
29918,
279,
1357,
29898,
1311,
29892,
315,
3032,
29911,
4717,
1177,
29918,
10721,
1964,
2891,
29897,
13,
13,
4706,
25342,
1835,
29918,
2467,
1275,
29871,
29906,
29901,
29871,
396,
380,
2235,
261,
13,
9651,
341,
29889,
14968,
29918,
279,
1357,
29898,
1311,
29892,
315,
3032,
29911,
4717,
1177,
29918,
1254,
1964,
29968,
1001,
29897,
13,
13,
4706,
1683,
29901,
13,
9651,
1583,
29889,
11177,
29918,
2467,
29898,
29907,
3032,
6632,
29918,
4590,
29892,
29871,
29900,
29892,
518,
2314,
13,
13,
1678,
822,
8589,
29918,
10568,
29898,
1311,
29892,
8589,
29918,
2467,
29892,
8589,
29918,
1066,
1125,
13,
4706,
9987,
29892,
9987,
29918,
1066,
353,
501,
29889,
657,
29918,
13318,
29918,
279,
1357,
29898,
1311,
29889,
6272,
29889,
11802,
29918,
3888,
29892,
1583,
29889,
26290,
29897,
13,
4706,
565,
9987,
29901,
13,
9651,
1583,
29889,
11177,
29918,
2467,
29898,
29907,
3032,
6720,
12064,
29918,
29907,
5194,
1001,
29909,
29892,
29871,
29900,
29892,
518,
279,
1357,
29918,
1066,
2314,
13,
13,
9651,
565,
8589,
29918,
2467,
1275,
29871,
29896,
29901,
29871,
396,
5337,
13,
18884,
341,
29889,
1131,
547,
29918,
10568,
29898,
1311,
29892,
8589,
29918,
1066,
29897,
13,
13,
9651,
25342,
8589,
29918,
2467,
1275,
29871,
29906,
29901,
29871,
396,
22162,
271,
13,
18884,
341,
29889,
2267,
276,
271,
29918,
10568,
29898,
1311,
29892,
8589,
29918,
1066,
29897,
13,
13,
4706,
1683,
29901,
13,
9651,
1583,
29889,
11177,
29918,
2467,
29898,
29907,
3032,
6632,
29918,
4590,
29892,
29871,
29900,
29892,
518,
2314,
13,
13,
1678,
822,
1708,
29898,
1311,
1125,
13,
4706,
396,
341,
29889,
842,
29918,
4993,
29898,
1311,
29897,
13,
13,
4706,
1583,
29889,
11177,
29918,
2467,
29898,
29907,
3032,
6632,
29918,
4590,
29892,
29871,
29900,
29892,
518,
2314,
13,
4706,
1550,
5852,
29901,
13,
9651,
4701,
29918,
2080,
353,
1583,
29889,
657,
29918,
8299,
29918,
2080,
580,
13,
9651,
17117,
4701,
29918,
11965,
29892,
4701,
29918,
29894,
29918,
11965,
353,
1583,
29889,
1212,
29889,
8299,
29889,
627,
29898,
8299,
29918,
2080,
29892,
26952,
29922,
8824,
29897,
13,
9651,
4701,
29918,
276,
1328,
353,
29871,
29900,
13,
9651,
396,
11103,
29918,
1949,
353,
4701,
29918,
2080,
29961,
29896,
29947,
29962,
13,
9651,
396,
9987,
29918,
2798,
353,
4701,
29918,
2080,
29961,
29896,
29900,
29962,
13,
9651,
1583,
29889,
8299,
29918,
15581,
353,
7700,
13,
13,
9651,
565,
4701,
29918,
11965,
1275,
29871,
29900,
29901,
29871,
396,
2967,
7787,
13,
18884,
1583,
29889,
11177,
29918,
2467,
29898,
29907,
3032,
6720,
12064,
29918,
29907,
5194,
1001,
29909,
29892,
29871,
29900,
29892,
518,
29907,
29889,
3188,
29918,
26065,
29918,
1066,
2314,
13,
18884,
1550,
313,
1333,
1583,
29889,
8299,
29918,
15581,
29897,
322,
313,
1333,
1583,
29889,
275,
29918,
355,
1125,
13,
462,
1678,
1583,
29889,
11177,
29918,
2467,
29898,
29907,
3032,
6632,
29918,
4590,
29892,
29871,
29900,
29892,
518,
2314,
13,
13,
462,
1678,
565,
1583,
29889,
3188,
29918,
15581,
29901,
13,
462,
4706,
2967,
29918,
2080,
353,
1583,
29889,
657,
29918,
3188,
29918,
2080,
580,
13,
462,
4706,
17117,
2967,
29918,
11965,
29892,
2967,
29918,
29894,
29918,
11965,
353,
1583,
29889,
1212,
29889,
3188,
29918,
1212,
29889,
627,
29898,
3188,
29918,
2080,
29892,
26952,
29922,
8824,
29897,
13,
462,
4706,
2967,
29918,
276,
1328,
353,
29871,
29900,
13,
462,
4706,
1583,
29889,
3188,
29918,
15581,
353,
7700,
13,
13,
462,
4706,
565,
2967,
29918,
11965,
1275,
29871,
29900,
29901,
13,
462,
9651,
2967,
29918,
276,
1328,
4619,
1583,
29889,
11345,
29918,
2467,
580,
13,
462,
4706,
25342,
2967,
29918,
11965,
1275,
29871,
29896,
29901,
13,
462,
9651,
2967,
29918,
276,
1328,
4619,
1583,
29889,
7323,
29918,
2467,
580,
13,
462,
4706,
1683,
29901,
13,
462,
9651,
1583,
29889,
11177,
29918,
2467,
29898,
29907,
3032,
6632,
29918,
4590,
29892,
29871,
29900,
29892,
518,
2314,
13,
13,
462,
4706,
1286,
29918,
3188,
29918,
2080,
353,
1583,
29889,
657,
29918,
3188,
29918,
2080,
580,
13,
462,
4706,
2967,
29918,
29894,
29918,
11965,
29918,
4622,
353,
1583,
29889,
1212,
29889,
3188,
29918,
1212,
29889,
657,
29918,
5975,
29898,
3707,
29918,
3188,
29918,
2080,
29897,
13,
462,
4706,
2967,
29918,
29894,
29918,
11965,
29918,
4622,
353,
1583,
29889,
657,
29918,
5975,
29898,
3188,
29918,
29894,
29918,
11965,
29918,
4622,
29897,
13,
13,
462,
4706,
565,
1583,
29889,
1509,
29918,
6194,
29918,
2914,
29918,
276,
1328,
29901,
13,
462,
9651,
2967,
29918,
276,
1328,
353,
29871,
29900,
13,
13,
462,
4706,
1583,
29889,
3188,
29918,
9040,
29889,
4397,
29898,
3188,
29918,
2080,
29892,
2967,
29918,
11965,
29892,
2967,
29918,
276,
1328,
29892,
2967,
29918,
29894,
29918,
11965,
29892,
2967,
29918,
29894,
29918,
11965,
29918,
4622,
29897,
13,
462,
4706,
4701,
29918,
276,
1328,
4619,
2967,
29918,
276,
1328,
13,
13,
9651,
1683,
29901,
1669,
396,
10555,
7787,
13,
18884,
1550,
313,
1333,
1583,
29889,
8299,
29918,
15581,
29897,
322,
313,
1333,
1583,
29889,
275,
29918,
355,
1125,
13,
462,
1678,
1583,
29889,
11177,
29918,
2467,
29898,
29907,
3032,
6632,
29918,
4590,
29892,
29871,
29900,
29892,
518,
2314,
13,
13,
462,
1678,
565,
1583,
29889,
29890,
5315,
29918,
15581,
29901,
13,
13,
462,
4706,
565,
1583,
29889,
1509,
29918,
29890,
5315,
29918,
1212,
29901,
308,
13,
462,
9651,
10555,
29918,
2080,
353,
1583,
29889,
657,
29918,
29890,
5315,
29918,
2080,
580,
13,
462,
9651,
17117,
10555,
29918,
11965,
29892,
10555,
29918,
29894,
29918,
11965,
353,
1583,
29889,
1212,
29889,
29890,
5315,
29918,
1212,
29889,
627,
29898,
29890,
5315,
29918,
2080,
29892,
26952,
29922,
8824,
29897,
13,
462,
9651,
10555,
29918,
276,
1328,
353,
29871,
29900,
13,
462,
9651,
1583,
29889,
29890,
5315,
29918,
15581,
353,
7700,
13,
13,
462,
9651,
565,
10555,
29918,
11965,
1275,
29871,
29900,
29901,
13,
462,
18884,
10555,
29918,
276,
1328,
4619,
1583,
29889,
7323,
29918,
2467,
580,
29871,
13,
462,
9651,
25342,
10555,
29918,
11965,
1275,
29871,
29896,
29901,
13,
462,
18884,
10555,
29918,
276,
1328,
4619,
1583,
29889,
29888,
523,
29918,
2467,
580,
13,
462,
9651,
1683,
29901,
13,
462,
18884,
1583,
29889,
11177,
29918,
2467,
29898,
29907,
3032,
6632,
29918,
4590,
29892,
29871,
29900,
29892,
518,
2314,
13,
13,
462,
9651,
1286,
29918,
29890,
5315,
29918,
2080,
353,
1583,
29889,
657,
29918,
29890,
5315,
29918,
2080,
580,
13,
462,
9651,
10555,
29918,
29894,
29918,
11965,
29918,
4622,
353,
1583,
29889,
1212,
29889,
29890,
5315,
29918,
1212,
29889,
657,
29918,
5975,
29898,
3707,
29918,
29890,
5315,
29918,
2080,
29897,
13,
462,
9651,
10555,
29918,
29894,
29918,
11965,
29918,
4622,
353,
1583,
29889,
657,
29918,
5975,
29898,
29890,
5315,
29918,
29894,
29918,
11965,
29918,
4622,
29897,
13,
13,
462,
9651,
565,
1583,
29889,
1509,
29918,
6194,
29918,
2914,
29918,
276,
1328,
29901,
13,
462,
18884,
10555,
29918,
276,
1328,
353,
29871,
29900,
13,
13,
462,
9651,
1583,
29889,
29890,
5315,
29918,
9040,
29889,
4397,
29898,
29890,
5315,
29918,
2080,
29892,
10555,
29918,
11965,
29892,
10555,
29918,
276,
1328,
29892,
10555,
29918,
29894,
29918,
11965,
29892,
10555,
29918,
29894,
29918,
11965,
29918,
4622,
29897,
13,
462,
9651,
4701,
29918,
276,
1328,
4619,
10555,
29918,
276,
1328,
13,
462,
4706,
1683,
29901,
13,
462,
9651,
10555,
29918,
276,
1328,
353,
29871,
29900,
13,
462,
9651,
1583,
29889,
29890,
5315,
29918,
15581,
353,
7700,
13,
462,
9651,
10555,
29918,
276,
1328,
4619,
1583,
29889,
29888,
523,
29918,
2467,
580,
13,
13,
462,
9651,
565,
1583,
29889,
1509,
29918,
509,
860,
29918,
29906,
29901,
13,
462,
18884,
1583,
29889,
7323,
29918,
2467,
580,
29871,
396,
14402,
29901,
3349,
13,
13,
462,
9651,
4701,
29918,
276,
1328,
4619,
10555,
29918,
276,
1328,
13,
13,
9651,
1286,
29918,
8299,
29918,
2080,
353,
1583,
29889,
657,
29918,
8299,
29918,
2080,
580,
13,
9651,
4701,
29918,
29894,
29918,
11965,
29918,
4622,
353,
1583,
29889,
1212,
29889,
8299,
29889,
657,
29918,
5975,
29898,
3707,
29918,
8299,
29918,
2080,
29897,
13,
9651,
4701,
29918,
29894,
29918,
11965,
29918,
4622,
353,
1583,
29889,
657,
29918,
5975,
29898,
8299,
29918,
29894,
29918,
11965,
29918,
4622,
29897,
13,
13,
9651,
565,
1583,
29889,
1509,
29918,
6194,
29918,
2914,
29918,
276,
1328,
29901,
13,
18884,
4701,
29918,
276,
1328,
353,
29871,
29900,
13,
13,
9651,
1583,
29889,
8299,
29918,
9040,
29889,
4397,
29898,
8299,
29918,
2080,
29892,
4701,
29918,
11965,
29892,
4701,
29918,
276,
1328,
29892,
4701,
29918,
29894,
29918,
11965,
29892,
4701,
29918,
29894,
29918,
11965,
29918,
4622,
29897,
13,
13,
9651,
565,
1583,
29889,
275,
29918,
355,
29901,
13,
18884,
12183,
877,
1311,
29889,
275,
29918,
355,
1495,
13,
13,
18884,
565,
1583,
29889,
2096,
29918,
26495,
29901,
13,
462,
1678,
12183,
877,
1311,
29889,
2096,
29918,
26495,
1495,
13,
462,
1678,
565,
451,
1583,
29889,
1509,
29918,
6194,
29918,
2914,
29918,
276,
1328,
29901,
13,
462,
4706,
12183,
877,
1311,
29889,
1509,
29918,
6194,
29918,
2914,
29918,
276,
1328,
1273,
29881,
742,
938,
29898,
1311,
29889,
1509,
29918,
6194,
29918,
2914,
29918,
276,
1328,
876,
13,
462,
4706,
1583,
29889,
8299,
29918,
9040,
29889,
276,
2935,
14352,
29896,
29962,
22361,
29871,
29896,
29900,
334,
1583,
29889,
26290,
29889,
1610,
29918,
26739,
362,
29889,
26739,
362,
29889,
11802,
29918,
7888,
849,
313,
29906,
29906,
29889,
29946,
334,
29871,
29953,
29900,
29897,
13,
462,
4706,
1583,
29889,
8299,
29918,
9040,
29889,
276,
2935,
14352,
29896,
29962,
4619,
29871,
29945,
29900,
334,
1583,
29889,
2914,
1839,
5080,
2033,
13,
13,
462,
4706,
1583,
29889,
3188,
29918,
9040,
29889,
276,
2935,
14352,
29896,
29962,
22361,
29871,
29896,
29900,
334,
1583,
29889,
26290,
29889,
1610,
29918,
26739,
362,
29889,
26739,
362,
29889,
11802,
29918,
7888,
849,
313,
29906,
29906,
29889,
29946,
334,
29871,
29953,
29900,
29897,
13,
462,
4706,
1583,
29889,
3188,
29918,
9040,
29889,
276,
2935,
14352,
29896,
29962,
4619,
29871,
29945,
29900,
334,
1583,
29889,
2914,
1839,
5080,
2033,
13,
13,
462,
4706,
1583,
29889,
29890,
5315,
29918,
9040,
29889,
276,
2935,
14352,
29896,
29962,
22361,
29871,
29896,
29900,
334,
1583,
29889,
26290,
29889,
1610,
29918,
26739,
362,
29889,
26739,
362,
29889,
11802,
29918,
7888,
849,
313,
29906,
29906,
29889,
29946,
334,
29871,
29953,
29900,
29897,
13,
462,
4706,
1583,
29889,
29890,
5315,
29918,
9040,
29889,
276,
2935,
14352,
29896,
29962,
4619,
29871,
29945,
29900,
334,
1583,
29889,
2914,
1839,
5080,
2033,
13,
13,
462,
4706,
1583,
29889,
11345,
29918,
9040,
29889,
276,
2935,
14352,
29896,
29962,
4619,
29871,
29945,
29900,
334,
1583,
29889,
2914,
1839,
5080,
2033,
13,
462,
4706,
1583,
29889,
7323,
29918,
9040,
29889,
276,
2935,
14352,
29896,
29962,
4619,
29871,
29945,
29900,
334,
1583,
29889,
2914,
1839,
5080,
2033,
13,
462,
1678,
1683,
29901,
13,
462,
4706,
12183,
877,
1311,
29889,
1509,
29918,
6194,
29918,
2914,
29918,
276,
1328,
1273,
29881,
742,
938,
29898,
1311,
29889,
1509,
29918,
6194,
29918,
2914,
29918,
276,
1328,
876,
13,
462,
4706,
1583,
29889,
8299,
29918,
9040,
29889,
276,
2935,
14352,
29896,
29962,
4619,
349,
29889,
276,
1328,
29918,
7915,
29961,
29900,
29962,
334,
1583,
29889,
2914,
1839,
276,
1328,
2033,
13,
13,
462,
4706,
12183,
877,
1311,
29889,
8299,
29918,
9040,
29889,
276,
2935,
29915,
718,
851,
29898,
1311,
29889,
8299,
29918,
9040,
29889,
276,
2935,
9601,
29896,
13018,
29896,
2314,
13,
13,
462,
4706,
1583,
29889,
3188,
29918,
9040,
29889,
276,
2935,
14352,
29896,
29962,
4619,
349,
29889,
276,
1328,
29918,
7915,
29961,
29896,
29962,
334,
1583,
29889,
2914,
1839,
276,
1328,
2033,
13,
462,
4706,
1583,
29889,
29890,
5315,
29918,
9040,
29889,
276,
2935,
14352,
29896,
29962,
4619,
349,
29889,
276,
1328,
29918,
7915,
29961,
29946,
29962,
334,
1583,
29889,
2914,
1839,
276,
1328,
2033,
13,
13,
462,
4706,
1583,
29889,
11345,
29918,
9040,
29889,
276,
2935,
14352,
29896,
29962,
4619,
349,
29889,
276,
1328,
29918,
7915,
29961,
29906,
29962,
334,
1583,
29889,
2914,
1839,
276,
1328,
2033,
13,
462,
4706,
1583,
29889,
7323,
29918,
9040,
29889,
276,
2935,
14352,
29896,
29962,
4619,
349,
29889,
276,
1328,
29918,
7915,
29961,
29941,
29962,
334,
1583,
29889,
2914,
1839,
276,
1328,
2033,
13,
13,
462,
1678,
1583,
29889,
10945,
29918,
9040,
29889,
4397,
29898,
1311,
29889,
8299,
29918,
9040,
29892,
1583,
29889,
3188,
29918,
9040,
29892,
1583,
29889,
11345,
29918,
9040,
29892,
1583,
29889,
7323,
29918,
9040,
29892,
1583,
29889,
29890,
5315,
29918,
9040,
29897,
13,
13,
18884,
2867,
13,
13,
1678,
822,
734,
305,
29918,
2467,
29898,
1311,
1125,
13,
4706,
396,
1044,
13,
4706,
734,
305,
29918,
26290,
353,
1583,
29889,
657,
29918,
11345,
29918,
2080,
580,
13,
4706,
1044,
29918,
2378,
29892,
1044,
29892,
325,
29918,
11965,
353,
1583,
29889,
1212,
29889,
11345,
29918,
1212,
29889,
627,
29898,
11345,
29918,
26290,
29892,
26952,
29922,
8824,
29897,
13,
4706,
1583,
29889,
11345,
29918,
10568,
29898,
627,
29897,
13,
13,
4706,
396,
14402,
29901,
2446,
2106,
881,
367,
278,
3158,
1246,
2446,
2748,
13,
4706,
396,
679,
2446,
2106,
322,
2446,
1819,
13,
4706,
1286,
29918,
11345,
29918,
26290,
353,
1583,
29889,
657,
29918,
11345,
29918,
2080,
580,
13,
4706,
325,
29918,
11965,
29918,
4622,
353,
1583,
29889,
1212,
29889,
11345,
29918,
1212,
29889,
657,
29918,
5975,
29898,
3707,
29918,
11345,
29918,
26290,
29897,
13,
4706,
325,
29918,
11965,
29918,
4622,
353,
1583,
29889,
657,
29918,
5975,
29898,
29894,
29918,
11965,
29918,
4622,
29897,
13,
13,
4706,
20751,
353,
29871,
29900,
13,
4706,
565,
1583,
29889,
2096,
29918,
26495,
322,
1583,
29889,
26290,
29889,
1610,
29918,
26739,
362,
29889,
26739,
362,
29889,
11802,
29918,
7888,
529,
29871,
29896,
29900,
29900,
29900,
29900,
29901,
13,
9651,
396,
679,
20751,
13,
9651,
282,
2904,
265,
29918,
1949,
29918,
13140,
353,
29871,
29896,
29946,
13,
9651,
10489,
29918,
1949,
29918,
13140,
353,
29871,
29896,
29945,
13,
9651,
28646,
29918,
1949,
29918,
13140,
353,
29871,
29896,
29953,
13,
9651,
5094,
495,
29918,
1949,
29918,
13140,
353,
29871,
29896,
29955,
13,
13,
9651,
1833,
29918,
25237,
29918,
2798,
353,
734,
305,
29918,
26290,
8999,
2272,
12957,
29918,
1949,
29918,
13140,
29892,
10489,
29918,
1949,
29918,
13140,
29892,
28646,
29918,
1949,
29918,
13140,
29892,
5094,
495,
29918,
1949,
29918,
13140,
5262,
13,
9651,
1833,
29918,
25237,
29918,
2798,
4619,
734,
305,
29918,
26290,
14352,
29946,
17531,
13,
13,
9651,
1286,
29918,
25237,
29918,
2798,
353,
1286,
29918,
11345,
29918,
26290,
8999,
2272,
12957,
29918,
1949,
29918,
13140,
29892,
10489,
29918,
1949,
29918,
13140,
29892,
28646,
29918,
1949,
29918,
13140,
29892,
5094,
495,
29918,
1949,
29918,
13140,
5262,
13,
9651,
1286,
29918,
25237,
29918,
2798,
4619,
1286,
29918,
11345,
29918,
26290,
14352,
29946,
17531,
13,
13,
9651,
565,
1286,
29918,
25237,
29918,
2798,
29961,
29900,
29962,
5277,
379,
2890,
29889,
2272,
12957,
29901,
13,
18884,
20751,
4619,
1286,
29918,
25237,
29918,
2798,
29961,
29900,
29962,
448,
1833,
29918,
25237,
29918,
2798,
29961,
29900,
29962,
13,
9651,
1683,
29901,
13,
18884,
20751,
22361,
1286,
29918,
25237,
29918,
2798,
29961,
29900,
29962,
448,
1833,
29918,
25237,
29918,
2798,
29961,
29900,
29962,
13,
13,
9651,
565,
1286,
29918,
25237,
29918,
2798,
29961,
29896,
29962,
5277,
379,
2890,
29889,
25496,
29901,
13,
18884,
20751,
4619,
1286,
29918,
25237,
29918,
2798,
29961,
29896,
29962,
448,
1833,
29918,
25237,
29918,
2798,
29961,
29896,
29962,
13,
9651,
1683,
29901,
13,
18884,
20751,
22361,
1286,
29918,
25237,
29918,
2798,
29961,
29896,
29962,
448,
1833,
29918,
25237,
29918,
2798,
29961,
29896,
29962,
13,
13,
9651,
565,
1286,
29918,
25237,
29918,
2798,
29961,
29906,
29962,
5277,
379,
2890,
29889,
17062,
1582,
29901,
13,
18884,
20751,
4619,
1286,
29918,
25237,
29918,
2798,
29961,
29906,
29962,
448,
1833,
29918,
25237,
29918,
2798,
29961,
29906,
29962,
13,
9651,
1683,
29901,
13,
18884,
20751,
22361,
1286,
29918,
25237,
29918,
2798,
29961,
29906,
29962,
448,
1833,
29918,
25237,
29918,
2798,
29961,
29906,
29962,
13,
13,
9651,
565,
1286,
29918,
25237,
29918,
2798,
29961,
29941,
29962,
5277,
379,
2890,
29889,
1270,
495,
29901,
13,
18884,
20751,
4619,
313,
3707,
29918,
25237,
29918,
2798,
29961,
29941,
29962,
448,
1833,
29918,
25237,
29918,
2798,
29961,
29941,
2314,
334,
29871,
29896,
13,
9651,
1683,
29901,
13,
18884,
20751,
22361,
313,
3707,
29918,
25237,
29918,
2798,
29961,
29941,
29962,
448,
1833,
29918,
25237,
29918,
2798,
29961,
29941,
2314,
334,
29871,
29896,
13,
13,
4706,
565,
1583,
29889,
1509,
29918,
6194,
29918,
2914,
29918,
276,
1328,
29901,
13,
9651,
20751,
353,
29871,
29900,
13,
13,
4706,
1583,
29889,
11345,
29918,
9040,
29889,
4397,
29898,
11345,
29918,
26290,
29892,
1044,
29892,
20751,
29892,
325,
29918,
11965,
29892,
325,
29918,
11965,
29918,
4622,
29897,
13,
4706,
736,
20751,
13,
13,
1678,
822,
1835,
29918,
2467,
29898,
1311,
1125,
13,
4706,
396,
1044,
13,
4706,
1835,
29918,
26290,
353,
1583,
29889,
657,
29918,
7323,
29918,
2080,
580,
13,
4706,
1044,
29918,
2378,
29892,
1044,
29892,
325,
29918,
11965,
353,
1583,
29889,
1212,
29889,
7323,
29918,
1212,
29889,
627,
29898,
7323,
29918,
26290,
29892,
26952,
29922,
8824,
29897,
13,
4706,
1583,
29889,
7323,
29918,
10568,
29898,
627,
29897,
13,
13,
4706,
396,
679,
2446,
2106,
322,
2446,
1819,
13,
4706,
1286,
29918,
7323,
29918,
26290,
353,
1583,
29889,
657,
29918,
7323,
29918,
2080,
580,
13,
4706,
325,
29918,
11965,
29918,
4622,
353,
1583,
29889,
1212,
29889,
7323,
29918,
1212,
29889,
657,
29918,
5975,
29898,
3707,
29918,
7323,
29918,
26290,
29897,
13,
4706,
325,
29918,
11965,
29918,
4622,
353,
1583,
29889,
657,
29918,
5975,
29898,
29894,
29918,
11965,
29918,
4622,
29897,
13,
13,
4706,
20751,
353,
29871,
29900,
13,
4706,
565,
1583,
29889,
2096,
29918,
26495,
29901,
13,
9651,
15645,
29918,
2248,
353,
315,
3032,
14226,
29918,
29950,
6259,
29950,
29918,
6006,
29918,
1177,
12336,
13,
9651,
9987,
29918,
2248,
353,
29871,
29896,
29900,
13,
13,
9651,
1833,
29918,
24602,
29918,
2798,
353,
1835,
29918,
26290,
29961,
24602,
29918,
2248,
29962,
718,
1835,
29918,
26290,
29961,
24602,
29918,
2248,
718,
29871,
29929,
29962,
13,
9651,
1286,
29918,
24602,
29918,
2798,
353,
1286,
29918,
7323,
29918,
26290,
29961,
24602,
29918,
2248,
29962,
718,
1286,
29918,
7323,
29918,
26290,
29961,
24602,
29918,
2248,
718,
29871,
29929,
29962,
13,
9651,
10839,
29918,
24602,
29918,
2798,
353,
1286,
29918,
7323,
29918,
26290,
29961,
24602,
29918,
2248,
718,
29871,
29896,
29962,
13,
9651,
1833,
29918,
279,
1357,
29918,
2798,
353,
1835,
29918,
26290,
29961,
279,
1357,
29918,
2248,
29962,
718,
1835,
29918,
26290,
29961,
24602,
29918,
2248,
718,
29871,
29896,
29900,
29962,
718,
1835,
29918,
26290,
29961,
24602,
29918,
2248,
718,
29871,
29896,
29896,
29962,
13,
9651,
1286,
29918,
279,
1357,
29918,
2798,
353,
1286,
29918,
7323,
29918,
26290,
29961,
279,
1357,
29918,
2248,
29962,
718,
1286,
29918,
7323,
29918,
26290,
29961,
24602,
29918,
2248,
718,
29871,
29896,
29900,
29962,
718,
1286,
29918,
7323,
29918,
26290,
29961,
24602,
29918,
2248,
718,
29871,
29896,
29896,
29962,
13,
13,
9651,
565,
1286,
29918,
24602,
29918,
2798,
5277,
10839,
29918,
24602,
29918,
2798,
29901,
13,
18884,
20751,
4619,
1286,
29918,
24602,
29918,
2798,
448,
1833,
29918,
24602,
29918,
2798,
13,
9651,
25342,
1044,
1275,
29871,
29900,
29901,
13,
18884,
20751,
22361,
1286,
29918,
24602,
29918,
2798,
448,
1833,
29918,
24602,
29918,
2798,
13,
13,
9651,
565,
1286,
29918,
279,
1357,
29918,
2798,
5277,
379,
2890,
29889,
279,
1357,
29901,
13,
18884,
20751,
4619,
1286,
29918,
279,
1357,
29918,
2798,
448,
1833,
29918,
279,
1357,
29918,
2798,
13,
13,
4706,
565,
1583,
29889,
1509,
29918,
6194,
29918,
2914,
29918,
276,
1328,
29901,
13,
9651,
20751,
353,
29871,
29900,
13,
13,
4706,
1583,
29889,
7323,
29918,
9040,
29889,
4397,
29898,
7323,
29918,
26290,
29892,
1044,
29892,
20751,
29892,
325,
29918,
11965,
29892,
325,
29918,
11965,
29918,
4622,
29897,
13,
13,
4706,
736,
20751,
13,
13,
1678,
822,
8589,
29918,
2467,
29898,
1311,
1125,
13,
4706,
20751,
353,
29871,
29900,
13,
13,
4706,
396,
4337,
10656,
13,
4706,
9987,
29892,
9987,
29918,
1066,
353,
501,
29889,
657,
29918,
13318,
29918,
279,
1357,
29898,
1311,
29889,
6272,
29889,
11802,
29918,
3888,
29892,
1583,
29889,
26290,
29897,
13,
4706,
565,
9987,
29901,
13,
9651,
1583,
29889,
11177,
29918,
2467,
29898,
29907,
3032,
6720,
12064,
29918,
29907,
5194,
1001,
29909,
29892,
29871,
29900,
29892,
518,
279,
1357,
29918,
1066,
2314,
13,
9651,
1583,
29889,
2622,
29898,
29907,
3032,
6404,
29918,
1718,
17870,
29892,
315,
3032,
1718,
17870,
29918,
27992,
29892,
5519,
29900,
24960,
13,
13,
4706,
565,
451,
1583,
29889,
1509,
29918,
29888,
523,
29901,
13,
9651,
341,
29889,
1131,
547,
29918,
10568,
29898,
1311,
29897,
13,
13,
9651,
565,
1583,
29889,
1509,
29918,
509,
860,
29918,
29941,
29901,
13,
18884,
565,
1583,
29889,
26290,
29889,
1610,
29918,
26739,
362,
29889,
26739,
362,
29889,
9106,
29918,
9435,
29889,
279,
1357,
29918,
2798,
6736,
29871,
29947,
29901,
13,
462,
1678,
396,
341,
29889,
6451,
29918,
10568,
29898,
1311,
29897,
13,
462,
1678,
396,
341,
29889,
1131,
547,
29918,
10568,
29898,
1311,
29897,
13,
462,
1678,
20751,
353,
29871,
29896,
13,
13,
4706,
736,
20751,
13,
13,
1678,
822,
731,
29918,
15581,
29898,
1311,
1125,
13,
4706,
565,
1583,
29889,
10568,
1273,
315,
29889,
2230,
29918,
10685,
29898,
1311,
29889,
8299,
29918,
10685,
29918,
344,
2395,
29897,
1275,
29871,
29896,
29901,
13,
9651,
1583,
29889,
8299,
29918,
15581,
353,
5852,
13,
13,
4706,
565,
1583,
29889,
10568,
1273,
315,
29889,
2230,
29918,
10685,
29898,
1311,
29889,
3188,
29918,
10685,
29918,
344,
2395,
29897,
1275,
29871,
29896,
29901,
13,
9651,
1583,
29889,
3188,
29918,
15581,
353,
5852,
13,
13,
4706,
565,
1583,
29889,
10568,
1273,
315,
29889,
2230,
29918,
10685,
29898,
1311,
29889,
29890,
5315,
29918,
10685,
29918,
344,
2395,
29897,
1275,
29871,
29896,
29901,
13,
9651,
1583,
29889,
29890,
5315,
29918,
15581,
353,
5852,
13,
13,
1678,
822,
9109,
29918,
2467,
29898,
1311,
29892,
3158,
29892,
5190,
29918,
1853,
29892,
6389,
1125,
13,
4706,
565,
341,
29889,
3198,
29918,
7529,
29898,
1311,
29892,
3158,
29892,
5190,
29918,
1853,
29892,
6389,
29892,
29871,
29896,
1125,
13,
9651,
20881,
353,
1583,
29889,
6272,
29889,
10568,
4197,
1557,
29906,
29918,
7387,
29889,
6678,
5594,
29898,
2467,
29892,
6389,
29897,
2314,
29961,
29900,
29962,
13,
9651,
1583,
29889,
26290,
353,
20881,
13,
9651,
1583,
29889,
10568,
4619,
29871,
29896,
13,
9651,
1583,
29889,
5504,
29918,
2914,
580,
13,
9651,
1583,
29889,
842,
29918,
15581,
580,
13,
13,
1678,
822,
1831,
29898,
1311,
29892,
3158,
29892,
5190,
29918,
1853,
29892,
6389,
1125,
13,
4706,
396,
9109,
1831,
13,
4706,
565,
341,
29889,
3198,
29918,
7529,
29898,
1311,
29892,
3158,
29892,
5190,
29918,
1853,
29892,
6389,
29892,
29871,
29900,
1125,
13,
9651,
1583,
29889,
26290,
353,
1583,
29889,
6272,
29889,
10568,
4197,
1557,
29906,
29918,
7387,
29889,
6678,
5594,
29898,
2467,
29892,
6389,
29897,
2314,
29961,
29900,
29962,
13,
9651,
1583,
29889,
265,
29918,
2622,
353,
5190,
29918,
1853,
13,
9651,
1583,
29889,
5504,
29918,
2914,
580,
13,
9651,
1583,
29889,
10568,
4619,
29871,
29896,
13,
9651,
1583,
29889,
842,
29918,
15581,
580,
13,
13,
4706,
396,
1683,
29901,
13,
4706,
396,
1596,
877,
2525,
16515,
29918,
7387,
1178,
29901,
742,
3158,
29892,
525,
322,
1134,
29901,
742,
5190,
29918,
1853,
29892,
525,
322,
6389,
29901,
742,
6389,
29897,
13,
13,
1678,
732,
6799,
13,
1678,
822,
1121,
29898,
1311,
1125,
13,
4706,
736,
1583,
3032,
2914,
13,
13,
1678,
822,
2767,
29918,
2914,
29898,
1311,
1125,
13,
4706,
565,
1583,
29889,
26290,
338,
6213,
29901,
13,
9651,
736,
13,
4706,
565,
1583,
29889,
26290,
29889,
4230,
580,
470,
1583,
29889,
6272,
29889,
3859,
1275,
5177,
29889,
14448,
1542,
29889,
4375,
1254,
29901,
13,
9651,
1583,
29889,
275,
29918,
355,
353,
5852,
13,
9651,
21957,
353,
29871,
29900,
13,
9651,
288,
353,
1583,
29889,
26290,
29889,
1610,
29918,
26739,
362,
13,
9651,
4847,
29918,
333,
353,
288,
29889,
26739,
362,
29889,
9106,
29918,
9435,
29889,
9106,
29918,
333,
13,
9651,
363,
364,
297,
288,
29889,
9106,
29918,
2914,
29901,
13,
18884,
565,
364,
29889,
9106,
29918,
333,
1275,
4847,
29918,
333,
29901,
13,
462,
1678,
21957,
353,
885,
29906,
29918,
6272,
3032,
27338,
29918,
9902,
29889,
657,
29898,
29878,
29889,
2914,
29892,
29871,
29900,
29897,
13,
9651,
16608,
353,
288,
29889,
26739,
362,
29889,
11802,
29918,
7888,
13,
9651,
1121,
353,
9657,
580,
13,
9651,
1121,
1839,
449,
2763,
2033,
353,
21957,
13,
9651,
1121,
1839,
276,
1328,
2033,
353,
1583,
29889,
26290,
29889,
276,
1328,
13,
9651,
1121,
1839,
19935,
2033,
353,
16608,
13,
13,
9651,
565,
451,
1583,
29889,
1509,
29918,
3626,
552,
29918,
276,
1328,
29901,
13,
18884,
1121,
1839,
5080,
2033,
353,
448,
29896,
259,
396,
14402,
29892,
1735,
372,
13,
18884,
565,
1121,
1839,
276,
1328,
2033,
1275,
29871,
29896,
29901,
13,
462,
1678,
1121,
1839,
5080,
2033,
353,
29871,
29896,
13,
9651,
1683,
29901,
13,
18884,
1121,
1839,
5080,
2033,
353,
1583,
29889,
26290,
29889,
276,
1328,
13,
13,
9651,
1583,
3032,
2914,
353,
1121,
13,
9651,
1596,
877,
1456,
1095,
29892,
3001,
736,
742,
1583,
29889,
26290,
29889,
276,
1328,
29897,
13,
9651,
1583,
29889,
10568,
353,
29871,
29900,
13,
13,
1678,
822,
679,
29918,
5975,
29898,
1311,
29892,
1819,
1125,
13,
4706,
396,
1423,
565,
278,
3748,
338,
1095,
13,
4706,
565,
1583,
29889,
275,
29918,
355,
29901,
13,
9651,
736,
29871,
29900,
13,
4706,
1683,
29901,
13,
9651,
736,
1819,
13,
2
] |
whisk/template/{{ cookiecutter.repo_name }}/setup.py | BookletAI/whisk | 8 | 83958 | <filename>whisk/template/{{ cookiecutter.repo_name }}/setup.py
from setuptools import find_packages, setup
setup(
name='{{cookiecutter.project_name}}',
package_dir={'': 'src'},
packages=find_packages(where='src'),
version='0.1.0',
include_package_data=True,
# By default only whisk is added as a dependency. whisk is required for
# accessing the artifacts_dir.
#
# You likely need to list more dependencies for your model package.
# For example: your model framework (Scikit, Torch, etc), numpy, Pandas, etc.
#
# See https://docs.whisk-ml.org/en/latest/packaging.html for help on packaging your model.
install_requires=[
'{{cookiecutter.whisk_install_requires}}'
],
entry_points={
'console_scripts': [
'{{cookiecutter.project_name}}={{cookiecutter.project_name}}.cli.main:cli',
],
},
description='A short description of the project.',
author='<NAME> (or your organization/company/team)',
author_email='<EMAIL>',
python_requires='>=3.6',
url="https://ADD THE URL TO YOUR PROJECT GITHUB REPO OR DOCS"
)
| [
1,
529,
9507,
29958,
1332,
3873,
29914,
6886,
29914,
6224,
15327,
29883,
6463,
29889,
20095,
29918,
978,
500,
6822,
14669,
29889,
2272,
13,
3166,
731,
21245,
8789,
1053,
1284,
29918,
8318,
29892,
6230,
13,
13,
14669,
29898,
13,
1678,
1024,
2433,
6224,
15108,
21199,
6463,
29889,
4836,
29918,
978,
930,
742,
13,
1678,
3577,
29918,
3972,
3790,
29915,
2396,
525,
4351,
16675,
13,
1678,
9741,
29922,
2886,
29918,
8318,
29898,
3062,
2433,
4351,
5477,
13,
1678,
1873,
2433,
29900,
29889,
29896,
29889,
29900,
742,
13,
1678,
3160,
29918,
5113,
29918,
1272,
29922,
5574,
29892,
13,
1678,
396,
2648,
2322,
871,
377,
3873,
338,
2715,
408,
263,
10609,
29889,
377,
3873,
338,
3734,
363,
13,
1678,
396,
17378,
278,
24238,
29879,
29918,
3972,
29889,
13,
1678,
396,
13,
1678,
396,
887,
5517,
817,
304,
1051,
901,
9962,
363,
596,
1904,
3577,
29889,
13,
1678,
396,
1152,
1342,
29901,
596,
1904,
6890,
313,
29903,
455,
7354,
29892,
4794,
305,
29892,
2992,
511,
12655,
29892,
349,
7086,
29892,
2992,
29889,
13,
1678,
396,
13,
1678,
396,
2823,
2045,
597,
2640,
29889,
1332,
3873,
29899,
828,
29889,
990,
29914,
264,
29914,
12333,
29914,
4058,
6751,
29889,
1420,
363,
1371,
373,
4870,
6751,
596,
1904,
29889,
13,
1678,
2601,
29918,
276,
339,
2658,
11759,
13,
4706,
525,
6224,
15108,
21199,
6463,
29889,
1332,
3873,
29918,
6252,
29918,
276,
339,
2658,
930,
29915,
13,
1678,
21251,
13,
1678,
6251,
29918,
9748,
3790,
13,
4706,
525,
11058,
29918,
16713,
2396,
518,
13,
9651,
525,
6224,
15108,
21199,
6463,
29889,
4836,
29918,
978,
930,
28493,
15108,
21199,
6463,
29889,
4836,
29918,
978,
27243,
11303,
29889,
3396,
29901,
11303,
742,
13,
4706,
21251,
13,
1678,
2981,
13,
1678,
6139,
2433,
29909,
3273,
6139,
310,
278,
2060,
29889,
742,
13,
1678,
4148,
2433,
29966,
5813,
29958,
313,
272,
596,
13013,
29914,
14518,
29914,
14318,
29897,
742,
13,
1678,
4148,
29918,
5269,
2433,
29966,
26862,
6227,
29958,
742,
13,
1678,
3017,
29918,
276,
339,
2658,
2433,
18572,
29941,
29889,
29953,
742,
13,
1678,
3142,
543,
991,
597,
17744,
6093,
3988,
7495,
612,
22970,
13756,
17637,
402,
13054,
7466,
5195,
13152,
6323,
11662,
9295,
29908,
13,
29897,
13,
2
] |
2016/python/day20.py | astonshane/AdventOfCode | 0 | 47724 | MAX = 4294967295
blacklist = []
with open("inputs/day20.txt") as f:
for line in f:
line = line.strip().split('-')
blacklist.append([int(x) for x in line])
blacklist.sort()
def part1():
ip = 0
for i in range(0, len(blacklist)):
bl = blacklist[i]
if ip < bl[0]:
break
if bl[1] > ip:
ip = bl[1]+1
print "(part1):", ip
def part2():
ip = 0
good_ips = 0
for i in range(0, len(blacklist)):
bl = blacklist[i]
if ip < bl[0]:
good_ips += bl[0]-ip
ip = bl[1]+1
elif bl[1] > ip:
ip = bl[1]+1
print "(part2):", good_ips
part1()
part2()
| [
1,
18134,
353,
29871,
29946,
29906,
29929,
29946,
29929,
29953,
29955,
29906,
29929,
29945,
13,
13,
8517,
1761,
353,
5159,
13,
2541,
1722,
703,
2080,
29879,
29914,
3250,
29906,
29900,
29889,
3945,
1159,
408,
285,
29901,
13,
1678,
363,
1196,
297,
285,
29901,
13,
4706,
1196,
353,
1196,
29889,
17010,
2141,
5451,
877,
29899,
1495,
13,
4706,
4628,
1761,
29889,
4397,
4197,
524,
29898,
29916,
29897,
363,
921,
297,
1196,
2314,
13,
13,
8517,
1761,
29889,
6605,
580,
13,
13,
1753,
760,
29896,
7295,
13,
1678,
10377,
353,
29871,
29900,
13,
1678,
363,
474,
297,
3464,
29898,
29900,
29892,
7431,
29898,
8517,
1761,
22164,
13,
4706,
1999,
353,
4628,
1761,
29961,
29875,
29962,
13,
13,
4706,
565,
10377,
529,
1999,
29961,
29900,
5387,
13,
9651,
2867,
13,
4706,
565,
1999,
29961,
29896,
29962,
1405,
10377,
29901,
13,
9651,
10377,
353,
1999,
29961,
29896,
10062,
29896,
13,
13,
13,
13,
1678,
1596,
18227,
1595,
29896,
1125,
613,
10377,
13,
13,
1753,
760,
29906,
7295,
13,
1678,
10377,
353,
29871,
29900,
13,
1678,
1781,
29918,
4512,
353,
29871,
29900,
13,
1678,
363,
474,
297,
3464,
29898,
29900,
29892,
7431,
29898,
8517,
1761,
22164,
13,
4706,
1999,
353,
4628,
1761,
29961,
29875,
29962,
13,
13,
4706,
565,
10377,
529,
1999,
29961,
29900,
5387,
13,
9651,
1781,
29918,
4512,
4619,
1999,
29961,
29900,
29962,
29899,
666,
13,
9651,
10377,
353,
1999,
29961,
29896,
10062,
29896,
13,
4706,
25342,
1999,
29961,
29896,
29962,
1405,
10377,
29901,
13,
9651,
10377,
353,
1999,
29961,
29896,
10062,
29896,
13,
13,
13,
1678,
1596,
18227,
1595,
29906,
1125,
613,
1781,
29918,
4512,
13,
13,
1595,
29896,
580,
13,
1595,
29906,
580,
13,
2
] |
readqueue.py | YousefAllam221b/QuickStor | 0 | 1602795 | #!/usr/bin/python3.6
import os,sys, datetime
from subprocess import run
from subprocess import PIPE
cmdline='sh getqueue.sh'
x=run(cmdline.split(),stdout=PIPE).stdout
y=x.decode('utf-8')
z=y.split('\n')
stopfinish=[]
allstopfinish=[]
other=[]
countfinish=0
for x in z:
if len(x) < 4:
continue
st=x.split()
if 'finish' in st[3] or 'stop' in st[3]:
stopfinish.append((st[2],st[5]))
if countfinish < 2:
other.append(x)
countfinish+=1
else:
allstopfinish.append(x)
elif (st[2],st[5]) in stopfinish:
stopfinish.remove((st[2],st[5]))
allstopfinish.append(x)
else:
other.append(x)
other.reverse()
print(other)
| [
1,
18787,
4855,
29914,
2109,
29914,
4691,
29941,
29889,
29953,
13,
5215,
2897,
29892,
9675,
29892,
12865,
13,
3166,
1014,
5014,
1053,
1065,
13,
3166,
1014,
5014,
1053,
349,
29902,
4162,
13,
9006,
1220,
2433,
845,
679,
9990,
29889,
845,
29915,
13,
29916,
29922,
3389,
29898,
9006,
1220,
29889,
5451,
3285,
25393,
29922,
2227,
4162,
467,
25393,
13,
29891,
29922,
29916,
29889,
13808,
877,
9420,
29899,
29947,
1495,
13,
29920,
29922,
29891,
29889,
5451,
28909,
29876,
1495,
13,
9847,
4951,
728,
29922,
2636,
13,
497,
9847,
4951,
728,
29922,
2636,
13,
1228,
29922,
2636,
13,
2798,
4951,
728,
29922,
29900,
13,
1454,
921,
297,
503,
29901,
13,
565,
7431,
29898,
29916,
29897,
529,
29871,
29946,
29901,
13,
29871,
6773,
13,
380,
29922,
29916,
29889,
5451,
580,
13,
565,
525,
4951,
728,
29915,
297,
380,
29961,
29941,
29962,
470,
525,
9847,
29915,
297,
380,
29961,
29941,
5387,
13,
29871,
5040,
4951,
728,
29889,
4397,
3552,
303,
29961,
29906,
1402,
303,
29961,
29945,
12622,
13,
29871,
565,
2302,
4951,
728,
529,
29871,
29906,
29901,
29871,
13,
259,
916,
29889,
4397,
29898,
29916,
29897,
13,
259,
2302,
4951,
728,
23661,
29896,
13,
29871,
1683,
29901,
13,
259,
599,
9847,
4951,
728,
29889,
4397,
29898,
29916,
29897,
13,
25342,
29871,
313,
303,
29961,
29906,
1402,
303,
29961,
29945,
2314,
297,
5040,
4951,
728,
29901,
13,
29871,
5040,
4951,
728,
29889,
5992,
3552,
303,
29961,
29906,
1402,
303,
29961,
29945,
12622,
13,
29871,
599,
9847,
4951,
728,
29889,
4397,
29898,
29916,
29897,
13,
1683,
29901,
13,
29871,
916,
29889,
4397,
29898,
29916,
29897,
13,
1228,
29889,
24244,
580,
13,
2158,
29898,
1228,
29897,
13,
2
] |
synestia-book/_build/jupyter_execute/docs/syndef/PowerLawFits.py | ststewart/synestiabook2 | 0 | 174367 | #!/usr/bin/env python
# coding: utf-8
# In[1]:
#move this notebook to folder above syndef to run
from syndef import synfits #import synestia snapshot (impact database)
import numpy as np
import matplotlib.pyplot as plt
test_rxy=np.linspace(7e6,60e6,100) #m
test_z=np.linspace(0.001e6,30e6,50) #m
rxy=np.log10(test_rxy/1e6) #Mm log10
z=np.log10(test_z/1e6) #Mm log10
TESTRXY,TESTZ=np.meshgrid(test_rxy,test_z) #2-D grid of rxy, z for color plot
#y=np.zeros(np.shape(rxy)) #array of zeros for residual fit
#rho1=synfits.resfuncspl(synfits.SNAP_Canup.rhomidfit[1],rxy,y)
#rho2=synfits.resfuncspl(synfits.SNAP_CukStewart.rhomidfit[1],rxy,y)
#rho3=synfits.resfuncspl(synfits.SNAP_Quintana.rhomidfit[1],rxy,y)
snaprho1=np.log10(synfits.SNAP_Canup.rho[synfits.SNAP_Canup.ind_outer])
snaprho2=np.log10(synfits.SNAP_CukStewart.rho[synfits.SNAP_CukStewart.ind_outer])
snaprho3=np.log10(synfits.SNAP_Quintana.rho[synfits.SNAP_Quintana.ind_outer])
snaprhomid1=np.log10(synfits.SNAP_Canup.rho[synfits.SNAP_Canup.ind_outer_mid])
snaprhomid2=np.log10(synfits.SNAP_CukStewart.rho[synfits.SNAP_CukStewart.ind_outer_mid])
snaprhomid3=np.log10(synfits.SNAP_Quintana.rho[synfits.SNAP_Quintana.ind_outer_mid])
snaprxy1=np.log10(synfits.SNAP_Canup.rxy[synfits.SNAP_Canup.ind_outer]/1e6)
snaprxy2=np.log10(synfits.SNAP_CukStewart.rxy[synfits.SNAP_CukStewart.ind_outer]/1e6)
snaprxy3=np.log10(synfits.SNAP_Quintana.rxy[synfits.SNAP_Quintana.ind_outer]/1e6)
snaprxymid1=np.log10(synfits.SNAP_Canup.rxy[synfits.SNAP_Canup.ind_outer_mid]/1e6)
snaprxymid2=np.log10(synfits.SNAP_CukStewart.rxy[synfits.SNAP_CukStewart.ind_outer_mid]/1e6)
snaprxymid3=np.log10(synfits.SNAP_Quintana.rxy[synfits.SNAP_Quintana.ind_outer_mid]/1e6)
snapz1=np.log10(synfits.SNAP_Canup.z[synfits.SNAP_Canup.ind_outer]/1e6)
snapz2=np.log10(synfits.SNAP_CukStewart.z[synfits.SNAP_CukStewart.ind_outer]/1e6)
snapz3=np.log10(synfits.SNAP_Quintana.z[synfits.SNAP_Quintana.ind_outer]/1e6)
const1=10.5#10 to 11; 10.55 (fiducial)
const2=0.86#0.85 to 0.9; 0.86 (fiducial)
const3=1e38 #0.9e35 (fiducial) / 1.5e33 (underestimate) / 1.1e37 (cross) / 1e38 (overestimate)
const4=-5.1 #-4.7 (fiducial) / -4.5 (underestimate) / -5 (cross) / -5.1 (overestimate)
test_z_s=const1*np.power(TESTRXY,const2) #scale height fit in m
test_rho_g=const3*np.power(TESTRXY,const4)*np.exp(-np.power(TESTZ/test_z_s,2))
test_rho_gmid=const3*np.power(test_rxy,const4)
plt.figure(figsize=(16,5))
plt.subplot(131)
#plt.plot(rxy,rho1,'b')
plt.plot(snaprxymid1,snaprhomid1,'r.')
plt.plot(np.log10(test_rxy/1e6),np.log10(test_rho_gmid),'k')
plt.xlabel('log r$_{xy}$ (Mm)')
plt.ylabel('log midplane density (kg/m$^3$)')
plt.title('Canup')
plt.xlim([.8,2])
plt.ylim([-2,3])
plt.subplot(132)
#plt.plot(rxy,rho2,'b')
plt.plot(snaprxymid2,snaprhomid2,'r.')
plt.plot(np.log10(test_rxy/1e6),np.log10(test_rho_gmid),'k')
plt.xlabel('log r$_{xy}$ (Mm)')
plt.ylabel('log midplane density (kg/m$^3$)')
plt.title('Cuk and Stewart')
plt.xlim([.8,2])
plt.ylim([-2,3])
plt.subplot(133)
#plt.plot(rxy,rho3,'b')
plt.plot(snaprxymid3,snaprhomid3,'r.')
plt.plot(np.log10(test_rxy/1e6),np.log10(test_rho_gmid),'k')
plt.xlabel('log r$_{xy}$ (Mm)')
plt.ylabel('log midplane density (kg/m$^3$)')
plt.title('Quintana')
plt.xlim([.8,2])
plt.ylim([-2,3])
plt.show()
plt.close()
plt.figure(figsize=(16,5))
plt.subplot(131)
plt.pcolor(np.log10(TESTRXY/1e6),np.log10(TESTZ/1e6),np.log10(test_rho_g))
plt.scatter(snaprxy1,snapz1,c=snaprho1)
plt.xlabel('log r$_{xy}$ (Mm)')
plt.ylabel('log z (Mm)')
plt.colorbar(label='log density (kg/m$^3$)')
plt.xlim([.8,2])
plt.subplot(132)
plt.pcolor(np.log10(TESTRXY/1e6),np.log10(TESTZ/1e6),np.log10(test_rho_g))
plt.scatter(snaprxy2,snapz2,c=snaprho2)
plt.xlabel('log r$_{xy}$ (Mm)')
plt.ylabel('log z (Mm)')
plt.colorbar(label='log density (kg/m$^3$)')
plt.xlim([.8,2])
plt.subplot(133)
plt.pcolor(np.log10(TESTRXY/1e6),np.log10(TESTZ/1e6),np.log10(test_rho_g))
plt.scatter(snaprxy3,snapz3,c=snaprho3)
plt.xlabel('log r$_{xy}$ (Mm)')
plt.ylabel('log z (Mm)')
plt.colorbar(label='log density (kg/m$^3$)')
plt.xlim([.8,2])
plt.show()
plt.close()
# In[ ]:
| [
1,
18787,
4855,
29914,
2109,
29914,
6272,
3017,
13,
29937,
14137,
29901,
23616,
29899,
29947,
13,
13,
29937,
512,
29961,
29896,
5387,
13,
13,
13,
29937,
11631,
445,
451,
19273,
304,
4138,
2038,
22898,
1389,
304,
1065,
13,
3166,
22898,
1389,
1053,
5222,
29888,
1169,
396,
5215,
5222,
342,
423,
22395,
313,
6574,
627,
2566,
29897,
13,
5215,
12655,
408,
7442,
13,
5215,
22889,
29889,
2272,
5317,
408,
14770,
13,
13,
1688,
29918,
29878,
3594,
29922,
9302,
29889,
1915,
3493,
29898,
29955,
29872,
29953,
29892,
29953,
29900,
29872,
29953,
29892,
29896,
29900,
29900,
29897,
396,
29885,
13,
1688,
29918,
29920,
29922,
9302,
29889,
1915,
3493,
29898,
29900,
29889,
29900,
29900,
29896,
29872,
29953,
29892,
29941,
29900,
29872,
29953,
29892,
29945,
29900,
29897,
396,
29885,
13,
29878,
3594,
29922,
9302,
29889,
1188,
29896,
29900,
29898,
1688,
29918,
29878,
3594,
29914,
29896,
29872,
29953,
29897,
396,
29924,
29885,
1480,
29896,
29900,
13,
29920,
29922,
9302,
29889,
1188,
29896,
29900,
29898,
1688,
29918,
29920,
29914,
29896,
29872,
29953,
29897,
396,
29924,
29885,
1480,
29896,
29900,
13,
4330,
10810,
18454,
29892,
18267,
29999,
29922,
9302,
29889,
4467,
29882,
7720,
29898,
1688,
29918,
29878,
3594,
29892,
1688,
29918,
29920,
29897,
396,
29906,
29899,
29928,
6856,
310,
364,
3594,
29892,
503,
363,
2927,
6492,
13,
29937,
29891,
29922,
9302,
29889,
3298,
359,
29898,
9302,
29889,
12181,
29898,
29878,
3594,
876,
396,
2378,
310,
24786,
363,
10995,
950,
6216,
13,
13,
29937,
4650,
29896,
29922,
19274,
29888,
1169,
29889,
690,
7692,
2395,
572,
29898,
19274,
29888,
1169,
29889,
19296,
3301,
29918,
6028,
786,
29889,
29878,
9706,
333,
9202,
29961,
29896,
1402,
29878,
3594,
29892,
29891,
29897,
13,
29937,
4650,
29906,
29922,
19274,
29888,
1169,
29889,
690,
7692,
2395,
572,
29898,
19274,
29888,
1169,
29889,
19296,
3301,
29918,
29907,
2679,
7789,
10305,
29889,
29878,
9706,
333,
9202,
29961,
29896,
1402,
29878,
3594,
29892,
29891,
29897,
13,
29937,
4650,
29941,
29922,
19274,
29888,
1169,
29889,
690,
7692,
2395,
572,
29898,
19274,
29888,
1169,
29889,
19296,
3301,
29918,
2182,
524,
1648,
29889,
29878,
9706,
333,
9202,
29961,
29896,
1402,
29878,
3594,
29892,
29891,
29897,
13,
13,
29879,
8971,
4650,
29896,
29922,
9302,
29889,
1188,
29896,
29900,
29898,
19274,
29888,
1169,
29889,
19296,
3301,
29918,
6028,
786,
29889,
4650,
29961,
19274,
29888,
1169,
29889,
19296,
3301,
29918,
6028,
786,
29889,
513,
29918,
5561,
2314,
13,
29879,
8971,
4650,
29906,
29922,
9302,
29889,
1188,
29896,
29900,
29898,
19274,
29888,
1169,
29889,
19296,
3301,
29918,
29907,
2679,
7789,
10305,
29889,
4650,
29961,
19274,
29888,
1169,
29889,
19296,
3301,
29918,
29907,
2679,
7789,
10305,
29889,
513,
29918,
5561,
2314,
13,
29879,
8971,
4650,
29941,
29922,
9302,
29889,
1188,
29896,
29900,
29898,
19274,
29888,
1169,
29889,
19296,
3301,
29918,
2182,
524,
1648,
29889,
4650,
29961,
19274,
29888,
1169,
29889,
19296,
3301,
29918,
2182,
524,
1648,
29889,
513,
29918,
5561,
2314,
13,
13,
29879,
8971,
29878,
9706,
333,
29896,
29922,
9302,
29889,
1188,
29896,
29900,
29898,
19274,
29888,
1169,
29889,
19296,
3301,
29918,
6028,
786,
29889,
4650,
29961,
19274,
29888,
1169,
29889,
19296,
3301,
29918,
6028,
786,
29889,
513,
29918,
5561,
29918,
6563,
2314,
13,
29879,
8971,
29878,
9706,
333,
29906,
29922,
9302,
29889,
1188,
29896,
29900,
29898,
19274,
29888,
1169,
29889,
19296,
3301,
29918,
29907,
2679,
7789,
10305,
29889,
4650,
29961,
19274,
29888,
1169,
29889,
19296,
3301,
29918,
29907,
2679,
7789,
10305,
29889,
513,
29918,
5561,
29918,
6563,
2314,
13,
29879,
8971,
29878,
9706,
333,
29941,
29922,
9302,
29889,
1188,
29896,
29900,
29898,
19274,
29888,
1169,
29889,
19296,
3301,
29918,
2182,
524,
1648,
29889,
4650,
29961,
19274,
29888,
1169,
29889,
19296,
3301,
29918,
2182,
524,
1648,
29889,
513,
29918,
5561,
29918,
6563,
2314,
13,
13,
29879,
8971,
29878,
3594,
29896,
29922,
9302,
29889,
1188,
29896,
29900,
29898,
19274,
29888,
1169,
29889,
19296,
3301,
29918,
6028,
786,
29889,
29878,
3594,
29961,
19274,
29888,
1169,
29889,
19296,
3301,
29918,
6028,
786,
29889,
513,
29918,
5561,
16261,
29896,
29872,
29953,
29897,
13,
29879,
8971,
29878,
3594,
29906,
29922,
9302,
29889,
1188,
29896,
29900,
29898,
19274,
29888,
1169,
29889,
19296,
3301,
29918,
29907,
2679,
7789,
10305,
29889,
29878,
3594,
29961,
19274,
29888,
1169,
29889,
19296,
3301,
29918,
29907,
2679,
7789,
10305,
29889,
513,
29918,
5561,
16261,
29896,
29872,
29953,
29897,
13,
29879,
8971,
29878,
3594,
29941,
29922,
9302,
29889,
1188,
29896,
29900,
29898,
19274,
29888,
1169,
29889,
19296,
3301,
29918,
2182,
524,
1648,
29889,
29878,
3594,
29961,
19274,
29888,
1169,
29889,
19296,
3301,
29918,
2182,
524,
1648,
29889,
513,
29918,
5561,
16261,
29896,
29872,
29953,
29897,
13,
13,
29879,
8971,
17697,
962,
333,
29896,
29922,
9302,
29889,
1188,
29896,
29900,
29898,
19274,
29888,
1169,
29889,
19296,
3301,
29918,
6028,
786,
29889,
29878,
3594,
29961,
19274,
29888,
1169,
29889,
19296,
3301,
29918,
6028,
786,
29889,
513,
29918,
5561,
29918,
6563,
16261,
29896,
29872,
29953,
29897,
13,
29879,
8971,
17697,
962,
333,
29906,
29922,
9302,
29889,
1188,
29896,
29900,
29898,
19274,
29888,
1169,
29889,
19296,
3301,
29918,
29907,
2679,
7789,
10305,
29889,
29878,
3594,
29961,
19274,
29888,
1169,
29889,
19296,
3301,
29918,
29907,
2679,
7789,
10305,
29889,
513,
29918,
5561,
29918,
6563,
16261,
29896,
29872,
29953,
29897,
13,
29879,
8971,
17697,
962,
333,
29941,
29922,
9302,
29889,
1188,
29896,
29900,
29898,
19274,
29888,
1169,
29889,
19296,
3301,
29918,
2182,
524,
1648,
29889,
29878,
3594,
29961,
19274,
29888,
1169,
29889,
19296,
3301,
29918,
2182,
524,
1648,
29889,
513,
29918,
5561,
29918,
6563,
16261,
29896,
29872,
29953,
29897,
13,
13,
29879,
8971,
29920,
29896,
29922,
9302,
29889,
1188,
29896,
29900,
29898,
19274,
29888,
1169,
29889,
19296,
3301,
29918,
6028,
786,
29889,
29920,
29961,
19274,
29888,
1169,
29889,
19296,
3301,
29918,
6028,
786,
29889,
513,
29918,
5561,
16261,
29896,
29872,
29953,
29897,
13,
29879,
8971,
29920,
29906,
29922,
9302,
29889,
1188,
29896,
29900,
29898,
19274,
29888,
1169,
29889,
19296,
3301,
29918,
29907,
2679,
7789,
10305,
29889,
29920,
29961,
19274,
29888,
1169,
29889,
19296,
3301,
29918,
29907,
2679,
7789,
10305,
29889,
513,
29918,
5561,
16261,
29896,
29872,
29953,
29897,
13,
29879,
8971,
29920,
29941,
29922,
9302,
29889,
1188,
29896,
29900,
29898,
19274,
29888,
1169,
29889,
19296,
3301,
29918,
2182,
524,
1648,
29889,
29920,
29961,
19274,
29888,
1169,
29889,
19296,
3301,
29918,
2182,
524,
1648,
29889,
513,
29918,
5561,
16261,
29896,
29872,
29953,
29897,
13,
13,
3075,
29896,
29922,
29896,
29900,
29889,
29945,
29937,
29896,
29900,
304,
29871,
29896,
29896,
29936,
29871,
29896,
29900,
29889,
29945,
29945,
313,
29888,
333,
29884,
1455,
29897,
13,
3075,
29906,
29922,
29900,
29889,
29947,
29953,
29937,
29900,
29889,
29947,
29945,
304,
29871,
29900,
29889,
29929,
29936,
29871,
29900,
29889,
29947,
29953,
313,
29888,
333,
29884,
1455,
29897,
13,
3075,
29941,
29922,
29896,
29872,
29941,
29947,
396,
29900,
29889,
29929,
29872,
29941,
29945,
313,
29888,
333,
29884,
1455,
29897,
847,
29871,
29896,
29889,
29945,
29872,
29941,
29941,
313,
5062,
342,
6490,
29897,
847,
29871,
29896,
29889,
29896,
29872,
29941,
29955,
313,
19128,
29897,
847,
29871,
29896,
29872,
29941,
29947,
313,
957,
342,
6490,
29897,
13,
3075,
29946,
10457,
29945,
29889,
29896,
396,
29899,
29946,
29889,
29955,
313,
29888,
333,
29884,
1455,
29897,
847,
448,
29946,
29889,
29945,
313,
5062,
342,
6490,
29897,
847,
448,
29945,
313,
19128,
29897,
847,
448,
29945,
29889,
29896,
313,
957,
342,
6490,
29897,
13,
1688,
29918,
29920,
29918,
29879,
29922,
3075,
29896,
29930,
9302,
29889,
13519,
29898,
4330,
10810,
18454,
29892,
3075,
29906,
29897,
396,
7052,
3171,
6216,
297,
286,
13,
1688,
29918,
4650,
29918,
29887,
29922,
3075,
29941,
29930,
9302,
29889,
13519,
29898,
4330,
10810,
18454,
29892,
3075,
29946,
11877,
9302,
29889,
4548,
6278,
9302,
29889,
13519,
29898,
18267,
29999,
29914,
1688,
29918,
29920,
29918,
29879,
29892,
29906,
876,
13,
1688,
29918,
4650,
29918,
29887,
6563,
29922,
3075,
29941,
29930,
9302,
29889,
13519,
29898,
1688,
29918,
29878,
3594,
29892,
3075,
29946,
29897,
13,
13,
572,
29873,
29889,
4532,
29898,
1003,
2311,
7607,
29896,
29953,
29892,
29945,
876,
13,
572,
29873,
29889,
1491,
5317,
29898,
29896,
29941,
29896,
29897,
13,
29937,
572,
29873,
29889,
5317,
29898,
29878,
3594,
29892,
4650,
29896,
5501,
29890,
1495,
13,
572,
29873,
29889,
5317,
29898,
29879,
8971,
17697,
962,
333,
29896,
29892,
29879,
8971,
29878,
9706,
333,
29896,
5501,
29878,
29889,
1495,
13,
572,
29873,
29889,
5317,
29898,
9302,
29889,
1188,
29896,
29900,
29898,
1688,
29918,
29878,
3594,
29914,
29896,
29872,
29953,
511,
9302,
29889,
1188,
29896,
29900,
29898,
1688,
29918,
4650,
29918,
29887,
6563,
511,
29915,
29895,
1495,
13,
572,
29873,
29889,
29916,
1643,
877,
1188,
364,
29938,
648,
3594,
1042,
313,
29924,
29885,
29897,
1495,
13,
572,
29873,
29889,
29891,
1643,
877,
1188,
7145,
22116,
9027,
313,
9415,
29914,
29885,
29938,
29985,
29941,
10931,
1495,
13,
572,
29873,
29889,
3257,
877,
6028,
786,
1495,
13,
572,
29873,
29889,
29916,
2576,
4197,
29889,
29947,
29892,
29906,
2314,
13,
572,
29873,
29889,
29891,
2576,
4197,
29899,
29906,
29892,
29941,
2314,
13,
13,
572,
29873,
29889,
1491,
5317,
29898,
29896,
29941,
29906,
29897,
13,
29937,
572,
29873,
29889,
5317,
29898,
29878,
3594,
29892,
4650,
29906,
5501,
29890,
1495,
13,
572,
29873,
29889,
5317,
29898,
29879,
8971,
17697,
962,
333,
29906,
29892,
29879,
8971,
29878,
9706,
333,
29906,
5501,
29878,
29889,
1495,
13,
572,
29873,
29889,
5317,
29898,
9302,
29889,
1188,
29896,
29900,
29898,
1688,
29918,
29878,
3594,
29914,
29896,
29872,
29953,
511,
9302,
29889,
1188,
29896,
29900,
29898,
1688,
29918,
4650,
29918,
29887,
6563,
511,
29915,
29895,
1495,
13,
572,
29873,
29889,
29916,
1643,
877,
1188,
364,
29938,
648,
3594,
1042,
313,
29924,
29885,
29897,
1495,
13,
572,
29873,
29889,
29891,
1643,
877,
1188,
7145,
22116,
9027,
313,
9415,
29914,
29885,
29938,
29985,
29941,
10931,
1495,
13,
572,
29873,
29889,
3257,
877,
29907,
2679,
322,
22389,
1495,
13,
572,
29873,
29889,
29916,
2576,
4197,
29889,
29947,
29892,
29906,
2314,
13,
572,
29873,
29889,
29891,
2576,
4197,
29899,
29906,
29892,
29941,
2314,
13,
13,
572,
29873,
29889,
1491,
5317,
29898,
29896,
29941,
29941,
29897,
13,
29937,
572,
29873,
29889,
5317,
29898,
29878,
3594,
29892,
4650,
29941,
5501,
29890,
1495,
13,
572,
29873,
29889,
5317,
29898,
29879,
8971,
17697,
962,
333,
29941,
29892,
29879,
8971,
29878,
9706,
333,
29941,
5501,
29878,
29889,
1495,
13,
572,
29873,
29889,
5317,
29898,
9302,
29889,
1188,
29896,
29900,
29898,
1688,
29918,
29878,
3594,
29914,
29896,
29872,
29953,
511,
9302,
29889,
1188,
29896,
29900,
29898,
1688,
29918,
4650,
29918,
29887,
6563,
511,
29915,
29895,
1495,
13,
572,
29873,
29889,
29916,
1643,
877,
1188,
364,
29938,
648,
3594,
1042,
313,
29924,
29885,
29897,
1495,
13,
572,
29873,
29889,
29891,
1643,
877,
1188,
7145,
22116,
9027,
313,
9415,
29914,
29885,
29938,
29985,
29941,
10931,
1495,
13,
572,
29873,
29889,
3257,
877,
2182,
524,
1648,
1495,
13,
572,
29873,
29889,
29916,
2576,
4197,
29889,
29947,
29892,
29906,
2314,
13,
572,
29873,
29889,
29891,
2576,
4197,
29899,
29906,
29892,
29941,
2314,
13,
572,
29873,
29889,
4294,
580,
13,
572,
29873,
29889,
5358,
580,
13,
13,
572,
29873,
29889,
4532,
29898,
1003,
2311,
7607,
29896,
29953,
29892,
29945,
876,
13,
572,
29873,
29889,
1491,
5317,
29898,
29896,
29941,
29896,
29897,
13,
572,
29873,
29889,
29886,
2780,
29898,
9302,
29889,
1188,
29896,
29900,
29898,
4330,
10810,
18454,
29914,
29896,
29872,
29953,
511,
9302,
29889,
1188,
29896,
29900,
29898,
18267,
29999,
29914,
29896,
29872,
29953,
511,
9302,
29889,
1188,
29896,
29900,
29898,
1688,
29918,
4650,
29918,
29887,
876,
13,
572,
29873,
29889,
1557,
2620,
29898,
29879,
8971,
29878,
3594,
29896,
29892,
29879,
8971,
29920,
29896,
29892,
29883,
29922,
29879,
8971,
4650,
29896,
29897,
13,
572,
29873,
29889,
29916,
1643,
877,
1188,
364,
29938,
648,
3594,
1042,
313,
29924,
29885,
29897,
1495,
13,
572,
29873,
29889,
29891,
1643,
877,
1188,
503,
313,
29924,
29885,
29897,
1495,
13,
572,
29873,
29889,
2780,
1646,
29898,
1643,
2433,
1188,
9027,
313,
9415,
29914,
29885,
29938,
29985,
29941,
10931,
1495,
13,
572,
29873,
29889,
29916,
2576,
4197,
29889,
29947,
29892,
29906,
2314,
13,
13,
572,
29873,
29889,
1491,
5317,
29898,
29896,
29941,
29906,
29897,
13,
572,
29873,
29889,
29886,
2780,
29898,
9302,
29889,
1188,
29896,
29900,
29898,
4330,
10810,
18454,
29914,
29896,
29872,
29953,
511,
9302,
29889,
1188,
29896,
29900,
29898,
18267,
29999,
29914,
29896,
29872,
29953,
511,
9302,
29889,
1188,
29896,
29900,
29898,
1688,
29918,
4650,
29918,
29887,
876,
13,
572,
29873,
29889,
1557,
2620,
29898,
29879,
8971,
29878,
3594,
29906,
29892,
29879,
8971,
29920,
29906,
29892,
29883,
29922,
29879,
8971,
4650,
29906,
29897,
13,
572,
29873,
29889,
29916,
1643,
877,
1188,
364,
29938,
648,
3594,
1042,
313,
29924,
29885,
29897,
1495,
13,
572,
29873,
29889,
29891,
1643,
877,
1188,
503,
313,
29924,
29885,
29897,
1495,
13,
572,
29873,
29889,
2780,
1646,
29898,
1643,
2433,
1188,
9027,
313,
9415,
29914,
29885,
29938,
29985,
29941,
10931,
1495,
13,
572,
29873,
29889,
29916,
2576,
4197,
29889,
29947,
29892,
29906,
2314,
13,
13,
572,
29873,
29889,
1491,
5317,
29898,
29896,
29941,
29941,
29897,
13,
572,
29873,
29889,
29886,
2780,
29898,
9302,
29889,
1188,
29896,
29900,
29898,
4330,
10810,
18454,
29914,
29896,
29872,
29953,
511,
9302,
29889,
1188,
29896,
29900,
29898,
18267,
29999,
29914,
29896,
29872,
29953,
511,
9302,
29889,
1188,
29896,
29900,
29898,
1688,
29918,
4650,
29918,
29887,
876,
13,
572,
29873,
29889,
1557,
2620,
29898,
29879,
8971,
29878,
3594,
29941,
29892,
29879,
8971,
29920,
29941,
29892,
29883,
29922,
29879,
8971,
4650,
29941,
29897,
13,
572,
29873,
29889,
29916,
1643,
877,
1188,
364,
29938,
648,
3594,
1042,
313,
29924,
29885,
29897,
1495,
13,
572,
29873,
29889,
29891,
1643,
877,
1188,
503,
313,
29924,
29885,
29897,
1495,
13,
572,
29873,
29889,
2780,
1646,
29898,
1643,
2433,
1188,
9027,
313,
9415,
29914,
29885,
29938,
29985,
29941,
10931,
1495,
13,
572,
29873,
29889,
29916,
2576,
4197,
29889,
29947,
29892,
29906,
2314,
13,
572,
29873,
29889,
4294,
580,
13,
572,
29873,
29889,
5358,
580,
13,
13,
13,
29937,
512,
29961,
4514,
29901,
13,
13,
13,
13,
13,
2
] |
covid/stream.py | yiliayliu/twitter-streaming | 1 | 150038 | <filename>covid/stream.py<gh_stars>1-10
import boto3
import json
from datetime import datetime
import calendar
import random
import time
import sys
# from tweepy.streaming import StreamListener
from tweepy import OAuthHandler
from tweepy import Stream
from configparser import SafeConfigParser
#Variables that contains the user credentials to access Twitter API
parser = SafeConfigParser()
parser.read('../stream.cfg')
#This is the super secret information
access_token = parser.get('stream', 'access_token')
access_token_secret = parser.get('stream', 'access_token_secret')
consumer_key = parser.get('stream', 'consumer_key')
consumer_secret = parser.get('stream', 'consumer_secret')
aws_key_id = parser.get('stream', 'aws_key_id')
aws_key = parser.get('stream', 'aws_key')
stream_name = 'twitter-covid' # fill the name of Kinesis data stream you created
# create kinesis client connection
kinesis_client = boto3.client('firehose',
region_name='us-east-1', # enter the region
aws_access_key_id=aws_key_id, # fill your AWS access key id
aws_secret_access_key=aws_key) # fill you aws secret access key
class TweetStream(Stream):
# on success
def on_data(self, data):
tweet = json.loads(data)
try:
if 'text' in tweet.keys():
#print (tweet['text'])
# message = str(tweet)+',\n'
message = json.dumps(tweet)
message = message + ",\n"
print(message+"=====new version\n")
kinesis_client.put_record(
DeliveryStreamName=stream_name,
Record={
'Data': message
}
)
except (AttributeError, Exception) as e:
print (e)
return True
# on failure
def on_error(self, status):
print(status)
if __name__ == '__main__':
# create instance of the tweepy tweet stream listener
stream = TweetStream(consumer_key,consumer_secret,
access_token,access_token_secret)
# set twitter keys/tokens
auth = OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_token_secret)
# create instance of the tweepy stream
# stream = Stream(auth, listener)
# search twitter for tags or keywords from cli parameters
query = sys.argv[1:] # list of CLI arguments
query_fname = ' '.join(query) # string
stream.filter(track=query)
| [
1,
529,
9507,
29958,
24542,
333,
29914,
5461,
29889,
2272,
29966,
12443,
29918,
303,
1503,
29958,
29896,
29899,
29896,
29900,
13,
5215,
289,
3747,
29941,
30004,
13,
5215,
4390,
30004,
13,
3166,
12865,
1053,
12865,
30004,
13,
5215,
17684,
30004,
13,
5215,
4036,
30004,
13,
5215,
931,
30004,
13,
5215,
10876,
30004,
13,
29937,
515,
7780,
1022,
29891,
29889,
5461,
292,
1053,
13763,
3962,
30004,
13,
3166,
7780,
1022,
29891,
1053,
438,
6444,
4598,
30004,
13,
3166,
7780,
1022,
29891,
1053,
13763,
30004,
13,
3166,
2295,
16680,
1053,
5701,
1725,
3991,
11726,
30004,
13,
30004,
13,
29937,
10444,
1849,
393,
3743,
278,
1404,
16140,
304,
2130,
20147,
3450,
30004,
13,
16680,
353,
5701,
1725,
3991,
11726,
26471,
13,
16680,
29889,
949,
877,
6995,
5461,
29889,
16859,
1495,
30004,
13,
30004,
13,
29937,
4013,
338,
278,
2428,
7035,
2472,
30004,
13,
5943,
29918,
6979,
353,
13812,
29889,
657,
877,
5461,
742,
525,
5943,
29918,
6979,
1495,
30004,
13,
5943,
29918,
6979,
29918,
19024,
353,
13812,
29889,
657,
877,
5461,
742,
525,
5943,
29918,
6979,
29918,
19024,
1495,
30004,
13,
25978,
261,
29918,
1989,
353,
13812,
29889,
657,
877,
5461,
742,
525,
25978,
261,
29918,
1989,
1495,
30004,
13,
25978,
261,
29918,
19024,
353,
13812,
29889,
657,
877,
5461,
742,
525,
25978,
261,
29918,
19024,
1495,
30004,
13,
30004,
13,
10467,
29918,
1989,
29918,
333,
353,
29871,
13812,
29889,
657,
877,
5461,
742,
525,
10467,
29918,
1989,
29918,
333,
1495,
30004,
13,
10467,
29918,
1989,
353,
29871,
13812,
29889,
657,
877,
5461,
742,
525,
10467,
29918,
1989,
1495,
30004,
13,
5461,
29918,
978,
353,
525,
24946,
29899,
24542,
333,
29915,
29871,
396,
5445,
278,
1024,
310,
476,
1475,
275,
848,
4840,
366,
2825,
30004,
13,
29937,
1653,
413,
1475,
275,
3132,
3957,
30004,
13,
29895,
1475,
275,
29918,
4645,
353,
289,
3747,
29941,
29889,
4645,
877,
8696,
29882,
852,
23592,
13,
462,
18884,
5120,
29918,
978,
2433,
375,
29899,
23027,
29899,
29896,
742,
29871,
396,
3896,
278,
5120,
30004,
13,
462,
18884,
25879,
29918,
5943,
29918,
1989,
29918,
333,
29922,
10467,
29918,
1989,
29918,
333,
29892,
29871,
396,
5445,
596,
15540,
2130,
1820,
1178,
30004,
13,
462,
18884,
25879,
29918,
19024,
29918,
5943,
29918,
1989,
29922,
10467,
29918,
1989,
29897,
29871,
396,
5445,
366,
25879,
7035,
2130,
1820,
30004,
13,
30004,
13,
1990,
323,
16668,
3835,
29898,
3835,
1125,
4706,
6756,
13,
1678,
396,
373,
2551,
30004,
13,
1678,
822,
373,
29918,
1272,
29898,
1311,
29892,
848,
1125,
30004,
13,
4706,
7780,
300,
353,
4390,
29889,
18132,
29898,
1272,
8443,
13,
4706,
1018,
29901,
30004,
13,
9651,
565,
525,
726,
29915,
297,
7780,
300,
29889,
8149,
7295,
30004,
13,
18884,
396,
2158,
313,
29873,
16668,
1839,
726,
2033,
8443,
13,
18884,
396,
2643,
353,
851,
29898,
29873,
16668,
7240,
742,
29905,
29876,
29915,
30004,
13,
18884,
2643,
353,
4390,
29889,
29881,
17204,
29898,
29873,
16668,
8443,
13,
18884,
2643,
353,
2643,
718,
376,
2053,
29876,
19451,
13,
18884,
1596,
29898,
4906,
13578,
2751,
29922,
1482,
1873,
29905,
29876,
1159,
30004,
13,
18884,
413,
1475,
275,
29918,
4645,
29889,
649,
29918,
11651,
29898,
30004,
13,
462,
1678,
360,
27657,
3835,
1170,
29922,
5461,
29918,
978,
11167,
13,
462,
1678,
14164,
3790,
30004,
13,
462,
1678,
525,
1469,
2396,
2643,
30004,
13,
462,
1678,
4970,
13,
18884,
1723,
30004,
13,
4706,
5174,
313,
6708,
2392,
29892,
8960,
29897,
408,
321,
29901,
30004,
13,
18884,
1596,
313,
29872,
8443,
13,
4706,
736,
5852,
30004,
13,
4706,
6756,
13,
1678,
396,
373,
10672,
30004,
13,
1678,
822,
373,
29918,
2704,
29898,
1311,
29892,
4660,
1125,
30004,
13,
4706,
1596,
29898,
4882,
8443,
13,
30004,
13,
30004,
13,
30004,
13,
361,
4770,
978,
1649,
1275,
525,
1649,
3396,
1649,
2396,
30004,
13,
1678,
396,
1653,
2777,
310,
278,
7780,
1022,
29891,
7780,
300,
4840,
13254,
30004,
13,
1678,
4840,
353,
323,
16668,
3835,
29898,
25978,
261,
29918,
1989,
29892,
25978,
261,
29918,
19024,
11167,
13,
12,
12,
12,
12,
5943,
29918,
6979,
29892,
5943,
29918,
6979,
29918,
19024,
8443,
13,
1678,
396,
731,
23394,
6611,
29914,
517,
12360,
30004,
13,
1678,
4817,
353,
438,
6444,
4598,
29898,
25978,
261,
29918,
1989,
29892,
21691,
29918,
19024,
8443,
13,
1678,
4817,
29889,
842,
29918,
5943,
29918,
6979,
29898,
5943,
29918,
6979,
29892,
2130,
29918,
6979,
29918,
19024,
8443,
13,
1678,
396,
1653,
2777,
310,
278,
7780,
1022,
29891,
4840,
30004,
13,
1678,
396,
4840,
353,
13763,
29898,
5150,
29892,
13254,
8443,
13,
1678,
396,
2740,
23394,
363,
8282,
470,
29361,
515,
9335,
4128,
30004,
13,
1678,
2346,
353,
10876,
29889,
19218,
29961,
29896,
17531,
396,
1051,
310,
24492,
6273,
6756,
13,
1678,
2346,
29918,
29888,
978,
353,
525,
15300,
7122,
29898,
1972,
29897,
396,
1347,
30004,
13,
1678,
4840,
29889,
4572,
29898,
11294,
29922,
1972,
8443,
13,
30004,
13,
2
] |
src/udemy_dl/udemy_dl.py | krishnaramg3/hello1 | 17 | 82797 | <reponame>krishnaramg3/hello1<gh_stars>10-100
#!/usr/bin/env python
# -*- coding: utf8 -*-
import requests
import requests.sessions
import argparse
import getpass
import sys
import re
import os
import json
from .download import download, DLException
from ._version import __version__
class Session:
headers = {'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:39.0) Gecko/20100101 Firefox/39.0',
'X-Requested-With': 'XMLHttpRequest',
'Host': 'www.udemy.com',
'Referer': 'https://www.udemy.com/join/login-popup'}
def __init__(self):
self.session = requests.sessions.Session()
def set_auth_headers(self, access_token, client_id):
self.headers['X-Udemy-Bearer-Token'] = access_token
self.headers['X-Udemy-Client-Id'] = client_id
def get(self, url):
return self.session.get(url, headers=self.headers)
def post(self, url, data):
return self.session.post(url, data, headers=self.headers)
session = Session()
def get_csrf_token():
response = session.get('https://www.udemy.com/join/login-popup')
match = re.search("name=\'csrfmiddlewaretoken\' value=\'(.*)\'", response.text)
return match.group(1)
def login(username, password):
login_url = 'https://www.udemy.com/join/login-popup/?displayType=ajax&display_type=popup&showSkipButton=1&returnUrlAfterLogin=https%3A%2F%2Fwww.udemy.com%2F&next=https%3A%2F%2Fwww.udemy.com%2F&locale=en_US'
csrf_token = get_csrf_token()
payload = {'isSubmitted': 1, 'email': username, 'password': password,
'displayType': 'ajax', 'csrfmiddlewaretoken': csrf_token}
response = session.post(login_url, payload)
access_token = response.cookies.get('access_token')
client_id = response.cookies.get('client_id')
session.set_auth_headers(access_token, client_id)
response = response.text
if 'error' in response:
print(response)
sys.exit(1)
def get_course_id(course_link):
response = session.get(course_link)
matches = re.search('data-courseid="(\d+)"', response.text, re.IGNORECASE)
return matches.groups()[0] if matches else None
def parse_video_url(lecture_id, hd=False):
'''A hacky way to find the json used to initalize the swf object player'''
embed_url = 'https://www.udemy.com/embed/{0}'.format(lecture_id)
html = session.get(embed_url).text
data = re.search(r'\$\("#player"\).jwplayer\((.*?)\);.*</script>', html,
re.MULTILINE | re.DOTALL).group(1)
video = json.loads(data)
if 'playlist' in video and 'sources' in video['playlist'][0]:
if hd:
for source in video['playlist'][0]['sources']:
if '720' in source['label'] or 'HD' in source['label']:
return source['file']
# The 360p case and fallback if no HD version
source = video['playlist'][0]['sources'][0]
return source['file']
else:
print("Failed to parse video url")
return None
def get_video_links(course_id, lecture_start, lecture_end, hd=False):
course_url = 'https://www.udemy.com/api-1.1/courses/{0}/curriculum?fields[lecture]=@min,completionRatio,progressStatus&fields[quiz]=@min,completionRatio'.format(course_id)
course_data = session.get(course_url).json()
chapter = None
video_list = []
lecture_number = 1
chapter_number = 0
# A udemy course has chapters, each having one or more lectures
for item in course_data:
if item['__class'] == 'chapter':
chapter = item['title']
chapter_number += 1
elif item['__class'] == 'lecture' and item['assetType'] == 'Video':
lecture = item['title']
if valid_lecture(lecture_number, lecture_start, lecture_end):
try:
lecture_id = item['id']
video_url = parse_video_url(lecture_id, hd)
video_list.append({'chapter': chapter,
'lecture': lecture,
'video_url': video_url,
'lecture_number': lecture_number,
'chapter_number': chapter_number})
except:
print('Cannot download lecture "%s"' % (lecture))
lecture_number += 1
return video_list
def valid_lecture(lecture_number, lecture_start, lecture_end):
if lecture_start and lecture_end:
return lecture_start <= lecture_number <= lecture_end
elif lecture_start:
return lecture_start <= lecture_number
else:
return lecture_number <= lecture_end
def sanitize_path(s):
return "".join([c for c in s if c.isalpha() or c.isdigit() or c in ' .-_,']).rstrip()
def mkdir(directory):
if not os.path.exists(directory):
os.makedirs(directory)
def get_video(directory, filename, link):
print('Downloading %s ' % (filename.encode('utf-8')))
previous_dir = os.getcwd()
mkdir(directory)
os.chdir(directory)
try:
download(link, filename)
except DLException as e:
print('Couldn\'t download this lecture: {0}'.format(e))
os.chdir(previous_dir)
print('\n'),
def udemy_dl(username, password, course_link, lecture_start, lecture_end, dest_dir=""):
login(username, password)
course_id = get_course_id(course_link)
if not course_id:
print('Failed to get course ID')
return
for video in get_video_links(course_id, lecture_start, lecture_end, hd=True):
directory = '%02d %s' % (video['chapter_number'], video['chapter'])
directory = sanitize_path(directory)
if dest_dir:
directory = os.path.join(dest_dir, directory)
filename = '%03d %s.mp4' % (video['lecture_number'], video['lecture'])
filename = sanitize_path(filename)
get_video(directory, filename, video['video_url'])
session.get('http://www.udemy.com/user/logout')
def is_integer(p):
try:
int(p)
return True
except ValueError:
return False
def main():
parser = argparse.ArgumentParser(description='Fetch all the videos for a udemy course')
parser.add_argument('link', help='Link for udemy course', action='store')
parser.add_argument('-u', '--username', help='Username/Email', default=None, action='store')
parser.add_argument('-p', '--password', help='Password', default=None, action='store')
parser.add_argument('--lecture-start', help='Lecture to start at (default is 1)', default=1, action='store')
parser.add_argument('--lecture-end', help='Lecture to end at (default is last)', default=None, action='store')
parser.add_argument('-o', '--output-dir', help='Output directory', default=None, action='store')
parser.add_argument('-v', '--version', help='Display the version of udemy-dl and exit', action='version', version='%(prog)s {version}'.format(version=__version__))
args = vars(parser.parse_args())
username = args['username']
password = args['password']
link = args['link'].rstrip('/')
lecture_start = args['lecture_start']
lecture_end = args['lecture_end']
if lecture_start is not None:
if not is_integer(lecture_start) or int(lecture_start) <= 0:
print('--lecture_start requires natural number argument')
sys.exit(1)
lecture_start = int(lecture_start)
if lecture_end is not None:
if not is_integer(lecture_end) or int(lecture_end) <= 0:
print('--lecture_end requires natural number argument')
sys.exit(1)
lecture_end = int(lecture_end)
if args['output_dir']:
# Normalize the output path if specified
output_dir = os.path.normpath(args['output_dir'])
else:
# Get output dir name from the URL
output_dir = os.path.join(".", link.rsplit('/', 1)[1])
if not username:
try:
username = raw_input("Username/Email: ") # Python 2
except NameError:
username = input("Username/Email: ") # Python 3
if not password:
password = <PASSWORD>(prompt='Password: ')
print('Downloading to: %s\n' % (os.path.abspath(output_dir)))
udemy_dl(username, password, link, lecture_start, lecture_end, output_dir)
if __name__ == '__main__':
main()
| [
1,
529,
276,
1112,
420,
29958,
12748,
728,
29876,
11269,
29887,
29941,
29914,
12199,
29896,
29966,
12443,
29918,
303,
1503,
29958,
29896,
29900,
29899,
29896,
29900,
29900,
13,
29937,
14708,
4855,
29914,
2109,
29914,
6272,
3017,
13,
29937,
448,
29930,
29899,
14137,
29901,
23616,
29947,
448,
29930,
29899,
13,
13,
5215,
7274,
13,
5215,
7274,
29889,
29879,
10964,
13,
5215,
1852,
5510,
13,
5215,
679,
3364,
13,
5215,
10876,
13,
5215,
337,
13,
5215,
2897,
13,
5215,
4390,
13,
3166,
869,
10382,
1053,
5142,
29892,
360,
29931,
2451,
13,
3166,
869,
29918,
3259,
1053,
4770,
3259,
1649,
13,
13,
13,
13,
1990,
16441,
29901,
13,
1678,
9066,
353,
11117,
2659,
29899,
19661,
2396,
525,
29924,
2112,
2911,
29914,
29945,
29889,
29900,
313,
15735,
524,
10578,
29936,
18555,
4326,
6570,
1060,
29871,
29896,
29900,
29889,
29896,
29900,
29936,
364,
29894,
29901,
29941,
29929,
29889,
29900,
29897,
1879,
27604,
29914,
29906,
29900,
29896,
29900,
29900,
29896,
29900,
29896,
14418,
29914,
29941,
29929,
29889,
29900,
742,
13,
1669,
525,
29990,
29899,
3089,
287,
29899,
3047,
2396,
525,
9165,
26021,
742,
13,
1669,
525,
8514,
2396,
525,
1636,
29889,
1151,
1357,
29889,
510,
742,
13,
1669,
525,
1123,
571,
261,
2396,
525,
991,
597,
1636,
29889,
1151,
1357,
29889,
510,
29914,
7122,
29914,
7507,
29899,
7323,
786,
10827,
13,
13,
1678,
822,
4770,
2344,
12035,
1311,
1125,
13,
4706,
1583,
29889,
7924,
353,
7274,
29889,
29879,
10964,
29889,
7317,
580,
13,
308,
13,
1678,
822,
731,
29918,
5150,
29918,
13662,
29898,
1311,
29892,
2130,
29918,
6979,
29892,
3132,
29918,
333,
1125,
13,
4706,
1583,
29889,
13662,
1839,
29990,
29899,
29965,
311,
1357,
29899,
29933,
799,
261,
29899,
6066,
2033,
353,
2130,
29918,
6979,
13,
4706,
1583,
29889,
13662,
1839,
29990,
29899,
29965,
311,
1357,
29899,
4032,
29899,
1204,
2033,
353,
3132,
29918,
333,
13,
13,
1678,
822,
679,
29898,
1311,
29892,
3142,
1125,
13,
4706,
736,
1583,
29889,
7924,
29889,
657,
29898,
2271,
29892,
9066,
29922,
1311,
29889,
13662,
29897,
13,
13,
1678,
822,
1400,
29898,
1311,
29892,
3142,
29892,
848,
1125,
13,
4706,
736,
1583,
29889,
7924,
29889,
2490,
29898,
2271,
29892,
848,
29892,
9066,
29922,
1311,
29889,
13662,
29897,
13,
13,
13,
7924,
353,
16441,
580,
13,
13,
13,
1753,
679,
29918,
2395,
9600,
29918,
6979,
7295,
13,
1678,
2933,
353,
4867,
29889,
657,
877,
991,
597,
1636,
29889,
1151,
1357,
29889,
510,
29914,
7122,
29914,
7507,
29899,
7323,
786,
1495,
13,
1678,
1993,
353,
337,
29889,
4478,
703,
978,
2013,
29915,
2395,
9600,
17662,
2519,
6979,
20333,
995,
2013,
12215,
5575,
2144,
29915,
613,
2933,
29889,
726,
29897,
13,
1678,
736,
1993,
29889,
2972,
29898,
29896,
29897,
13,
13,
1753,
6464,
29898,
6786,
29892,
4800,
1125,
13,
1678,
6464,
29918,
2271,
353,
525,
991,
597,
1636,
29889,
1151,
1357,
29889,
510,
29914,
7122,
29914,
7507,
29899,
7323,
786,
13401,
4990,
1542,
29922,
6538,
29987,
4990,
29918,
1853,
29922,
7323,
786,
29987,
4294,
15797,
666,
3125,
29922,
29896,
29987,
2457,
5983,
13555,
11049,
29922,
991,
29995,
29941,
29909,
29995,
29906,
29943,
29995,
29906,
29943,
1636,
29889,
1151,
1357,
29889,
510,
29995,
29906,
29943,
29987,
4622,
29922,
991,
29995,
29941,
29909,
29995,
29906,
29943,
29995,
29906,
29943,
1636,
29889,
1151,
1357,
29889,
510,
29995,
29906,
29943,
29987,
23337,
29922,
264,
29918,
3308,
29915,
13,
1678,
5939,
9600,
29918,
6979,
353,
679,
29918,
2395,
9600,
29918,
6979,
580,
13,
1678,
20092,
353,
11117,
275,
4035,
29885,
4430,
2396,
29871,
29896,
29892,
525,
5269,
2396,
8952,
29892,
525,
5630,
2396,
4800,
29892,
13,
1669,
525,
4990,
1542,
2396,
525,
6538,
742,
525,
2395,
9600,
17662,
2519,
6979,
2396,
5939,
9600,
29918,
6979,
29913,
13,
1678,
2933,
353,
4867,
29889,
2490,
29898,
7507,
29918,
2271,
29892,
20092,
29897,
13,
13,
1678,
2130,
29918,
6979,
353,
2933,
29889,
15108,
583,
29889,
657,
877,
5943,
29918,
6979,
1495,
13,
1678,
3132,
29918,
333,
353,
2933,
29889,
15108,
583,
29889,
657,
877,
4645,
29918,
333,
1495,
13,
1678,
4867,
29889,
842,
29918,
5150,
29918,
13662,
29898,
5943,
29918,
6979,
29892,
3132,
29918,
333,
29897,
13,
13,
1678,
2933,
353,
2933,
29889,
726,
13,
1678,
565,
525,
2704,
29915,
297,
2933,
29901,
13,
4706,
1596,
29898,
5327,
29897,
13,
4706,
10876,
29889,
13322,
29898,
29896,
29897,
13,
13,
13,
1753,
679,
29918,
15775,
29918,
333,
29898,
15775,
29918,
2324,
1125,
13,
1678,
2933,
353,
4867,
29889,
657,
29898,
15775,
29918,
2324,
29897,
13,
1678,
7087,
353,
337,
29889,
4478,
877,
1272,
29899,
15775,
333,
543,
1194,
29881,
29974,
5513,
742,
2933,
29889,
726,
29892,
337,
29889,
6259,
6632,
1525,
23487,
29897,
13,
1678,
736,
7087,
29889,
13155,
580,
29961,
29900,
29962,
565,
7087,
1683,
6213,
13,
13,
13,
1753,
6088,
29918,
9641,
29918,
2271,
29898,
781,
545,
29918,
333,
29892,
298,
29881,
29922,
8824,
1125,
13,
1678,
14550,
29909,
15833,
29891,
982,
304,
1284,
278,
4390,
1304,
304,
2069,
284,
675,
278,
2381,
29888,
1203,
4847,
12008,
13,
1678,
8297,
29918,
2271,
353,
525,
991,
597,
1636,
29889,
1151,
1357,
29889,
510,
29914,
17987,
19248,
29900,
29913,
4286,
4830,
29898,
781,
545,
29918,
333,
29897,
13,
1678,
3472,
353,
4867,
29889,
657,
29898,
17987,
29918,
2271,
467,
726,
13,
13,
1678,
848,
353,
337,
29889,
4478,
29898,
29878,
12764,
4535,
14822,
9106,
26732,
467,
29926,
29893,
9106,
29905,
3552,
5575,
29973,
2144,
416,
5575,
829,
2154,
29958,
742,
3472,
29892,
13,
462,
268,
337,
29889,
29924,
8647,
6227,
8895,
891,
337,
29889,
29928,
2891,
9818,
467,
2972,
29898,
29896,
29897,
13,
1678,
4863,
353,
4390,
29889,
18132,
29898,
1272,
29897,
13,
13,
1678,
565,
525,
1456,
1761,
29915,
297,
4863,
322,
525,
29879,
2863,
29915,
297,
4863,
1839,
1456,
1761,
2033,
29961,
29900,
5387,
13,
4706,
565,
298,
29881,
29901,
13,
9651,
363,
2752,
297,
4863,
1839,
1456,
1761,
2033,
29961,
29900,
22322,
29879,
2863,
2033,
29901,
13,
18884,
565,
525,
29955,
29906,
29900,
29915,
297,
2752,
1839,
1643,
2033,
470,
525,
26124,
29915,
297,
2752,
1839,
1643,
2033,
29901,
13,
462,
1678,
736,
2752,
1839,
1445,
2033,
13,
13,
4706,
396,
450,
29871,
29941,
29953,
29900,
29886,
1206,
322,
6416,
1627,
565,
694,
18435,
1873,
13,
4706,
2752,
353,
4863,
1839,
1456,
1761,
2033,
29961,
29900,
22322,
29879,
2863,
2033,
29961,
29900,
29962,
13,
4706,
736,
2752,
1839,
1445,
2033,
13,
1678,
1683,
29901,
13,
4706,
1596,
703,
17776,
304,
6088,
4863,
3142,
1159,
13,
4706,
736,
6213,
13,
13,
13,
1753,
679,
29918,
9641,
29918,
4965,
29898,
15775,
29918,
333,
29892,
29197,
29918,
2962,
29892,
29197,
29918,
355,
29892,
298,
29881,
29922,
8824,
1125,
13,
1678,
3236,
29918,
2271,
353,
525,
991,
597,
1636,
29889,
1151,
1357,
29889,
510,
29914,
2754,
29899,
29896,
29889,
29896,
29914,
29883,
29781,
19248,
29900,
6822,
21962,
12906,
398,
29973,
9621,
29961,
781,
545,
13192,
29992,
1195,
29892,
5729,
12757,
29934,
20819,
29892,
18035,
5709,
29987,
9621,
29961,
339,
466,
13192,
29992,
1195,
29892,
5729,
12757,
29934,
20819,
4286,
4830,
29898,
15775,
29918,
333,
29897,
13,
1678,
3236,
29918,
1272,
353,
4867,
29889,
657,
29898,
15775,
29918,
2271,
467,
3126,
580,
13,
13,
1678,
16385,
353,
6213,
13,
1678,
4863,
29918,
1761,
353,
5159,
13,
13,
1678,
29197,
29918,
4537,
353,
29871,
29896,
13,
1678,
16385,
29918,
4537,
353,
29871,
29900,
13,
1678,
396,
319,
318,
311,
1357,
3236,
756,
10708,
2153,
29892,
1269,
2534,
697,
470,
901,
13081,
1973,
13,
1678,
363,
2944,
297,
3236,
29918,
1272,
29901,
13,
4706,
565,
2944,
1839,
1649,
1990,
2033,
1275,
525,
27349,
2396,
13,
9651,
16385,
353,
2944,
1839,
3257,
2033,
13,
9651,
16385,
29918,
4537,
4619,
29871,
29896,
13,
4706,
25342,
2944,
1839,
1649,
1990,
2033,
1275,
525,
781,
545,
29915,
322,
2944,
1839,
24129,
1542,
2033,
1275,
525,
15167,
2396,
13,
9651,
29197,
353,
2944,
1839,
3257,
2033,
13,
9651,
565,
2854,
29918,
781,
545,
29898,
781,
545,
29918,
4537,
29892,
29197,
29918,
2962,
29892,
29197,
29918,
355,
1125,
13,
18884,
1018,
29901,
13,
462,
1678,
29197,
29918,
333,
353,
2944,
1839,
333,
2033,
13,
462,
1678,
4863,
29918,
2271,
353,
6088,
29918,
9641,
29918,
2271,
29898,
781,
545,
29918,
333,
29892,
298,
29881,
29897,
13,
462,
1678,
4863,
29918,
1761,
29889,
4397,
3319,
29915,
27349,
2396,
16385,
29892,
13,
462,
462,
539,
525,
781,
545,
2396,
29197,
29892,
13,
462,
462,
539,
525,
9641,
29918,
2271,
2396,
4863,
29918,
2271,
29892,
13,
462,
462,
539,
525,
781,
545,
29918,
4537,
2396,
29197,
29918,
4537,
29892,
13,
462,
462,
539,
525,
27349,
29918,
4537,
2396,
16385,
29918,
4537,
1800,
13,
18884,
5174,
29901,
13,
462,
1678,
1596,
877,
29089,
5142,
29197,
11860,
29879,
29908,
29915,
1273,
313,
781,
545,
876,
13,
9651,
29197,
29918,
4537,
4619,
29871,
29896,
13,
1678,
736,
4863,
29918,
1761,
13,
13,
13,
1753,
2854,
29918,
781,
545,
29898,
781,
545,
29918,
4537,
29892,
29197,
29918,
2962,
29892,
29197,
29918,
355,
1125,
13,
1678,
565,
29197,
29918,
2962,
322,
29197,
29918,
355,
29901,
13,
4706,
736,
29197,
29918,
2962,
5277,
29197,
29918,
4537,
5277,
29197,
29918,
355,
13,
1678,
25342,
29197,
29918,
2962,
29901,
13,
4706,
736,
29197,
29918,
2962,
5277,
29197,
29918,
4537,
13,
1678,
1683,
29901,
13,
4706,
736,
29197,
29918,
4537,
5277,
29197,
29918,
355,
13,
13,
13,
1753,
9753,
277,
675,
29918,
2084,
29898,
29879,
1125,
13,
1678,
736,
376,
1642,
7122,
4197,
29883,
363,
274,
297,
269,
565,
274,
29889,
275,
2312,
580,
470,
274,
29889,
275,
26204,
580,
470,
274,
297,
525,
869,
29899,
3383,
2033,
467,
29878,
17010,
580,
13,
13,
13,
1753,
29356,
29898,
12322,
1125,
13,
1678,
565,
451,
2897,
29889,
2084,
29889,
9933,
29898,
12322,
1125,
13,
4706,
2897,
29889,
29885,
12535,
12935,
29898,
12322,
29897,
13,
13,
13,
1753,
679,
29918,
9641,
29898,
12322,
29892,
10422,
29892,
1544,
1125,
13,
1678,
1596,
877,
6767,
13234,
1273,
29879,
29871,
525,
1273,
313,
9507,
29889,
12508,
877,
9420,
29899,
29947,
29915,
4961,
13,
1678,
3517,
29918,
3972,
353,
2897,
29889,
657,
29883,
9970,
580,
13,
1678,
29356,
29898,
12322,
29897,
13,
1678,
2897,
29889,
305,
3972,
29898,
12322,
29897,
13,
1678,
1018,
29901,
13,
4706,
5142,
29898,
2324,
29892,
10422,
29897,
13,
1678,
5174,
360,
29931,
2451,
408,
321,
29901,
13,
4706,
1596,
877,
23323,
29876,
20333,
29873,
5142,
445,
29197,
29901,
426,
29900,
29913,
4286,
4830,
29898,
29872,
876,
13,
1678,
2897,
29889,
305,
3972,
29898,
24957,
29918,
3972,
29897,
13,
1678,
1596,
28909,
29876,
5477,
13,
13,
1753,
318,
311,
1357,
29918,
11671,
29898,
6786,
29892,
4800,
29892,
3236,
29918,
2324,
29892,
29197,
29918,
2962,
29892,
29197,
29918,
355,
29892,
2731,
29918,
3972,
13776,
1125,
13,
1678,
6464,
29898,
6786,
29892,
4800,
29897,
13,
13,
1678,
3236,
29918,
333,
353,
679,
29918,
15775,
29918,
333,
29898,
15775,
29918,
2324,
29897,
13,
1678,
565,
451,
3236,
29918,
333,
29901,
13,
4706,
1596,
877,
17776,
304,
679,
3236,
3553,
1495,
13,
4706,
736,
13,
13,
1678,
363,
4863,
297,
679,
29918,
9641,
29918,
4965,
29898,
15775,
29918,
333,
29892,
29197,
29918,
2962,
29892,
29197,
29918,
355,
29892,
298,
29881,
29922,
5574,
1125,
13,
4706,
3884,
353,
14210,
29900,
29906,
29881,
1273,
29879,
29915,
1273,
313,
9641,
1839,
27349,
29918,
4537,
7464,
4863,
1839,
27349,
11287,
13,
4706,
3884,
353,
9753,
277,
675,
29918,
2084,
29898,
12322,
29897,
13,
13,
4706,
565,
2731,
29918,
3972,
29901,
13,
9651,
3884,
353,
2897,
29889,
2084,
29889,
7122,
29898,
7854,
29918,
3972,
29892,
3884,
29897,
13,
13,
4706,
10422,
353,
14210,
29900,
29941,
29881,
1273,
29879,
29889,
1526,
29946,
29915,
1273,
313,
9641,
1839,
781,
545,
29918,
4537,
7464,
4863,
1839,
781,
545,
11287,
13,
4706,
10422,
353,
9753,
277,
675,
29918,
2084,
29898,
9507,
29897,
13,
13,
4706,
679,
29918,
9641,
29898,
12322,
29892,
10422,
29892,
4863,
1839,
9641,
29918,
2271,
11287,
13,
13,
1678,
4867,
29889,
657,
877,
1124,
597,
1636,
29889,
1151,
1357,
29889,
510,
29914,
1792,
29914,
1188,
449,
1495,
13,
13,
13,
1753,
338,
29918,
16031,
29898,
29886,
1125,
13,
1678,
1018,
29901,
13,
4706,
938,
29898,
29886,
29897,
13,
4706,
736,
5852,
13,
1678,
5174,
7865,
2392,
29901,
13,
4706,
736,
7700,
13,
13,
1753,
1667,
7295,
13,
1678,
13812,
353,
1852,
5510,
29889,
15730,
11726,
29898,
8216,
2433,
20927,
599,
278,
19707,
363,
263,
318,
311,
1357,
3236,
1495,
13,
1678,
13812,
29889,
1202,
29918,
23516,
877,
2324,
742,
1371,
2433,
6595,
363,
318,
311,
1357,
3236,
742,
3158,
2433,
8899,
1495,
13,
1678,
13812,
29889,
1202,
29918,
23516,
877,
29899,
29884,
742,
525,
489,
6786,
742,
1371,
2433,
20249,
29914,
9823,
742,
2322,
29922,
8516,
29892,
3158,
2433,
8899,
1495,
13,
1678,
13812,
29889,
1202,
29918,
23516,
877,
29899,
29886,
742,
525,
489,
5630,
742,
1371,
2433,
10048,
742,
2322,
29922,
8516,
29892,
3158,
2433,
8899,
1495,
13,
1678,
13812,
29889,
1202,
29918,
23516,
877,
489,
781,
545,
29899,
2962,
742,
1371,
2433,
29931,
522,
545,
304,
1369,
472,
313,
4381,
338,
29871,
29896,
29897,
742,
2322,
29922,
29896,
29892,
3158,
2433,
8899,
1495,
13,
1678,
13812,
29889,
1202,
29918,
23516,
877,
489,
781,
545,
29899,
355,
742,
1371,
2433,
29931,
522,
545,
304,
1095,
472,
313,
4381,
338,
1833,
29897,
742,
2322,
29922,
8516,
29892,
3158,
2433,
8899,
1495,
13,
1678,
13812,
29889,
1202,
29918,
23516,
877,
29899,
29877,
742,
525,
489,
4905,
29899,
3972,
742,
1371,
2433,
6466,
3884,
742,
2322,
29922,
8516,
29892,
3158,
2433,
8899,
1495,
13,
1678,
13812,
29889,
1202,
29918,
23516,
877,
29899,
29894,
742,
525,
489,
3259,
742,
1371,
2433,
9323,
278,
1873,
310,
318,
311,
1357,
29899,
11671,
322,
6876,
742,
3158,
2433,
3259,
742,
1873,
2433,
29995,
29898,
29097,
29897,
29879,
426,
3259,
29913,
4286,
4830,
29898,
3259,
29922,
1649,
3259,
1649,
876,
13,
13,
1678,
6389,
353,
24987,
29898,
16680,
29889,
5510,
29918,
5085,
3101,
13,
13,
1678,
8952,
353,
6389,
1839,
6786,
2033,
13,
1678,
4800,
353,
6389,
1839,
5630,
2033,
13,
1678,
1544,
353,
6389,
1839,
2324,
13359,
29878,
17010,
11219,
1495,
13,
1678,
29197,
29918,
2962,
353,
6389,
1839,
781,
545,
29918,
2962,
2033,
13,
1678,
29197,
29918,
355,
353,
6389,
1839,
781,
545,
29918,
355,
2033,
13,
13,
1678,
565,
29197,
29918,
2962,
338,
451,
6213,
29901,
13,
4706,
565,
451,
338,
29918,
16031,
29898,
781,
545,
29918,
2962,
29897,
470,
938,
29898,
781,
545,
29918,
2962,
29897,
5277,
29871,
29900,
29901,
13,
9651,
1596,
877,
489,
781,
545,
29918,
2962,
6858,
5613,
1353,
2980,
1495,
13,
9651,
10876,
29889,
13322,
29898,
29896,
29897,
13,
4706,
29197,
29918,
2962,
353,
938,
29898,
781,
545,
29918,
2962,
29897,
13,
1678,
565,
29197,
29918,
355,
338,
451,
6213,
29901,
13,
4706,
565,
451,
338,
29918,
16031,
29898,
781,
545,
29918,
355,
29897,
470,
938,
29898,
781,
545,
29918,
355,
29897,
5277,
29871,
29900,
29901,
13,
9651,
1596,
877,
489,
781,
545,
29918,
355,
6858,
5613,
1353,
2980,
1495,
13,
9651,
10876,
29889,
13322,
29898,
29896,
29897,
13,
4706,
29197,
29918,
355,
353,
938,
29898,
781,
545,
29918,
355,
29897,
13,
268,
13,
1678,
565,
6389,
1839,
4905,
29918,
3972,
2033,
29901,
13,
4706,
396,
21981,
675,
278,
1962,
2224,
565,
6790,
13,
4706,
1962,
29918,
3972,
353,
2897,
29889,
2084,
29889,
12324,
2084,
29898,
5085,
1839,
4905,
29918,
3972,
11287,
13,
1678,
1683,
29901,
13,
4706,
396,
3617,
1962,
4516,
1024,
515,
278,
3988,
13,
4706,
1962,
29918,
3972,
353,
2897,
29889,
2084,
29889,
7122,
17350,
613,
1544,
29889,
2288,
2830,
11219,
742,
29871,
29896,
9601,
29896,
2314,
13,
13,
1678,
565,
451,
8952,
29901,
13,
4706,
1018,
29901,
13,
9651,
8952,
353,
10650,
29918,
2080,
703,
20249,
29914,
9823,
29901,
16521,
29871,
396,
5132,
29871,
29906,
13,
4706,
5174,
4408,
2392,
29901,
13,
9651,
8952,
353,
1881,
703,
20249,
29914,
9823,
29901,
16521,
29871,
396,
5132,
29871,
29941,
13,
13,
1678,
565,
451,
4800,
29901,
13,
4706,
4800,
353,
529,
25711,
17013,
5961,
14032,
415,
2433,
10048,
29901,
25710,
13,
13,
1678,
1596,
877,
6767,
13234,
304,
29901,
1273,
29879,
29905,
29876,
29915,
1273,
313,
359,
29889,
2084,
29889,
370,
1028,
493,
29898,
4905,
29918,
3972,
4961,
13,
13,
1678,
318,
311,
1357,
29918,
11671,
29898,
6786,
29892,
4800,
29892,
1544,
29892,
29197,
29918,
2962,
29892,
29197,
29918,
355,
29892,
1962,
29918,
3972,
29897,
13,
13,
13,
361,
4770,
978,
1649,
1275,
525,
1649,
3396,
1649,
2396,
13,
1678,
1667,
580,
13,
2
] |
lib_exec/StereoPipeline/libexec/asp_image_utils.py | sebasmurphy/iarpa | 20 | 4190 | #!/usr/bin/env python
# -*- coding: utf-8 -*-
# __BEGIN_LICENSE__
# Copyright (c) 2009-2013, United States Government as represented by the
# Administrator of the National Aeronautics and Space Administration. All
# rights reserved.
#
# The NGT platform is 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.
# __END_LICENSE__
"""
Basic functions for working with images on disk.
"""
import sys, os, re, subprocess, string, time, errno
import asp_string_utils
def stripRgbImageAlphaChannel(inputPath, outputPath):
"""Makes an RGB copy of an RBGA image"""
cmd = 'gdal_translate ' + inputPath + ' ' + outputPath + ' -b 1 -b 2 -b 3 -co "COMPRESS=LZW" -co "TILED=YES" -co "BLOCKXSIZE=256" -co "BLOCKYSIZE=256"'
print cmd
os.system(cmd)
def getImageSize(imagePath):
"""Returns the size [samples, lines] in an image"""
# Make sure the input file exists
if not os.path.exists(imagePath):
raise Exception('Image file ' + imagePath + ' not found!')
# Use subprocess to suppress the command output
cmd = ['gdalinfo', imagePath]
p = subprocess.Popen(cmd, stdout=subprocess.PIPE)
textOutput, err = p.communicate()
# Extract the size from the text
sizePos = textOutput.find('Size is')
endPos = textOutput.find('\n', sizePos+7)
sizeStr = textOutput[sizePos+7:endPos]
sizeStrs = sizeStr.strip().split(',')
numSamples = int(sizeStrs[0])
numLines = int(sizeStrs[1])
size = [numSamples, numLines]
return size
def isIsisFile(filePath):
"""Returns True if the file is an ISIS file, False otherwise."""
# Currently we treat all files with .cub extension as ISIS files
extension = os.path.splitext(filePath)[1]
return (extension == '.cub')
def getImageStats(imagePath):
"""Obtains some image statistics from gdalinfo"""
if not os.path.exists(imagePath):
raise Exception('Image file ' + imagePath + ' not found!')
# Call command line tool silently
cmd = ['gdalinfo', imagePath, '-stats']
p = subprocess.Popen(cmd, stdout=subprocess.PIPE)
textOutput, err = p.communicate()
# Statistics are computed seperately for each band
bandStats = []
band = 0
while (True): # Loop until we run out of bands
# Look for the stats line for this band
bandString = 'Band ' + str(band+1) + ' Block='
bandLoc = textOutput.find(bandString)
if bandLoc < 0:
return bandStats # Quit if we did not find it
# Now parse out the statistics for this band
bandMaxStart = textOutput.find('STATISTICS_MAXIMUM=', bandLoc)
bandMeanStart = textOutput.find('STATISTICS_MEAN=', bandLoc)
bandMinStart = textOutput.find('STATISTICS_MINIMUM=', bandLoc)
bandStdStart = textOutput.find('STATISTICS_STDDEV=', bandLoc)
bandMax = asp_string_utils.getNumberAfterEqualSign(textOutput, bandMaxStart)
bandMean = asp_string_utils.getNumberAfterEqualSign(textOutput, bandMeanStart)
bandMin = asp_string_utils.getNumberAfterEqualSign(textOutput, bandMinStart)
bandStd = asp_string_utils.getNumberAfterEqualSign(textOutput, bandStdStart)
# Add results to the output list
bandStats.append( (bandMin, bandMax, bandMean, bandStd) )
band = band + 1 # Move to the next band
| [
1,
18787,
4855,
29914,
2109,
29914,
6272,
3017,
13,
29937,
448,
29930,
29899,
14137,
29901,
23616,
29899,
29947,
448,
29930,
29899,
13,
29937,
4770,
29933,
17958,
29918,
27888,
1430,
1660,
1649,
13,
29937,
29871,
14187,
1266,
313,
29883,
29897,
29871,
29906,
29900,
29900,
29929,
29899,
29906,
29900,
29896,
29941,
29892,
3303,
3900,
10354,
408,
9875,
491,
278,
13,
29937,
29871,
24510,
1061,
310,
278,
3086,
18682,
20546,
1199,
322,
14121,
23303,
29889,
2178,
13,
29937,
29871,
10462,
21676,
29889,
13,
29937,
13,
29937,
29871,
450,
405,
23799,
7481,
338,
7794,
21144,
1090,
278,
13380,
19245,
29892,
10079,
29871,
29906,
29889,
29900,
313,
1552,
13,
29937,
29871,
376,
29931,
293,
1947,
1496,
366,
1122,
451,
671,
445,
934,
5174,
297,
752,
13036,
411,
278,
13,
29937,
29871,
19245,
29889,
887,
1122,
4017,
263,
3509,
310,
278,
19245,
472,
13,
29937,
29871,
1732,
597,
1636,
29889,
4288,
29889,
990,
29914,
506,
11259,
29914,
27888,
1430,
1660,
29899,
29906,
29889,
29900,
13,
29937,
13,
29937,
29871,
25870,
3734,
491,
22903,
4307,
470,
15502,
304,
297,
5007,
29892,
7047,
13,
29937,
29871,
13235,
1090,
278,
19245,
338,
13235,
373,
385,
376,
3289,
8519,
29908,
350,
3289,
3235,
29892,
13,
29937,
29871,
399,
1806,
8187,
2692,
399,
1718,
29934,
13566,
29059,
6323,
8707,
29928,
22122,
29903,
8079,
13764,
29979,
476,
22255,
29892,
2845,
4653,
470,
2411,
2957,
29889,
13,
29937,
29871,
2823,
278,
19245,
363,
278,
2702,
4086,
14765,
1076,
11239,
322,
13,
29937,
29871,
27028,
1090,
278,
19245,
29889,
13,
29937,
4770,
11794,
29918,
27888,
1430,
1660,
1649,
13,
13,
15945,
29908,
13,
16616,
3168,
363,
1985,
411,
4558,
373,
8086,
29889,
13,
15945,
29908,
13,
13,
5215,
10876,
29892,
2897,
29892,
337,
29892,
1014,
5014,
29892,
1347,
29892,
931,
29892,
4589,
1217,
13,
13,
5215,
7051,
29918,
1807,
29918,
13239,
13,
13,
13,
1753,
17820,
29934,
26300,
2940,
28630,
13599,
29898,
2080,
2605,
29892,
1962,
2605,
1125,
13,
1678,
9995,
29924,
6926,
385,
390,
7210,
3509,
310,
385,
390,
29933,
12739,
1967,
15945,
29908,
13,
1678,
9920,
353,
525,
29887,
12293,
29918,
21652,
525,
718,
1881,
2605,
718,
525,
525,
718,
1962,
2605,
718,
525,
448,
29890,
29871,
29896,
448,
29890,
29871,
29906,
448,
29890,
29871,
29941,
448,
1111,
376,
21514,
26785,
29922,
29931,
29999,
29956,
29908,
448,
1111,
376,
24301,
20566,
29922,
21143,
29908,
448,
1111,
376,
29933,
21339,
29990,
14226,
29922,
29906,
29945,
29953,
29908,
448,
1111,
376,
29933,
21339,
29979,
14226,
29922,
29906,
29945,
29953,
29908,
29915,
13,
1678,
1596,
9920,
13,
1678,
2897,
29889,
5205,
29898,
9006,
29897,
13,
13,
13,
13,
1753,
679,
2940,
3505,
29898,
3027,
2605,
1125,
13,
1678,
9995,
11609,
29879,
278,
2159,
518,
27736,
29892,
3454,
29962,
297,
385,
1967,
15945,
29908,
13,
13,
1678,
396,
8561,
1854,
278,
1881,
934,
4864,
13,
1678,
565,
451,
2897,
29889,
2084,
29889,
9933,
29898,
3027,
2605,
1125,
13,
4706,
12020,
8960,
877,
2940,
934,
525,
718,
1967,
2605,
718,
525,
451,
1476,
29991,
1495,
13,
4706,
13,
1678,
396,
4803,
1014,
5014,
304,
21301,
278,
1899,
1962,
13,
1678,
9920,
353,
6024,
29887,
12293,
3888,
742,
1967,
2605,
29962,
13,
1678,
282,
353,
1014,
5014,
29889,
29925,
3150,
29898,
9006,
29892,
27591,
29922,
1491,
5014,
29889,
2227,
4162,
29897,
13,
1678,
1426,
6466,
29892,
4589,
353,
282,
29889,
27820,
403,
580,
13,
13,
1678,
396,
7338,
1461,
278,
2159,
515,
278,
1426,
13,
1678,
2159,
9135,
1678,
353,
1426,
6466,
29889,
2886,
877,
3505,
338,
1495,
13,
1678,
1095,
9135,
268,
353,
1426,
6466,
29889,
2886,
28909,
29876,
742,
2159,
9135,
29974,
29955,
29897,
13,
1678,
2159,
5015,
1678,
353,
1426,
6466,
29961,
2311,
9135,
29974,
29955,
29901,
355,
9135,
29962,
13,
1678,
2159,
5015,
29879,
259,
353,
2159,
5015,
29889,
17010,
2141,
5451,
29317,
1495,
13,
1678,
954,
29903,
9422,
353,
938,
29898,
2311,
5015,
29879,
29961,
29900,
2314,
13,
1678,
954,
20261,
259,
353,
938,
29898,
2311,
5015,
29879,
29961,
29896,
2314,
13,
268,
13,
1678,
2159,
353,
518,
1949,
29903,
9422,
29892,
954,
20261,
29962,
13,
1678,
736,
2159,
13,
13,
1753,
338,
3624,
275,
2283,
29898,
1445,
2605,
1125,
13,
1678,
9995,
11609,
29879,
5852,
565,
278,
934,
338,
385,
8519,
3235,
934,
29892,
7700,
6467,
1213,
15945,
13,
13,
1678,
396,
15447,
591,
7539,
599,
2066,
411,
869,
29883,
431,
6081,
408,
8519,
3235,
2066,
13,
1678,
6081,
353,
2897,
29889,
2084,
29889,
23579,
568,
486,
29898,
1445,
2605,
9601,
29896,
29962,
13,
1678,
736,
313,
17588,
1275,
15300,
29883,
431,
1495,
13,
13,
13,
13,
13,
1753,
679,
2940,
25060,
29898,
3027,
2605,
1125,
13,
1678,
9995,
6039,
2408,
29879,
777,
1967,
13964,
515,
330,
12293,
3888,
15945,
29908,
13,
268,
13,
1678,
565,
451,
2897,
29889,
2084,
29889,
9933,
29898,
3027,
2605,
1125,
13,
4706,
12020,
8960,
877,
2940,
934,
525,
718,
1967,
2605,
718,
525,
451,
1476,
29991,
1495,
13,
268,
13,
1678,
396,
8251,
1899,
1196,
5780,
4047,
2705,
13,
1678,
9920,
353,
6024,
29887,
12293,
3888,
742,
1967,
2605,
29892,
17411,
16202,
2033,
13,
1678,
282,
353,
1014,
5014,
29889,
29925,
3150,
29898,
9006,
29892,
27591,
29922,
1491,
5014,
29889,
2227,
4162,
29897,
13,
1678,
1426,
6466,
29892,
4589,
353,
282,
29889,
27820,
403,
580,
13,
268,
13,
1678,
396,
27098,
526,
15712,
409,
546,
2486,
363,
1269,
3719,
13,
1678,
3719,
25060,
353,
5159,
13,
1678,
3719,
353,
29871,
29900,
13,
1678,
1550,
313,
5574,
1125,
396,
21493,
2745,
591,
1065,
714,
310,
22706,
13,
4706,
396,
7419,
363,
278,
22663,
1196,
363,
445,
3719,
13,
4706,
3719,
1231,
353,
525,
29933,
392,
525,
718,
851,
29898,
4980,
29974,
29896,
29897,
718,
525,
15658,
2433,
13,
4706,
3719,
3524,
353,
1426,
6466,
29889,
2886,
29898,
4980,
1231,
29897,
13,
4706,
565,
3719,
3524,
529,
29871,
29900,
29901,
13,
9651,
736,
3719,
25060,
396,
751,
277,
565,
591,
1258,
451,
1284,
372,
13,
632,
13,
4706,
396,
2567,
6088,
714,
278,
13964,
363,
445,
3719,
13,
4706,
3719,
7976,
4763,
29871,
353,
1426,
6466,
29889,
2886,
877,
17816,
9047,
2965,
29903,
29918,
12648,
7833,
5005,
29922,
742,
3719,
3524,
29897,
13,
4706,
3719,
6816,
273,
4763,
353,
1426,
6466,
29889,
2886,
877,
17816,
9047,
2965,
29903,
29918,
2303,
2190,
29922,
742,
1678,
3719,
3524,
29897,
13,
4706,
3719,
8140,
4763,
29871,
353,
1426,
6466,
29889,
2886,
877,
17816,
9047,
2965,
29903,
29918,
16173,
7833,
5005,
29922,
742,
3719,
3524,
29897,
13,
4706,
3719,
855,
29881,
4763,
29871,
353,
1426,
6466,
29889,
2886,
877,
17816,
9047,
2965,
29903,
29918,
1254,
29928,
2287,
29963,
29922,
742,
29871,
3719,
3524,
29897,
13,
18884,
13,
4706,
3719,
7976,
29871,
353,
7051,
29918,
1807,
29918,
13239,
29889,
657,
4557,
13555,
9843,
10140,
29898,
726,
6466,
29892,
3719,
7976,
4763,
29897,
13,
4706,
3719,
6816,
273,
353,
7051,
29918,
1807,
29918,
13239,
29889,
657,
4557,
13555,
9843,
10140,
29898,
726,
6466,
29892,
3719,
6816,
273,
4763,
29897,
13,
4706,
3719,
8140,
29871,
353,
7051,
29918,
1807,
29918,
13239,
29889,
657,
4557,
13555,
9843,
10140,
29898,
726,
6466,
29892,
3719,
8140,
4763,
29897,
13,
4706,
3719,
855,
29881,
29871,
353,
7051,
29918,
1807,
29918,
13239,
29889,
657,
4557,
13555,
9843,
10140,
29898,
726,
6466,
29892,
3719,
855,
29881,
4763,
29897,
13,
632,
13,
4706,
396,
3462,
2582,
304,
278,
1962,
1051,
13,
4706,
3719,
25060,
29889,
4397,
29898,
313,
4980,
8140,
29892,
3719,
7976,
29892,
3719,
6816,
273,
29892,
3719,
855,
29881,
29897,
1723,
13,
632,
13,
4706,
3719,
353,
3719,
718,
29871,
29896,
396,
25249,
304,
278,
2446,
3719,
13,
268,
13,
13,
13,
13,
13,
13,
2
] |
graphdg/parse/distances.py | gncs/graphdg | 22 | 116456 | from dataclasses import dataclass
from typing import Tuple, List
import ase.data
import numpy as np
from networkx import Graph
from rdkit import Chem
import graphdg.parse.tools as tools
from graphdg.parse.extended_graph import mol_to_extended_graph
from graphdg.tools import GLOBALS, NODES, EDGES, SENDERS, RECEIVERS, to_one_hot
# Elements
SYMBOLS = ase.data.chemical_symbols[1:10]
SYMBOL_TO_OH = {symbol: to_one_hot(index=index, num_classes=len(SYMBOLS)) for index, symbol in enumerate(SYMBOLS)}
# Rings
MAX_RING_SIZE = 9
RING_SIZES = range(3, MAX_RING_SIZE + 1)
NOT_IN_RING = tuple(0 for _ in RING_SIZES)
# Edges
EDGE_KINDS = [1, 2, 3]
EDGE_KIND_TO_OH = {
edge_kind: to_one_hot(index=index, num_classes=len(EDGE_KINDS))
for index, edge_kind in enumerate(EDGE_KINDS)
}
# Bond type
BOND_TYPES = [
Chem.BondType.ZERO, Chem.BondType.SINGLE, Chem.BondType.DOUBLE, Chem.BondType.TRIPLE, Chem.BondType.AROMATIC
]
BOND_TYPE_TO_OH = {
bond_type: to_one_hot(index=index, num_classes=len(BOND_TYPES))
for index, bond_type in enumerate(BOND_TYPES)
}
# Stereo
STEREO_TYPES = [Chem.BondStereo.STEREONONE, Chem.BondStereo.STEREOANY, Chem.BondStereo.STEREOE, Chem.BondStereo.STEREOZ]
STEREO_TYPE_TO_OH = {
stereo_type: to_one_hot(index=index, num_classes=len(STEREO_TYPES))
for index, stereo_type in enumerate(STEREO_TYPES)
}
# Chirality
CHI_TAGS = [Chem.CHI_UNSPECIFIED, Chem.CHI_TETRAHEDRAL_CW, Chem.CHI_TETRAHEDRAL_CCW]
CHI_TAGS_TO_OH = {chi_tag: to_one_hot(index=index, num_classes=len(CHI_TAGS)) for index, chi_tag in enumerate(CHI_TAGS)}
@dataclass
class NodeInfo:
symbol: str
chiral_tag: int
def to_features(self) -> List:
return SYMBOL_TO_OH[self.symbol] + CHI_TAGS_TO_OH[self.chiral_tag]
@dataclass
class EdgeInfo:
distance: float
atom_ids: Tuple[int, int]
kind: int
stereo: int = Chem.BondStereo.STEREONONE
bond_type: int = Chem.BondType.ZERO
is_aromatic: bool = False
is_conjugated: bool = False
is_in_ring_size: Tuple[int, ...] = NOT_IN_RING
def to_features(self) -> Tuple[Tuple, List[int], float]:
feats = EDGE_KIND_TO_OH[self.kind] + STEREO_TYPE_TO_OH[self.stereo] + BOND_TYPE_TO_OH[self.bond_type] + [
int(self.is_aromatic), int(self.is_conjugated)
] + list(self.is_in_ring_size)
return self.atom_ids, feats, self.distance
def get_node_infos(molecule: Chem.Mol) -> List[NodeInfo]:
return [
NodeInfo(
symbol=ase.data.chemical_symbols[atom.GetAtomicNum()],
chiral_tag=atom.GetChiralTag(),
) for atom in molecule.GetAtoms()
]
def get_edge_infos(molecule: Chem.Mol, graph: Graph):
edge_infos = []
for (source, sink) in graph.edges:
kind = graph.edges[(source, sink)]['kind']
if kind == 1:
bond = molecule.GetBondBetweenAtoms(source, sink)
edge_info = EdgeInfo(
distance=tools.get_atom_distance(molecule, source, sink),
atom_ids=(source, sink),
kind=kind,
stereo=bond.GetStereo(),
bond_type=bond.GetBondType(),
is_aromatic=bond.GetIsAromatic(),
is_conjugated=bond.GetIsConjugated(),
is_in_ring_size=tuple(int(bond.IsInRingSize(size)) for size in RING_SIZES),
)
else:
edge_info = EdgeInfo(
distance=tools.get_atom_distance(molecule, source, sink),
atom_ids=(source, sink),
kind=kind,
)
edge_infos.append(edge_info)
return edge_infos
def get_feats_and_targets(node_infos: List[NodeInfo], edge_infos: List[EdgeInfo]) -> Tuple[dict, np.ndarray]:
nodes = [node_info.to_features() for node_info in node_infos]
edges = []
senders = []
receivers = []
targets = []
for edge_info in edge_infos:
(sender, receiver), edge_feats, distance = edge_info.to_features()
# Forward
edges.append(edge_feats)
senders.append(sender)
receivers.append(receiver)
targets.append([distance])
# Reverse
edges.append(edge_feats)
senders.append(receiver)
receivers.append(sender)
targets.append([distance])
assert (len(edges) == len(senders) == len(receivers) == len(targets))
feats = {
GLOBALS: np.array([], dtype=np.float),
NODES: np.array(nodes, dtype=np.float),
EDGES: np.array(edges, dtype=np.float),
SENDERS: np.array(senders, dtype=np.int),
RECEIVERS: np.array(receivers, dtype=np.int),
}
targets = np.array(targets, dtype=np.float)
return feats, targets
def get_info_tuple(molecule: Chem.Mol, seed: int) -> Tuple[List[NodeInfo], List[EdgeInfo]]:
atom_infos = get_node_infos(molecule)
graph = mol_to_extended_graph(molecule, seed=seed)
edge_infos = get_edge_infos(molecule=molecule, graph=graph)
return atom_infos, edge_infos
def get_dataset(molecules: List[Chem.Mol], seed: int, count: int) -> List[Tuple[dict, np.ndarray]]:
dataset = []
for mol_id, molecule in enumerate(molecules):
for index in range(count):
node_infos, edge_infos = get_info_tuple(molecule, seed=seed + mol_id + index)
feats_targets = get_feats_and_targets(node_infos=node_infos, edge_infos=edge_infos)
dataset.append(feats_targets)
return dataset
| [
1,
515,
848,
13203,
1053,
848,
1990,
13,
3166,
19229,
1053,
12603,
552,
29892,
2391,
13,
13,
5215,
263,
344,
29889,
1272,
13,
5215,
12655,
408,
7442,
13,
3166,
3564,
29916,
1053,
12367,
13,
3166,
364,
29881,
7354,
1053,
12677,
13,
13,
5215,
3983,
20726,
29889,
5510,
29889,
8504,
408,
8492,
13,
3166,
3983,
20726,
29889,
5510,
29889,
1062,
2760,
29918,
4262,
1053,
6062,
29918,
517,
29918,
1062,
2760,
29918,
4262,
13,
3166,
3983,
20726,
29889,
8504,
1053,
402,
28902,
1964,
29903,
29892,
11698,
2287,
29903,
29892,
9408,
1692,
29903,
29892,
317,
1430,
8032,
29903,
29892,
5195,
4741,
29902,
5348,
29903,
29892,
304,
29918,
650,
29918,
8711,
13,
13,
29937,
10619,
29879,
13,
14816,
9486,
5607,
29903,
353,
263,
344,
29889,
1272,
29889,
14969,
936,
29918,
18098,
29879,
29961,
29896,
29901,
29896,
29900,
29962,
13,
14816,
9486,
5607,
29918,
4986,
29918,
23170,
353,
426,
18098,
29901,
304,
29918,
650,
29918,
8711,
29898,
2248,
29922,
2248,
29892,
954,
29918,
13203,
29922,
2435,
29898,
14816,
9486,
5607,
29903,
876,
363,
2380,
29892,
5829,
297,
26985,
29898,
14816,
9486,
5607,
29903,
2915,
13,
13,
29937,
390,
886,
13,
12648,
29918,
29934,
4214,
29918,
14226,
353,
29871,
29929,
13,
29934,
4214,
29918,
5425,
29999,
2890,
353,
3464,
29898,
29941,
29892,
18134,
29918,
29934,
4214,
29918,
14226,
718,
29871,
29896,
29897,
13,
12256,
29918,
1177,
29918,
29934,
4214,
353,
18761,
29898,
29900,
363,
903,
297,
390,
4214,
29918,
5425,
29999,
2890,
29897,
13,
13,
29937,
2155,
2710,
13,
3352,
1692,
29918,
29968,
1177,
8452,
353,
518,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
29962,
13,
3352,
1692,
29918,
29968,
22255,
29918,
4986,
29918,
23170,
353,
426,
13,
1678,
7636,
29918,
14380,
29901,
304,
29918,
650,
29918,
8711,
29898,
2248,
29922,
2248,
29892,
954,
29918,
13203,
29922,
2435,
29898,
3352,
1692,
29918,
29968,
1177,
8452,
876,
13,
1678,
363,
2380,
29892,
7636,
29918,
14380,
297,
26985,
29898,
3352,
1692,
29918,
29968,
1177,
8452,
29897,
13,
29913,
13,
13,
29937,
26370,
1134,
13,
29933,
1164,
29928,
29918,
15631,
29925,
2890,
353,
518,
13,
1678,
12677,
29889,
29933,
898,
1542,
29889,
29999,
1001,
29949,
29892,
12677,
29889,
29933,
898,
1542,
29889,
29903,
4214,
1307,
29892,
12677,
29889,
29933,
898,
1542,
29889,
3970,
7466,
1307,
29892,
12677,
29889,
29933,
898,
1542,
29889,
29911,
3960,
29925,
1307,
29892,
12677,
29889,
29933,
898,
1542,
29889,
29909,
3491,
1299,
2965,
13,
29962,
13,
29933,
1164,
29928,
29918,
11116,
29918,
4986,
29918,
23170,
353,
426,
13,
1678,
21224,
29918,
1853,
29901,
304,
29918,
650,
29918,
8711,
29898,
2248,
29922,
2248,
29892,
954,
29918,
13203,
29922,
2435,
29898,
29933,
1164,
29928,
29918,
15631,
29925,
2890,
876,
13,
1678,
363,
2380,
29892,
21224,
29918,
1853,
297,
26985,
29898,
29933,
1164,
29928,
29918,
15631,
29925,
2890,
29897,
13,
29913,
13,
13,
29937,
317,
12358,
29877,
13,
1254,
27267,
29949,
29918,
15631,
29925,
2890,
353,
518,
1451,
331,
29889,
29933,
898,
29903,
12358,
29877,
29889,
1254,
27267,
1164,
12413,
29892,
12677,
29889,
29933,
898,
29903,
12358,
29877,
29889,
1254,
27267,
29949,
2190,
29979,
29892,
12677,
29889,
29933,
898,
29903,
12358,
29877,
29889,
1254,
27267,
29949,
29923,
29892,
12677,
29889,
29933,
898,
29903,
12358,
29877,
29889,
1254,
27267,
29949,
29999,
29962,
13,
1254,
27267,
29949,
29918,
11116,
29918,
4986,
29918,
23170,
353,
426,
13,
1678,
269,
12358,
29877,
29918,
1853,
29901,
304,
29918,
650,
29918,
8711,
29898,
2248,
29922,
2248,
29892,
954,
29918,
13203,
29922,
2435,
29898,
1254,
27267,
29949,
29918,
15631,
29925,
2890,
876,
13,
1678,
363,
2380,
29892,
269,
12358,
29877,
29918,
1853,
297,
26985,
29898,
1254,
27267,
29949,
29918,
15631,
29925,
2890,
29897,
13,
29913,
13,
13,
29937,
678,
381,
2877,
13,
3210,
29902,
29918,
6040,
10749,
353,
518,
1451,
331,
29889,
3210,
29902,
29918,
29965,
3059,
4162,
8426,
3738,
3352,
29892,
12677,
29889,
3210,
29902,
29918,
29911,
2544,
4717,
29950,
3352,
29934,
1964,
29918,
29907,
29956,
29892,
12677,
29889,
3210,
29902,
29918,
29911,
2544,
4717,
29950,
3352,
29934,
1964,
29918,
4174,
29956,
29962,
13,
3210,
29902,
29918,
6040,
10749,
29918,
4986,
29918,
23170,
353,
426,
4161,
29918,
4039,
29901,
304,
29918,
650,
29918,
8711,
29898,
2248,
29922,
2248,
29892,
954,
29918,
13203,
29922,
2435,
29898,
3210,
29902,
29918,
6040,
10749,
876,
363,
2380,
29892,
18558,
29918,
4039,
297,
26985,
29898,
3210,
29902,
29918,
6040,
10749,
2915,
13,
13,
13,
29992,
1272,
1990,
13,
1990,
9071,
3401,
29901,
13,
1678,
5829,
29901,
851,
13,
1678,
521,
19647,
29918,
4039,
29901,
938,
13,
13,
1678,
822,
304,
29918,
22100,
29898,
1311,
29897,
1599,
2391,
29901,
13,
4706,
736,
28962,
9486,
5607,
29918,
4986,
29918,
23170,
29961,
1311,
29889,
18098,
29962,
718,
5868,
29902,
29918,
6040,
10749,
29918,
4986,
29918,
23170,
29961,
1311,
29889,
305,
19647,
29918,
4039,
29962,
13,
13,
13,
29992,
1272,
1990,
13,
1990,
21086,
3401,
29901,
13,
1678,
5418,
29901,
5785,
13,
1678,
12301,
29918,
4841,
29901,
12603,
552,
29961,
524,
29892,
938,
29962,
13,
1678,
2924,
29901,
938,
13,
1678,
269,
12358,
29877,
29901,
938,
353,
12677,
29889,
29933,
898,
29903,
12358,
29877,
29889,
1254,
27267,
1164,
12413,
13,
1678,
21224,
29918,
1853,
29901,
938,
353,
12677,
29889,
29933,
898,
1542,
29889,
29999,
1001,
29949,
13,
1678,
338,
29918,
279,
290,
2454,
29901,
6120,
353,
7700,
13,
1678,
338,
29918,
535,
29926,
688,
630,
29901,
6120,
353,
7700,
13,
1678,
338,
29918,
262,
29918,
5393,
29918,
2311,
29901,
12603,
552,
29961,
524,
29892,
2023,
29962,
353,
6058,
29918,
1177,
29918,
29934,
4214,
13,
13,
1678,
822,
304,
29918,
22100,
29898,
1311,
29897,
1599,
12603,
552,
29961,
23215,
552,
29892,
2391,
29961,
524,
1402,
5785,
5387,
13,
4706,
1238,
1446,
353,
9408,
1692,
29918,
29968,
22255,
29918,
4986,
29918,
23170,
29961,
1311,
29889,
14380,
29962,
718,
317,
4945,
29923,
29949,
29918,
11116,
29918,
4986,
29918,
23170,
29961,
1311,
29889,
303,
406,
29877,
29962,
718,
350,
1164,
29928,
29918,
11116,
29918,
4986,
29918,
23170,
29961,
1311,
29889,
29890,
898,
29918,
1853,
29962,
718,
518,
13,
9651,
938,
29898,
1311,
29889,
275,
29918,
279,
290,
2454,
511,
938,
29898,
1311,
29889,
275,
29918,
535,
29926,
688,
630,
29897,
13,
4706,
4514,
718,
1051,
29898,
1311,
29889,
275,
29918,
262,
29918,
5393,
29918,
2311,
29897,
13,
4706,
736,
1583,
29889,
8678,
29918,
4841,
29892,
1238,
1446,
29892,
1583,
29889,
19244,
13,
13,
13,
1753,
679,
29918,
3177,
29918,
7192,
359,
29898,
29885,
1772,
29883,
1297,
29901,
12677,
29889,
29924,
324,
29897,
1599,
2391,
29961,
4247,
3401,
5387,
13,
1678,
736,
518,
13,
4706,
9071,
3401,
29898,
13,
9651,
5829,
29922,
559,
29889,
1272,
29889,
14969,
936,
29918,
18098,
29879,
29961,
8678,
29889,
2577,
4178,
25426,
8009,
580,
1402,
13,
9651,
521,
19647,
29918,
4039,
29922,
8678,
29889,
2577,
1451,
19647,
8176,
3285,
13,
4706,
1723,
363,
12301,
297,
13206,
29883,
1297,
29889,
2577,
4178,
4835,
580,
13,
1678,
4514,
13,
13,
13,
1753,
679,
29918,
12864,
29918,
7192,
359,
29898,
29885,
1772,
29883,
1297,
29901,
12677,
29889,
29924,
324,
29892,
3983,
29901,
12367,
1125,
13,
1678,
7636,
29918,
7192,
359,
353,
5159,
13,
1678,
363,
313,
4993,
29892,
28169,
29897,
297,
3983,
29889,
287,
2710,
29901,
13,
4706,
2924,
353,
3983,
29889,
287,
2710,
15625,
4993,
29892,
28169,
4638,
1839,
14380,
2033,
13,
13,
4706,
565,
2924,
1275,
29871,
29896,
29901,
13,
9651,
21224,
353,
13206,
29883,
1297,
29889,
2577,
29933,
898,
29933,
300,
1452,
4178,
4835,
29898,
4993,
29892,
28169,
29897,
13,
9651,
7636,
29918,
3888,
353,
21086,
3401,
29898,
13,
18884,
5418,
29922,
8504,
29889,
657,
29918,
8678,
29918,
19244,
29898,
29885,
1772,
29883,
1297,
29892,
2752,
29892,
28169,
511,
13,
18884,
12301,
29918,
4841,
7607,
4993,
29892,
28169,
511,
13,
18884,
2924,
29922,
14380,
29892,
13,
18884,
269,
12358,
29877,
29922,
29890,
898,
29889,
2577,
29903,
12358,
29877,
3285,
13,
18884,
21224,
29918,
1853,
29922,
29890,
898,
29889,
2577,
29933,
898,
1542,
3285,
13,
18884,
338,
29918,
279,
290,
2454,
29922,
29890,
898,
29889,
2577,
3624,
29909,
456,
2454,
3285,
13,
18884,
338,
29918,
535,
29926,
688,
630,
29922,
29890,
898,
29889,
2577,
3624,
1168,
29926,
688,
630,
3285,
13,
18884,
338,
29918,
262,
29918,
5393,
29918,
2311,
29922,
23583,
29898,
524,
29898,
29890,
898,
29889,
3624,
797,
29934,
292,
3505,
29898,
2311,
876,
363,
2159,
297,
390,
4214,
29918,
5425,
29999,
2890,
511,
13,
9651,
1723,
13,
4706,
1683,
29901,
13,
9651,
7636,
29918,
3888,
353,
21086,
3401,
29898,
13,
18884,
5418,
29922,
8504,
29889,
657,
29918,
8678,
29918,
19244,
29898,
29885,
1772,
29883,
1297,
29892,
2752,
29892,
28169,
511,
13,
18884,
12301,
29918,
4841,
7607,
4993,
29892,
28169,
511,
13,
18884,
2924,
29922,
14380,
29892,
13,
9651,
1723,
13,
13,
4706,
7636,
29918,
7192,
359,
29889,
4397,
29898,
12864,
29918,
3888,
29897,
13,
13,
1678,
736,
7636,
29918,
7192,
359,
13,
13,
13,
1753,
679,
29918,
1725,
1446,
29918,
392,
29918,
5182,
29879,
29898,
3177,
29918,
7192,
359,
29901,
2391,
29961,
4247,
3401,
1402,
7636,
29918,
7192,
359,
29901,
2391,
29961,
23894,
3401,
2314,
1599,
12603,
552,
29961,
8977,
29892,
7442,
29889,
299,
2378,
5387,
13,
1678,
7573,
353,
518,
3177,
29918,
3888,
29889,
517,
29918,
22100,
580,
363,
2943,
29918,
3888,
297,
2943,
29918,
7192,
359,
29962,
13,
1678,
12770,
353,
5159,
13,
1678,
3638,
414,
353,
5159,
13,
1678,
2414,
1536,
353,
5159,
13,
1678,
22525,
353,
5159,
13,
13,
1678,
363,
7636,
29918,
3888,
297,
7636,
29918,
7192,
359,
29901,
13,
4706,
313,
15452,
29892,
19870,
511,
7636,
29918,
1725,
1446,
29892,
5418,
353,
7636,
29918,
3888,
29889,
517,
29918,
22100,
580,
13,
13,
4706,
396,
1152,
1328,
13,
4706,
12770,
29889,
4397,
29898,
12864,
29918,
1725,
1446,
29897,
13,
4706,
3638,
414,
29889,
4397,
29898,
15452,
29897,
13,
4706,
2414,
1536,
29889,
4397,
29898,
13556,
2147,
29897,
13,
4706,
22525,
29889,
4397,
4197,
19244,
2314,
13,
13,
4706,
396,
830,
3901,
13,
4706,
12770,
29889,
4397,
29898,
12864,
29918,
1725,
1446,
29897,
13,
4706,
3638,
414,
29889,
4397,
29898,
13556,
2147,
29897,
13,
4706,
2414,
1536,
29889,
4397,
29898,
15452,
29897,
13,
4706,
22525,
29889,
4397,
4197,
19244,
2314,
13,
13,
1678,
4974,
313,
2435,
29898,
287,
2710,
29897,
1275,
7431,
29898,
6717,
414,
29897,
1275,
7431,
29898,
13556,
1536,
29897,
1275,
7431,
29898,
5182,
29879,
876,
13,
13,
1678,
1238,
1446,
353,
426,
13,
4706,
402,
28902,
1964,
29903,
29901,
7442,
29889,
2378,
4197,
1402,
26688,
29922,
9302,
29889,
7411,
511,
13,
4706,
11698,
2287,
29903,
29901,
7442,
29889,
2378,
29898,
18010,
29892,
26688,
29922,
9302,
29889,
7411,
511,
13,
4706,
9408,
1692,
29903,
29901,
7442,
29889,
2378,
29898,
287,
2710,
29892,
26688,
29922,
9302,
29889,
7411,
511,
13,
4706,
317,
1430,
8032,
29903,
29901,
7442,
29889,
2378,
29898,
6717,
414,
29892,
26688,
29922,
9302,
29889,
524,
511,
13,
4706,
5195,
4741,
29902,
5348,
29903,
29901,
7442,
29889,
2378,
29898,
13556,
1536,
29892,
26688,
29922,
9302,
29889,
524,
511,
13,
1678,
500,
13,
13,
1678,
22525,
353,
7442,
29889,
2378,
29898,
5182,
29879,
29892,
26688,
29922,
9302,
29889,
7411,
29897,
13,
13,
1678,
736,
1238,
1446,
29892,
22525,
13,
13,
13,
1753,
679,
29918,
3888,
29918,
23583,
29898,
29885,
1772,
29883,
1297,
29901,
12677,
29889,
29924,
324,
29892,
16717,
29901,
938,
29897,
1599,
12603,
552,
29961,
1293,
29961,
4247,
3401,
1402,
2391,
29961,
23894,
3401,
5262,
29901,
13,
1678,
12301,
29918,
7192,
359,
353,
679,
29918,
3177,
29918,
7192,
359,
29898,
29885,
1772,
29883,
1297,
29897,
13,
13,
1678,
3983,
353,
6062,
29918,
517,
29918,
1062,
2760,
29918,
4262,
29898,
29885,
1772,
29883,
1297,
29892,
16717,
29922,
26776,
29897,
13,
1678,
7636,
29918,
7192,
359,
353,
679,
29918,
12864,
29918,
7192,
359,
29898,
29885,
1772,
29883,
1297,
29922,
29885,
1772,
29883,
1297,
29892,
3983,
29922,
4262,
29897,
13,
13,
1678,
736,
12301,
29918,
7192,
359,
29892,
7636,
29918,
7192,
359,
13,
13,
13,
1753,
679,
29918,
24713,
29898,
29885,
1772,
21337,
29901,
2391,
29961,
1451,
331,
29889,
29924,
324,
1402,
16717,
29901,
938,
29892,
2302,
29901,
938,
29897,
1599,
2391,
29961,
23215,
552,
29961,
8977,
29892,
7442,
29889,
299,
2378,
5262,
29901,
13,
1678,
8783,
353,
5159,
13,
1678,
363,
6062,
29918,
333,
29892,
13206,
29883,
1297,
297,
26985,
29898,
29885,
1772,
21337,
1125,
13,
4706,
363,
2380,
297,
3464,
29898,
2798,
1125,
13,
9651,
2943,
29918,
7192,
359,
29892,
7636,
29918,
7192,
359,
353,
679,
29918,
3888,
29918,
23583,
29898,
29885,
1772,
29883,
1297,
29892,
16717,
29922,
26776,
718,
6062,
29918,
333,
718,
2380,
29897,
13,
9651,
1238,
1446,
29918,
5182,
29879,
353,
679,
29918,
1725,
1446,
29918,
392,
29918,
5182,
29879,
29898,
3177,
29918,
7192,
359,
29922,
3177,
29918,
7192,
359,
29892,
7636,
29918,
7192,
359,
29922,
12864,
29918,
7192,
359,
29897,
13,
9651,
8783,
29889,
4397,
29898,
1725,
1446,
29918,
5182,
29879,
29897,
13,
13,
1678,
736,
8783,
13,
2
] |
pandasbikeshed/plot.py | sholderbach/pandasbikeshed | 1 | 135763 | <gh_stars>1-10
import numpy as np
import pandas as pd
import matplotlib as mpl
import matplotlib.pyplot as plt
import seaborn as sns
from scipy.stats import pearsonr, spearmanr
def robust_hist(x, ax=None, **kwargs):
"""
Wrapper function to `plt.hist` dropping values that are not finite
Returns:
Axes
"""
mask = np.isfinite(x)
ax = ax or plt.gca()
ax.hist(x[mask], **kwargs)
return ax
def robust_scatter(x, y, size=0.5, alpha=0.3, **kwargs):
"""
Wrapper function to `sns.scatterplot` dropping value pairs that are not finite
Sets default `size` of 0.5 and `alpha` to 0.3
Returns:
Axes
"""
mask = np.isfinite(x) & np.isfinite(y)
return sns.scatterplot(x[mask], y[mask], size=size, alpha=alpha, **kwargs)
def robust_kde(x, y=None, **kwargs):
"""
Wrapper function to `sns.kdeplot` dropping values or value pairs that are not finite
Returns:
Axes
"""
if y is not None:
mask = np.isfinite(x) & np.isfinite(y)
return sns.kdeplot(x[mask], y[mask], **kwargs)
else:
mask = np.isfinite(x)
return sns.kdeplot(x[mask], **kwargs)
def robust_info(x, y, ax=None, **kwargs):
"""
Prints correlation information of two arrays into axis.
Useful for `sns.PairGrid` (see `pb.plot.robust_pairplot`).
As non finite value pairs are dropped prints number of comparisons.
Pearson and Spearman correlation values with associated p-value.
Returns:
Axes
"""
mask = np.isfinite(x) & np.isfinite(y)
n = np.sum(mask)
pear_r, pear_p = pearsonr(x[mask], y[mask])
spea_r, spea_p = spearmanr(x[mask], y[mask])
ax = ax or plt.gca()
ax.annotate(
f'N = {n} \n'
f'Pearson:\nr={pear_r:.3f} p={pear_p:.2E}\n'
f'Spearman:\nr={spea_r:.3f} p={spea_p:.2E}',
xy=(0.5, 0.5),
xycoords='axes fraction',
va='center', ha='center',
wrap=True,
**kwargs)
return ax
def robust_pairplot(df, lower_kind='scatter', upper_kind='info', diag_kind='hist', **kwargs):
"""
Similar function to `sns.pairplot` that drops non-finite value pairs instead of all rows containing NaNs
Args:
lower_kind: {'scatter', 'kde', 'info'}
upper_kind: {'scatter', 'kde', 'info'}
diag_kind: {'hist', 'kde'}
**kwargs: passed to sns.PairGrid
Returns:
sns.PairGrid
"""
diag_methods = {'hist': robust_hist, 'kde': robust_kde}
tria_methods = {'scatter': robust_scatter, 'kde': robust_kde, 'info': robust_info}
g = sns.PairGrid(df, **kwargs)
g.map_diag(diag_methods[diag_kind])
g.map_upper(tria_methods[upper_kind])
g.map_lower(tria_methods[lower_kind])
return g
def corr_heatmap(df, method='pearson', triangle_only=True,
ax=None,
cmap='RdBu_r', linewidths=0.1,
**heat_map_kwargs):
"""
Plot a correlation heatmap directly from a dataframe
Args:
df: pd.DataFrame
method: {'pearson', 'spearman'}
triangle_only: bool
Hide the diagonal and upper triangle.
default=True
Returns:
Axes
"""
corrmat = df.corr(method=method)
mask = (~np.tri(corrmat.shape[0], dtype=np.bool)) if triangle_only else None
locator = mpl.ticker.MultipleLocator(0.25)
return sns.heatmap(corrmat, ax=ax, mask=mask,
vmin=-1., vmax=1., center=0, cbar_kws={'ticks': locator},
linewidths=linewidths, cmap=cmap,
**heat_map_kwargs)
def dist_catplot(data=None, x=None, kind='hist', dist_columns=None,
col=None, row=None, hue=None, col_wrap=None,
**facet_kwargs):
"""
Make faceted histograms or kdeplots either from tidy longform data or columns of a wide DataFrame
Args:
data: pd.DataFrame
x: str, None
Defines a column in tidy data, from which to take the values for the histogram.
If unspecified, numeric columns are considered for the histograms
kind: {'hist', 'kde'}
dist_columns: Iterable column names, optional
If x unspecified, defines the columns to be considered for histograms
col, row, hue: str, optional
Column names to facet the data.
col_wrap: int, optional
breaks cols, if no row specified
Returns:
sns.FacetGrid
"""
if x is None:
if dist_columns is not None:
numeric_columns = dist_columns
else:
numeric_columns = [name
for name, dtype
in data.dtypes.items()
if pd.api.types.is_numeric_dtype(dtype)]
non_numeric_columns = data.columns.difference(numeric_columns)
cols_name = data.columns.name or 'columns'
hist_col = 'value' if 'value' not in data.columns else 'histogram_value'
dat = data.melt(id_vars=non_numeric_columns,
value_vars=numeric_columns,
var_name=cols_name,
value_name=hist_col)
if col is None:
col = cols_name
elif row is None and col_wrap is None:
row = cols_name
elif hue is None:
hue = cols_name
else:
raise ValueError('No dimension available to unpack the numeric columns.')
else:
dat = data
hist_col = x
plt_funcs = {'hist': plt.hist, 'kde': sns.kdeplot}
g = sns.FacetGrid(dat, col=col, row=row, hue=hue, col_wrap=col_wrap, **facet_kwargs)
g.map(plt_funcs[kind], hist_col)
return g
| [
1,
529,
12443,
29918,
303,
1503,
29958,
29896,
29899,
29896,
29900,
13,
5215,
12655,
408,
7442,
13,
5215,
11701,
408,
10518,
13,
5215,
22889,
408,
286,
572,
13,
5215,
22889,
29889,
2272,
5317,
408,
14770,
13,
5215,
409,
370,
1398,
408,
269,
1983,
13,
3166,
4560,
2272,
29889,
16202,
1053,
282,
799,
1100,
29878,
29892,
961,
279,
1171,
29878,
13,
13,
13,
1753,
16424,
29918,
29882,
391,
29898,
29916,
29892,
4853,
29922,
8516,
29892,
3579,
19290,
1125,
13,
1678,
9995,
13,
1678,
399,
6794,
740,
304,
421,
572,
29873,
29889,
29882,
391,
29952,
4441,
3262,
1819,
393,
526,
451,
8093,
13,
13,
1678,
16969,
29901,
13,
4706,
319,
9100,
13,
1678,
9995,
13,
1678,
11105,
353,
7442,
29889,
4492,
262,
568,
29898,
29916,
29897,
13,
1678,
4853,
353,
4853,
470,
14770,
29889,
29887,
1113,
580,
13,
1678,
4853,
29889,
29882,
391,
29898,
29916,
29961,
13168,
1402,
3579,
19290,
29897,
13,
1678,
736,
4853,
13,
13,
1753,
16424,
29918,
1557,
2620,
29898,
29916,
29892,
343,
29892,
2159,
29922,
29900,
29889,
29945,
29892,
15595,
29922,
29900,
29889,
29941,
29892,
3579,
19290,
1125,
13,
1678,
9995,
13,
1678,
399,
6794,
740,
304,
421,
29879,
1983,
29889,
1557,
2620,
5317,
29952,
4441,
3262,
995,
11000,
393,
526,
451,
8093,
13,
13,
1678,
317,
1691,
2322,
421,
2311,
29952,
310,
29871,
29900,
29889,
29945,
322,
421,
2312,
29952,
304,
29871,
29900,
29889,
29941,
13,
13,
1678,
16969,
29901,
13,
4706,
319,
9100,
13,
1678,
9995,
13,
1678,
11105,
353,
7442,
29889,
4492,
262,
568,
29898,
29916,
29897,
669,
7442,
29889,
4492,
262,
568,
29898,
29891,
29897,
13,
1678,
736,
269,
1983,
29889,
1557,
2620,
5317,
29898,
29916,
29961,
13168,
1402,
343,
29961,
13168,
1402,
2159,
29922,
2311,
29892,
15595,
29922,
2312,
29892,
3579,
19290,
29897,
13,
13,
1753,
16424,
29918,
29895,
311,
29898,
29916,
29892,
343,
29922,
8516,
29892,
3579,
19290,
1125,
13,
1678,
9995,
13,
1678,
399,
6794,
740,
304,
421,
29879,
1983,
29889,
29895,
311,
5317,
29952,
4441,
3262,
1819,
470,
995,
11000,
393,
526,
451,
8093,
13,
13,
1678,
16969,
29901,
13,
4706,
319,
9100,
13,
1678,
9995,
13,
1678,
565,
343,
338,
451,
6213,
29901,
13,
4706,
11105,
353,
7442,
29889,
4492,
262,
568,
29898,
29916,
29897,
669,
7442,
29889,
4492,
262,
568,
29898,
29891,
29897,
13,
4706,
736,
269,
1983,
29889,
29895,
311,
5317,
29898,
29916,
29961,
13168,
1402,
343,
29961,
13168,
1402,
3579,
19290,
29897,
13,
1678,
1683,
29901,
13,
4706,
11105,
353,
7442,
29889,
4492,
262,
568,
29898,
29916,
29897,
13,
4706,
736,
269,
1983,
29889,
29895,
311,
5317,
29898,
29916,
29961,
13168,
1402,
3579,
19290,
29897,
13,
13,
13,
13,
1753,
16424,
29918,
3888,
29898,
29916,
29892,
343,
29892,
4853,
29922,
8516,
29892,
3579,
19290,
1125,
13,
1678,
9995,
13,
1678,
1588,
9466,
19869,
2472,
310,
1023,
7049,
964,
9685,
29889,
13,
13,
1678,
4803,
1319,
363,
421,
29879,
1983,
29889,
20547,
5756,
29952,
313,
4149,
421,
24381,
29889,
5317,
29889,
13716,
504,
29918,
18784,
5317,
12913,
13,
1678,
1094,
1661,
8093,
995,
11000,
526,
13700,
14677,
1353,
310,
5734,
14125,
29889,
13,
1678,
21265,
1100,
322,
5013,
279,
1171,
19869,
1819,
411,
6942,
282,
29899,
1767,
29889,
13,
13,
1678,
16969,
29901,
13,
4706,
319,
9100,
13,
1678,
9995,
13,
1678,
11105,
353,
7442,
29889,
4492,
262,
568,
29898,
29916,
29897,
669,
7442,
29889,
4492,
262,
568,
29898,
29891,
29897,
13,
1678,
302,
353,
7442,
29889,
2083,
29898,
13168,
29897,
13,
1678,
282,
799,
29918,
29878,
29892,
282,
799,
29918,
29886,
353,
282,
799,
1100,
29878,
29898,
29916,
29961,
13168,
1402,
343,
29961,
13168,
2314,
13,
1678,
961,
29874,
29918,
29878,
29892,
961,
29874,
29918,
29886,
353,
961,
279,
1171,
29878,
29898,
29916,
29961,
13168,
1402,
343,
29961,
13168,
2314,
13,
1678,
4853,
353,
4853,
470,
14770,
29889,
29887,
1113,
580,
13,
1678,
4853,
29889,
6735,
403,
29898,
13,
632,
285,
29915,
29940,
353,
426,
29876,
29913,
320,
29876,
29915,
13,
632,
285,
29915,
29925,
799,
1100,
3583,
22230,
3790,
412,
279,
29918,
29878,
29901,
29889,
29941,
29888,
29913,
282,
3790,
412,
279,
29918,
29886,
29901,
29889,
29906,
29923,
1012,
29876,
29915,
13,
632,
285,
29915,
10649,
279,
1171,
3583,
22230,
3790,
5965,
29874,
29918,
29878,
29901,
29889,
29941,
29888,
29913,
282,
3790,
5965,
29874,
29918,
29886,
29901,
29889,
29906,
29923,
29913,
742,
13,
632,
921,
29891,
7607,
29900,
29889,
29945,
29892,
29871,
29900,
29889,
29945,
511,
13,
632,
921,
29891,
1111,
4339,
2433,
1165,
267,
15958,
742,
13,
632,
2947,
2433,
5064,
742,
447,
2433,
5064,
742,
13,
632,
12244,
29922,
5574,
29892,
13,
632,
3579,
19290,
29897,
13,
1678,
736,
4853,
13,
13,
1753,
16424,
29918,
18784,
5317,
29898,
2176,
29892,
5224,
29918,
14380,
2433,
1557,
2620,
742,
7568,
29918,
14380,
2433,
3888,
742,
7936,
29918,
14380,
2433,
29882,
391,
742,
3579,
19290,
1125,
13,
1678,
9995,
13,
1678,
13999,
740,
304,
421,
29879,
1983,
29889,
18784,
5317,
29952,
393,
4441,
567,
1661,
29899,
18925,
995,
11000,
2012,
310,
599,
4206,
6943,
18780,
29879,
13,
13,
1678,
826,
3174,
29901,
13,
4706,
5224,
29918,
14380,
29901,
11117,
1557,
2620,
742,
525,
29895,
311,
742,
525,
3888,
10827,
13,
4706,
7568,
29918,
14380,
29901,
11117,
1557,
2620,
742,
525,
29895,
311,
742,
525,
3888,
10827,
13,
4706,
7936,
29918,
14380,
29901,
11117,
29882,
391,
742,
525,
29895,
311,
10827,
13,
4706,
3579,
19290,
29901,
4502,
304,
269,
1983,
29889,
20547,
5756,
13,
13,
1678,
16969,
29901,
13,
4706,
269,
1983,
29889,
20547,
5756,
13,
1678,
9995,
13,
1678,
7936,
29918,
23515,
353,
11117,
29882,
391,
2396,
16424,
29918,
29882,
391,
29892,
525,
29895,
311,
2396,
16424,
29918,
29895,
311,
29913,
13,
1678,
260,
2849,
29918,
23515,
353,
11117,
1557,
2620,
2396,
16424,
29918,
1557,
2620,
29892,
525,
29895,
311,
2396,
16424,
29918,
29895,
311,
29892,
525,
3888,
2396,
16424,
29918,
3888,
29913,
13,
1678,
330,
353,
269,
1983,
29889,
20547,
5756,
29898,
2176,
29892,
3579,
19290,
29897,
13,
1678,
330,
29889,
1958,
29918,
6051,
351,
29898,
6051,
351,
29918,
23515,
29961,
6051,
351,
29918,
14380,
2314,
13,
1678,
330,
29889,
1958,
29918,
21064,
29898,
29873,
2849,
29918,
23515,
29961,
21064,
29918,
14380,
2314,
13,
1678,
330,
29889,
1958,
29918,
13609,
29898,
29873,
2849,
29918,
23515,
29961,
13609,
29918,
14380,
2314,
13,
1678,
736,
330,
13,
13,
1753,
27760,
29918,
354,
271,
1958,
29898,
2176,
29892,
1158,
2433,
412,
279,
1100,
742,
17205,
29918,
6194,
29922,
5574,
29892,
13,
462,
4853,
29922,
8516,
29892,
13,
462,
274,
1958,
2433,
29934,
29881,
3727,
29918,
29878,
742,
1196,
2103,
29879,
29922,
29900,
29889,
29896,
29892,
13,
462,
3579,
354,
271,
29918,
1958,
29918,
19290,
1125,
13,
1678,
9995,
13,
1678,
18399,
263,
19869,
12871,
1958,
4153,
515,
263,
12205,
13,
13,
1678,
826,
3174,
29901,
13,
4706,
4489,
29901,
10518,
29889,
17271,
13,
4706,
1158,
29901,
11117,
412,
279,
1100,
742,
525,
5965,
279,
1171,
10827,
13,
4706,
17205,
29918,
6194,
29901,
6120,
13,
9651,
379,
680,
278,
19640,
322,
7568,
17205,
29889,
13,
9651,
2322,
29922,
5574,
13,
13,
1678,
16969,
29901,
13,
4706,
319,
9100,
13,
1678,
9995,
13,
1678,
1034,
1758,
271,
353,
4489,
29889,
29725,
29898,
5696,
29922,
5696,
29897,
13,
1678,
11105,
353,
313,
30022,
9302,
29889,
3626,
29898,
2616,
1758,
271,
29889,
12181,
29961,
29900,
1402,
26688,
29922,
9302,
29889,
11227,
876,
565,
17205,
29918,
6194,
1683,
6213,
13,
1678,
1180,
1061,
353,
286,
572,
29889,
29873,
6541,
29889,
15329,
552,
3524,
1061,
29898,
29900,
29889,
29906,
29945,
29897,
13,
1678,
736,
269,
1983,
29889,
354,
271,
1958,
29898,
2616,
1758,
271,
29892,
4853,
29922,
1165,
29892,
11105,
29922,
13168,
29892,
13,
462,
539,
325,
1195,
10457,
29896,
1696,
325,
3317,
29922,
29896,
1696,
4818,
29922,
29900,
29892,
274,
1646,
29918,
29895,
5652,
3790,
29915,
29873,
7358,
2396,
1180,
1061,
1118,
13,
462,
539,
1196,
2103,
29879,
29922,
16292,
29879,
29892,
274,
1958,
29922,
29883,
1958,
29892,
13,
462,
539,
3579,
354,
271,
29918,
1958,
29918,
19290,
29897,
13,
13,
1753,
1320,
29918,
4117,
5317,
29898,
1272,
29922,
8516,
29892,
921,
29922,
8516,
29892,
2924,
2433,
29882,
391,
742,
1320,
29918,
13099,
29922,
8516,
29892,
13,
462,
784,
29922,
8516,
29892,
1948,
29922,
8516,
29892,
298,
434,
29922,
8516,
29892,
784,
29918,
6312,
29922,
8516,
29892,
13,
462,
3579,
17470,
300,
29918,
19290,
1125,
13,
1678,
9995,
13,
1678,
8561,
4024,
300,
287,
9825,
468,
25402,
470,
26109,
26762,
2845,
515,
10668,
29891,
1472,
689,
848,
470,
4341,
310,
263,
9377,
3630,
4308,
13,
13,
1678,
826,
3174,
29901,
13,
4706,
848,
29901,
10518,
29889,
17271,
13,
4706,
921,
29901,
851,
29892,
6213,
13,
9651,
5282,
1475,
263,
1897,
297,
10668,
29891,
848,
29892,
515,
607,
304,
2125,
278,
1819,
363,
278,
9825,
13342,
29889,
13,
9651,
960,
443,
6550,
2164,
29892,
16985,
4341,
526,
5545,
363,
278,
9825,
468,
25402,
13,
4706,
2924,
29901,
11117,
29882,
391,
742,
525,
29895,
311,
10827,
13,
4706,
1320,
29918,
13099,
29901,
20504,
519,
1897,
2983,
29892,
13136,
13,
9651,
960,
921,
443,
6550,
2164,
29892,
17645,
278,
4341,
304,
367,
5545,
363,
9825,
468,
25402,
13,
4706,
784,
29892,
1948,
29892,
298,
434,
29901,
851,
29892,
13136,
13,
9651,
12481,
2983,
304,
4024,
300,
278,
848,
29889,
13,
4706,
784,
29918,
6312,
29901,
938,
29892,
13136,
13,
9651,
16706,
28730,
29892,
565,
694,
1948,
6790,
13,
13,
1678,
16969,
29901,
13,
4706,
269,
1983,
29889,
29943,
562,
300,
5756,
13,
1678,
9995,
13,
1678,
565,
921,
338,
6213,
29901,
13,
4706,
565,
1320,
29918,
13099,
338,
451,
6213,
29901,
13,
9651,
16985,
29918,
13099,
353,
1320,
29918,
13099,
13,
4706,
1683,
29901,
13,
9651,
16985,
29918,
13099,
353,
518,
978,
13,
462,
18884,
363,
1024,
29892,
26688,
13,
462,
18884,
297,
848,
29889,
29881,
8768,
29889,
7076,
580,
13,
462,
18884,
565,
10518,
29889,
2754,
29889,
8768,
29889,
275,
29918,
21574,
29918,
29881,
1853,
29898,
29881,
1853,
4638,
13,
4706,
1661,
29918,
21574,
29918,
13099,
353,
848,
29889,
13099,
29889,
29881,
17678,
29898,
21574,
29918,
13099,
29897,
13,
4706,
28730,
29918,
978,
353,
848,
29889,
13099,
29889,
978,
470,
525,
13099,
29915,
13,
4706,
9825,
29918,
1054,
353,
525,
1767,
29915,
565,
525,
1767,
29915,
451,
297,
848,
29889,
13099,
1683,
525,
29882,
391,
13342,
29918,
1767,
29915,
13,
4706,
1418,
353,
848,
29889,
29885,
2152,
29898,
333,
29918,
16908,
29922,
5464,
29918,
21574,
29918,
13099,
29892,
13,
462,
4706,
995,
29918,
16908,
29922,
21574,
29918,
13099,
29892,
13,
462,
4706,
722,
29918,
978,
29922,
22724,
29918,
978,
29892,
13,
462,
4706,
995,
29918,
978,
29922,
29882,
391,
29918,
1054,
29897,
13,
4706,
565,
784,
338,
6213,
29901,
13,
9651,
784,
353,
28730,
29918,
978,
13,
4706,
25342,
1948,
338,
6213,
322,
784,
29918,
6312,
338,
6213,
29901,
13,
9651,
1948,
353,
28730,
29918,
978,
13,
4706,
25342,
298,
434,
338,
6213,
29901,
13,
9651,
298,
434,
353,
28730,
29918,
978,
13,
4706,
1683,
29901,
13,
9651,
12020,
7865,
2392,
877,
3782,
9927,
3625,
304,
443,
4058,
278,
16985,
4341,
29889,
1495,
13,
1678,
1683,
29901,
13,
4706,
1418,
353,
848,
13,
4706,
9825,
29918,
1054,
353,
921,
13,
1678,
14770,
29918,
7692,
2395,
353,
11117,
29882,
391,
2396,
14770,
29889,
29882,
391,
29892,
525,
29895,
311,
2396,
269,
1983,
29889,
29895,
311,
5317,
29913,
13,
1678,
330,
353,
269,
1983,
29889,
29943,
562,
300,
5756,
29898,
4130,
29892,
784,
29922,
1054,
29892,
1948,
29922,
798,
29892,
298,
434,
29922,
29882,
434,
29892,
784,
29918,
6312,
29922,
1054,
29918,
6312,
29892,
3579,
17470,
300,
29918,
19290,
29897,
13,
1678,
330,
29889,
1958,
29898,
572,
29873,
29918,
7692,
2395,
29961,
14380,
1402,
9825,
29918,
1054,
29897,
13,
1678,
736,
330,
13,
2
] |
vpnmon.py | clambin/vpnmon | 0 | 155941 | <gh_stars>0
from vpnmon.vpnmon import vpnmon
from vpnmon.configuration import get_configuration
if __name__ == '__main__':
vpnmon(get_configuration())
| [
1,
529,
12443,
29918,
303,
1503,
29958,
29900,
13,
3166,
325,
21257,
3712,
29889,
29894,
21257,
3712,
1053,
325,
21257,
3712,
13,
3166,
325,
21257,
3712,
29889,
13305,
1053,
679,
29918,
13305,
13,
13,
361,
4770,
978,
1649,
1275,
525,
1649,
3396,
1649,
2396,
13,
1678,
325,
21257,
3712,
29898,
657,
29918,
13305,
3101,
13,
2
] |
hproxy/scheduler/valid_proxy.py | yejianxin2015/hproxy | 0 | 80218 | #!/usr/bin/env python
"""
Created by howie.hu at 08/04/2018.
"""
import asyncio
import sys
import time
sys.path.append('../../')
from hproxy.database import DatabaseSetting
from hproxy.utils import logger
from hproxy.spider.proxy_tools import get_proxy_info
db_client = DatabaseSetting()
async def valid_proxies():
all_res = await db_client.get_all()
start = time.time()
tasks = []
if all_res:
for each in all_res.keys():
tasks.append(asyncio.ensure_future(valid_proxy(each, nums=1)))
done_list, pending_list = await asyncio.wait(tasks)
good_nums = 0
for task in done_list:
if task.result():
good_nums += 1
logger.info(type="Authentication finished", message="Authenticating finished ,total proxy num : {0} - valid proxy num : {1} ,Time costs : {2}}".format(
len(tasks),
good_nums,
time.time() - start))
async def valid_proxy(proxy, nums=1):
if nums > 5:
await db_client.delete(proxy)
logger.error(type='Invalid proxy', message="{0} had been abandoned".format(proxy))
return False
else:
ip, port = proxy.split(':')
isOk = await get_proxy_info(ip, port)
if not isOk:
logger.error(type='Invalid proxy', message="{0}:retry times = {1}".format(proxy, nums))
res = await valid_proxy(proxy, nums=nums + 1)
return res
else:
logger.info(type='Valid proxy', message="{0} is valid".format(proxy))
return True
def refresh_proxy():
asyncio.get_event_loop().run_until_complete(valid_proxies())
if __name__ == '__main__':
refresh_proxy()
| [
1,
18787,
4855,
29914,
2109,
29914,
6272,
3017,
13,
15945,
29908,
13,
6760,
630,
491,
920,
347,
29889,
6905,
472,
29871,
29900,
29947,
29914,
29900,
29946,
29914,
29906,
29900,
29896,
29947,
29889,
13,
15945,
29908,
13,
5215,
408,
948,
3934,
13,
5215,
10876,
13,
5215,
931,
13,
13,
9675,
29889,
2084,
29889,
4397,
877,
21546,
1495,
13,
13,
3166,
298,
14701,
29889,
9803,
1053,
5470,
29020,
13,
3166,
298,
14701,
29889,
13239,
1053,
17927,
13,
3166,
298,
14701,
29889,
1028,
1241,
29889,
14701,
29918,
8504,
1053,
679,
29918,
14701,
29918,
3888,
13,
13,
2585,
29918,
4645,
353,
5470,
29020,
580,
13,
13,
13,
12674,
822,
2854,
29918,
771,
29916,
583,
7295,
13,
1678,
599,
29918,
690,
353,
7272,
4833,
29918,
4645,
29889,
657,
29918,
497,
580,
13,
1678,
1369,
353,
931,
29889,
2230,
580,
13,
1678,
9595,
353,
5159,
13,
1678,
565,
599,
29918,
690,
29901,
13,
4706,
363,
1269,
297,
599,
29918,
690,
29889,
8149,
7295,
13,
9651,
9595,
29889,
4397,
29898,
294,
948,
3934,
29889,
7469,
29918,
29888,
9130,
29898,
3084,
29918,
14701,
29898,
4204,
29892,
954,
29879,
29922,
29896,
4961,
13,
1678,
2309,
29918,
1761,
29892,
28235,
29918,
1761,
353,
7272,
408,
948,
3934,
29889,
10685,
29898,
20673,
29897,
13,
1678,
1781,
29918,
1949,
29879,
353,
29871,
29900,
13,
1678,
363,
3414,
297,
2309,
29918,
1761,
29901,
13,
4706,
565,
3414,
29889,
2914,
7295,
13,
9651,
1781,
29918,
1949,
29879,
4619,
29871,
29896,
13,
13,
1678,
17927,
29889,
3888,
29898,
1853,
543,
16746,
7743,
613,
2643,
543,
6444,
4173,
1218,
7743,
29871,
30214,
7827,
10166,
954,
584,
426,
29900,
29913,
448,
2854,
10166,
954,
584,
426,
29896,
29913,
1919,
2481,
21544,
584,
426,
29906,
930,
1642,
4830,
29898,
13,
4706,
7431,
29898,
20673,
511,
13,
4706,
1781,
29918,
1949,
29879,
29892,
13,
4706,
931,
29889,
2230,
580,
448,
1369,
876,
13,
13,
13,
12674,
822,
2854,
29918,
14701,
29898,
14701,
29892,
954,
29879,
29922,
29896,
1125,
13,
1678,
565,
954,
29879,
1405,
29871,
29945,
29901,
13,
4706,
7272,
4833,
29918,
4645,
29889,
8143,
29898,
14701,
29897,
13,
4706,
17927,
29889,
2704,
29898,
1853,
2433,
13919,
10166,
742,
2643,
10724,
29900,
29913,
750,
1063,
23181,
1642,
4830,
29898,
14701,
876,
13,
4706,
736,
7700,
13,
1678,
1683,
29901,
13,
4706,
10377,
29892,
2011,
353,
10166,
29889,
5451,
877,
29901,
1495,
13,
4706,
338,
20434,
353,
7272,
29871,
679,
29918,
14701,
29918,
3888,
29898,
666,
29892,
2011,
29897,
13,
4706,
565,
451,
338,
20434,
29901,
13,
9651,
17927,
29889,
2704,
29898,
1853,
2433,
13919,
10166,
742,
2643,
10724,
29900,
29913,
30383,
276,
2202,
3064,
353,
29871,
426,
29896,
29913,
1642,
4830,
29898,
14701,
29892,
954,
29879,
876,
13,
9651,
620,
353,
7272,
2854,
29918,
14701,
29898,
14701,
29892,
954,
29879,
29922,
1949,
29879,
718,
29871,
29896,
29897,
13,
9651,
736,
620,
13,
4706,
1683,
29901,
13,
9651,
17927,
29889,
3888,
29898,
1853,
2433,
7211,
10166,
742,
2643,
10724,
29900,
29913,
338,
2854,
1642,
4830,
29898,
14701,
876,
13,
9651,
736,
5852,
13,
13,
13,
1753,
11086,
29918,
14701,
7295,
13,
1678,
408,
948,
3934,
29889,
657,
29918,
3696,
29918,
7888,
2141,
3389,
29918,
29305,
29918,
8835,
29898,
3084,
29918,
771,
29916,
583,
3101,
13,
13,
13,
361,
4770,
978,
1649,
1275,
525,
1649,
3396,
1649,
2396,
13,
1678,
11086,
29918,
14701,
580,
13,
2
] |
webservice/gh_api.py | maoo/github_app_boilerplate | 0 | 175357 | from cryptography.hazmat.backends import default_backend
from requests.models import HTTPBasicAuth
import jwt
import requests
import time
import os
gh_pat = os.environ.get("GH_PAT")
gh_user = "maoo"
gh_app_id = os.environ.get("GH_APP_ID")
fname = os.environ.get("GH_PRIVATE_KEY")
cert_str = open(fname, 'r').read()
cert_bytes = cert_str.encode()
private_key = default_backend().load_pem_private_key(cert_bytes, None)
def app_headers():
time_since_epoch_in_seconds = int(time.time())
payload = {
'iat': time_since_epoch_in_seconds,
'exp': time_since_epoch_in_seconds + (10 * 60),
'iss': gh_app_id
}
actual_jwt = jwt.encode(payload, private_key, algorithm='RS256')
headers = {"Authorization": f"Bearer {actual_jwt}",
"Accept": "application/vnd.github.machine-man-preview+json"}
return headers
def call_gh_api(url, page=1):
prefix = "https://api.github.com"
ret = requests.get(
prefix + url + f"?per_page=100&page={page}",
auth=HTTPBasicAuth(gh_user, gh_pat),
headers=app_headers()).json()
if (len(ret) == 100):
return ret + call_gh_api(url, page=page+1)
else:
return ret
def get_members_and_invites(org, skip_failed=True):
resp = call_gh_api(f'/orgs/{org}/members')
members = [i['login'] for i in resp]
resp = call_gh_api(f'/orgs/{org}/invitations')
invitations = [i['login'] for i in resp]
resp = call_gh_api(f'/orgs/{org}/failed_invitations')
failed_invitations = [i['login'] for i in resp]
print('Members: ', len(members))
print('Pending Invitations: ', len(invitations))
print('Failed Invitations: ', len(failed_invitations))
if skip_failed:
return members + invitations
else:
return members + invitations + failed_invitations
def invite_user(user,org):
resp = requests.put(
f'https://api.github.com/orgs/{org}/memberships/{user}',
auth=HTTPBasicAuth(user, os.environ.get("GH_PAT")),
headers=app_headers())
print(f'Invited {user} to {org} - response {resp.status_code}') | [
1,
515,
24941,
5275,
29889,
29882,
834,
2922,
29889,
1627,
1975,
1053,
2322,
29918,
27852,
13,
3166,
7274,
29889,
9794,
1053,
7331,
16616,
6444,
13,
5215,
432,
14554,
13,
5215,
7274,
13,
5215,
931,
13,
5215,
2897,
13,
13,
12443,
29918,
5031,
353,
2897,
29889,
21813,
29889,
657,
703,
29954,
29950,
29918,
29925,
1299,
1159,
13,
12443,
29918,
1792,
353,
376,
655,
3634,
29908,
13,
12443,
29918,
932,
29918,
333,
353,
2897,
29889,
21813,
29889,
657,
703,
29954,
29950,
29918,
20576,
29918,
1367,
1159,
13,
29888,
978,
353,
2897,
29889,
21813,
29889,
657,
703,
29954,
29950,
29918,
29829,
29963,
3040,
29918,
10818,
1159,
13,
6327,
29918,
710,
353,
1722,
29898,
29888,
978,
29892,
525,
29878,
2824,
949,
580,
13,
6327,
29918,
13193,
353,
2284,
29918,
710,
29889,
12508,
580,
13,
9053,
29918,
1989,
353,
2322,
29918,
27852,
2141,
1359,
29918,
29886,
331,
29918,
9053,
29918,
1989,
29898,
6327,
29918,
13193,
29892,
6213,
29897,
13,
13,
1753,
623,
29918,
13662,
7295,
13,
1678,
931,
29918,
16076,
29918,
1022,
2878,
29918,
262,
29918,
23128,
353,
938,
29898,
2230,
29889,
2230,
3101,
268,
13,
1678,
20092,
353,
426,
13,
418,
525,
7163,
2396,
931,
29918,
16076,
29918,
1022,
2878,
29918,
262,
29918,
23128,
29892,
13,
418,
525,
4548,
2396,
931,
29918,
16076,
29918,
1022,
2878,
29918,
262,
29918,
23128,
718,
313,
29896,
29900,
334,
29871,
29953,
29900,
511,
13,
418,
525,
790,
2396,
24170,
29918,
932,
29918,
333,
13,
1678,
500,
13,
1678,
3935,
29918,
29926,
14554,
353,
432,
14554,
29889,
12508,
29898,
23813,
29892,
2024,
29918,
1989,
29892,
5687,
2433,
12445,
29906,
29945,
29953,
1495,
13,
1678,
9066,
353,
8853,
25471,
1115,
285,
29908,
29933,
799,
261,
426,
19304,
29918,
29926,
14554,
17671,
13,
1669,
376,
23965,
1115,
376,
6214,
29914,
29894,
299,
29889,
3292,
29889,
23523,
29899,
1171,
29899,
25347,
29974,
3126,
9092,
13,
1678,
736,
9066,
13,
13,
1753,
1246,
29918,
12443,
29918,
2754,
29898,
2271,
29892,
1813,
29922,
29896,
1125,
13,
1678,
10944,
353,
376,
991,
597,
2754,
29889,
3292,
29889,
510,
29908,
13,
1678,
3240,
353,
7274,
29889,
657,
29898,
13,
4706,
10944,
718,
3142,
718,
285,
8652,
546,
29918,
3488,
29922,
29896,
29900,
29900,
29987,
3488,
3790,
3488,
17671,
29871,
13,
4706,
4817,
29922,
10493,
16616,
6444,
29898,
12443,
29918,
1792,
29892,
24170,
29918,
5031,
511,
29871,
13,
4706,
9066,
29922,
932,
29918,
13662,
16655,
3126,
580,
13,
1678,
565,
313,
2435,
29898,
2267,
29897,
1275,
29871,
29896,
29900,
29900,
1125,
13,
4706,
736,
3240,
718,
1246,
29918,
12443,
29918,
2754,
29898,
2271,
29892,
1813,
29922,
3488,
29974,
29896,
29897,
13,
1678,
1683,
29901,
13,
4706,
736,
3240,
13,
268,
13,
1753,
679,
29918,
28109,
29918,
392,
29918,
11569,
3246,
29898,
990,
29892,
14383,
29918,
26061,
29922,
5574,
1125,
13,
1678,
4613,
353,
1246,
29918,
12443,
29918,
2754,
29898,
29888,
29915,
29914,
990,
29879,
19248,
990,
6822,
28109,
1495,
13,
1678,
5144,
353,
518,
29875,
1839,
7507,
2033,
363,
474,
297,
4613,
29962,
13,
13,
1678,
4613,
353,
1246,
29918,
12443,
29918,
2754,
29898,
29888,
29915,
29914,
990,
29879,
19248,
990,
6822,
11569,
24182,
1495,
13,
1678,
2437,
24182,
353,
518,
29875,
1839,
7507,
2033,
363,
474,
297,
4613,
29962,
13,
13,
1678,
4613,
353,
1246,
29918,
12443,
29918,
2754,
29898,
29888,
29915,
29914,
990,
29879,
19248,
990,
6822,
26061,
29918,
11569,
24182,
1495,
13,
1678,
5229,
29918,
11569,
24182,
353,
518,
29875,
1839,
7507,
2033,
363,
474,
297,
4613,
29962,
13,
13,
1678,
1596,
877,
29924,
13415,
29901,
13420,
7431,
29898,
28109,
876,
13,
1678,
1596,
877,
29925,
2548,
15518,
24182,
29901,
13420,
7431,
29898,
11569,
24182,
876,
13,
1678,
1596,
877,
17776,
15518,
24182,
29901,
13420,
7431,
29898,
26061,
29918,
11569,
24182,
876,
13,
1678,
565,
14383,
29918,
26061,
29901,
13,
4706,
736,
5144,
718,
2437,
24182,
13,
1678,
1683,
29901,
13,
4706,
736,
5144,
718,
2437,
24182,
718,
5229,
29918,
11569,
24182,
13,
13,
1753,
2437,
568,
29918,
1792,
29898,
1792,
29892,
990,
1125,
13,
1678,
4613,
353,
7274,
29889,
649,
29898,
13,
418,
285,
29915,
991,
597,
2754,
29889,
3292,
29889,
510,
29914,
990,
29879,
19248,
990,
6822,
28109,
14587,
19248,
1792,
29913,
742,
13,
418,
4817,
29922,
10493,
16616,
6444,
29898,
1792,
29892,
2897,
29889,
21813,
29889,
657,
703,
29954,
29950,
29918,
29925,
1299,
1159,
511,
13,
418,
9066,
29922,
932,
29918,
13662,
3101,
13,
1678,
1596,
29898,
29888,
29915,
12165,
1573,
426,
1792,
29913,
304,
426,
990,
29913,
448,
2933,
426,
13713,
29889,
4882,
29918,
401,
29913,
1495,
2
] |
prototorch/functions/__init__.py | codacy-badger/prototorch | 0 | 177899 | <reponame>codacy-badger/prototorch<filename>prototorch/functions/__init__.py<gh_stars>0
"""ProtoTorch functions."""
from .activations import identity, sigmoid_beta, swish_beta
from .competitions import knnc, wtac
__all__ = [
'identity',
'sigmoid_beta',
'swish_beta',
'knnc',
'wtac',
]
| [
1,
529,
276,
1112,
420,
29958,
19284,
4135,
29899,
12313,
914,
29914,
771,
4260,
25350,
29966,
9507,
29958,
771,
4260,
25350,
29914,
12171,
29914,
1649,
2344,
26914,
2272,
29966,
12443,
29918,
303,
1503,
29958,
29900,
13,
15945,
29908,
1184,
517,
29911,
25350,
3168,
1213,
15945,
13,
13,
3166,
869,
11236,
800,
1053,
10110,
29892,
4365,
29885,
3398,
29918,
3571,
29892,
2381,
728,
29918,
3571,
13,
3166,
869,
2388,
300,
2187,
1053,
889,
17608,
29892,
281,
21229,
13,
13,
1649,
497,
1649,
353,
518,
13,
1678,
525,
22350,
742,
13,
1678,
525,
18816,
29885,
3398,
29918,
3571,
742,
13,
1678,
525,
2774,
728,
29918,
3571,
742,
13,
1678,
525,
3959,
17608,
742,
13,
1678,
525,
14554,
562,
742,
13,
29962,
13,
2
] |
src/utils.py | dsilvalo28/AIVA-DAIA | 1 | 185823 | import cv2
import os, sys
import numpy as np
save_path = 'images/train/'
# Helpful functions #
def save_image(name, img):
if not os.path.exists(save_path):
os.makedirs(save_path)
cv2.imwrite(save_path+name+'.tif', np.array(img, dtype=np.uint8))
def get_api_key():
if len(sys.argv) is 2:
print('Reading API key from input argument')
return sys.argv.pop()
else:
try:
from src import credentials
if hasattr(credentials, 'GOOGLE_MAPS_API_KEY'):
print('Reading API key from credentials.py')
return credentials.GOOGLE_MAPS_API_KEY
except:
if 'GOOGLE_MAPS_API_KEY' in os.environ:
print('Reading API key from environment')
return os.environ['GOOGLE_MAPS_API_KEY']
else:
print('API Key not found.')
sys.exit(1) | [
1,
1053,
13850,
29906,
13,
5215,
2897,
29892,
10876,
13,
5215,
12655,
408,
7442,
13,
13,
7620,
29918,
2084,
353,
525,
8346,
29914,
14968,
22208,
13,
13,
13,
29937,
22305,
1319,
3168,
396,
13,
1753,
4078,
29918,
3027,
29898,
978,
29892,
10153,
1125,
13,
1678,
565,
451,
2897,
29889,
2084,
29889,
9933,
29898,
7620,
29918,
2084,
1125,
13,
4706,
2897,
29889,
29885,
12535,
12935,
29898,
7620,
29918,
2084,
29897,
13,
1678,
13850,
29906,
29889,
326,
3539,
29898,
7620,
29918,
2084,
29974,
978,
29974,
4286,
29873,
361,
742,
7442,
29889,
2378,
29898,
2492,
29892,
26688,
29922,
9302,
29889,
13470,
29947,
876,
13,
13,
13,
1753,
679,
29918,
2754,
29918,
1989,
7295,
13,
1678,
565,
7431,
29898,
9675,
29889,
19218,
29897,
338,
29871,
29906,
29901,
13,
4706,
1596,
877,
6359,
292,
3450,
1820,
515,
1881,
2980,
1495,
13,
4706,
736,
10876,
29889,
19218,
29889,
7323,
580,
13,
1678,
1683,
29901,
13,
4706,
1018,
29901,
13,
9651,
515,
4765,
1053,
16140,
13,
9651,
565,
756,
5552,
29898,
11944,
9409,
29892,
525,
17080,
29949,
29954,
1307,
29918,
1529,
7024,
29918,
8787,
29918,
10818,
29374,
13,
18884,
1596,
877,
6359,
292,
3450,
1820,
515,
16140,
29889,
2272,
1495,
13,
18884,
736,
16140,
29889,
17080,
29949,
29954,
1307,
29918,
1529,
7024,
29918,
8787,
29918,
10818,
13,
4706,
5174,
29901,
13,
9651,
565,
525,
17080,
29949,
29954,
1307,
29918,
1529,
7024,
29918,
8787,
29918,
10818,
29915,
297,
2897,
29889,
21813,
29901,
13,
18884,
1596,
877,
6359,
292,
3450,
1820,
515,
5177,
1495,
13,
18884,
736,
2897,
29889,
21813,
1839,
17080,
29949,
29954,
1307,
29918,
1529,
7024,
29918,
8787,
29918,
10818,
2033,
13,
9651,
1683,
29901,
13,
18884,
1596,
877,
8787,
7670,
451,
1476,
29889,
1495,
13,
18884,
10876,
29889,
13322,
29898,
29896,
29897,
2
] |
bupt_ncov_report/program_utils/program_utils.py | llllxq/bupt-ncov-report | 8 | 110027 | <gh_stars>1-10
__all__ = (
'ProgramUtils',
)
import json
import logging
from typing import Any, Dict, List, Tuple, cast
from ..constant import *
from ..predef import *
from ..pure_utils import *
logger = logging.getLogger(__name__)
class ProgramUtils:
"""关系到疫情上报网站的具体逻辑的工具函数。"""
def __init__(
self,
pure_utils: PureUtils,
):
self.pure_util = pure_utils
def extract_post_data(self, html: str) -> Dict[str, Any]:
"""
从上报页面的 HTML 中,提取出上报 API 所需要填写的参数。
该函数获取页面上 def 与 oldInfo 变量的值,将其正确混合后返回。
:param html: 上报页 HTML
:return: dict 类型,可用于最终上报时提交的参数
"""
old_dict, new_dict = self.extract_old_new_data(html)
# 需要从 new dict 中提取如下数据
PICK_PROPS = (
'id', 'uid', 'date', 'created',
)
for prop in PICK_PROPS:
val = new_dict.get(prop, ...)
if val is ...:
raise RuntimeError(f'从网页上提取的 new data 中缺少属性 {prop},可能网页已经改版。')
old_dict[prop] = val
return old_dict
def extract_old_new_data(self, html: str) -> Tuple[Dict[str, Any], Dict[str, Any]]:
"""
从页面 HTML 中提取 def 变量与 oldInfo 变量的值(分别叫做 new 与 old data),并用 Python dict 的形式返回。
当过短时,抛出异常。
:param html: 上报页面的 HTML
:return: 元组,(old_dict, new_dict)
"""
new_data = self.pure_util.match_re_group1(r'var def = (\{.+\});', html)
old_data = self.pure_util.match_re_group1(r'oldInfo: (\{.+\}),', html)
# 检查数据是否足够长
if len(old_data) < REASONABLE_LENGTH or len(new_data) < REASONABLE_LENGTH:
raise ValueError('获取到的数据过短。请阅读脚本文档的「使用前提」部分。')
old_dict, new_dict = json.loads(old_data), json.loads(new_data)
return old_dict, new_dict
def is_data_broken(self, data: Dict[str, Any]) -> bool:
"""
检查最终上报数据内容是否破损(指出现不可能出现的值)
(如果破损,可能是上报页面改版。)
:param data: 最终上报的数据
:return: True/False 表示是/否破损
"""
# self.pure_util 太长了
util = self.pure_util
MUST_EXIST_PROPERTIES = (
'tw', 'jcjgqr', 'remark', 'sfsfbh', 'ismoved',
)
for prop in MUST_EXIST_PROPERTIES:
if prop not in data:
return True
# `tw` 数据必须在 1 到 9 之间
if not util.is_number_data_in_range(data.get('tw'), (1, 10)):
return True
# `jcjgqr` 必须在 0 到 3 之间
if not util.is_number_data_in_range(data.get('jcjgqr'), (0, 4)):
return True
# 值为 0 或 1 的属性
BINARY_PROPERTIES = (
'zgfxdq', 'sfcxtz', 'sfjcbh', 'mjry',
'csmjry', 'sfcyglq', 'szsqsfybl', 'sfcxzysx',
)
for prop in BINARY_PROPERTIES:
if not util.is_number_data_in_range(data.get(prop), (0, 2)):
return True
return False
def verify_data(self, data: Dict[str, Any]) -> VerifiedData:
"""
验证 data 是否是破损的;如果 data 未破损,则原样返回。此处使用类型系统保证正确性。
:param data: 最终上报数据
:return: data 本身
"""
if self.is_data_broken(data):
raise RuntimeError('要上报的数据似乎是破损的,可能网页已经改版。'
'此时无法使用 STOP_WHEN_SICK 功能;上报失败,请手动上报。')
# 仅用于类型检查器的类型转换
return cast(VerifiedData, data)
def data_sick_report(self, data: VerifiedData) -> List[str]:
"""
检测当前数据中表示生病的项,生成「生病项报告」。
如:体温 38.5°C,「其他信息」不为空,接触过疑似确诊人群等。
:param data: 最终上报的数据,必须经过检查确定其未破损
:return: str 数组,其中每一条为一个异常项。无异常则为空 list
"""
abnormal_items = []
# 体温:>= 37°C 则为异常
body_temp = int(data['tw'])
if body_temp > 3:
abnormal_items.append('您上一次填报了高于 37 度的体温')
current_situation = int(data['jcjgqr'])
if current_situation != 0:
abnormal_items.append('您当前状态为疑似感染/确诊感染/其他')
if isinstance(data['remark'], str) and data['remark'].strip() != '':
abnormal_items.append('您的「其他信息」一栏不为空')
if self.pure_util.looks_truthy(data['sfsfbh']) or self.pure_util.looks_truthy(data['ismoved']):
abnormal_items.append('您可能昨天或今天去了别的地方,导致位置有变化;现在提交将导致数据异常,请您今天手动提交')
BINARY_PROPERTIES = {
'zgfxdq': '是否在中高风险地区',
'sfcxtz': '是否出现症状',
'sfjcbh': '是否接触感染人群',
'mjry': '是否接触‘密切接触’人员',
'csmjry': '是否去过疫情场所',
'sfcyglq': '是否处于观察期',
'szsqsfybl': '所在社区是否有确诊病例',
'sfcxzysx': '是否有值得注意的情况',
}
for prop, desc in BINARY_PROPERTIES.items():
if self.pure_util.looks_truthy(data[prop]):
abnormal_items.append(f'「{desc}」,您填了「是」')
return abnormal_items
def check_data_sick(self, data: VerifiedData) -> None:
"""
如果提交的数据表明用户生病,则抛出异常。
:param data: 最终提交数据,必须经过检查确定其未破损
:return: None
"""
# 获取生病列表
sick_list = self.data_sick_report(data)
if len(sick_list) == 0:
return
# 格式化生病列表
err_msg: List[str] = ['\n您上一次填报的数据中,以下数据异常:\n']
for i in sick_list:
err_msg.append('· ' + i)
err_msg.append('\n由于您开启了 STOP_WHEN_SICK 配置,且检测到您数据为异常数据,自动上报失败;'
'请您今天手动填报正常数据,从明天开始再自动填报。')
raise RuntimeError('\n'.join(err_msg))
| [
1,
529,
12443,
29918,
303,
1503,
29958,
29896,
29899,
29896,
29900,
13,
1649,
497,
1649,
353,
313,
13,
1678,
525,
9283,
12177,
742,
13,
29897,
13,
13,
5215,
4390,
13,
5215,
12183,
13,
3166,
19229,
1053,
3139,
29892,
360,
919,
29892,
2391,
29892,
12603,
552,
29892,
4320,
13,
13,
3166,
6317,
23362,
1053,
334,
13,
3166,
6317,
1457,
1753,
1053,
334,
13,
3166,
6317,
29886,
545,
29918,
13239,
1053,
334,
13,
13,
21707,
353,
12183,
29889,
657,
16363,
22168,
978,
1649,
29897,
13,
13,
13,
1990,
7835,
12177,
29901,
13,
1678,
9995,
31057,
31185,
30780,
234,
153,
174,
30993,
30429,
233,
141,
168,
31222,
31433,
30210,
232,
136,
186,
30988,
236,
131,
190,
235,
193,
148,
30210,
31041,
232,
136,
186,
31629,
30354,
30267,
15945,
29908,
13,
13,
1678,
822,
4770,
2344,
12035,
13,
9651,
1583,
29892,
13,
9651,
8296,
29918,
13239,
29901,
349,
545,
12177,
29892,
13,
268,
1125,
13,
4706,
1583,
29889,
29886,
545,
29918,
4422,
353,
8296,
29918,
13239,
13,
13,
1678,
822,
6597,
29918,
2490,
29918,
1272,
29898,
1311,
29892,
3472,
29901,
851,
29897,
1599,
360,
919,
29961,
710,
29892,
3139,
5387,
13,
4706,
9995,
13,
308,
31594,
30429,
233,
141,
168,
31610,
30806,
30210,
4544,
29871,
30275,
30214,
31302,
30683,
30544,
30429,
233,
141,
168,
3450,
29871,
30744,
31383,
30698,
232,
164,
174,
31479,
30210,
31125,
30354,
30267,
13,
308,
31751,
31629,
30354,
31024,
30683,
31610,
30806,
30429,
822,
29871,
31267,
2030,
3401,
29871,
31462,
31180,
30210,
30959,
30214,
30998,
31149,
30724,
31835,
233,
186,
186,
30733,
30822,
31086,
30742,
30267,
13,
13,
4706,
584,
3207,
3472,
29901,
29871,
30429,
233,
141,
168,
31610,
4544,
13,
4706,
584,
2457,
29901,
9657,
29871,
30832,
30883,
30214,
30682,
30406,
30909,
30878,
234,
190,
139,
30429,
233,
141,
168,
30594,
31302,
31398,
30210,
31125,
30354,
13,
4706,
9995,
13,
4706,
2030,
29918,
8977,
29892,
716,
29918,
8977,
353,
1583,
29889,
21111,
29918,
1025,
29918,
1482,
29918,
1272,
29898,
1420,
29897,
13,
13,
4706,
396,
29871,
31383,
30698,
31594,
716,
9657,
29871,
30275,
31302,
30683,
30847,
30557,
30354,
30763,
13,
4706,
349,
2965,
29968,
29918,
8618,
7024,
353,
313,
13,
9651,
525,
333,
742,
525,
5416,
742,
525,
1256,
742,
525,
11600,
742,
13,
4706,
1723,
13,
13,
4706,
363,
3107,
297,
349,
2965,
29968,
29918,
8618,
7024,
29901,
13,
9651,
659,
353,
716,
29918,
8977,
29889,
657,
29898,
7728,
29892,
29757,
13,
9651,
565,
659,
338,
2023,
29901,
13,
18884,
12020,
24875,
2392,
29898,
29888,
29915,
31594,
31222,
31610,
30429,
31302,
30683,
30210,
716,
848,
29871,
30275,
234,
191,
189,
31022,
31360,
30952,
426,
7728,
29913,
30214,
30682,
30815,
31222,
31610,
31290,
31412,
31264,
30845,
30267,
1495,
13,
13,
9651,
2030,
29918,
8977,
29961,
7728,
29962,
353,
659,
13,
13,
4706,
736,
2030,
29918,
8977,
13,
13,
1678,
822,
6597,
29918,
1025,
29918,
1482,
29918,
1272,
29898,
1311,
29892,
3472,
29901,
851,
29897,
1599,
12603,
552,
29961,
21533,
29961,
710,
29892,
3139,
1402,
360,
919,
29961,
710,
29892,
3139,
5262,
29901,
13,
4706,
9995,
13,
308,
31594,
31610,
30806,
4544,
29871,
30275,
31302,
30683,
822,
29871,
31462,
31180,
31267,
2030,
3401,
29871,
31462,
31180,
30210,
30959,
30419,
30748,
232,
139,
174,
232,
146,
174,
232,
132,
157,
716,
29871,
31267,
2030,
848,
30409,
30214,
31666,
30406,
5132,
9657,
29871,
30210,
31305,
30607,
31086,
30742,
30267,
13,
308,
30948,
31138,
234,
162,
176,
30594,
30214,
233,
141,
158,
30544,
232,
191,
133,
31190,
30267,
13,
13,
4706,
584,
3207,
3472,
29901,
29871,
30429,
233,
141,
168,
31610,
30806,
30210,
4544,
13,
4706,
584,
2457,
29901,
29871,
30824,
31263,
30214,
29898,
1025,
29918,
8977,
29892,
716,
29918,
8977,
29897,
13,
4706,
9995,
13,
13,
4706,
716,
29918,
1272,
353,
1583,
29889,
29886,
545,
29918,
4422,
29889,
4352,
29918,
276,
29918,
2972,
29896,
29898,
29878,
29915,
1707,
822,
353,
3441,
26139,
3124,
3680,
742,
3472,
29897,
13,
4706,
2030,
29918,
1272,
353,
1583,
29889,
29886,
545,
29918,
4422,
29889,
4352,
29918,
276,
29918,
2972,
29896,
29898,
29878,
29915,
1025,
3401,
29901,
3441,
26139,
3124,
9594,
742,
3472,
29897,
13,
13,
4706,
396,
29871,
233,
166,
131,
31213,
30354,
30763,
30392,
31191,
31722,
232,
167,
162,
31143,
13,
4706,
565,
7431,
29898,
1025,
29918,
1272,
29897,
529,
5195,
29909,
3094,
6181,
29918,
19433,
470,
7431,
29898,
1482,
29918,
1272,
29897,
529,
5195,
29909,
3094,
6181,
29918,
19433,
29901,
13,
9651,
12020,
7865,
2392,
877,
31024,
30683,
30780,
30210,
30354,
30763,
31138,
234,
162,
176,
30267,
31088,
236,
155,
136,
235,
178,
190,
235,
135,
157,
30346,
30333,
233,
164,
166,
30210,
30481,
30785,
30406,
30658,
31302,
30482,
30636,
30748,
30267,
1495,
13,
13,
4706,
2030,
29918,
8977,
29892,
716,
29918,
8977,
353,
4390,
29889,
18132,
29898,
1025,
29918,
1272,
511,
4390,
29889,
18132,
29898,
1482,
29918,
1272,
29897,
13,
4706,
736,
2030,
29918,
8977,
29892,
716,
29918,
8977,
13,
13,
1678,
822,
338,
29918,
1272,
29918,
6729,
1717,
29898,
1311,
29892,
848,
29901,
360,
919,
29961,
710,
29892,
3139,
2314,
1599,
6120,
29901,
13,
4706,
9995,
13,
308,
233,
166,
131,
31213,
30878,
234,
190,
139,
30429,
233,
141,
168,
30354,
30763,
30728,
31294,
30392,
31191,
234,
163,
183,
233,
144,
162,
30419,
31084,
30544,
31424,
30413,
30682,
30815,
30544,
31424,
30210,
30959,
30409,
13,
308,
30419,
30847,
30801,
234,
163,
183,
233,
144,
162,
30214,
30682,
30815,
30392,
30429,
233,
141,
168,
31610,
30806,
31264,
30845,
30267,
30409,
13,
4706,
584,
3207,
848,
29901,
29871,
30878,
234,
190,
139,
30429,
233,
141,
168,
30210,
30354,
30763,
13,
4706,
584,
2457,
29901,
5852,
29914,
8824,
29871,
30746,
30858,
30392,
29914,
31191,
234,
163,
183,
233,
144,
162,
13,
4706,
9995,
13,
4706,
396,
1583,
29889,
29886,
545,
29918,
4422,
29871,
30654,
31143,
30743,
13,
4706,
3667,
353,
1583,
29889,
29886,
545,
29918,
4422,
13,
13,
4706,
341,
17321,
29918,
5746,
9047,
29918,
8618,
13171,
24301,
2890,
353,
313,
13,
9651,
525,
7516,
742,
525,
29926,
29883,
29926,
29887,
29939,
29878,
742,
525,
26294,
742,
525,
4668,
4668,
29890,
29882,
742,
525,
1608,
8238,
742,
13,
4706,
1723,
13,
4706,
363,
3107,
297,
341,
17321,
29918,
5746,
9047,
29918,
8618,
13171,
24301,
2890,
29901,
13,
9651,
565,
3107,
451,
297,
848,
29901,
13,
18884,
736,
5852,
13,
13,
4706,
396,
421,
7516,
29952,
29871,
30354,
30763,
31641,
236,
164,
190,
30505,
29871,
29896,
29871,
30780,
29871,
29929,
29871,
30577,
31016,
13,
4706,
565,
451,
3667,
29889,
275,
29918,
4537,
29918,
1272,
29918,
262,
29918,
3881,
29898,
1272,
29889,
657,
877,
7516,
5477,
313,
29896,
29892,
29871,
29896,
29900,
22164,
13,
9651,
736,
5852,
13,
13,
4706,
396,
421,
29926,
29883,
29926,
29887,
29939,
29878,
29952,
29871,
31641,
236,
164,
190,
30505,
29871,
29900,
29871,
30780,
29871,
29941,
29871,
30577,
31016,
13,
4706,
565,
451,
3667,
29889,
275,
29918,
4537,
29918,
1272,
29918,
262,
29918,
3881,
29898,
1272,
29889,
657,
877,
29926,
29883,
29926,
29887,
29939,
29878,
5477,
313,
29900,
29892,
29871,
29946,
22164,
13,
9651,
736,
5852,
13,
13,
4706,
396,
29871,
30959,
30573,
29871,
29900,
29871,
31391,
29871,
29896,
29871,
30210,
31360,
30952,
13,
4706,
350,
1177,
19926,
29918,
8618,
13171,
24301,
2890,
353,
313,
13,
9651,
525,
29920,
29887,
11093,
29881,
29939,
742,
525,
4668,
29883,
486,
29920,
742,
525,
4668,
29926,
10702,
29882,
742,
525,
29885,
29926,
719,
742,
13,
9651,
525,
2395,
29885,
29926,
719,
742,
525,
4668,
1270,
3820,
29939,
742,
525,
3616,
3044,
4668,
29891,
2204,
742,
525,
4668,
18904,
29920,
952,
29916,
742,
13,
4706,
1723,
13,
13,
4706,
363,
3107,
297,
350,
1177,
19926,
29918,
8618,
13171,
24301,
2890,
29901,
13,
9651,
565,
451,
3667,
29889,
275,
29918,
4537,
29918,
1272,
29918,
262,
29918,
3881,
29898,
1272,
29889,
657,
29898,
7728,
511,
313,
29900,
29892,
29871,
29906,
22164,
13,
18884,
736,
5852,
13,
13,
4706,
736,
7700,
13,
13,
1678,
822,
11539,
29918,
1272,
29898,
1311,
29892,
848,
29901,
360,
919,
29961,
710,
29892,
3139,
2314,
1599,
1798,
2164,
1469,
29901,
13,
4706,
9995,
13,
308,
236,
173,
143,
235,
178,
132,
848,
29871,
30392,
31191,
30392,
234,
163,
183,
233,
144,
162,
30210,
31608,
30847,
30801,
848,
29871,
31295,
234,
163,
183,
233,
144,
162,
30214,
31403,
30667,
31819,
31086,
30742,
30267,
31389,
31548,
30785,
30406,
30832,
30883,
31185,
31675,
30982,
235,
178,
132,
30724,
31835,
30952,
30267,
13,
4706,
584,
3207,
848,
29901,
29871,
30878,
234,
190,
139,
30429,
233,
141,
168,
30354,
30763,
13,
4706,
584,
2457,
29901,
848,
29871,
30346,
31687,
13,
4706,
9995,
13,
4706,
565,
1583,
29889,
275,
29918,
1272,
29918,
6729,
1717,
29898,
1272,
1125,
13,
9651,
12020,
24875,
2392,
877,
30698,
30429,
233,
141,
168,
30210,
30354,
30763,
231,
191,
191,
231,
188,
145,
30392,
234,
163,
183,
233,
144,
162,
30210,
30214,
30682,
30815,
31222,
31610,
31290,
31412,
31264,
30845,
30267,
29915,
13,
462,
1669,
525,
31389,
30594,
31352,
30545,
30785,
30406,
6850,
4590,
29918,
25039,
1430,
29918,
29903,
2965,
29968,
29871,
31134,
30815,
31608,
30429,
233,
141,
168,
31369,
31955,
30214,
31088,
30880,
30846,
30429,
233,
141,
168,
30267,
1495,
13,
13,
4706,
396,
29871,
231,
190,
136,
30406,
30909,
30832,
30883,
233,
166,
131,
31213,
30943,
30210,
30832,
30883,
31415,
31640,
13,
4706,
736,
4320,
29898,
6565,
2164,
1469,
29892,
848,
29897,
13,
13,
1678,
822,
848,
29918,
29879,
860,
29918,
12276,
29898,
1311,
29892,
848,
29901,
1798,
2164,
1469,
29897,
1599,
2391,
29961,
710,
5387,
13,
4706,
9995,
13,
308,
233,
166,
131,
31851,
30948,
30658,
30354,
30763,
30275,
30746,
30858,
30486,
234,
154,
136,
30210,
31888,
30214,
30486,
30494,
30481,
30486,
234,
154,
136,
31888,
233,
141,
168,
31785,
30482,
30267,
13,
308,
30847,
30383,
30988,
233,
187,
172,
29871,
29941,
29947,
29889,
29945,
30073,
29907,
30214,
30481,
31149,
31221,
30689,
31021,
30482,
30413,
30573,
30816,
30214,
31092,
235,
170,
169,
31138,
234,
153,
148,
231,
191,
191,
31835,
235,
178,
141,
30313,
31829,
31184,
30267,
13,
13,
4706,
584,
3207,
848,
29901,
29871,
30878,
234,
190,
139,
30429,
233,
141,
168,
30210,
30354,
30763,
30214,
31641,
236,
164,
190,
31412,
31138,
233,
166,
131,
31213,
31835,
30495,
31149,
31295,
234,
163,
183,
233,
144,
162,
13,
4706,
584,
2457,
29901,
851,
29871,
30354,
31263,
30214,
31149,
30275,
31951,
30287,
31217,
30573,
30287,
30502,
232,
191,
133,
31190,
31888,
30267,
31352,
232,
191,
133,
31190,
31403,
30573,
30816,
1051,
13,
4706,
9995,
13,
13,
4706,
633,
8945,
29918,
7076,
353,
5159,
13,
13,
4706,
396,
29871,
30988,
233,
187,
172,
30383,
18572,
29871,
29941,
29955,
30073,
29907,
29871,
31403,
30573,
232,
191,
133,
31190,
13,
4706,
3573,
29918,
7382,
353,
938,
29898,
1272,
1839,
7516,
11287,
13,
4706,
565,
3573,
29918,
7382,
1405,
29871,
29941,
29901,
13,
9651,
633,
8945,
29918,
7076,
29889,
4397,
877,
233,
133,
171,
30429,
30287,
30936,
232,
164,
174,
233,
141,
168,
30743,
30528,
30909,
29871,
29941,
29955,
29871,
30898,
30210,
30988,
233,
187,
172,
1495,
13,
13,
4706,
1857,
29918,
29879,
1981,
362,
353,
938,
29898,
1272,
1839,
29926,
29883,
29926,
29887,
29939,
29878,
11287,
13,
4706,
565,
1857,
29918,
29879,
1981,
362,
2804,
29871,
29900,
29901,
13,
9651,
633,
8945,
29918,
7076,
29889,
4397,
877,
233,
133,
171,
30948,
30658,
31531,
31613,
30573,
234,
153,
148,
231,
191,
191,
233,
135,
162,
233,
162,
150,
29914,
31835,
235,
178,
141,
233,
135,
162,
233,
162,
150,
29914,
31149,
31221,
1495,
13,
13,
4706,
565,
338,
8758,
29898,
1272,
1839,
26294,
7464,
851,
29897,
322,
848,
1839,
26294,
13359,
17010,
580,
2804,
525,
2396,
13,
9651,
633,
8945,
29918,
7076,
29889,
4397,
877,
233,
133,
171,
30210,
30481,
31149,
31221,
30689,
31021,
30482,
30287,
233,
163,
146,
30413,
30573,
30816,
1495,
13,
13,
4706,
565,
1583,
29889,
29886,
545,
29918,
4422,
29889,
6914,
29879,
29918,
509,
2806,
29891,
29898,
1272,
1839,
4668,
4668,
29890,
29882,
11287,
470,
1583,
29889,
29886,
545,
29918,
4422,
29889,
6914,
29879,
29918,
509,
2806,
29891,
29898,
1272,
1839,
1608,
8238,
2033,
1125,
13,
9651,
633,
8945,
29918,
7076,
29889,
4397,
877,
233,
133,
171,
30682,
30815,
233,
155,
171,
30408,
31391,
31482,
30408,
31475,
30743,
232,
139,
174,
30210,
30533,
30525,
30214,
31943,
235,
138,
183,
30956,
30669,
30417,
31462,
30705,
31608,
31424,
30505,
31302,
31398,
30998,
31943,
235,
138,
183,
30354,
30763,
232,
191,
133,
31190,
30214,
31088,
233,
133,
171,
31482,
30408,
30880,
30846,
31302,
31398,
1495,
13,
13,
4706,
350,
1177,
19926,
29918,
8618,
13171,
24301,
2890,
353,
426,
13,
9651,
525,
29920,
29887,
11093,
29881,
29939,
2396,
525,
30392,
31191,
30505,
30275,
30528,
236,
166,
145,
236,
156,
172,
30533,
30467,
742,
13,
9651,
525,
4668,
29883,
486,
29920,
2396,
525,
30392,
31191,
30544,
31424,
234,
154,
138,
31531,
742,
13,
9651,
525,
4668,
29926,
10702,
29882,
2396,
525,
30392,
31191,
31092,
235,
170,
169,
233,
135,
162,
233,
162,
150,
30313,
31829,
742,
13,
9651,
525,
29885,
29926,
719,
2396,
525,
30392,
31191,
31092,
235,
170,
169,
30086,
31461,
31757,
31092,
235,
170,
169,
30010,
30313,
31911,
742,
13,
9651,
525,
2395,
29885,
29926,
719,
2396,
525,
30392,
31191,
31475,
31138,
234,
153,
174,
30993,
31632,
30744,
742,
13,
9651,
525,
4668,
1270,
3820,
29939,
2396,
525,
30392,
31191,
31548,
30909,
235,
170,
133,
232,
178,
162,
31117,
742,
13,
9651,
525,
3616,
3044,
4668,
29891,
2204,
2396,
525,
30744,
30505,
30564,
30467,
30392,
31191,
30417,
31835,
235,
178,
141,
234,
154,
136,
31507,
742,
13,
9651,
525,
4668,
18904,
29920,
952,
29916,
2396,
525,
30392,
31191,
30417,
30959,
31050,
31368,
31474,
30210,
30993,
232,
137,
184,
742,
13,
4706,
500,
13,
13,
4706,
363,
3107,
29892,
5153,
297,
350,
1177,
19926,
29918,
8618,
13171,
24301,
2890,
29889,
7076,
7295,
13,
9651,
565,
1583,
29889,
29886,
545,
29918,
4422,
29889,
6914,
29879,
29918,
509,
2806,
29891,
29898,
1272,
29961,
7728,
29962,
1125,
13,
18884,
633,
8945,
29918,
7076,
29889,
4397,
29898,
29888,
29915,
30481,
29912,
14273,
29913,
30482,
30214,
233,
133,
171,
232,
164,
174,
30743,
30481,
30392,
30482,
1495,
13,
13,
4706,
736,
633,
8945,
29918,
7076,
13,
13,
1678,
822,
1423,
29918,
1272,
29918,
29879,
860,
29898,
1311,
29892,
848,
29901,
1798,
2164,
1469,
29897,
1599,
6213,
29901,
13,
4706,
9995,
13,
308,
30847,
30801,
31302,
31398,
30210,
30354,
30763,
30746,
30592,
30406,
31229,
30486,
234,
154,
136,
30214,
31403,
233,
141,
158,
30544,
232,
191,
133,
31190,
30267,
13,
13,
4706,
584,
3207,
848,
29901,
29871,
30878,
234,
190,
139,
31302,
31398,
30354,
30763,
30214,
31641,
236,
164,
190,
31412,
31138,
233,
166,
131,
31213,
31835,
30495,
31149,
31295,
234,
163,
183,
233,
144,
162,
13,
4706,
584,
2457,
29901,
6213,
13,
4706,
9995,
13,
4706,
396,
29871,
31024,
30683,
30486,
234,
154,
136,
31025,
30746,
13,
4706,
17319,
29918,
1761,
353,
1583,
29889,
1272,
29918,
29879,
860,
29918,
12276,
29898,
1272,
29897,
13,
4706,
565,
7431,
29898,
29879,
860,
29918,
1761,
29897,
1275,
29871,
29900,
29901,
13,
9651,
736,
13,
13,
4706,
396,
29871,
31168,
30607,
30705,
30486,
234,
154,
136,
31025,
30746,
13,
4706,
4589,
29918,
7645,
29901,
2391,
29961,
710,
29962,
353,
6024,
29905,
29876,
233,
133,
171,
30429,
30287,
30936,
232,
164,
174,
233,
141,
168,
30210,
30354,
30763,
30275,
30214,
30651,
30557,
30354,
30763,
232,
191,
133,
31190,
30383,
29905,
29876,
2033,
13,
4706,
363,
474,
297,
17319,
29918,
1761,
29901,
13,
9651,
4589,
29918,
7645,
29889,
4397,
877,
30064,
525,
718,
474,
29897,
13,
4706,
4589,
29918,
7645,
29889,
4397,
28909,
29876,
31272,
30909,
233,
133,
171,
31026,
232,
147,
178,
30743,
6850,
4590,
29918,
25039,
1430,
29918,
29903,
2965,
29968,
29871,
31361,
30669,
30214,
231,
187,
151,
233,
166,
131,
31851,
30780,
233,
133,
171,
30354,
30763,
30573,
232,
191,
133,
31190,
30354,
30763,
30214,
30688,
30846,
30429,
233,
141,
168,
31369,
31955,
31608,
29915,
13,
462,
539,
525,
31088,
233,
133,
171,
31482,
30408,
30880,
30846,
232,
164,
174,
233,
141,
168,
30724,
31190,
30354,
30763,
30214,
31594,
30592,
30408,
31026,
31020,
31733,
30688,
30846,
232,
164,
174,
233,
141,
168,
30267,
1495,
13,
13,
4706,
12020,
24875,
2392,
28909,
29876,
4286,
7122,
29898,
3127,
29918,
7645,
876,
13,
2
] |
rogerthat/utils/parsing_numbers.py | TheHolyRoger/RogerThat | 9 | 1610470 | <reponame>TheHolyRoger/RogerThat
from decimal import Decimal as Dec
def decimal_or_none(num_string):
return Dec(str(num_string)) if num_string and str(num_string).replace('.', '').isdigit() else None
def decimal_or_zero(num_string):
return Dec(str(num_string)) if num_string and str(num_string).replace('.', '').isdigit() else Dec("0")
def int_or_none(num_string):
return int(str(num_string)) if num_string and str(num_string).isdigit() else None
| [
1,
529,
276,
1112,
420,
29958,
1576,
29950,
18333,
29934,
468,
261,
29914,
29934,
468,
261,
7058,
13,
3166,
13677,
1053,
3826,
3039,
408,
3826,
13,
13,
13,
1753,
13677,
29918,
272,
29918,
9290,
29898,
1949,
29918,
1807,
1125,
13,
1678,
736,
3826,
29898,
710,
29898,
1949,
29918,
1807,
876,
565,
954,
29918,
1807,
322,
851,
29898,
1949,
29918,
1807,
467,
6506,
12839,
742,
525,
2824,
275,
26204,
580,
1683,
6213,
13,
13,
13,
1753,
13677,
29918,
272,
29918,
9171,
29898,
1949,
29918,
1807,
1125,
13,
1678,
736,
3826,
29898,
710,
29898,
1949,
29918,
1807,
876,
565,
954,
29918,
1807,
322,
851,
29898,
1949,
29918,
1807,
467,
6506,
12839,
742,
525,
2824,
275,
26204,
580,
1683,
3826,
703,
29900,
1159,
13,
13,
13,
1753,
938,
29918,
272,
29918,
9290,
29898,
1949,
29918,
1807,
1125,
13,
1678,
736,
938,
29898,
710,
29898,
1949,
29918,
1807,
876,
565,
954,
29918,
1807,
322,
851,
29898,
1949,
29918,
1807,
467,
275,
26204,
580,
1683,
6213,
13,
2
] |
service/app.py | alceballosa/BikeDemandEACD | 0 | 130377 | <reponame>alceballosa/BikeDemandEACD
import sys
import typing as t
from datetime import datetime
from functools import lru_cache
import joblib
import numpy as np
import pandas as pd
from fastapi import Body # type: ignore # noqa: E402
from fastapi import Depends
from fastapi import FastAPI
from pydantic import BaseSettings
from pydantic import PositiveFloat
from entities import ModelInput
app = FastAPI(title="API for bike demand inference", version="0.0.1")
class Settings(BaseSettings):
SERIALIZED_MODEL_PATH: str
MODEL_LIB_DIR: str
@lru_cache(None)
def get_settings():
return Settings()
@lru_cache(None)
def load_estimator():
sys.path.append(get_settings().MODEL_LIB_DIR)
estimator = joblib.load(get_settings().SERIALIZED_MODEL_PATH)
return estimator
# @app.post("/")
# async def make_prediction(input_: str = Body(...), estimator=Depends(load_estimator)):
# """
# Call this using something like
# YrSold=2010,YearBuilt=1970,YearRemodAdd=1999,GarageYrBlt=1980,LotArea=24,Neighborhood=Blmngtn,HouseStyle=SFoyer
# """
# input_dict = {}
# for var in input_.split(","):
# name, value = var.split("=")
# if value.isnumeric():
# value = int(value)
# input_dict[name] = [value]
# X = pd.DataFrame(input_dict)
# prediction = estimator.predict(X).tolist()
# return prediction
# @app.post("/")
# async def make_prediction(
# inputs: t.List[ModelInput] = Body(...),
# estimator=Depends(load_estimator),
# ):
# X = pd.DataFrame([row.dict() for row in inputs])
# prediction = estimator.predict(X).tolist()
# return prediction
# @app.post("/", response_model=t.List[float])
# async def make_prediction(
# inputs: t.List[ModelInput] = Body(...),
# estimator=Depends(load_estimator),
# ):
# X = pd.DataFrame([row.dict() for row in inputs])
# prediction = estimator.predict(X).tolist()
# return prediction
class Logger:
def __init__(self, filepath="log.log"):
self.filepath = filepath
def log(self, inputs: t.List[ModelInput], predictions):
file = open(self.filepath, "a")
for row, pred in zip(inputs, predictions):
record = {"datetime": datetime.now(), "input": row.dict(), "pred": pred}
print(record, file=file)
file.close()
def get_logger():
return Logger()
@app.post("/predict", response_model=t.List[float])
async def make_prediction(
inputs: t.List[ModelInput] = Body(...),
estimator=Depends(load_estimator),
logger=Depends(get_logger),
):
X = pd.DataFrame([row.dict() for row in inputs])
prediction = estimator.predict(X).astype(np.uint32).tolist()
logger.log(inputs, prediction)
return prediction
@app.get("/get")
async def service_status():
"""Check the status of the service"""
return {"status": "ok"}
if __name__ == "__main__":
import uvicorn
uvicorn.run(app)
| [
1,
529,
276,
1112,
420,
29958,
284,
346,
2135,
3628,
29914,
29933,
9345,
29928,
331,
392,
29923,
2477,
29928,
13,
5215,
10876,
13,
5215,
19229,
408,
260,
13,
3166,
12865,
1053,
12865,
13,
3166,
2090,
312,
8789,
1053,
301,
582,
29918,
8173,
13,
13,
5215,
4982,
1982,
13,
5215,
12655,
408,
7442,
13,
5215,
11701,
408,
10518,
13,
3166,
5172,
2754,
1053,
24928,
29871,
396,
1134,
29901,
11455,
396,
694,
25621,
29901,
382,
29946,
29900,
29906,
13,
3166,
5172,
2754,
1053,
10034,
1975,
13,
3166,
5172,
2754,
1053,
23786,
8787,
13,
3166,
282,
2941,
7716,
1053,
7399,
9585,
13,
3166,
282,
2941,
7716,
1053,
10321,
3321,
11031,
13,
13,
3166,
16212,
1053,
8125,
4290,
13,
13,
932,
353,
23786,
8787,
29898,
3257,
543,
8787,
363,
4768,
446,
9667,
27262,
613,
1873,
543,
29900,
29889,
29900,
29889,
29896,
1159,
13,
13,
13,
1990,
19215,
29898,
5160,
9585,
1125,
13,
1678,
26996,
25758,
26664,
3352,
29918,
20387,
29931,
29918,
10145,
29901,
851,
13,
1678,
16999,
2287,
29931,
29918,
5265,
29933,
29918,
9464,
29901,
851,
13,
13,
13,
29992,
29880,
582,
29918,
8173,
29898,
8516,
29897,
13,
1753,
679,
29918,
11027,
7295,
13,
1678,
736,
19215,
580,
13,
13,
13,
29992,
29880,
582,
29918,
8173,
29898,
8516,
29897,
13,
1753,
2254,
29918,
342,
326,
1061,
7295,
13,
1678,
10876,
29889,
2084,
29889,
4397,
29898,
657,
29918,
11027,
2141,
20387,
29931,
29918,
5265,
29933,
29918,
9464,
29897,
13,
1678,
4844,
1061,
353,
4982,
1982,
29889,
1359,
29898,
657,
29918,
11027,
2141,
6304,
25758,
26664,
3352,
29918,
20387,
29931,
29918,
10145,
29897,
13,
1678,
736,
4844,
1061,
13,
13,
13,
29937,
732,
932,
29889,
2490,
11974,
1159,
13,
29937,
7465,
822,
1207,
29918,
11965,
2463,
29898,
2080,
29918,
29901,
851,
353,
24928,
19327,
511,
4844,
1061,
29922,
8498,
1975,
29898,
1359,
29918,
342,
326,
1061,
22164,
13,
29937,
268,
9995,
13,
29937,
268,
8251,
445,
773,
1554,
763,
13,
13,
29937,
268,
612,
29878,
29903,
1025,
29922,
29906,
29900,
29896,
29900,
29892,
12883,
3727,
2782,
29922,
29896,
29929,
29955,
29900,
29892,
12883,
7301,
397,
2528,
29922,
29896,
29929,
29929,
29929,
29892,
29954,
279,
482,
29979,
29878,
29933,
1896,
29922,
29896,
29929,
29947,
29900,
29892,
29931,
327,
13799,
29922,
29906,
29946,
29892,
8139,
1141,
4089,
6614,
29922,
10358,
29885,
865,
6277,
29892,
29950,
1709,
5568,
29922,
20322,
29877,
7598,
13,
29937,
268,
9995,
13,
29937,
268,
1881,
29918,
8977,
353,
6571,
13,
29937,
268,
363,
722,
297,
1881,
5396,
5451,
29898,
3284,
1125,
13,
29937,
308,
1024,
29892,
995,
353,
722,
29889,
5451,
703,
543,
29897,
13,
29937,
308,
565,
995,
29889,
275,
21574,
7295,
13,
13,
29937,
632,
995,
353,
938,
29898,
1767,
29897,
13,
29937,
308,
1881,
29918,
8977,
29961,
978,
29962,
353,
518,
1767,
29962,
13,
29937,
268,
1060,
353,
10518,
29889,
17271,
29898,
2080,
29918,
8977,
29897,
13,
29937,
268,
18988,
353,
4844,
1061,
29889,
27711,
29898,
29990,
467,
25027,
391,
580,
13,
29937,
268,
736,
18988,
13,
13,
13,
29937,
732,
932,
29889,
2490,
11974,
1159,
13,
29937,
7465,
822,
1207,
29918,
11965,
2463,
29898,
13,
29937,
268,
10970,
29901,
260,
29889,
1293,
29961,
3195,
4290,
29962,
353,
24928,
19327,
511,
13,
29937,
268,
4844,
1061,
29922,
8498,
1975,
29898,
1359,
29918,
342,
326,
1061,
511,
13,
29937,
29871,
1125,
13,
29937,
268,
1060,
353,
10518,
29889,
17271,
4197,
798,
29889,
8977,
580,
363,
1948,
297,
10970,
2314,
13,
29937,
268,
18988,
353,
4844,
1061,
29889,
27711,
29898,
29990,
467,
25027,
391,
580,
13,
29937,
268,
736,
18988,
13,
13,
13,
29937,
732,
932,
29889,
2490,
11974,
613,
2933,
29918,
4299,
29922,
29873,
29889,
1293,
29961,
7411,
2314,
13,
29937,
7465,
822,
1207,
29918,
11965,
2463,
29898,
13,
29937,
268,
10970,
29901,
260,
29889,
1293,
29961,
3195,
4290,
29962,
353,
24928,
19327,
511,
13,
29937,
268,
4844,
1061,
29922,
8498,
1975,
29898,
1359,
29918,
342,
326,
1061,
511,
13,
29937,
29871,
1125,
13,
29937,
268,
1060,
353,
10518,
29889,
17271,
4197,
798,
29889,
8977,
580,
363,
1948,
297,
10970,
2314,
13,
29937,
268,
18988,
353,
4844,
1061,
29889,
27711,
29898,
29990,
467,
25027,
391,
580,
13,
29937,
268,
736,
18988,
13,
13,
13,
1990,
28468,
29901,
13,
1678,
822,
4770,
2344,
12035,
1311,
29892,
934,
2084,
543,
1188,
29889,
1188,
29908,
1125,
13,
4706,
1583,
29889,
1445,
2084,
353,
934,
2084,
13,
13,
1678,
822,
1480,
29898,
1311,
29892,
10970,
29901,
260,
29889,
1293,
29961,
3195,
4290,
1402,
27303,
1125,
13,
4706,
934,
353,
1722,
29898,
1311,
29889,
1445,
2084,
29892,
376,
29874,
1159,
13,
4706,
363,
1948,
29892,
4450,
297,
14319,
29898,
2080,
29879,
29892,
27303,
1125,
13,
9651,
2407,
353,
8853,
12673,
1115,
12865,
29889,
3707,
3285,
376,
2080,
1115,
1948,
29889,
8977,
3285,
376,
11965,
1115,
4450,
29913,
13,
9651,
1596,
29898,
11651,
29892,
934,
29922,
1445,
29897,
13,
4706,
934,
29889,
5358,
580,
13,
13,
13,
1753,
679,
29918,
21707,
7295,
13,
1678,
736,
28468,
580,
13,
13,
13,
29992,
932,
29889,
2490,
11974,
27711,
613,
2933,
29918,
4299,
29922,
29873,
29889,
1293,
29961,
7411,
2314,
13,
12674,
822,
1207,
29918,
11965,
2463,
29898,
13,
1678,
10970,
29901,
260,
29889,
1293,
29961,
3195,
4290,
29962,
353,
24928,
19327,
511,
13,
1678,
4844,
1061,
29922,
8498,
1975,
29898,
1359,
29918,
342,
326,
1061,
511,
13,
1678,
17927,
29922,
8498,
1975,
29898,
657,
29918,
21707,
511,
13,
1125,
13,
13,
1678,
1060,
353,
10518,
29889,
17271,
4197,
798,
29889,
8977,
580,
363,
1948,
297,
10970,
2314,
13,
1678,
18988,
353,
4844,
1061,
29889,
27711,
29898,
29990,
467,
579,
668,
29898,
9302,
29889,
13470,
29941,
29906,
467,
25027,
391,
580,
13,
1678,
17927,
29889,
1188,
29898,
2080,
29879,
29892,
18988,
29897,
13,
1678,
736,
18988,
13,
13,
13,
29992,
932,
29889,
657,
11974,
657,
1159,
13,
12674,
822,
2669,
29918,
4882,
7295,
13,
1678,
9995,
5596,
278,
4660,
310,
278,
2669,
15945,
29908,
13,
1678,
736,
8853,
4882,
1115,
376,
554,
9092,
13,
13,
13,
361,
4770,
978,
1649,
1275,
376,
1649,
3396,
1649,
1115,
13,
1678,
1053,
318,
26311,
1398,
13,
13,
1678,
318,
26311,
1398,
29889,
3389,
29898,
932,
29897,
13,
2
] |
scripts/Figures and Videos/Figure 2B/produce_fig_2B.py | jfaccioni/clovars | 0 | 133688 | <reponame>jfaccioni/clovars<gh_stars>0
import random
import sys
from pathlib import Path
import numpy as np
from clovars.main import main as clovars_main
RANDOMNESS_SEED = 31
def main():
"""Main function of this script."""
random.seed(RANDOMNESS_SEED)
np.random.seed(RANDOMNESS_SEED)
for scenario in ['i', 'ii', 'iii']:
sys.argv = ['', 'run', 'Fig_2B_run.toml', f'Fig_2B_colonies_{scenario}.toml']
clovars_main()
sys.argv = ['', 'view', 'Fig_2B_view.toml']
clovars_main()
remove_tree(path=Path('output'))
def remove_tree(path: Path):
"""Recursively deletes files and folders starting from path."""
# Source: https://stackoverflow.com/a/57892171/11161432
for child in path.iterdir():
if child.is_file():
child.unlink()
else:
remove_tree(child)
path.rmdir()
if __name__ == '__main__':
main()
| [
1,
529,
276,
1112,
420,
29958,
29926,
29888,
5753,
3688,
29914,
29883,
5590,
1503,
29966,
12443,
29918,
303,
1503,
29958,
29900,
13,
5215,
4036,
13,
5215,
10876,
13,
3166,
2224,
1982,
1053,
10802,
13,
13,
5215,
12655,
408,
7442,
13,
13,
3166,
274,
5590,
1503,
29889,
3396,
1053,
1667,
408,
274,
5590,
1503,
29918,
3396,
13,
13,
29934,
2190,
22141,
8186,
1799,
29918,
1660,
3352,
353,
29871,
29941,
29896,
13,
13,
13,
1753,
1667,
7295,
13,
1678,
9995,
6330,
740,
310,
445,
2471,
1213,
15945,
13,
1678,
4036,
29889,
26776,
29898,
29934,
2190,
22141,
8186,
1799,
29918,
1660,
3352,
29897,
13,
1678,
7442,
29889,
8172,
29889,
26776,
29898,
29934,
2190,
22141,
8186,
1799,
29918,
1660,
3352,
29897,
13,
1678,
363,
10483,
297,
6024,
29875,
742,
525,
2236,
742,
525,
25609,
2033,
29901,
13,
4706,
10876,
29889,
19218,
353,
6024,
742,
525,
3389,
742,
525,
13080,
29918,
29906,
29933,
29918,
3389,
29889,
15135,
29880,
742,
285,
29915,
13080,
29918,
29906,
29933,
29918,
17308,
583,
648,
1557,
24893,
1836,
15135,
29880,
2033,
13,
4706,
274,
5590,
1503,
29918,
3396,
580,
13,
4706,
10876,
29889,
19218,
353,
6024,
742,
525,
1493,
742,
525,
13080,
29918,
29906,
29933,
29918,
1493,
29889,
15135,
29880,
2033,
13,
4706,
274,
5590,
1503,
29918,
3396,
580,
13,
4706,
3349,
29918,
8336,
29898,
2084,
29922,
2605,
877,
4905,
8785,
13,
13,
13,
1753,
3349,
29918,
8336,
29898,
2084,
29901,
10802,
1125,
13,
1678,
9995,
4789,
1295,
3598,
7374,
267,
2066,
322,
16495,
6257,
515,
2224,
1213,
15945,
13,
1678,
396,
7562,
29901,
2045,
597,
2417,
29889,
510,
29914,
29874,
29914,
29945,
29955,
29947,
29929,
29906,
29896,
29955,
29896,
29914,
29896,
29896,
29896,
29953,
29896,
29946,
29941,
29906,
13,
1678,
363,
2278,
297,
2224,
29889,
1524,
3972,
7295,
13,
4706,
565,
2278,
29889,
275,
29918,
1445,
7295,
13,
9651,
2278,
29889,
348,
2324,
580,
13,
4706,
1683,
29901,
13,
9651,
3349,
29918,
8336,
29898,
5145,
29897,
13,
1678,
2224,
29889,
1758,
3972,
580,
13,
13,
13,
361,
4770,
978,
1649,
1275,
525,
1649,
3396,
1649,
2396,
13,
1678,
1667,
580,
13,
2
] |
losses/msloss.py | hiimmuc/Speaker-verification | 2 | 46182 | <filename>losses/msloss.py<gh_stars>1-10
# Copyright (c) Malong Technologies Co., Ltd.
# All rights reserved.
#
# Contact: <EMAIL>
#
# This source code is licensed under the LICENSE file in the root directory of this source tree.
import torch
import torch.nn as nn
import torch.nn.functional as F
class LossFunction(nn.Module):
def __init__(self, margin=0.1, scale_neg=50.0, scale_pos=2.0, ** kwargs):
super(LossFunction, self).__init__()
self.test_normalize = True
self.thresh = 0.5 # lambda
self.margin = margin
self.scale_pos = scale_pos # alpha
self.scale_neg = scale_neg # beta
def forward(self, feats, labels):
assert feats.size(0) == labels.size(0), \
f"feats.size(0): {feats.size(0)} is not equal to labels.size(0): {labels.size(0)}"
# batchxn -> batch.n n: nPerSpeaker ; size [64] -> [640], repeat by number of utterances
labels = labels.repeat_interleave(feats.size()[1])
# batchxnxd -> batch.n x d; [64, 5, 128] -> [640, 128]
feats = feats.reshape(-1, feats.size()[-1])
batch_size = feats.size(0)
batch_size = feats.size(0)
# feat: batch_size x outdim
sim_mat = torch.matmul(feats, torch.t(feats))
# test: normalize sim mat so all values is below 1
sim_mat = F.normalize(sim_mat)
epsilon = 1e-5
losses = list()
c = 0
for i in range(batch_size):
# pair mining step
# implement same as hard mining loss https://github.com/bnu-wangxun/Deep_Metric/blob/master/losses/HardMining.py
pos_pair_ = torch.masked_select(sim_mat[i], labels == labels[i])
# move itself
pos_pair_ = torch.masked_select(pos_pair_, pos_pair_ < 1 - epsilon)
neg_pair_ = torch.masked_select(sim_mat[i], labels != labels[i])
neg_pair = torch.masked_select(
neg_pair_, neg_pair_ > min(pos_pair_) - self.margin)
pos_pair = torch.masked_select(
pos_pair_, pos_pair_ < max(neg_pair_) + self.margin)
if len(neg_pair) < 1:
c += 1
continue
if len(pos_pair) < 1:
continue
# pair weighting stage
pos_loss = (1.0 / self.scale_pos) * torch.log(
1 + torch.sum(torch.exp(-self.scale_pos * (pos_pair - self.thresh))))
neg_loss = (1.0 / self.scale_neg) * torch.log(
1 + torch.sum(torch.exp(self.scale_neg * (neg_pair - self.thresh))))
loss_ms = pos_loss + neg_loss
losses.append(loss_ms)
if len(losses) == 0:
return torch.zeros([], requires_grad=True), 0
loss = sum(losses) / batch_size
prec1 = float(c) *100 / batch_size
return loss, prec1
if __name__ == '__main__':
loss = LossFunction()
feats = torch.rand([64, 512])
labels = torch.rand(64)
loss, pred = loss(feats, labels)
print(loss)
print(pred)
| [
1,
529,
9507,
29958,
6758,
267,
29914,
1516,
6758,
29889,
2272,
29966,
12443,
29918,
303,
1503,
29958,
29896,
29899,
29896,
29900,
13,
29937,
14187,
1266,
313,
29883,
29897,
3792,
549,
8364,
11763,
3189,
1696,
19806,
29889,
13,
29937,
2178,
10462,
21676,
29889,
13,
29937,
13,
29937,
22387,
29901,
529,
26862,
6227,
29958,
13,
29937,
13,
29937,
910,
2752,
775,
338,
7794,
21144,
1090,
278,
365,
2965,
1430,
1660,
934,
297,
278,
3876,
3884,
310,
445,
2752,
5447,
29889,
13,
13,
5215,
4842,
305,
13,
5215,
4842,
305,
29889,
15755,
408,
302,
29876,
13,
5215,
4842,
305,
29889,
15755,
29889,
2220,
284,
408,
383,
13,
13,
13,
1990,
365,
2209,
6678,
29898,
15755,
29889,
7355,
1125,
13,
1678,
822,
4770,
2344,
12035,
1311,
29892,
5906,
29922,
29900,
29889,
29896,
29892,
6287,
29918,
10052,
29922,
29945,
29900,
29889,
29900,
29892,
6287,
29918,
1066,
29922,
29906,
29889,
29900,
29892,
3579,
9049,
5085,
1125,
13,
4706,
2428,
29898,
29931,
2209,
6678,
29892,
1583,
467,
1649,
2344,
1649,
580,
13,
4706,
1583,
29889,
1688,
29918,
8945,
675,
353,
5852,
13,
4706,
1583,
29889,
386,
3781,
353,
29871,
29900,
29889,
29945,
29871,
396,
14013,
13,
4706,
1583,
29889,
9264,
353,
5906,
13,
4706,
1583,
29889,
7052,
29918,
1066,
353,
6287,
29918,
1066,
29871,
396,
15595,
13,
4706,
1583,
29889,
7052,
29918,
10052,
353,
6287,
29918,
10052,
29871,
396,
21762,
13,
13,
1678,
822,
6375,
29898,
1311,
29892,
1238,
1446,
29892,
11073,
1125,
13,
4706,
4974,
1238,
1446,
29889,
2311,
29898,
29900,
29897,
1275,
11073,
29889,
2311,
29898,
29900,
511,
320,
13,
9651,
285,
29908,
1725,
1446,
29889,
2311,
29898,
29900,
1125,
426,
1725,
1446,
29889,
2311,
29898,
29900,
2915,
338,
451,
5186,
304,
11073,
29889,
2311,
29898,
29900,
1125,
426,
21134,
29889,
2311,
29898,
29900,
2915,
29908,
13,
308,
13,
4706,
396,
9853,
29916,
29876,
1599,
9853,
29889,
29876,
302,
29901,
302,
5894,
10649,
5790,
2056,
2159,
518,
29953,
29946,
29962,
1599,
518,
29953,
29946,
29900,
1402,
12312,
491,
1353,
310,
14401,
2925,
13,
4706,
11073,
353,
11073,
29889,
14358,
29918,
1639,
280,
1351,
29898,
1725,
1446,
29889,
2311,
580,
29961,
29896,
2314,
13,
4706,
396,
9853,
29916,
23818,
29881,
1599,
9853,
29889,
29876,
921,
270,
29936,
518,
29953,
29946,
29892,
29871,
29945,
29892,
29871,
29896,
29906,
29947,
29962,
1599,
518,
29953,
29946,
29900,
29892,
29871,
29896,
29906,
29947,
29962,
13,
4706,
1238,
1446,
353,
1238,
1446,
29889,
690,
14443,
6278,
29896,
29892,
1238,
1446,
29889,
2311,
580,
14352,
29896,
2314,
13,
308,
13,
4706,
9853,
29918,
2311,
353,
1238,
1446,
29889,
2311,
29898,
29900,
29897,
13,
4706,
9853,
29918,
2311,
353,
1238,
1446,
29889,
2311,
29898,
29900,
29897,
13,
4706,
396,
1238,
271,
29901,
9853,
29918,
2311,
921,
714,
6229,
13,
13,
4706,
1027,
29918,
2922,
353,
4842,
305,
29889,
2922,
16109,
29898,
1725,
1446,
29892,
4842,
305,
29889,
29873,
29898,
1725,
1446,
876,
13,
4706,
396,
1243,
29901,
4226,
675,
1027,
1775,
577,
599,
1819,
338,
2400,
29871,
29896,
13,
4706,
1027,
29918,
2922,
353,
383,
29889,
8945,
675,
29898,
3601,
29918,
2922,
29897,
13,
13,
4706,
321,
3232,
353,
29871,
29896,
29872,
29899,
29945,
13,
4706,
28495,
353,
1051,
580,
13,
4706,
274,
353,
29871,
29900,
13,
13,
4706,
363,
474,
297,
3464,
29898,
16175,
29918,
2311,
1125,
13,
9651,
396,
5101,
1375,
292,
4331,
13,
9651,
396,
2334,
1021,
408,
2898,
1375,
292,
6410,
29871,
2045,
597,
3292,
29889,
510,
29914,
29890,
3433,
29899,
29893,
574,
29916,
348,
29914,
2772,
1022,
29918,
10095,
2200,
29914,
10054,
29914,
6207,
29914,
6758,
267,
29914,
29950,
538,
29924,
2827,
29889,
2272,
13,
9651,
926,
29918,
18784,
29918,
353,
4842,
305,
29889,
13168,
287,
29918,
2622,
29898,
3601,
29918,
2922,
29961,
29875,
1402,
11073,
1275,
11073,
29961,
29875,
2314,
13,
13,
9651,
396,
29871,
4337,
3528,
13,
9651,
926,
29918,
18784,
29918,
353,
4842,
305,
29889,
13168,
287,
29918,
2622,
29898,
1066,
29918,
18784,
3383,
926,
29918,
18784,
29918,
529,
29871,
29896,
448,
321,
3232,
29897,
13,
9651,
3480,
29918,
18784,
29918,
353,
4842,
305,
29889,
13168,
287,
29918,
2622,
29898,
3601,
29918,
2922,
29961,
29875,
1402,
11073,
2804,
11073,
29961,
29875,
2314,
13,
13,
9651,
3480,
29918,
18784,
353,
4842,
305,
29889,
13168,
287,
29918,
2622,
29898,
13,
18884,
3480,
29918,
18784,
3383,
3480,
29918,
18784,
29918,
1405,
1375,
29898,
1066,
29918,
18784,
19925,
448,
1583,
29889,
9264,
29897,
13,
9651,
926,
29918,
18784,
353,
4842,
305,
29889,
13168,
287,
29918,
2622,
29898,
13,
18884,
926,
29918,
18784,
3383,
926,
29918,
18784,
29918,
529,
4236,
29898,
10052,
29918,
18784,
19925,
718,
1583,
29889,
9264,
29897,
13,
13,
9651,
565,
7431,
29898,
10052,
29918,
18784,
29897,
529,
29871,
29896,
29901,
13,
18884,
274,
4619,
29871,
29896,
13,
18884,
6773,
13,
9651,
565,
7431,
29898,
1066,
29918,
18784,
29897,
529,
29871,
29896,
29901,
13,
18884,
6773,
13,
13,
9651,
396,
5101,
7688,
292,
7408,
13,
9651,
926,
29918,
6758,
353,
313,
29896,
29889,
29900,
847,
1583,
29889,
7052,
29918,
1066,
29897,
334,
4842,
305,
29889,
1188,
29898,
13,
462,
29896,
718,
4842,
305,
29889,
2083,
29898,
7345,
305,
29889,
4548,
6278,
1311,
29889,
7052,
29918,
1066,
334,
313,
1066,
29918,
18784,
448,
1583,
29889,
386,
3781,
13697,
13,
9651,
3480,
29918,
6758,
353,
313,
29896,
29889,
29900,
847,
1583,
29889,
7052,
29918,
10052,
29897,
334,
4842,
305,
29889,
1188,
29898,
13,
462,
29896,
718,
4842,
305,
29889,
2083,
29898,
7345,
305,
29889,
4548,
29898,
1311,
29889,
7052,
29918,
10052,
334,
313,
10052,
29918,
18784,
448,
1583,
29889,
386,
3781,
13697,
13,
9651,
6410,
29918,
1516,
353,
926,
29918,
6758,
718,
3480,
29918,
6758,
13,
13,
9651,
28495,
29889,
4397,
29898,
6758,
29918,
1516,
29897,
13,
13,
4706,
565,
7431,
29898,
6758,
267,
29897,
1275,
29871,
29900,
29901,
13,
9651,
736,
4842,
305,
29889,
3298,
359,
4197,
1402,
6858,
29918,
5105,
29922,
5574,
511,
29871,
29900,
13,
13,
4706,
6410,
353,
2533,
29898,
6758,
267,
29897,
847,
9853,
29918,
2311,
13,
4706,
8303,
29896,
353,
5785,
29898,
29883,
29897,
334,
29896,
29900,
29900,
847,
9853,
29918,
2311,
13,
4706,
736,
6410,
29892,
8303,
29896,
13,
13,
13,
361,
4770,
978,
1649,
1275,
525,
1649,
3396,
1649,
2396,
13,
1678,
6410,
353,
365,
2209,
6678,
580,
13,
1678,
1238,
1446,
353,
4842,
305,
29889,
9502,
4197,
29953,
29946,
29892,
29871,
29945,
29896,
29906,
2314,
13,
1678,
11073,
353,
4842,
305,
29889,
9502,
29898,
29953,
29946,
29897,
13,
1678,
6410,
29892,
4450,
353,
6410,
29898,
1725,
1446,
29892,
11073,
29897,
13,
1678,
1596,
29898,
6758,
29897,
13,
1678,
1596,
29898,
11965,
29897,
13,
2
] |
loldib/getratings/models/NA/na_khazix/na_khazix_top.py | koliupy/loldib | 0 | 19217 | from getratings.models.ratings import Ratings
class NA_Khazix_Top_Aatrox(Ratings):
pass
class NA_Khazix_Top_Ahri(Ratings):
pass
class NA_Khazix_Top_Akali(Ratings):
pass
class NA_Khazix_Top_Alistar(Ratings):
pass
class NA_Khazix_Top_Amumu(Ratings):
pass
class NA_Khazix_Top_Anivia(Ratings):
pass
class NA_Khazix_Top_Annie(Ratings):
pass
class NA_Khazix_Top_Ashe(Ratings):
pass
class NA_Khazix_Top_AurelionSol(Ratings):
pass
class NA_Khazix_Top_Azir(Ratings):
pass
class NA_Khazix_Top_Bard(Ratings):
pass
class NA_Khazix_Top_Blitzcrank(Ratings):
pass
class NA_Khazix_Top_Brand(Ratings):
pass
class NA_Khazix_Top_Braum(Ratings):
pass
class NA_Khazix_Top_Caitlyn(Ratings):
pass
class NA_Khazix_Top_Camille(Ratings):
pass
class NA_Khazix_Top_Cassiopeia(Ratings):
pass
class NA_Khazix_Top_Chogath(Ratings):
pass
class NA_Khazix_Top_Corki(Ratings):
pass
class NA_Khazix_Top_Darius(Ratings):
pass
class NA_Khazix_Top_Diana(Ratings):
pass
class NA_Khazix_Top_Draven(Ratings):
pass
class NA_Khazix_Top_DrMundo(Ratings):
pass
class NA_Khazix_Top_Ekko(Ratings):
pass
class NA_Khazix_Top_Elise(Ratings):
pass
class NA_Khazix_Top_Evelynn(Ratings):
pass
class NA_Khazix_Top_Ezreal(Ratings):
pass
class NA_Khazix_Top_Fiddlesticks(Ratings):
pass
class NA_Khazix_Top_Fiora(Ratings):
pass
class NA_Khazix_Top_Fizz(Ratings):
pass
class NA_Khazix_Top_Galio(Ratings):
pass
class NA_Khazix_Top_Gangplank(Ratings):
pass
class NA_Khazix_Top_Garen(Ratings):
pass
class NA_Khazix_Top_Gnar(Ratings):
pass
class NA_Khazix_Top_Gragas(Ratings):
pass
class NA_Khazix_Top_Graves(Ratings):
pass
class NA_Khazix_Top_Hecarim(Ratings):
pass
class NA_Khazix_Top_Heimerdinger(Ratings):
pass
class NA_Khazix_Top_Illaoi(Ratings):
pass
class NA_Khazix_Top_Irelia(Ratings):
pass
class NA_Khazix_Top_Ivern(Ratings):
pass
class NA_Khazix_Top_Janna(Ratings):
pass
class NA_Khazix_Top_JarvanIV(Ratings):
pass
class NA_Khazix_Top_Jax(Ratings):
pass
class NA_Khazix_Top_Jayce(Ratings):
pass
class NA_Khazix_Top_Jhin(Ratings):
pass
class NA_Khazix_Top_Jinx(Ratings):
pass
class NA_Khazix_Top_Kalista(Ratings):
pass
class NA_Khazix_Top_Karma(Ratings):
pass
class NA_Khazix_Top_Karthus(Ratings):
pass
class NA_Khazix_Top_Kassadin(Ratings):
pass
class NA_Khazix_Top_Katarina(Ratings):
pass
class NA_Khazix_Top_Kayle(Ratings):
pass
class NA_Khazix_Top_Kayn(Ratings):
pass
class NA_Khazix_Top_Kennen(Ratings):
pass
class NA_Khazix_Top_Khazix(Ratings):
pass
class NA_Khazix_Top_Kindred(Ratings):
pass
class NA_Khazix_Top_Kled(Ratings):
pass
class NA_Khazix_Top_KogMaw(Ratings):
pass
class NA_Khazix_Top_Leblanc(Ratings):
pass
class NA_Khazix_Top_LeeSin(Ratings):
pass
class NA_Khazix_Top_Leona(Ratings):
pass
class NA_Khazix_Top_Lissandra(Ratings):
pass
class NA_Khazix_Top_Lucian(Ratings):
pass
class NA_Khazix_Top_Lulu(Ratings):
pass
class NA_Khazix_Top_Lux(Ratings):
pass
class NA_Khazix_Top_Malphite(Ratings):
pass
class NA_Khazix_Top_Malzahar(Ratings):
pass
class NA_Khazix_Top_Maokai(Ratings):
pass
class NA_Khazix_Top_MasterYi(Ratings):
pass
class NA_Khazix_Top_MissFortune(Ratings):
pass
class NA_Khazix_Top_MonkeyKing(Ratings):
pass
class NA_Khazix_Top_Mordekaiser(Ratings):
pass
class NA_Khazix_Top_Morgana(Ratings):
pass
class NA_Khazix_Top_Nami(Ratings):
pass
class NA_Khazix_Top_Nasus(Ratings):
pass
class NA_Khazix_Top_Nautilus(Ratings):
pass
class NA_Khazix_Top_Nidalee(Ratings):
pass
class NA_Khazix_Top_Nocturne(Ratings):
pass
class NA_Khazix_Top_Nunu(Ratings):
pass
class NA_Khazix_Top_Olaf(Ratings):
pass
class NA_Khazix_Top_Orianna(Ratings):
pass
class NA_Khazix_Top_Ornn(Ratings):
pass
class NA_Khazix_Top_Pantheon(Ratings):
pass
class NA_Khazix_Top_Poppy(Ratings):
pass
class NA_Khazix_Top_Quinn(Ratings):
pass
class NA_Khazix_Top_Rakan(Ratings):
pass
class NA_Khazix_Top_Rammus(Ratings):
pass
class NA_Khazix_Top_RekSai(Ratings):
pass
class NA_Khazix_Top_Renekton(Ratings):
pass
class NA_Khazix_Top_Rengar(Ratings):
pass
class NA_Khazix_Top_Riven(Ratings):
pass
class NA_Khazix_Top_Rumble(Ratings):
pass
class NA_Khazix_Top_Ryze(Ratings):
pass
class NA_Khazix_Top_Sejuani(Ratings):
pass
class NA_Khazix_Top_Shaco(Ratings):
pass
class NA_Khazix_Top_Shen(Ratings):
pass
class NA_Khazix_Top_Shyvana(Ratings):
pass
class NA_Khazix_Top_Singed(Ratings):
pass
class NA_Khazix_Top_Sion(Ratings):
pass
class NA_Khazix_Top_Sivir(Ratings):
pass
class NA_Khazix_Top_Skarner(Ratings):
pass
class NA_Khazix_Top_Sona(Ratings):
pass
class NA_Khazix_Top_Soraka(Ratings):
pass
class NA_Khazix_Top_Swain(Ratings):
pass
class NA_Khazix_Top_Syndra(Ratings):
pass
class NA_Khazix_Top_TahmKench(Ratings):
pass
class NA_Khazix_Top_Taliyah(Ratings):
pass
class NA_Khazix_Top_Talon(Ratings):
pass
class NA_Khazix_Top_Taric(Ratings):
pass
class NA_Khazix_Top_Teemo(Ratings):
pass
class NA_Khazix_Top_Thresh(Ratings):
pass
class NA_Khazix_Top_Tristana(Ratings):
pass
class NA_Khazix_Top_Trundle(Ratings):
pass
class NA_Khazix_Top_Tryndamere(Ratings):
pass
class NA_Khazix_Top_TwistedFate(Ratings):
pass
class NA_Khazix_Top_Twitch(Ratings):
pass
class NA_Khazix_Top_Udyr(Ratings):
pass
class NA_Khazix_Top_Urgot(Ratings):
pass
class NA_Khazix_Top_Varus(Ratings):
pass
class NA_Khazix_Top_Vayne(Ratings):
pass
class NA_Khazix_Top_Veigar(Ratings):
pass
class NA_Khazix_Top_Velkoz(Ratings):
pass
class NA_Khazix_Top_Vi(Ratings):
pass
class NA_Khazix_Top_Viktor(Ratings):
pass
class NA_Khazix_Top_Vladimir(Ratings):
pass
class NA_Khazix_Top_Volibear(Ratings):
pass
class NA_Khazix_Top_Warwick(Ratings):
pass
class NA_Khazix_Top_Xayah(Ratings):
pass
class NA_Khazix_Top_Xerath(Ratings):
pass
class NA_Khazix_Top_XinZhao(Ratings):
pass
class NA_Khazix_Top_Yasuo(Ratings):
pass
class NA_Khazix_Top_Yorick(Ratings):
pass
class NA_Khazix_Top_Zac(Ratings):
pass
class NA_Khazix_Top_Zed(Ratings):
pass
class NA_Khazix_Top_Ziggs(Ratings):
pass
class NA_Khazix_Top_Zilean(Ratings):
pass
class NA_Khazix_Top_Zyra(Ratings):
pass
| [
1,
515,
679,
3605,
886,
29889,
9794,
29889,
3605,
886,
1053,
17450,
886,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29909,
7816,
29916,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
17565,
374,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29909,
29895,
2606,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29909,
1761,
279,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
6833,
398,
29884,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
2744,
440,
423,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
2744,
2786,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
2887,
354,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29909,
545,
29880,
291,
13296,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
16748,
381,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29933,
538,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
10358,
2784,
29883,
10003,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29933,
9502,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29933,
19527,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29907,
1249,
13493,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29907,
1344,
280,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29907,
465,
601,
412,
423,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
1451,
468,
493,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29907,
548,
29875,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29928,
19563,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29928,
3857,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
24515,
854,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
25639,
29924,
6201,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29923,
29895,
2901,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
6489,
895,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29923,
29894,
873,
15755,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29923,
29920,
6370,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29943,
2205,
29880,
342,
7358,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29943,
1611,
29874,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29943,
4981,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29954,
284,
601,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29954,
574,
572,
804,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29954,
8326,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29954,
24156,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29954,
1431,
294,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29954,
336,
1960,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29950,
687,
279,
326,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
3868,
326,
2018,
5621,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29902,
13520,
7768,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29902,
2674,
423,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29902,
3228,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29967,
9713,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29967,
279,
3703,
5667,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29967,
1165,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29967,
388,
346,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29967,
11222,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29967,
14668,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29968,
284,
2079,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29968,
22824,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
24115,
386,
375,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29968,
465,
28214,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29968,
14873,
1099,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29968,
388,
280,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29968,
388,
29876,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29968,
18723,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29968,
29882,
834,
861,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
11885,
1127,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29968,
839,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29968,
468,
29924,
1450,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29931,
774,
29880,
4564,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
3226,
29872,
29903,
262,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
3226,
2681,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29931,
790,
10738,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
24126,
28445,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29931,
21528,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29931,
1314,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29924,
19712,
568,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
22995,
29920,
801,
279,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
21870,
554,
1794,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
19203,
29979,
29875,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
18552,
29943,
441,
1540,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
7185,
1989,
29968,
292,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29924,
24568,
1335,
7608,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29924,
990,
1648,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29940,
4479,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29940,
294,
375,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29940,
1300,
20671,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29940,
333,
744,
29872,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
3782,
312,
332,
484,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29940,
348,
29884,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29949,
433,
29888,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
15988,
9713,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
2816,
15755,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29925,
424,
354,
265,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29925,
9354,
29891,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
2182,
2559,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29934,
557,
273,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29934,
4850,
375,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
1123,
29895,
29903,
1794,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29934,
264,
1416,
880,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29934,
996,
279,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29934,
5428,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29934,
15563,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29934,
29891,
911,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
2008,
4900,
3270,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
2713,
11216,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
2713,
264,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
2713,
29891,
29894,
1648,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
10873,
287,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29903,
291,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29903,
440,
381,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29903,
5689,
1089,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29903,
2681,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29903,
272,
8245,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
10840,
475,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29903,
29891,
299,
336,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29911,
801,
29885,
29968,
264,
305,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29911,
2606,
29891,
801,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29911,
284,
265,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29911,
279,
293,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
7141,
15810,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
1349,
3781,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29911,
2021,
1648,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29911,
29160,
280,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
15870,
299,
314,
406,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
27418,
12652,
29943,
403,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
27418,
2335,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29965,
29881,
4316,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29965,
29878,
7085,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
9037,
375,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29963,
388,
484,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29963,
29872,
335,
279,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29963,
295,
22967,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29963,
29875,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29963,
638,
7345,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29963,
4528,
17216,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
13072,
747,
799,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29956,
279,
6669,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29990,
388,
801,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29990,
261,
493,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29990,
262,
29999,
2350,
29877,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29979,
294,
25608,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29979,
272,
860,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29999,
562,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29999,
287,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29999,
335,
3174,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29999,
488,
273,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
1990,
8598,
29918,
29968,
29882,
834,
861,
29918,
7031,
29918,
29999,
29891,
336,
29898,
29934,
271,
886,
1125,
30004,
13,
12,
3364,
30004,
13,
30004,
13,
2
] |
dislib/model_selection/_search.py | alexbarcelo/dislib | 36 | 9659 | <gh_stars>10-100
from abc import ABC, abstractmethod
from collections import defaultdict
from collections.abc import Sequence
from functools import partial
from itertools import product
import numpy as np
from pycompss.api.api import compss_wait_on
from scipy.stats import rankdata
from sklearn import clone
from sklearn.model_selection import ParameterGrid, ParameterSampler
from numpy.ma import MaskedArray
from dislib.model_selection._split import infer_cv
from dislib.model_selection._validation import check_scorer, fit_and_score, \
validate_score, aggregate_score_dicts
class BaseSearchCV(ABC):
"""Abstract base class for hyper parameter search with cross-validation."""
def __init__(self, estimator, scoring=None, cv=None, refit=True):
self.estimator = estimator
self.scoring = scoring
self.cv = cv
self.refit = refit
@abstractmethod
def _run_search(self, evaluate_candidates):
"""Abstract method to perform the search. The parameter
`evaluate_candidates` is a function that evaluates a ParameterGrid at a
time """
pass
def fit(self, x, y=None, **fit_params):
"""Run fit with all sets of parameters.
Parameters
----------
x : ds-array
Training data samples.
y : ds-array, optional (default = None)
Training data labels or values.
**fit_params : dict of string -> object
Parameters passed to the ``fit`` method of the estimator
"""
estimator = self.estimator
cv = infer_cv(self.cv)
scorers, refit_metric = self._infer_scorers()
base_estimator = clone(estimator)
n_splits = None
all_candidate_params = []
all_out = []
def evaluate_candidates(candidate_params):
"""Evaluate some parameters"""
candidate_params = list(candidate_params)
out = [fit_and_score(clone(base_estimator), train, validation,
scorer=scorers, parameters=parameters,
fit_params=fit_params)
for parameters, (train, validation)
in product(candidate_params, cv.split(x, y))]
nonlocal n_splits
n_splits = cv.get_n_splits()
all_candidate_params.extend(candidate_params)
all_out.extend(out)
self._run_search(evaluate_candidates)
for params_result in all_out:
scores = params_result[0]
for scorer_name, score in scores.items():
score = compss_wait_on(score)
scores[scorer_name] = validate_score(score, scorer_name)
results = self._format_results(all_candidate_params, scorers,
n_splits, all_out)
# For multi-metric evaluation, store the best_index_, best_params_ and
# best_score_ iff refit is one of the scorer names
# In single metric evaluation, refit_metric is "score"
if self.refit or not self.multimetric_:
# If callable, refit is expected to return the index of the best
# parameter set.
if callable(self.refit):
self.best_index_ = self.refit(results)
if not isinstance(self.best_index_, (int, np.integer)):
raise TypeError('best_index_ returned is not an integer')
if (self.best_index_ < 0 or
self.best_index_ >= len(results["params"])):
raise IndexError('best_index_ index out of range')
else:
self.best_index_ = results["rank_test_%s"
% refit_metric].argmin()
self.best_score_ = results["mean_test_%s" % refit_metric][
self.best_index_]
self.best_params_ = results["params"][self.best_index_]
if self.refit:
self.best_estimator_ = clone(base_estimator).set_params(
**self.best_params_)
self.best_estimator_.fit(x, y, **fit_params)
# Store the only scorer not as a dict for single metric evaluation
self.scorer_ = scorers if self.multimetric_ else scorers['score']
self.cv_results_ = results
self.n_splits_ = n_splits
return self
@staticmethod
def _format_results(candidate_params, scorers, n_splits, out):
n_candidates = len(candidate_params)
(test_score_dicts,) = zip(*out)
test_scores = aggregate_score_dicts(test_score_dicts)
results = {}
def _store(key_name, array, splits=False, rank=False):
"""A small helper to store the scores/times to the cv_results_"""
array = np.array(array, dtype=np.float64).reshape(n_candidates,
n_splits)
if splits:
for split_i in range(n_splits):
# Uses closure to alter the results
results["split%d_%s"
% (split_i, key_name)] = array[:, split_i]
array_means = np.mean(array, axis=1)
results['mean_%s' % key_name] = array_means
array_stds = np.std(array, axis=1)
results['std_%s' % key_name] = array_stds
if rank:
results["rank_%s" % key_name] = np.asarray(
rankdata(-array_means, method='min'), dtype=np.int32)
# Use one MaskedArray and mask all the places where the param is not
# applicable for that candidate. Use defaultdict as each candidate may
# not contain all the params
param_results = defaultdict(partial(MaskedArray,
np.empty(n_candidates, ),
mask=True,
dtype=object))
for cand_i, params in enumerate(candidate_params):
for name, value in params.items():
# An all masked empty array gets created for the key
# `"param_%s" % name` at the first occurrence of `name`.
# Setting the value at an index also unmasks that index
param_results["param_%s" % name][cand_i] = value
results.update(param_results)
# Store a list of param dicts at the key 'params'
results['params'] = candidate_params
for scorer_name in scorers.keys():
_store('test_%s' % scorer_name, test_scores[scorer_name],
splits=True, rank=True)
return results
def _infer_scorers(self):
estimator = self.estimator
scoring = self.scoring
refit = self.refit
if scoring is None or callable(scoring):
scorers = {"score": check_scorer(estimator, scoring)}
refit_metric = 'score'
self.multimetric_ = False
elif isinstance(scoring, dict):
scorers = {key: check_scorer(estimator, scorer)
for key, scorer in scoring.items()}
if refit is not False and (
not isinstance(refit, str) or
refit not in scorers) and not callable(refit):
raise ValueError("For multi-metric scoring, the parameter "
"refit must be set to a scorer key or a "
"callable to refit an estimator with the "
"best parameter setting on the whole "
"data and make the best_* attributes "
"available for that metric. If this is "
"not needed, refit should be set to "
"False explicitly. %r was passed."
% refit)
refit_metric = refit
self.multimetric_ = True
else:
raise ValueError('scoring is not valid')
return scorers, refit_metric
class GridSearchCV(BaseSearchCV):
"""Exhaustive search over specified parameter values for an estimator.
GridSearchCV implements a "fit" and a "score" method.
The parameters of the estimator used to apply these methods are optimized
by cross-validated grid-search over a parameter grid.
Parameters
----------
estimator : estimator object.
This is assumed to implement the scikit-learn estimator interface.
Either estimator needs to provide a ``score`` function,
or ``scoring`` must be passed.
param_grid : dict or list of dictionaries
Dictionary with parameters names (string) as keys and lists of
parameter settings to try as values, or a list of such
dictionaries, in which case the grids spanned by each dictionary
in the list are explored. This enables searching over any sequence
of parameter settings.
scoring : callable, dict or None, optional (default=None)
A callable to evaluate the predictions on the test set. It should take
3 parameters, estimator, x and y, and return a score (higher meaning
better). For evaluating multiple metrics, give a dict with names as
keys and callables as values. If None, the estimator's score method is
used.
cv : int or cv generator, optional (default=None)
Determines the cross-validation splitting strategy.
Possible inputs for cv are:
- None, to use the default 5-fold cross validation,
- integer, to specify the number of folds in a `KFold`,
- custom cv generator.
refit : boolean, string, or callable, optional (default=True)
Refit an estimator using the best found parameters on the whole
dataset.
For multiple metric evaluation, this needs to be a string denoting the
scorer that would be used to find the best parameters for refitting
the estimator at the end.
Where there are considerations other than maximum score in
choosing a best estimator, ``refit`` can be set to a function which
returns the selected ``best_index_`` given ``cv_results_``.
The refitted estimator is made available at the ``best_estimator_``
attribute and permits using ``predict`` directly on this
``GridSearchCV`` instance.
Also for multiple metric evaluation, the attributes ``best_index_``,
``best_score_`` and ``best_params_`` will only be available if
``refit`` is set and all of them will be determined w.r.t this specific
scorer. ``best_score_`` is not returned if refit is callable.
See ``scoring`` parameter to know more about multiple metric
evaluation.
Examples
--------
>>> import dislib as ds
>>> from dislib.model_selection import GridSearchCV
>>> from dislib.classification import RandomForestClassifier
>>> import numpy as np
>>> from sklearn import datasets
>>>
>>>
>>> if __name__ == '__main__':
>>> x_np, y_np = datasets.load_iris(return_X_y=True)
>>> x = ds.array(x_np, (30, 4))
>>> y = ds.array(y_np[:, np.newaxis], (30, 1))
>>> param_grid = {'n_estimators': (2, 4), 'max_depth': range(3, 5)}
>>> rf = RandomForestClassifier()
>>> searcher = GridSearchCV(rf, param_grid)
>>> searcher.fit(x, y)
>>> searcher.cv_results_
Attributes
----------
cv_results_ : dict of numpy (masked) ndarrays
A dict with keys as column headers and values as columns, that can be
imported into a pandas ``DataFrame``.
For instance the below given table:
+------------+------------+-----------------+---+---------+
|param_kernel|param_degree|split0_test_score|...|rank_t...|
+============+============+=================+===+=========+
| 'poly' | 2 | 0.80 |...| 2 |
+------------+------------+-----------------+---+---------+
| 'poly' | 3 | 0.70 |...| 4 |
+------------+------------+-----------------+---+---------+
| 'rbf' | -- | 0.80 |...| 3 |
+------------+------------+-----------------+---+---------+
| 'rbf' | -- | 0.93 |...| 1 |
+------------+------------+-----------------+---+---------+
will be represented by a ``cv_results_`` dict of::
{
'param_kernel': masked_array(data = ['poly', 'poly', 'rbf', 'rbf'],
mask = [False False False False]...),
'param_degree': masked_array(data = [2.0 3.0 -- --],
mask = [False False True True]...),
'split0_test_score' : [0.80, 0.70, 0.80, 0.93],
'split1_test_score' : [0.82, 0.50, 0.68, 0.78],
'split2_test_score' : [0.79, 0.55, 0.71, 0.93],
...
'mean_test_score' : [0.81, 0.60, 0.75, 0.85],
'std_test_score' : [0.01, 0.10, 0.05, 0.08],
'rank_test_score' : [2, 4, 3, 1],
'params' : [{'kernel': 'poly', 'degree': 2}, ...],
}
NOTES:
The key ``'params'`` is used to store a list of parameter
settings dicts for all the parameter candidates.
The ``mean_fit_time``, ``std_fit_time``, ``mean_score_time`` and
``std_score_time`` are all in seconds.
For multi-metric evaluation, the scores for all the scorers are
available in the ``cv_results_`` dict at the keys ending with that
scorer's name (``'_<scorer_name>'``) instead of ``'_score'`` shown
above ('split0_test_precision', 'mean_train_precision' etc.).
best_estimator_ : estimator or dict
Estimator that was chosen by the search, i.e. estimator
which gave highest score (or smallest loss if specified)
on the left out data. Not available if ``refit=False``.
See ``refit`` parameter for more information on allowed values.
best_score_ : float
Mean cross-validated score of the best_estimator
For multi-metric evaluation, this is present only if ``refit`` is
specified.
best_params_ : dict
Parameter setting that gave the best results on the hold out data.
For multi-metric evaluation, this is present only if ``refit`` is
specified.
best_index_ : int
The index (of the ``cv_results_`` arrays) which corresponds to the best
candidate parameter setting.
The dict at ``search.cv_results_['params'][search.best_index_]`` gives
the parameter setting for the best model, that gives the highest
mean score (``search.best_score_``).
For multi-metric evaluation, this is present only if ``refit`` is
specified.
scorer_ : function or a dict
Scorer function used on the held out data to choose the best
parameters for the model.
For multi-metric evaluation, this attribute holds the validated
``scoring`` dict which maps the scorer key to the scorer callable.
n_splits_ : int
The number of cross-validation splits (folds/iterations).
"""
def __init__(self, estimator, param_grid, scoring=None, cv=None,
refit=True):
super().__init__(estimator=estimator, scoring=scoring, cv=cv,
refit=refit)
self.param_grid = param_grid
self._check_param_grid(param_grid)
def _run_search(self, evaluate_candidates):
evaluate_candidates(ParameterGrid(self.param_grid))
@staticmethod
def _check_param_grid(param_grid):
if hasattr(param_grid, 'items'):
param_grid = [param_grid]
for p in param_grid:
for name, v in p.items():
if isinstance(v, np.ndarray) and v.ndim > 1:
raise ValueError("Parameter array should be "
"one-dimensional.")
if (isinstance(v, str) or
not isinstance(v, (np.ndarray, Sequence))):
raise ValueError(
"Parameter values for parameter ({0}) need "
"to be a sequence (but not a string) or"
" np.ndarray.".format(name))
if len(v) == 0:
raise ValueError(
"Parameter values for parameter ({0}) need "
"to be a non-empty sequence.".format(name))
class RandomizedSearchCV(BaseSearchCV):
"""Randomized search on hyper parameters.
RandomizedSearchCV implements a "fit" and a "score" method.
The parameters of the estimator used to apply these methods are optimized
by cross-validated search over parameter settings.
In contrast to GridSearchCV, not all parameter values are tried out, but
rather a fixed number of parameter settings is sampled from the specified
distributions. The number of parameter settings that are tried is
given by n_iter.
If all parameters are presented as a list,
sampling without replacement is performed. If at least one parameter
is given as a distribution, sampling with replacement is used.
Parameters
----------
estimator : estimator object.
This is assumed to implement the scikit-learn estimator interface.
Either estimator needs to provide a ``score`` function,
or ``scoring`` must be passed.
param_distributions : dict
Dictionary with parameters names (string) as keys and distributions
or lists of parameters to try. Distributions must provide a ``rvs``
method for sampling (such as those from scipy.stats.distributions).
If a list is given, it is sampled uniformly.
n_iter : int, optional (default=10)
Number of parameter settings that are sampled.
scoring : callable, dict or None, optional (default=None)
A callable to evaluate the predictions on the test set. It should take
3 parameters, estimator, x and y, and return a score (higher meaning
better). For evaluating multiple metrics, give a dict with names as
keys and callables as values. If None, the estimator's score method is
used.
cv : int or cv generator, optional (default=None)
Determines the cross-validation splitting strategy.
Possible inputs for cv are:
- None, to use the default 5-fold cross validation,
- integer, to specify the number of folds in a `KFold`,
- custom cv generator.
refit : boolean, string, or callable, optional (default=True)
Refit an estimator using the best found parameters on the whole
dataset.
For multiple metric evaluation, this needs to be a string denoting the
scorer that would be used to find the best parameters for refitting
the estimator at the end.
Where there are considerations other than maximum score in
choosing a best estimator, ``refit`` can be set to a function which
returns the selected ``best_index_`` given ``cv_results_``.
The refitted estimator is made available at the ``best_estimator_``
attribute and permits using ``predict`` directly on this
``GridSearchCV`` instance.
Also for multiple metric evaluation, the attributes ``best_index_``,
``best_score_`` and ``best_params_`` will only be available if
``refit`` is set and all of them will be determined w.r.t this specific
scorer. ``best_score_`` is not returned if refit is callable.
See ``scoring`` parameter to know more about multiple metric
evaluation.
random_state : int, RandomState instance or None, optional, default=None
Pseudo random number generator state used for random sampling of params
in param_distributions. This is not passed to each estimator.
If int, random_state is the seed used by the random number generator;
If RandomState instance, random_state is the random number generator;
If None, the random number generator is the RandomState instance used
by `np.random`.
Examples
--------
>>> import dislib as ds
>>> from dislib.model_selection import RandomizedSearchCV
>>> from dislib.classification import CascadeSVM
>>> import numpy as np
>>> import scipy.stats as stats
>>> from sklearn import datasets
>>>
>>>
>>> if __name__ == '__main__':
>>> x_np, y_np = datasets.load_iris(return_X_y=True)
>>> # Pre-shuffling required for CSVM
>>> p = np.random.permutation(len(x_np))
>>> x = ds.array(x_np[p], (30, 4))
>>> y = ds.array((y_np[p] == 0)[:, np.newaxis], (30, 1))
>>> param_distributions = {'c': stats.expon(scale=0.5),
>>> 'gamma': stats.expon(scale=10)}
>>> csvm = CascadeSVM()
>>> searcher = RandomizedSearchCV(csvm, param_distributions, n_iter=10)
>>> searcher.fit(x, y)
>>> searcher.cv_results_
Attributes
----------
cv_results_ : dict of numpy (masked) ndarrays
A dict with keys as column headers and values as columns, that can be
imported into a pandas ``DataFrame``.
For instance the below given table
+---------+-------------+-------------------+---+---------------+
| param_c | param_gamma | split0_test_score |...|rank_test_score|
+=========+=============+===================+===+===============+
| 0.193 | 1.883 | 0.82 |...| 3 |
+---------+-------------+-------------------+---+---------------+
| 1.452 | 0.327 | 0.81 |...| 2 |
+---------+-------------+-------------------+---+---------------+
| 0.926 | 3.452 | 0.94 |...| 1 |
+---------+-------------+-------------------+---+---------------+
will be represented by a ``cv_results_`` dict of::
{
'param_kernel' : masked_array(data = ['rbf', 'rbf', 'rbf'],
mask = False),
'param_gamma' : masked_array(data = [0.1 0.2 0.3], mask = False),
'split0_test_score' : [0.82, 0.81, 0.94],
'split1_test_score' : [0.66, 0.75, 0.79],
'split2_test_score' : [0.82, 0.87, 0.84],
...
'mean_test_score' : [0.76, 0.84, 0.86],
'std_test_score' : [0.01, 0.20, 0.04],
'rank_test_score' : [3, 2, 1],
'params' : [{'c' : 0.193, 'gamma' : 1.883}, ...],
}
NOTE
The key ``'params'`` is used to store a list of parameter
settings dicts for all the parameter candidates.
The ``mean_fit_time``, ``std_fit_time``, ``mean_score_time`` and
``std_score_time`` are all in seconds.
For multi-metric evaluation, the scores for all the scorers are
available in the ``cv_results_`` dict at the keys ending with that
scorer's name (``'_<scorer_name>'``) instead of ``'_score'`` shown
above. ('split0_test_precision', 'mean_train_precision' etc.)
best_estimator_ : estimator or dict
Estimator that was chosen by the search, i.e. estimator
which gave highest score (or smallest loss if specified)
on the left out data. Not available if ``refit=False``.
For multi-metric evaluation, this attribute is present only if
``refit`` is specified.
See ``refit`` parameter for more information on allowed values.
best_score_ : float
Mean cross-validated score of the best_estimator.
For multi-metric evaluation, this is not available if ``refit`` is
``False``. See ``refit`` parameter for more information.
best_params_ : dict
Parameter setting that gave the best results on the hold out data.
For multi-metric evaluation, this is not available if ``refit`` is
``False``. See ``refit`` parameter for more information.
best_index_ : int
The index (of the ``cv_results_`` arrays) which corresponds to the best
candidate parameter setting.
The dict at ``search.cv_results_['params'][search.best_index_]`` gives
the parameter setting for the best model, that gives the highest
mean score (``search.best_score_``).
For multi-metric evaluation, this is not available if ``refit`` is
``False``. See ``refit`` parameter for more information.
scorer_ : function or a dict
Scorer function used on the held out data to choose the best
parameters for the model.
For multi-metric evaluation, this attribute holds the validated
``scoring`` dict which maps the scorer key to the scorer callable.
n_splits_ : int
The number of cross-validation splits (folds/iterations).
"""
def __init__(self, estimator, param_distributions, n_iter=10, scoring=None,
cv=None, refit=True, random_state=None):
super().__init__(estimator=estimator, scoring=scoring, cv=cv,
refit=refit)
self.param_distributions = param_distributions
self.n_iter = n_iter
self.random_state = random_state
def _run_search(self, evaluate_candidates):
"""Search n_iter candidates from param_distributions"""
ps = ParameterSampler(self.param_distributions, self.n_iter,
random_state=self.random_state)
evaluate_candidates(ps)
| [
1,
529,
12443,
29918,
303,
1503,
29958,
29896,
29900,
29899,
29896,
29900,
29900,
13,
3166,
25638,
1053,
16417,
29892,
9846,
5696,
13,
3166,
16250,
1053,
2322,
8977,
13,
3166,
16250,
29889,
10736,
1053,
922,
3910,
13,
3166,
2090,
312,
8789,
1053,
7687,
13,
3166,
4256,
8504,
1053,
3234,
13,
13,
5215,
12655,
408,
7442,
13,
3166,
11451,
510,
567,
29879,
29889,
2754,
29889,
2754,
1053,
419,
567,
29879,
29918,
10685,
29918,
265,
13,
3166,
4560,
2272,
29889,
16202,
1053,
7115,
1272,
13,
3166,
2071,
19668,
1053,
17432,
13,
3166,
2071,
19668,
29889,
4299,
29918,
21731,
1053,
24953,
5756,
29892,
24953,
22966,
20069,
13,
3166,
12655,
29889,
655,
1053,
341,
1278,
287,
2588,
13,
13,
3166,
766,
1982,
29889,
4299,
29918,
21731,
3032,
5451,
1053,
10115,
29918,
11023,
13,
3166,
766,
1982,
29889,
4299,
29918,
21731,
3032,
18157,
1053,
1423,
29918,
1557,
9386,
29892,
6216,
29918,
392,
29918,
13628,
29892,
320,
13,
1678,
12725,
29918,
13628,
29892,
20431,
29918,
13628,
29918,
8977,
29879,
13,
13,
13,
1990,
7399,
7974,
15633,
29898,
19658,
1125,
13,
1678,
9995,
9118,
2967,
770,
363,
11266,
3443,
2740,
411,
4891,
29899,
18157,
1213,
15945,
13,
13,
1678,
822,
4770,
2344,
12035,
1311,
29892,
4844,
1061,
29892,
26654,
29922,
8516,
29892,
13850,
29922,
8516,
29892,
2143,
277,
29922,
5574,
1125,
13,
4706,
1583,
29889,
342,
326,
1061,
353,
4844,
1061,
13,
4706,
1583,
29889,
1557,
8253,
353,
26654,
13,
4706,
1583,
29889,
11023,
353,
13850,
13,
4706,
1583,
29889,
999,
277,
353,
2143,
277,
13,
13,
1678,
732,
16595,
5696,
13,
1678,
822,
903,
3389,
29918,
4478,
29898,
1311,
29892,
14707,
29918,
29883,
5380,
1078,
1125,
13,
4706,
9995,
9118,
1158,
304,
2189,
278,
2740,
29889,
450,
3443,
13,
4706,
421,
24219,
403,
29918,
29883,
5380,
1078,
29952,
338,
263,
740,
393,
6161,
1078,
263,
24953,
5756,
472,
263,
13,
4706,
931,
9995,
13,
4706,
1209,
13,
13,
1678,
822,
6216,
29898,
1311,
29892,
921,
29892,
343,
29922,
8516,
29892,
3579,
9202,
29918,
7529,
1125,
13,
4706,
9995,
6558,
6216,
411,
599,
6166,
310,
4128,
29889,
13,
13,
4706,
12662,
2699,
13,
4706,
448,
1378,
29899,
13,
4706,
921,
584,
18031,
29899,
2378,
13,
9651,
26101,
848,
11916,
29889,
13,
4706,
343,
584,
18031,
29899,
2378,
29892,
13136,
313,
4381,
353,
6213,
29897,
13,
9651,
26101,
848,
11073,
470,
1819,
29889,
13,
4706,
3579,
9202,
29918,
7529,
584,
9657,
310,
1347,
1599,
1203,
13,
9651,
12662,
2699,
4502,
304,
278,
4954,
9202,
16159,
1158,
310,
278,
4844,
1061,
13,
4706,
9995,
13,
4706,
4844,
1061,
353,
1583,
29889,
342,
326,
1061,
13,
4706,
13850,
353,
10115,
29918,
11023,
29898,
1311,
29889,
11023,
29897,
13,
13,
4706,
885,
272,
414,
29892,
2143,
277,
29918,
16414,
353,
1583,
3032,
262,
571,
29918,
1557,
272,
414,
580,
13,
13,
4706,
2967,
29918,
342,
326,
1061,
353,
17432,
29898,
342,
326,
1061,
29897,
13,
13,
4706,
302,
29918,
23579,
1169,
353,
6213,
13,
4706,
599,
29918,
29883,
5380,
403,
29918,
7529,
353,
5159,
13,
4706,
599,
29918,
449,
353,
5159,
13,
13,
4706,
822,
14707,
29918,
29883,
5380,
1078,
29898,
29883,
5380,
403,
29918,
7529,
1125,
13,
9651,
9995,
29923,
4387,
403,
777,
4128,
15945,
29908,
13,
9651,
14020,
29918,
7529,
353,
1051,
29898,
29883,
5380,
403,
29918,
7529,
29897,
13,
13,
9651,
714,
353,
518,
9202,
29918,
392,
29918,
13628,
29898,
16513,
29898,
3188,
29918,
342,
326,
1061,
511,
7945,
29892,
8845,
29892,
13,
462,
462,
885,
9386,
29922,
1557,
272,
414,
29892,
4128,
29922,
16744,
29892,
13,
462,
462,
6216,
29918,
7529,
29922,
9202,
29918,
7529,
29897,
13,
462,
259,
363,
4128,
29892,
313,
14968,
29892,
8845,
29897,
13,
462,
259,
297,
3234,
29898,
29883,
5380,
403,
29918,
7529,
29892,
13850,
29889,
5451,
29898,
29916,
29892,
343,
28166,
13,
13,
9651,
1661,
2997,
302,
29918,
23579,
1169,
13,
9651,
302,
29918,
23579,
1169,
353,
13850,
29889,
657,
29918,
29876,
29918,
23579,
1169,
580,
13,
13,
9651,
599,
29918,
29883,
5380,
403,
29918,
7529,
29889,
21843,
29898,
29883,
5380,
403,
29918,
7529,
29897,
13,
9651,
599,
29918,
449,
29889,
21843,
29898,
449,
29897,
13,
13,
4706,
1583,
3032,
3389,
29918,
4478,
29898,
24219,
403,
29918,
29883,
5380,
1078,
29897,
13,
13,
4706,
363,
8636,
29918,
2914,
297,
599,
29918,
449,
29901,
13,
9651,
19435,
353,
8636,
29918,
2914,
29961,
29900,
29962,
13,
9651,
363,
885,
9386,
29918,
978,
29892,
8158,
297,
19435,
29889,
7076,
7295,
13,
18884,
8158,
353,
419,
567,
29879,
29918,
10685,
29918,
265,
29898,
13628,
29897,
13,
18884,
19435,
29961,
1557,
9386,
29918,
978,
29962,
353,
12725,
29918,
13628,
29898,
13628,
29892,
885,
9386,
29918,
978,
29897,
13,
13,
4706,
2582,
353,
1583,
3032,
4830,
29918,
9902,
29898,
497,
29918,
29883,
5380,
403,
29918,
7529,
29892,
885,
272,
414,
29892,
13,
462,
462,
539,
302,
29918,
23579,
1169,
29892,
599,
29918,
449,
29897,
13,
13,
4706,
396,
1152,
2473,
29899,
16414,
17983,
29892,
3787,
278,
1900,
29918,
2248,
3383,
1900,
29918,
7529,
29918,
322,
13,
4706,
396,
1900,
29918,
13628,
29918,
565,
29888,
2143,
277,
338,
697,
310,
278,
885,
9386,
2983,
13,
4706,
396,
512,
2323,
12714,
17983,
29892,
2143,
277,
29918,
16414,
338,
376,
13628,
29908,
13,
4706,
565,
1583,
29889,
999,
277,
470,
451,
1583,
29889,
4713,
17528,
2200,
29918,
29901,
13,
9651,
396,
960,
1246,
519,
29892,
2143,
277,
338,
3806,
304,
736,
278,
2380,
310,
278,
1900,
13,
9651,
396,
3443,
731,
29889,
13,
9651,
565,
1246,
519,
29898,
1311,
29889,
999,
277,
1125,
13,
18884,
1583,
29889,
13318,
29918,
2248,
29918,
353,
1583,
29889,
999,
277,
29898,
9902,
29897,
13,
18884,
565,
451,
338,
8758,
29898,
1311,
29889,
13318,
29918,
2248,
3383,
313,
524,
29892,
7442,
29889,
16031,
22164,
13,
462,
1678,
12020,
20948,
877,
13318,
29918,
2248,
29918,
4133,
338,
451,
385,
6043,
1495,
13,
18884,
565,
313,
1311,
29889,
13318,
29918,
2248,
29918,
529,
29871,
29900,
470,
13,
462,
4706,
1583,
29889,
13318,
29918,
2248,
29918,
6736,
7431,
29898,
9902,
3366,
7529,
3108,
22164,
13,
462,
1678,
12020,
11374,
2392,
877,
13318,
29918,
2248,
29918,
2380,
714,
310,
3464,
1495,
13,
9651,
1683,
29901,
13,
18884,
1583,
29889,
13318,
29918,
2248,
29918,
353,
2582,
3366,
10003,
29918,
1688,
29918,
29995,
29879,
29908,
13,
462,
462,
965,
1273,
2143,
277,
29918,
16414,
1822,
1191,
1195,
580,
13,
18884,
1583,
29889,
13318,
29918,
13628,
29918,
353,
2582,
3366,
12676,
29918,
1688,
29918,
29995,
29879,
29908,
1273,
2143,
277,
29918,
16414,
3816,
13,
462,
1678,
1583,
29889,
13318,
29918,
2248,
29918,
29962,
13,
9651,
1583,
29889,
13318,
29918,
7529,
29918,
353,
2582,
3366,
7529,
3108,
29961,
1311,
29889,
13318,
29918,
2248,
29918,
29962,
13,
13,
4706,
565,
1583,
29889,
999,
277,
29901,
13,
9651,
1583,
29889,
13318,
29918,
342,
326,
1061,
29918,
353,
17432,
29898,
3188,
29918,
342,
326,
1061,
467,
842,
29918,
7529,
29898,
13,
18884,
3579,
1311,
29889,
13318,
29918,
7529,
19925,
13,
9651,
1583,
29889,
13318,
29918,
342,
326,
1061,
5396,
9202,
29898,
29916,
29892,
343,
29892,
3579,
9202,
29918,
7529,
29897,
13,
13,
4706,
396,
14491,
278,
871,
885,
9386,
451,
408,
263,
9657,
363,
2323,
12714,
17983,
13,
4706,
1583,
29889,
1557,
9386,
29918,
353,
885,
272,
414,
565,
1583,
29889,
4713,
17528,
2200,
29918,
1683,
885,
272,
414,
1839,
13628,
2033,
13,
13,
4706,
1583,
29889,
11023,
29918,
9902,
29918,
353,
2582,
13,
4706,
1583,
29889,
29876,
29918,
23579,
1169,
29918,
353,
302,
29918,
23579,
1169,
13,
13,
4706,
736,
1583,
13,
13,
1678,
732,
7959,
5696,
13,
1678,
822,
903,
4830,
29918,
9902,
29898,
29883,
5380,
403,
29918,
7529,
29892,
885,
272,
414,
29892,
302,
29918,
23579,
1169,
29892,
714,
1125,
13,
4706,
302,
29918,
29883,
5380,
1078,
353,
7431,
29898,
29883,
5380,
403,
29918,
7529,
29897,
13,
13,
4706,
313,
1688,
29918,
13628,
29918,
8977,
29879,
29892,
29897,
353,
14319,
10456,
449,
29897,
13,
13,
4706,
1243,
29918,
1557,
2361,
353,
20431,
29918,
13628,
29918,
8977,
29879,
29898,
1688,
29918,
13628,
29918,
8977,
29879,
29897,
13,
13,
4706,
2582,
353,
6571,
13,
13,
4706,
822,
903,
8899,
29898,
1989,
29918,
978,
29892,
1409,
29892,
8536,
1169,
29922,
8824,
29892,
7115,
29922,
8824,
1125,
13,
9651,
9995,
29909,
2319,
16876,
304,
3787,
278,
19435,
29914,
3706,
304,
278,
13850,
29918,
9902,
29918,
15945,
29908,
13,
9651,
1409,
353,
7442,
29889,
2378,
29898,
2378,
29892,
26688,
29922,
9302,
29889,
7411,
29953,
29946,
467,
690,
14443,
29898,
29876,
29918,
29883,
5380,
1078,
29892,
13,
462,
462,
462,
795,
302,
29918,
23579,
1169,
29897,
13,
9651,
565,
8536,
1169,
29901,
13,
18884,
363,
6219,
29918,
29875,
297,
3464,
29898,
29876,
29918,
23579,
1169,
1125,
13,
462,
1678,
396,
10783,
267,
18424,
304,
10551,
278,
2582,
13,
462,
1678,
2582,
3366,
5451,
29995,
29881,
29918,
29995,
29879,
29908,
13,
462,
9651,
1273,
313,
5451,
29918,
29875,
29892,
1820,
29918,
978,
4638,
353,
1409,
7503,
29892,
6219,
29918,
29875,
29962,
13,
13,
9651,
1409,
29918,
1004,
550,
353,
7442,
29889,
12676,
29898,
2378,
29892,
9685,
29922,
29896,
29897,
13,
9651,
2582,
1839,
12676,
29918,
29995,
29879,
29915,
1273,
1820,
29918,
978,
29962,
353,
1409,
29918,
1004,
550,
13,
9651,
1409,
29918,
4172,
29879,
353,
7442,
29889,
4172,
29898,
2378,
29892,
9685,
29922,
29896,
29897,
13,
9651,
2582,
1839,
4172,
29918,
29995,
29879,
29915,
1273,
1820,
29918,
978,
29962,
353,
1409,
29918,
4172,
29879,
13,
13,
9651,
565,
7115,
29901,
13,
18884,
2582,
3366,
10003,
29918,
29995,
29879,
29908,
1273,
1820,
29918,
978,
29962,
353,
7442,
29889,
294,
2378,
29898,
13,
462,
1678,
7115,
1272,
6278,
2378,
29918,
1004,
550,
29892,
1158,
2433,
1195,
5477,
26688,
29922,
9302,
29889,
524,
29941,
29906,
29897,
13,
13,
4706,
396,
4803,
697,
341,
1278,
287,
2588,
322,
11105,
599,
278,
7600,
988,
278,
1828,
338,
451,
13,
4706,
396,
22903,
363,
393,
14020,
29889,
4803,
2322,
8977,
408,
1269,
14020,
1122,
13,
4706,
396,
451,
1712,
599,
278,
8636,
13,
4706,
1828,
29918,
9902,
353,
2322,
8977,
29898,
3846,
29898,
19832,
287,
2588,
29892,
13,
462,
462,
9651,
7442,
29889,
6310,
29898,
29876,
29918,
29883,
5380,
1078,
29892,
10353,
13,
462,
462,
9651,
11105,
29922,
5574,
29892,
13,
462,
462,
9651,
26688,
29922,
3318,
876,
13,
4706,
363,
23794,
29918,
29875,
29892,
8636,
297,
26985,
29898,
29883,
5380,
403,
29918,
7529,
1125,
13,
9651,
363,
1024,
29892,
995,
297,
8636,
29889,
7076,
7295,
13,
18884,
396,
530,
599,
11105,
287,
4069,
1409,
4947,
2825,
363,
278,
1820,
13,
18884,
396,
10248,
3207,
29918,
29995,
29879,
29908,
1273,
1024,
29952,
472,
278,
937,
27170,
310,
421,
978,
1412,
13,
18884,
396,
21605,
278,
995,
472,
385,
2380,
884,
443,
13168,
29879,
393,
2380,
13,
18884,
1828,
29918,
9902,
3366,
3207,
29918,
29995,
29879,
29908,
1273,
1024,
3816,
29883,
392,
29918,
29875,
29962,
353,
995,
13,
13,
4706,
2582,
29889,
5504,
29898,
3207,
29918,
9902,
29897,
13,
4706,
396,
14491,
263,
1051,
310,
1828,
9657,
29879,
472,
278,
1820,
525,
7529,
29915,
13,
4706,
2582,
1839,
7529,
2033,
353,
14020,
29918,
7529,
13,
13,
4706,
363,
885,
9386,
29918,
978,
297,
885,
272,
414,
29889,
8149,
7295,
13,
9651,
903,
8899,
877,
1688,
29918,
29995,
29879,
29915,
1273,
885,
9386,
29918,
978,
29892,
1243,
29918,
1557,
2361,
29961,
1557,
9386,
29918,
978,
1402,
13,
462,
259,
8536,
1169,
29922,
5574,
29892,
7115,
29922,
5574,
29897,
13,
13,
4706,
736,
2582,
13,
13,
1678,
822,
903,
262,
571,
29918,
1557,
272,
414,
29898,
1311,
1125,
13,
4706,
4844,
1061,
353,
1583,
29889,
342,
326,
1061,
13,
4706,
26654,
353,
1583,
29889,
1557,
8253,
13,
4706,
2143,
277,
353,
1583,
29889,
999,
277,
13,
4706,
565,
26654,
338,
6213,
470,
1246,
519,
29898,
1557,
8253,
1125,
13,
9651,
885,
272,
414,
353,
8853,
13628,
1115,
1423,
29918,
1557,
9386,
29898,
342,
326,
1061,
29892,
26654,
2915,
13,
9651,
2143,
277,
29918,
16414,
353,
525,
13628,
29915,
13,
9651,
1583,
29889,
4713,
17528,
2200,
29918,
353,
7700,
13,
4706,
25342,
338,
8758,
29898,
1557,
8253,
29892,
9657,
1125,
13,
9651,
885,
272,
414,
353,
426,
1989,
29901,
1423,
29918,
1557,
9386,
29898,
342,
326,
1061,
29892,
885,
9386,
29897,
13,
462,
539,
363,
1820,
29892,
885,
9386,
297,
26654,
29889,
7076,
28296,
13,
9651,
565,
2143,
277,
338,
451,
7700,
322,
313,
13,
462,
1678,
451,
338,
8758,
29898,
999,
277,
29892,
851,
29897,
470,
13,
462,
1678,
2143,
277,
451,
297,
885,
272,
414,
29897,
322,
451,
1246,
519,
29898,
999,
277,
1125,
13,
18884,
12020,
7865,
2392,
703,
2831,
2473,
29899,
16414,
26654,
29892,
278,
3443,
376,
13,
462,
462,
376,
999,
277,
1818,
367,
731,
304,
263,
885,
9386,
1820,
470,
263,
376,
13,
462,
462,
376,
4804,
519,
304,
2143,
277,
385,
4844,
1061,
411,
278,
376,
13,
462,
462,
376,
13318,
3443,
4444,
373,
278,
3353,
376,
13,
462,
462,
376,
1272,
322,
1207,
278,
1900,
24563,
8393,
376,
13,
462,
462,
376,
16515,
363,
393,
12714,
29889,
960,
445,
338,
376,
13,
462,
462,
376,
1333,
4312,
29892,
2143,
277,
881,
367,
731,
304,
376,
13,
462,
462,
376,
8824,
9479,
29889,
1273,
29878,
471,
4502,
1213,
13,
462,
462,
1273,
2143,
277,
29897,
13,
9651,
2143,
277,
29918,
16414,
353,
2143,
277,
13,
9651,
1583,
29889,
4713,
17528,
2200,
29918,
353,
5852,
13,
4706,
1683,
29901,
13,
9651,
12020,
7865,
2392,
877,
1557,
8253,
338,
451,
2854,
1495,
13,
13,
4706,
736,
885,
272,
414,
29892,
2143,
277,
29918,
16414,
13,
13,
13,
1990,
11657,
7974,
15633,
29898,
5160,
7974,
15633,
1125,
13,
1678,
9995,
1252,
2350,
504,
573,
2740,
975,
6790,
3443,
1819,
363,
385,
4844,
1061,
29889,
13,
13,
1678,
11657,
7974,
15633,
10703,
263,
376,
9202,
29908,
322,
263,
376,
13628,
29908,
1158,
29889,
13,
13,
1678,
450,
4128,
310,
278,
4844,
1061,
1304,
304,
3394,
1438,
3519,
526,
27545,
13,
1678,
491,
4891,
29899,
3084,
630,
6856,
29899,
4478,
975,
263,
3443,
6856,
29889,
13,
13,
1678,
12662,
2699,
13,
1678,
448,
1378,
29899,
13,
1678,
4844,
1061,
584,
4844,
1061,
1203,
29889,
13,
4706,
910,
338,
12023,
304,
2334,
278,
4560,
7354,
29899,
19668,
4844,
1061,
5067,
29889,
13,
4706,
20370,
4844,
1061,
4225,
304,
3867,
263,
4954,
13628,
16159,
740,
29892,
13,
4706,
470,
4954,
1557,
8253,
16159,
1818,
367,
4502,
29889,
13,
1678,
1828,
29918,
7720,
584,
9657,
470,
1051,
310,
21503,
4314,
13,
4706,
13343,
411,
4128,
2983,
313,
1807,
29897,
408,
6611,
322,
8857,
310,
13,
4706,
3443,
6055,
304,
1018,
408,
1819,
29892,
470,
263,
1051,
310,
1316,
13,
4706,
21503,
4314,
29892,
297,
607,
1206,
278,
867,
4841,
805,
11310,
491,
1269,
8600,
13,
4706,
297,
278,
1051,
526,
3902,
4395,
29889,
910,
28936,
11975,
975,
738,
5665,
13,
4706,
310,
3443,
6055,
29889,
13,
1678,
26654,
584,
1246,
519,
29892,
9657,
470,
6213,
29892,
13136,
313,
4381,
29922,
8516,
29897,
13,
4706,
319,
1246,
519,
304,
14707,
278,
27303,
373,
278,
1243,
731,
29889,
739,
881,
2125,
13,
308,
29941,
4128,
29892,
4844,
1061,
29892,
921,
322,
343,
29892,
322,
736,
263,
8158,
313,
9812,
261,
6593,
13,
4706,
2253,
467,
1152,
6161,
1218,
2999,
21556,
29892,
2367,
263,
9657,
411,
2983,
408,
13,
4706,
6611,
322,
1246,
1849,
408,
1819,
29889,
960,
6213,
29892,
278,
4844,
1061,
29915,
29879,
8158,
1158,
338,
13,
4706,
1304,
29889,
13,
1678,
13850,
584,
938,
470,
13850,
15299,
29892,
13136,
313,
4381,
29922,
8516,
29897,
13,
4706,
5953,
837,
1475,
278,
4891,
29899,
18157,
24368,
13705,
29889,
13,
4706,
20049,
10970,
363,
13850,
526,
29901,
13,
4706,
448,
6213,
29892,
304,
671,
278,
2322,
29871,
29945,
29899,
8771,
4891,
8845,
29892,
13,
4706,
448,
6043,
29892,
304,
6084,
278,
1353,
310,
900,
6289,
297,
263,
421,
29968,
29943,
1025,
1673,
13,
4706,
448,
2888,
13850,
15299,
29889,
13,
1678,
2143,
277,
584,
7223,
29892,
1347,
29892,
470,
1246,
519,
29892,
13136,
313,
4381,
29922,
5574,
29897,
13,
4706,
830,
9202,
385,
4844,
1061,
773,
278,
1900,
1476,
4128,
373,
278,
3353,
13,
4706,
8783,
29889,
13,
4706,
1152,
2999,
12714,
17983,
29892,
445,
4225,
304,
367,
263,
1347,
972,
11427,
278,
13,
4706,
885,
9386,
393,
723,
367,
1304,
304,
1284,
278,
1900,
4128,
363,
2143,
5367,
13,
4706,
278,
4844,
1061,
472,
278,
1095,
29889,
13,
4706,
6804,
727,
526,
2050,
800,
916,
1135,
7472,
8158,
297,
13,
4706,
23906,
263,
1900,
4844,
1061,
29892,
4954,
999,
277,
16159,
508,
367,
731,
304,
263,
740,
607,
13,
4706,
3639,
278,
4629,
4954,
13318,
29918,
2248,
29918,
16159,
2183,
4954,
11023,
29918,
9902,
29918,
29952,
1412,
13,
4706,
450,
2143,
4430,
4844,
1061,
338,
1754,
3625,
472,
278,
4954,
13318,
29918,
342,
326,
1061,
29918,
16159,
13,
4706,
5352,
322,
3635,
1169,
773,
4954,
27711,
16159,
4153,
373,
445,
13,
4706,
4954,
5756,
7974,
15633,
16159,
2777,
29889,
13,
4706,
3115,
363,
2999,
12714,
17983,
29892,
278,
8393,
4954,
13318,
29918,
2248,
29918,
29952,
1673,
13,
4706,
4954,
13318,
29918,
13628,
29918,
16159,
322,
4954,
13318,
29918,
7529,
29918,
16159,
674,
871,
367,
3625,
565,
13,
4706,
4954,
999,
277,
16159,
338,
731,
322,
599,
310,
963,
674,
367,
10087,
281,
29889,
29878,
29889,
29873,
445,
2702,
13,
4706,
885,
9386,
29889,
4954,
13318,
29918,
13628,
29918,
16159,
338,
451,
4133,
565,
2143,
277,
338,
1246,
519,
29889,
13,
4706,
2823,
4954,
1557,
8253,
16159,
3443,
304,
1073,
901,
1048,
2999,
12714,
13,
4706,
17983,
29889,
13,
13,
1678,
1222,
9422,
13,
1678,
448,
26589,
13,
1678,
8653,
1053,
766,
1982,
408,
18031,
13,
1678,
8653,
515,
766,
1982,
29889,
4299,
29918,
21731,
1053,
11657,
7974,
15633,
13,
1678,
8653,
515,
766,
1982,
29889,
1990,
2450,
1053,
16968,
2831,
342,
2385,
3709,
13,
1678,
8653,
1053,
12655,
408,
7442,
13,
1678,
8653,
515,
2071,
19668,
1053,
20035,
13,
1678,
8653,
13,
1678,
8653,
13,
1678,
8653,
565,
4770,
978,
1649,
1275,
525,
1649,
3396,
1649,
2396,
13,
1678,
8653,
268,
921,
29918,
9302,
29892,
343,
29918,
9302,
353,
20035,
29889,
1359,
29918,
381,
275,
29898,
2457,
29918,
29990,
29918,
29891,
29922,
5574,
29897,
13,
1678,
8653,
268,
921,
353,
18031,
29889,
2378,
29898,
29916,
29918,
9302,
29892,
313,
29941,
29900,
29892,
29871,
29946,
876,
13,
1678,
8653,
268,
343,
353,
18031,
29889,
2378,
29898,
29891,
29918,
9302,
7503,
29892,
7442,
29889,
1482,
8990,
1402,
313,
29941,
29900,
29892,
29871,
29896,
876,
13,
1678,
8653,
268,
1828,
29918,
7720,
353,
11117,
29876,
29918,
342,
326,
4097,
2396,
313,
29906,
29892,
29871,
29946,
511,
525,
3317,
29918,
19488,
2396,
3464,
29898,
29941,
29892,
29871,
29945,
2915,
13,
1678,
8653,
268,
364,
29888,
353,
16968,
2831,
342,
2385,
3709,
580,
13,
1678,
8653,
268,
2740,
261,
353,
11657,
7974,
15633,
29898,
9600,
29892,
1828,
29918,
7720,
29897,
13,
1678,
8653,
268,
2740,
261,
29889,
9202,
29898,
29916,
29892,
343,
29897,
13,
1678,
8653,
268,
2740,
261,
29889,
11023,
29918,
9902,
29918,
13,
13,
1678,
6212,
5026,
13,
1678,
448,
1378,
29899,
13,
1678,
13850,
29918,
9902,
29918,
584,
9657,
310,
12655,
313,
13168,
287,
29897,
29871,
299,
2378,
29879,
13,
4706,
319,
9657,
411,
6611,
408,
1897,
9066,
322,
1819,
408,
4341,
29892,
393,
508,
367,
13,
4706,
19673,
964,
263,
11701,
4954,
17271,
29952,
1412,
13,
4706,
1152,
2777,
278,
2400,
2183,
1591,
29901,
13,
13,
4706,
718,
9072,
29974,
9072,
29974,
2683,
11793,
12918,
28490,
13,
4706,
891,
3207,
29918,
17460,
29989,
3207,
29918,
12163,
929,
29989,
5451,
29900,
29918,
1688,
29918,
13628,
29989,
856,
29989,
10003,
29918,
29873,
856,
29989,
13,
4706,
718,
4936,
2751,
29974,
4936,
2751,
29974,
9166,
29922,
29974,
25512,
29974,
4936,
29922,
29974,
13,
4706,
891,
29871,
525,
22678,
29915,
1678,
891,
539,
29906,
268,
891,
4706,
29900,
29889,
29947,
29900,
418,
891,
856,
29989,
268,
29906,
1678,
891,
13,
4706,
718,
9072,
29974,
9072,
29974,
2683,
11793,
12918,
28490,
13,
4706,
891,
29871,
525,
22678,
29915,
1678,
891,
539,
29941,
268,
891,
4706,
29900,
29889,
29955,
29900,
418,
891,
856,
29989,
268,
29946,
1678,
891,
13,
4706,
718,
9072,
29974,
9072,
29974,
2683,
11793,
12918,
28490,
13,
4706,
891,
29871,
525,
29878,
1635,
29915,
268,
891,
268,
1192,
268,
891,
4706,
29900,
29889,
29947,
29900,
418,
891,
856,
29989,
268,
29941,
1678,
891,
13,
4706,
718,
9072,
29974,
9072,
29974,
2683,
11793,
12918,
28490,
13,
4706,
891,
29871,
525,
29878,
1635,
29915,
268,
891,
268,
1192,
268,
891,
4706,
29900,
29889,
29929,
29941,
418,
891,
856,
29989,
268,
29896,
1678,
891,
13,
4706,
718,
9072,
29974,
9072,
29974,
2683,
11793,
12918,
28490,
13,
13,
4706,
674,
367,
9875,
491,
263,
4954,
11023,
29918,
9902,
29918,
16159,
9657,
310,
1057,
13,
13,
9651,
426,
13,
9651,
525,
3207,
29918,
17460,
2396,
11105,
287,
29918,
2378,
29898,
1272,
353,
6024,
22678,
742,
525,
22678,
742,
525,
29878,
1635,
742,
525,
29878,
1635,
7464,
13,
462,
462,
308,
11105,
353,
518,
8824,
7700,
7700,
7700,
29962,
856,
511,
13,
9651,
525,
3207,
29918,
12163,
929,
2396,
11105,
287,
29918,
2378,
29898,
1272,
353,
518,
29906,
29889,
29900,
29871,
29941,
29889,
29900,
1192,
1192,
1402,
13,
462,
462,
308,
11105,
353,
518,
8824,
7700,
29871,
5852,
29871,
5852,
29962,
856,
511,
13,
9651,
525,
5451,
29900,
29918,
1688,
29918,
13628,
29915,
29871,
584,
518,
29900,
29889,
29947,
29900,
29892,
29871,
29900,
29889,
29955,
29900,
29892,
29871,
29900,
29889,
29947,
29900,
29892,
29871,
29900,
29889,
29929,
29941,
1402,
13,
9651,
525,
5451,
29896,
29918,
1688,
29918,
13628,
29915,
29871,
584,
518,
29900,
29889,
29947,
29906,
29892,
29871,
29900,
29889,
29945,
29900,
29892,
29871,
29900,
29889,
29953,
29947,
29892,
29871,
29900,
29889,
29955,
29947,
1402,
13,
9651,
525,
5451,
29906,
29918,
1688,
29918,
13628,
29915,
29871,
584,
518,
29900,
29889,
29955,
29929,
29892,
29871,
29900,
29889,
29945,
29945,
29892,
29871,
29900,
29889,
29955,
29896,
29892,
29871,
29900,
29889,
29929,
29941,
1402,
13,
9651,
2023,
13,
9651,
525,
12676,
29918,
1688,
29918,
13628,
29915,
1678,
584,
518,
29900,
29889,
29947,
29896,
29892,
29871,
29900,
29889,
29953,
29900,
29892,
29871,
29900,
29889,
29955,
29945,
29892,
29871,
29900,
29889,
29947,
29945,
1402,
13,
9651,
525,
4172,
29918,
1688,
29918,
13628,
29915,
268,
584,
518,
29900,
29889,
29900,
29896,
29892,
29871,
29900,
29889,
29896,
29900,
29892,
29871,
29900,
29889,
29900,
29945,
29892,
29871,
29900,
29889,
29900,
29947,
1402,
13,
9651,
525,
10003,
29918,
1688,
29918,
13628,
29915,
1678,
584,
518,
29906,
29892,
29871,
29946,
29892,
29871,
29941,
29892,
29871,
29896,
1402,
13,
9651,
525,
7529,
29915,
632,
584,
518,
10998,
17460,
2396,
525,
22678,
742,
525,
12163,
929,
2396,
29871,
29906,
1118,
2023,
1402,
13,
9651,
500,
13,
13,
4706,
6058,
2890,
29901,
13,
13,
4706,
450,
1820,
4954,
29915,
7529,
11120,
29952,
338,
1304,
304,
3787,
263,
1051,
310,
3443,
13,
4706,
6055,
9657,
29879,
363,
599,
278,
3443,
21669,
29889,
13,
13,
4706,
450,
4954,
12676,
29918,
9202,
29918,
2230,
29952,
1673,
4954,
4172,
29918,
9202,
29918,
2230,
29952,
1673,
4954,
12676,
29918,
13628,
29918,
2230,
16159,
322,
13,
4706,
4954,
4172,
29918,
13628,
29918,
2230,
16159,
526,
599,
297,
6923,
29889,
13,
13,
4706,
1152,
2473,
29899,
16414,
17983,
29892,
278,
19435,
363,
599,
278,
885,
272,
414,
526,
13,
4706,
3625,
297,
278,
4954,
11023,
29918,
9902,
29918,
16159,
9657,
472,
278,
6611,
17140,
411,
393,
13,
4706,
885,
9386,
29915,
29879,
1024,
6695,
29952,
15972,
29966,
1557,
9386,
29918,
978,
29958,
11120,
6348,
2012,
310,
4954,
15972,
13628,
11120,
29952,
4318,
13,
4706,
2038,
6702,
5451,
29900,
29918,
1688,
29918,
17990,
2459,
742,
525,
12676,
29918,
14968,
29918,
17990,
2459,
29915,
2992,
6250,
13,
13,
1678,
1900,
29918,
342,
326,
1061,
29918,
584,
4844,
1061,
470,
9657,
13,
4706,
2661,
326,
1061,
393,
471,
10434,
491,
278,
2740,
29892,
474,
29889,
29872,
29889,
4844,
1061,
13,
4706,
607,
4846,
9939,
8158,
313,
272,
19087,
6410,
565,
6790,
29897,
13,
4706,
373,
278,
2175,
714,
848,
29889,
2216,
3625,
565,
4954,
999,
277,
29922,
8824,
29952,
1412,
13,
4706,
2823,
4954,
999,
277,
16159,
3443,
363,
901,
2472,
373,
6068,
1819,
29889,
13,
1678,
1900,
29918,
13628,
29918,
584,
5785,
13,
4706,
16316,
4891,
29899,
3084,
630,
8158,
310,
278,
1900,
29918,
342,
326,
1061,
13,
4706,
1152,
2473,
29899,
16414,
17983,
29892,
445,
338,
2198,
871,
565,
4954,
999,
277,
16159,
338,
13,
4706,
6790,
29889,
13,
1678,
1900,
29918,
7529,
29918,
584,
9657,
13,
4706,
24953,
4444,
393,
4846,
278,
1900,
2582,
373,
278,
4808,
714,
848,
29889,
13,
4706,
1152,
2473,
29899,
16414,
17983,
29892,
445,
338,
2198,
871,
565,
4954,
999,
277,
16159,
338,
13,
4706,
6790,
29889,
13,
1678,
1900,
29918,
2248,
29918,
584,
938,
13,
4706,
450,
2380,
313,
974,
278,
4954,
11023,
29918,
9902,
29918,
16159,
7049,
29897,
607,
16161,
304,
278,
1900,
13,
4706,
14020,
3443,
4444,
29889,
13,
4706,
450,
9657,
472,
4954,
4478,
29889,
11023,
29918,
9902,
29918,
1839,
7529,
2033,
29961,
4478,
29889,
13318,
29918,
2248,
29918,
7961,
29952,
4076,
13,
4706,
278,
3443,
4444,
363,
278,
1900,
1904,
29892,
393,
4076,
278,
9939,
13,
4706,
2099,
8158,
6695,
29952,
4478,
29889,
13318,
29918,
13628,
29918,
29952,
12913,
13,
4706,
1152,
2473,
29899,
16414,
17983,
29892,
445,
338,
2198,
871,
565,
4954,
999,
277,
16159,
338,
13,
4706,
6790,
29889,
13,
1678,
885,
9386,
29918,
584,
740,
470,
263,
9657,
13,
4706,
2522,
9386,
740,
1304,
373,
278,
4934,
714,
848,
304,
6755,
278,
1900,
13,
4706,
4128,
363,
278,
1904,
29889,
13,
4706,
1152,
2473,
29899,
16414,
17983,
29892,
445,
5352,
8640,
278,
2854,
630,
13,
4706,
4954,
1557,
8253,
16159,
9657,
607,
11053,
278,
885,
9386,
1820,
304,
278,
885,
9386,
1246,
519,
29889,
13,
1678,
302,
29918,
23579,
1169,
29918,
584,
938,
13,
4706,
450,
1353,
310,
4891,
29899,
18157,
8536,
1169,
313,
29888,
3361,
29914,
1524,
800,
467,
13,
1678,
9995,
13,
13,
1678,
822,
4770,
2344,
12035,
1311,
29892,
4844,
1061,
29892,
1828,
29918,
7720,
29892,
26654,
29922,
8516,
29892,
13850,
29922,
8516,
29892,
13,
462,
2143,
277,
29922,
5574,
1125,
13,
4706,
2428,
2141,
1649,
2344,
12035,
342,
326,
1061,
29922,
342,
326,
1061,
29892,
26654,
29922,
1557,
8253,
29892,
13850,
29922,
11023,
29892,
13,
462,
308,
2143,
277,
29922,
999,
277,
29897,
13,
4706,
1583,
29889,
3207,
29918,
7720,
353,
1828,
29918,
7720,
13,
4706,
1583,
3032,
3198,
29918,
3207,
29918,
7720,
29898,
3207,
29918,
7720,
29897,
13,
13,
1678,
822,
903,
3389,
29918,
4478,
29898,
1311,
29892,
14707,
29918,
29883,
5380,
1078,
1125,
13,
4706,
14707,
29918,
29883,
5380,
1078,
29898,
9329,
5756,
29898,
1311,
29889,
3207,
29918,
7720,
876,
13,
13,
1678,
732,
7959,
5696,
13,
1678,
822,
903,
3198,
29918,
3207,
29918,
7720,
29898,
3207,
29918,
7720,
1125,
13,
4706,
565,
756,
5552,
29898,
3207,
29918,
7720,
29892,
525,
7076,
29374,
13,
9651,
1828,
29918,
7720,
353,
518,
3207,
29918,
7720,
29962,
13,
13,
4706,
363,
282,
297,
1828,
29918,
7720,
29901,
13,
9651,
363,
1024,
29892,
325,
297,
282,
29889,
7076,
7295,
13,
18884,
565,
338,
8758,
29898,
29894,
29892,
7442,
29889,
299,
2378,
29897,
322,
325,
29889,
299,
326,
1405,
29871,
29896,
29901,
13,
462,
1678,
12020,
7865,
2392,
703,
9329,
1409,
881,
367,
376,
13,
462,
462,
268,
376,
650,
29899,
12531,
23157,
13,
13,
18884,
565,
313,
275,
8758,
29898,
29894,
29892,
851,
29897,
470,
13,
462,
4706,
451,
338,
8758,
29898,
29894,
29892,
313,
9302,
29889,
299,
2378,
29892,
922,
3910,
876,
1125,
13,
462,
1678,
12020,
7865,
2392,
29898,
13,
462,
4706,
376,
9329,
1819,
363,
3443,
21313,
29900,
1800,
817,
376,
13,
462,
4706,
376,
517,
367,
263,
5665,
313,
4187,
451,
263,
1347,
29897,
470,
29908,
13,
462,
4706,
376,
7442,
29889,
299,
2378,
1213,
29889,
4830,
29898,
978,
876,
13,
13,
18884,
565,
7431,
29898,
29894,
29897,
1275,
29871,
29900,
29901,
13,
462,
1678,
12020,
7865,
2392,
29898,
13,
462,
4706,
376,
9329,
1819,
363,
3443,
21313,
29900,
1800,
817,
376,
13,
462,
4706,
376,
517,
367,
263,
1661,
29899,
6310,
5665,
1213,
29889,
4830,
29898,
978,
876,
13,
13,
13,
1990,
16968,
1891,
7974,
15633,
29898,
5160,
7974,
15633,
1125,
13,
1678,
9995,
17875,
1891,
2740,
373,
11266,
4128,
29889,
13,
13,
1678,
16968,
1891,
7974,
15633,
10703,
263,
376,
9202,
29908,
322,
263,
376,
13628,
29908,
1158,
29889,
13,
13,
1678,
450,
4128,
310,
278,
4844,
1061,
1304,
304,
3394,
1438,
3519,
526,
27545,
13,
1678,
491,
4891,
29899,
3084,
630,
2740,
975,
3443,
6055,
29889,
13,
13,
1678,
512,
12814,
304,
11657,
7974,
15633,
29892,
451,
599,
3443,
1819,
526,
1898,
714,
29892,
541,
13,
1678,
3265,
263,
4343,
1353,
310,
3443,
6055,
338,
4559,
29881,
515,
278,
6790,
13,
1678,
18822,
29889,
450,
1353,
310,
3443,
6055,
393,
526,
1898,
338,
13,
1678,
2183,
491,
302,
29918,
1524,
29889,
13,
13,
1678,
960,
599,
4128,
526,
9132,
408,
263,
1051,
29892,
13,
1678,
23460,
1728,
16920,
338,
8560,
29889,
960,
472,
3203,
697,
3443,
13,
1678,
338,
2183,
408,
263,
4978,
29892,
23460,
411,
16920,
338,
1304,
29889,
13,
13,
1678,
12662,
2699,
13,
1678,
448,
1378,
29899,
13,
1678,
4844,
1061,
584,
4844,
1061,
1203,
29889,
13,
4706,
910,
338,
12023,
304,
2334,
278,
4560,
7354,
29899,
19668,
4844,
1061,
5067,
29889,
13,
4706,
20370,
4844,
1061,
4225,
304,
3867,
263,
4954,
13628,
16159,
740,
29892,
13,
4706,
470,
4954,
1557,
8253,
16159,
1818,
367,
4502,
29889,
13,
13,
1678,
1828,
29918,
27691,
29879,
584,
9657,
13,
4706,
13343,
411,
4128,
2983,
313,
1807,
29897,
408,
6611,
322,
18822,
13,
4706,
470,
8857,
310,
4128,
304,
1018,
29889,
17740,
29879,
1818,
3867,
263,
4954,
29878,
4270,
16159,
13,
4706,
1158,
363,
23460,
313,
14565,
408,
1906,
515,
4560,
2272,
29889,
16202,
29889,
27691,
29879,
467,
13,
4706,
960,
263,
1051,
338,
2183,
29892,
372,
338,
4559,
29881,
26018,
29889,
13,
13,
1678,
302,
29918,
1524,
584,
938,
29892,
13136,
313,
4381,
29922,
29896,
29900,
29897,
13,
4706,
9681,
310,
3443,
6055,
393,
526,
4559,
29881,
29889,
13,
13,
1678,
26654,
584,
1246,
519,
29892,
9657,
470,
6213,
29892,
13136,
313,
4381,
29922,
8516,
29897,
13,
4706,
319,
1246,
519,
304,
14707,
278,
27303,
373,
278,
1243,
731,
29889,
739,
881,
2125,
13,
308,
29941,
4128,
29892,
4844,
1061,
29892,
921,
322,
343,
29892,
322,
736,
263,
8158,
313,
9812,
261,
6593,
13,
4706,
2253,
467,
1152,
6161,
1218,
2999,
21556,
29892,
2367,
263,
9657,
411,
2983,
408,
13,
4706,
6611,
322,
1246,
1849,
408,
1819,
29889,
960,
6213,
29892,
278,
4844,
1061,
29915,
29879,
8158,
1158,
338,
13,
4706,
1304,
29889,
13,
13,
1678,
13850,
584,
938,
470,
13850,
15299,
29892,
13136,
313,
4381,
29922,
8516,
29897,
13,
4706,
5953,
837,
1475,
278,
4891,
29899,
18157,
24368,
13705,
29889,
13,
4706,
20049,
10970,
363,
13850,
526,
29901,
13,
4706,
448,
6213,
29892,
304,
671,
278,
2322,
29871,
29945,
29899,
8771,
4891,
8845,
29892,
13,
4706,
448,
6043,
29892,
304,
6084,
278,
1353,
310,
900,
6289,
297,
263,
421,
29968,
29943,
1025,
1673,
13,
4706,
448,
2888,
13850,
15299,
29889,
13,
13,
1678,
2143,
277,
584,
7223,
29892,
1347,
29892,
470,
1246,
519,
29892,
13136,
313,
4381,
29922,
5574,
29897,
13,
4706,
830,
9202,
385,
4844,
1061,
773,
278,
1900,
1476,
4128,
373,
278,
3353,
13,
4706,
8783,
29889,
13,
4706,
1152,
2999,
12714,
17983,
29892,
445,
4225,
304,
367,
263,
1347,
972,
11427,
278,
13,
4706,
885,
9386,
393,
723,
367,
1304,
304,
1284,
278,
1900,
4128,
363,
2143,
5367,
13,
4706,
278,
4844,
1061,
472,
278,
1095,
29889,
13,
4706,
6804,
727,
526,
2050,
800,
916,
1135,
7472,
8158,
297,
13,
4706,
23906,
263,
1900,
4844,
1061,
29892,
4954,
999,
277,
16159,
508,
367,
731,
304,
263,
740,
607,
13,
4706,
3639,
278,
4629,
4954,
13318,
29918,
2248,
29918,
16159,
2183,
4954,
11023,
29918,
9902,
29918,
29952,
1412,
13,
4706,
450,
2143,
4430,
4844,
1061,
338,
1754,
3625,
472,
278,
4954,
13318,
29918,
342,
326,
1061,
29918,
16159,
13,
4706,
5352,
322,
3635,
1169,
773,
4954,
27711,
16159,
4153,
373,
445,
13,
4706,
4954,
5756,
7974,
15633,
16159,
2777,
29889,
13,
4706,
3115,
363,
2999,
12714,
17983,
29892,
278,
8393,
4954,
13318,
29918,
2248,
29918,
29952,
1673,
13,
4706,
4954,
13318,
29918,
13628,
29918,
16159,
322,
4954,
13318,
29918,
7529,
29918,
16159,
674,
871,
367,
3625,
565,
13,
4706,
4954,
999,
277,
16159,
338,
731,
322,
599,
310,
963,
674,
367,
10087,
281,
29889,
29878,
29889,
29873,
445,
2702,
13,
4706,
885,
9386,
29889,
4954,
13318,
29918,
13628,
29918,
16159,
338,
451,
4133,
565,
2143,
277,
338,
1246,
519,
29889,
13,
4706,
2823,
4954,
1557,
8253,
16159,
3443,
304,
1073,
901,
1048,
2999,
12714,
13,
4706,
17983,
29889,
13,
13,
1678,
4036,
29918,
3859,
584,
938,
29892,
16968,
2792,
2777,
470,
6213,
29892,
13136,
29892,
2322,
29922,
8516,
13,
4706,
17646,
5333,
4036,
1353,
15299,
2106,
1304,
363,
4036,
23460,
310,
8636,
13,
4706,
297,
1828,
29918,
27691,
29879,
29889,
910,
338,
451,
4502,
304,
1269,
4844,
1061,
29889,
13,
4706,
960,
938,
29892,
4036,
29918,
3859,
338,
278,
16717,
1304,
491,
278,
4036,
1353,
15299,
29936,
13,
4706,
960,
16968,
2792,
2777,
29892,
4036,
29918,
3859,
338,
278,
4036,
1353,
15299,
29936,
13,
4706,
960,
6213,
29892,
278,
4036,
1353,
15299,
338,
278,
16968,
2792,
2777,
1304,
13,
4706,
491,
421,
9302,
29889,
8172,
1412,
13,
13,
1678,
1222,
9422,
13,
1678,
448,
26589,
13,
1678,
8653,
1053,
766,
1982,
408,
18031,
13,
1678,
8653,
515,
766,
1982,
29889,
4299,
29918,
21731,
1053,
16968,
1891,
7974,
15633,
13,
1678,
8653,
515,
766,
1982,
29889,
1990,
2450,
1053,
6960,
6332,
7597,
29924,
13,
1678,
8653,
1053,
12655,
408,
7442,
13,
1678,
8653,
1053,
4560,
2272,
29889,
16202,
408,
22663,
13,
1678,
8653,
515,
2071,
19668,
1053,
20035,
13,
1678,
8653,
13,
1678,
8653,
13,
1678,
8653,
565,
4770,
978,
1649,
1275,
525,
1649,
3396,
1649,
2396,
13,
1678,
8653,
268,
921,
29918,
9302,
29892,
343,
29918,
9302,
353,
20035,
29889,
1359,
29918,
381,
275,
29898,
2457,
29918,
29990,
29918,
29891,
29922,
5574,
29897,
13,
1678,
8653,
268,
396,
4721,
29899,
845,
3096,
1847,
3734,
363,
16874,
29924,
13,
1678,
8653,
268,
282,
353,
7442,
29889,
8172,
29889,
546,
6149,
362,
29898,
2435,
29898,
29916,
29918,
9302,
876,
13,
1678,
8653,
268,
921,
353,
18031,
29889,
2378,
29898,
29916,
29918,
9302,
29961,
29886,
1402,
313,
29941,
29900,
29892,
29871,
29946,
876,
13,
1678,
8653,
268,
343,
353,
18031,
29889,
2378,
3552,
29891,
29918,
9302,
29961,
29886,
29962,
1275,
29871,
29900,
29897,
7503,
29892,
7442,
29889,
1482,
8990,
1402,
313,
29941,
29900,
29892,
29871,
29896,
876,
13,
1678,
8653,
268,
1828,
29918,
27691,
29879,
353,
11117,
29883,
2396,
22663,
29889,
735,
1112,
29898,
7052,
29922,
29900,
29889,
29945,
511,
13,
1678,
8653,
462,
9651,
525,
4283,
2396,
22663,
29889,
735,
1112,
29898,
7052,
29922,
29896,
29900,
2915,
13,
1678,
8653,
268,
11799,
29885,
353,
6960,
6332,
7597,
29924,
580,
13,
1678,
8653,
268,
2740,
261,
353,
16968,
1891,
7974,
15633,
29898,
2395,
6925,
29892,
1828,
29918,
27691,
29879,
29892,
302,
29918,
1524,
29922,
29896,
29900,
29897,
13,
1678,
8653,
268,
2740,
261,
29889,
9202,
29898,
29916,
29892,
343,
29897,
13,
1678,
8653,
268,
2740,
261,
29889,
11023,
29918,
9902,
29918,
13,
13,
1678,
6212,
5026,
13,
1678,
448,
1378,
29899,
13,
1678,
13850,
29918,
9902,
29918,
584,
9657,
310,
12655,
313,
13168,
287,
29897,
29871,
299,
2378,
29879,
13,
4706,
319,
9657,
411,
6611,
408,
1897,
9066,
322,
1819,
408,
4341,
29892,
393,
508,
367,
13,
4706,
19673,
964,
263,
11701,
4954,
17271,
29952,
1412,
13,
13,
4706,
1152,
2777,
278,
2400,
2183,
1591,
13,
13,
4706,
718,
28490,
9072,
11793,
2683,
12918,
12918,
9072,
12918,
13,
4706,
891,
1828,
29918,
29883,
891,
1828,
29918,
4283,
891,
6219,
29900,
29918,
1688,
29918,
13628,
891,
856,
29989,
10003,
29918,
1688,
29918,
13628,
29989,
13,
4706,
718,
4936,
29922,
29974,
4936,
2751,
29922,
29974,
9166,
25512,
29974,
25512,
29974,
4936,
2751,
25512,
29974,
13,
4706,
891,
259,
29900,
29889,
29896,
29929,
29941,
29871,
891,
268,
29896,
29889,
29947,
29947,
29941,
1678,
891,
4706,
29900,
29889,
29947,
29906,
4706,
891,
856,
29989,
4706,
29941,
539,
891,
13,
4706,
718,
28490,
9072,
11793,
2683,
12918,
12918,
9072,
12918,
13,
4706,
891,
259,
29896,
29889,
29946,
29945,
29906,
29871,
891,
268,
29900,
29889,
29941,
29906,
29955,
1678,
891,
4706,
29900,
29889,
29947,
29896,
4706,
891,
856,
29989,
4706,
29906,
539,
891,
13,
4706,
718,
28490,
9072,
11793,
2683,
12918,
12918,
9072,
12918,
13,
4706,
891,
259,
29900,
29889,
29929,
29906,
29953,
29871,
891,
268,
29941,
29889,
29946,
29945,
29906,
1678,
891,
4706,
29900,
29889,
29929,
29946,
4706,
891,
856,
29989,
4706,
29896,
539,
891,
13,
4706,
718,
28490,
9072,
11793,
2683,
12918,
12918,
9072,
12918,
13,
13,
4706,
674,
367,
9875,
491,
263,
4954,
11023,
29918,
9902,
29918,
16159,
9657,
310,
1057,
13,
13,
9651,
426,
13,
9651,
525,
3207,
29918,
17460,
29915,
584,
11105,
287,
29918,
2378,
29898,
1272,
353,
6024,
29878,
1635,
742,
525,
29878,
1635,
742,
525,
29878,
1635,
7464,
13,
462,
462,
3986,
11105,
353,
7700,
511,
13,
9651,
525,
3207,
29918,
4283,
29915,
29871,
584,
11105,
287,
29918,
2378,
29898,
1272,
353,
518,
29900,
29889,
29896,
29871,
29900,
29889,
29906,
29871,
29900,
29889,
29941,
1402,
11105,
353,
7700,
511,
13,
9651,
525,
5451,
29900,
29918,
1688,
29918,
13628,
29915,
29871,
584,
518,
29900,
29889,
29947,
29906,
29892,
29871,
29900,
29889,
29947,
29896,
29892,
29871,
29900,
29889,
29929,
29946,
1402,
13,
9651,
525,
5451,
29896,
29918,
1688,
29918,
13628,
29915,
29871,
584,
518,
29900,
29889,
29953,
29953,
29892,
29871,
29900,
29889,
29955,
29945,
29892,
29871,
29900,
29889,
29955,
29929,
1402,
13,
9651,
525,
5451,
29906,
29918,
1688,
29918,
13628,
29915,
29871,
584,
518,
29900,
29889,
29947,
29906,
29892,
29871,
29900,
29889,
29947,
29955,
29892,
29871,
29900,
29889,
29947,
29946,
1402,
13,
9651,
2023,
13,
9651,
525,
12676,
29918,
1688,
29918,
13628,
29915,
1678,
584,
518,
29900,
29889,
29955,
29953,
29892,
29871,
29900,
29889,
29947,
29946,
29892,
29871,
29900,
29889,
29947,
29953,
1402,
13,
9651,
525,
4172,
29918,
1688,
29918,
13628,
29915,
268,
584,
518,
29900,
29889,
29900,
29896,
29892,
29871,
29900,
29889,
29906,
29900,
29892,
29871,
29900,
29889,
29900,
29946,
1402,
13,
9651,
525,
10003,
29918,
1688,
29918,
13628,
29915,
1678,
584,
518,
29941,
29892,
29871,
29906,
29892,
29871,
29896,
1402,
13,
9651,
525,
7529,
29915,
632,
584,
518,
10998,
29883,
29915,
584,
29871,
29900,
29889,
29896,
29929,
29941,
29892,
525,
4283,
29915,
584,
29871,
29896,
29889,
29947,
29947,
29941,
1118,
2023,
1402,
13,
9651,
500,
13,
13,
4706,
6058,
29923,
13,
13,
4706,
450,
1820,
4954,
29915,
7529,
11120,
29952,
338,
1304,
304,
3787,
263,
1051,
310,
3443,
13,
4706,
6055,
9657,
29879,
363,
599,
278,
3443,
21669,
29889,
13,
13,
4706,
450,
4954,
12676,
29918,
9202,
29918,
2230,
29952,
1673,
4954,
4172,
29918,
9202,
29918,
2230,
29952,
1673,
4954,
12676,
29918,
13628,
29918,
2230,
16159,
322,
13,
4706,
4954,
4172,
29918,
13628,
29918,
2230,
16159,
526,
599,
297,
6923,
29889,
13,
13,
4706,
1152,
2473,
29899,
16414,
17983,
29892,
278,
19435,
363,
599,
278,
885,
272,
414,
526,
13,
4706,
3625,
297,
278,
4954,
11023,
29918,
9902,
29918,
16159,
9657,
472,
278,
6611,
17140,
411,
393,
13,
4706,
885,
9386,
29915,
29879,
1024,
6695,
29952,
15972,
29966,
1557,
9386,
29918,
978,
29958,
11120,
6348,
2012,
310,
4954,
15972,
13628,
11120,
29952,
4318,
13,
4706,
2038,
29889,
6702,
5451,
29900,
29918,
1688,
29918,
17990,
2459,
742,
525,
12676,
29918,
14968,
29918,
17990,
2459,
29915,
2992,
1846,
13,
13,
1678,
1900,
29918,
342,
326,
1061,
29918,
584,
4844,
1061,
470,
9657,
13,
4706,
2661,
326,
1061,
393,
471,
10434,
491,
278,
2740,
29892,
474,
29889,
29872,
29889,
4844,
1061,
13,
4706,
607,
4846,
9939,
8158,
313,
272,
19087,
6410,
565,
6790,
29897,
13,
4706,
373,
278,
2175,
714,
848,
29889,
2216,
3625,
565,
4954,
999,
277,
29922,
8824,
29952,
1412,
13,
13,
4706,
1152,
2473,
29899,
16414,
17983,
29892,
445,
5352,
338,
2198,
871,
565,
13,
4706,
4954,
999,
277,
16159,
338,
6790,
29889,
13,
13,
4706,
2823,
4954,
999,
277,
16159,
3443,
363,
901,
2472,
373,
6068,
1819,
29889,
13,
13,
1678,
1900,
29918,
13628,
29918,
584,
5785,
13,
4706,
16316,
4891,
29899,
3084,
630,
8158,
310,
278,
1900,
29918,
342,
326,
1061,
29889,
13,
13,
4706,
1152,
2473,
29899,
16414,
17983,
29892,
445,
338,
451,
3625,
565,
4954,
999,
277,
16159,
338,
13,
4706,
4954,
8824,
29952,
1412,
2823,
4954,
999,
277,
16159,
3443,
363,
901,
2472,
29889,
13,
13,
1678,
1900,
29918,
7529,
29918,
584,
9657,
13,
4706,
24953,
4444,
393,
4846,
278,
1900,
2582,
373,
278,
4808,
714,
848,
29889,
13,
13,
4706,
1152,
2473,
29899,
16414,
17983,
29892,
445,
338,
451,
3625,
565,
4954,
999,
277,
16159,
338,
13,
4706,
4954,
8824,
29952,
1412,
2823,
4954,
999,
277,
16159,
3443,
363,
901,
2472,
29889,
13,
13,
1678,
1900,
29918,
2248,
29918,
584,
938,
13,
4706,
450,
2380,
313,
974,
278,
4954,
11023,
29918,
9902,
29918,
16159,
7049,
29897,
607,
16161,
304,
278,
1900,
13,
4706,
14020,
3443,
4444,
29889,
13,
13,
4706,
450,
9657,
472,
4954,
4478,
29889,
11023,
29918,
9902,
29918,
1839,
7529,
2033,
29961,
4478,
29889,
13318,
29918,
2248,
29918,
7961,
29952,
4076,
13,
4706,
278,
3443,
4444,
363,
278,
1900,
1904,
29892,
393,
4076,
278,
9939,
13,
4706,
2099,
8158,
6695,
29952,
4478,
29889,
13318,
29918,
13628,
29918,
29952,
12913,
13,
13,
4706,
1152,
2473,
29899,
16414,
17983,
29892,
445,
338,
451,
3625,
565,
4954,
999,
277,
16159,
338,
13,
4706,
4954,
8824,
29952,
1412,
2823,
4954,
999,
277,
16159,
3443,
363,
901,
2472,
29889,
13,
13,
1678,
885,
9386,
29918,
584,
740,
470,
263,
9657,
13,
4706,
2522,
9386,
740,
1304,
373,
278,
4934,
714,
848,
304,
6755,
278,
1900,
13,
4706,
4128,
363,
278,
1904,
29889,
13,
13,
4706,
1152,
2473,
29899,
16414,
17983,
29892,
445,
5352,
8640,
278,
2854,
630,
13,
4706,
4954,
1557,
8253,
16159,
9657,
607,
11053,
278,
885,
9386,
1820,
304,
278,
885,
9386,
1246,
519,
29889,
13,
13,
1678,
302,
29918,
23579,
1169,
29918,
584,
938,
13,
4706,
450,
1353,
310,
4891,
29899,
18157,
8536,
1169,
313,
29888,
3361,
29914,
1524,
800,
467,
13,
1678,
9995,
13,
1678,
822,
4770,
2344,
12035,
1311,
29892,
4844,
1061,
29892,
1828,
29918,
27691,
29879,
29892,
302,
29918,
1524,
29922,
29896,
29900,
29892,
26654,
29922,
8516,
29892,
13,
462,
13850,
29922,
8516,
29892,
2143,
277,
29922,
5574,
29892,
4036,
29918,
3859,
29922,
8516,
1125,
13,
4706,
2428,
2141,
1649,
2344,
12035,
342,
326,
1061,
29922,
342,
326,
1061,
29892,
26654,
29922,
1557,
8253,
29892,
13850,
29922,
11023,
29892,
13,
462,
308,
2143,
277,
29922,
999,
277,
29897,
13,
4706,
1583,
29889,
3207,
29918,
27691,
29879,
353,
1828,
29918,
27691,
29879,
13,
4706,
1583,
29889,
29876,
29918,
1524,
353,
302,
29918,
1524,
13,
4706,
1583,
29889,
8172,
29918,
3859,
353,
4036,
29918,
3859,
13,
13,
1678,
822,
903,
3389,
29918,
4478,
29898,
1311,
29892,
14707,
29918,
29883,
5380,
1078,
1125,
13,
4706,
9995,
7974,
302,
29918,
1524,
21669,
515,
1828,
29918,
27691,
29879,
15945,
29908,
13,
4706,
6529,
353,
24953,
22966,
20069,
29898,
1311,
29889,
3207,
29918,
27691,
29879,
29892,
1583,
29889,
29876,
29918,
1524,
29892,
13,
462,
795,
4036,
29918,
3859,
29922,
1311,
29889,
8172,
29918,
3859,
29897,
13,
4706,
14707,
29918,
29883,
5380,
1078,
29898,
567,
29897,
13,
2
] |
remove.py | LaureoleSAS/RaspberryPi | 0 | 109569 | <reponame>LaureoleSAS/RaspberryPi
import os, sys
path = "/home/pi/Documents/Serveur/Videos/copy/"
dirs = os.listdir(path)
for file in dirs:
if '.mp4' in file:
nom_split = file.split('-')
os.system('sudo cp '+ path + file + ' /home/pi/Documents/Serveur/Videos/'+nom_split[0]+'_'+nom_split[1]+'/')
os.system('sudo rm ' + file)
if '.h264' in file:
os.system('sudo rm ' + file) | [
1,
529,
276,
1112,
420,
29958,
5661,
545,
1772,
29903,
3289,
29914,
29934,
4692,
16344,
12197,
13,
5215,
2897,
29892,
10876,
13,
13,
2084,
353,
5591,
5184,
29914,
1631,
29914,
20128,
29914,
1748,
345,
332,
29914,
29963,
7958,
29914,
8552,
12975,
13,
3972,
29879,
353,
2897,
29889,
1761,
3972,
29898,
2084,
29897,
13,
13,
1454,
934,
297,
4516,
29879,
29901,
13,
1678,
565,
15300,
1526,
29946,
29915,
297,
934,
29901,
13,
4706,
2245,
29918,
5451,
353,
934,
29889,
5451,
877,
29899,
1495,
13,
4706,
2897,
29889,
5205,
877,
15360,
21447,
525,
29974,
2224,
718,
934,
718,
525,
847,
5184,
29914,
1631,
29914,
20128,
29914,
1748,
345,
332,
29914,
29963,
7958,
29914,
18717,
11522,
29918,
5451,
29961,
29900,
10062,
15972,
18717,
11522,
29918,
5451,
29961,
29896,
10062,
29915,
29914,
1495,
13,
4706,
2897,
29889,
5205,
877,
15360,
20241,
525,
718,
934,
29897,
13,
1678,
565,
15300,
29882,
29906,
29953,
29946,
29915,
297,
934,
29901,
13,
4706,
2897,
29889,
5205,
877,
15360,
20241,
525,
718,
934,
29897,
2
] |
cdd/cst.py | SamuelMarks/docstring2class | 0 | 69780 | """
Concrete Syntax Tree for Python 3.6+ source code
"""
from cdd.cst_utils import cst_parser, cst_scanner
def cst_parse(source):
"""
Parse Python source lines into a Concrete Syntax Tree
:param source: Python source code
:type source: ```str```
:return: List of `namedtuple`s with at least ("line_no_start", "line_no_end", "value") attributes
:rtype: ```List[Any]```
"""
scanned = cst_scanner(source)
parsed = cst_parser(scanned)
return parsed
__all__ = ["cst_parse"]
| [
1,
9995,
13,
1168,
9084,
21306,
15472,
363,
5132,
29871,
29941,
29889,
29953,
29974,
2752,
775,
13,
15945,
29908,
13,
13,
3166,
274,
1289,
29889,
29883,
303,
29918,
13239,
1053,
274,
303,
29918,
16680,
29892,
274,
303,
29918,
1557,
7310,
13,
13,
13,
1753,
274,
303,
29918,
5510,
29898,
4993,
1125,
13,
1678,
9995,
13,
1678,
20969,
5132,
2752,
3454,
964,
263,
1281,
9084,
21306,
15472,
13,
13,
1678,
584,
3207,
2752,
29901,
5132,
2752,
775,
13,
1678,
584,
1853,
2752,
29901,
7521,
710,
28956,
13,
13,
1678,
584,
2457,
29901,
2391,
310,
421,
17514,
23583,
29952,
29879,
411,
472,
3203,
4852,
1220,
29918,
1217,
29918,
2962,
613,
376,
1220,
29918,
1217,
29918,
355,
613,
376,
1767,
1159,
8393,
13,
1678,
584,
29878,
1853,
29901,
7521,
1293,
29961,
10773,
7961,
16159,
13,
1678,
9995,
13,
1678,
885,
11310,
353,
274,
303,
29918,
1557,
7310,
29898,
4993,
29897,
13,
1678,
21213,
353,
274,
303,
29918,
16680,
29898,
1557,
11310,
29897,
13,
1678,
736,
21213,
13,
13,
13,
1649,
497,
1649,
353,
6796,
29883,
303,
29918,
5510,
3108,
13,
2
] |
tests/main.py | tdegeus/enstat | 0 | 46535 | import unittest
from collections import defaultdict
import numpy as np
import enstat.mean
class Test_mean(unittest.TestCase):
"""
tests
"""
def test_scalar(self):
"""
Basic test of "mean" and "std" using a random sample.
"""
average = enstat.scalar()
average.add_sample(np.array(1.0))
self.assertFalse(np.isnan(average.mean()))
self.assertTrue(np.isnan(average.std()))
average.add_sample(np.array(1.0))
self.assertFalse(np.isnan(average.mean()))
self.assertFalse(np.isnan(average.std()))
def test_scalar_division(self):
"""
Check for zero division.
"""
average = enstat.scalar()
a = np.random.random(50 * 20).reshape(50, 20)
for i in range(a.shape[0]):
average.add_sample(a[i, :])
self.assertTrue(np.isclose(average.mean(), np.mean(a)))
self.assertTrue(np.isclose(average.std(), np.std(a), rtol=1e-3))
def test_static(self):
"""
Basic test of "mean" and "std" using a random sample.
"""
average = enstat.static()
a = np.random.random(35 * 50 * 20).reshape(35, 50, 20)
for i in range(a.shape[0]):
average.add_sample(a[i, :, :])
self.assertTrue(np.allclose(average.mean(), np.mean(a, axis=0)))
self.assertTrue(np.allclose(average.std(), np.std(a, axis=0), rtol=5e-1, atol=1e-3))
self.assertTrue(average.shape() == a.shape[1:])
self.assertTrue(average.size() == np.prod(a.shape[1:]))
def test_static_ravel(self):
"""
Like :py:func:`test_static` but with a test of `ravel`.
"""
arraylike = enstat.static()
scalar = enstat.scalar()
a = np.random.random(35 * 50 * 20).reshape(35, 50, 20)
for i in range(a.shape[0]):
arraylike.add_sample(a[i, :, :])
scalar.add_sample(a[i, :, :])
flat = arraylike.ravel()
self.assertTrue(np.allclose(flat.mean(), np.mean(a)))
self.assertTrue(np.allclose(flat.std(), np.std(a), rtol=5e-1, atol=1e-3))
self.assertTrue(np.allclose(flat.mean(), scalar.mean()))
self.assertTrue(np.allclose(flat.std(), scalar.std(), rtol=5e-1, atol=1e-3))
def test_static_division(self):
"""
Check for zero division.
"""
average = enstat.static()
average.add_sample(np.array([1.0]))
self.assertFalse(np.isnan(average.mean()))
self.assertTrue(np.isnan(average.std()))
average.add_sample(np.array([1.0]))
self.assertFalse(np.isnan(average.mean()))
self.assertFalse(np.isnan(average.std()))
def test_static_mask(self):
average = enstat.static()
a = np.random.random(35 * 50 * 20).reshape(35, 50, 20)
m = np.random.random(35 * 50 * 20).reshape(35, 50, 20) > 0.8
for i in range(a.shape[0]):
average.add_sample(a[i, :, :], m[i, :, :])
self.assertTrue(
np.isclose(
np.sum(average.first()) / np.sum(average.norm()),
np.mean(a[np.logical_not(m)]),
)
)
self.assertTrue(
np.isclose(
np.sum(average.first()) / np.sum(average.norm()),
np.mean(a[np.logical_not(m)]),
)
)
self.assertTrue(np.all(np.equal(average.norm(), np.sum(np.logical_not(m), axis=0))))
def test_dynamic1d(self):
average = enstat.dynamic1d()
average.add_sample(np.array([1, 2, 3]))
average.add_sample(np.array([1, 2, 3]))
average.add_sample(np.array([1, 2]))
average.add_sample(np.array([1]))
self.assertTrue(np.allclose(average.mean(), np.array([1, 2, 3])))
self.assertTrue(np.allclose(average.std(), np.array([0, 0, 0])))
self.assertEqual(average.shape(), (3,))
self.assertEqual(average.size(), 3)
class Test_defaultdict(unittest.TestCase):
"""
functionality
"""
def test_scalar(self):
average = defaultdict(enstat.scalar)
a = np.random.random(50 * 20).reshape(50, 20)
b = np.random.random(52 * 21).reshape(52, 21)
for i in range(a.shape[0]):
average["a"].add_sample(a[i, :])
for i in range(b.shape[0]):
average["b"].add_sample(b[i, :])
self.assertTrue(np.isclose(average["a"].mean(), np.mean(a)))
self.assertTrue(np.isclose(average["b"].mean(), np.mean(b)))
def test_static(self):
average = defaultdict(enstat.static)
a = np.random.random(35 * 50 * 20).reshape(35, 50, 20)
b = np.random.random(37 * 52 * 21).reshape(37, 52, 21)
for i in range(a.shape[0]):
average["a"].add_sample(a[i, :, :])
for i in range(b.shape[0]):
average["b"].add_sample(b[i, :, :])
self.assertTrue(np.allclose(average["a"].mean(), np.mean(a, axis=0)))
self.assertTrue(np.allclose(average["b"].mean(), np.mean(b, axis=0)))
self.assertTrue(average["a"].shape() == a.shape[1:])
self.assertTrue(average["b"].shape() == b.shape[1:])
if __name__ == "__main__":
unittest.main()
| [
1,
1053,
443,
27958,
13,
3166,
16250,
1053,
2322,
8977,
13,
13,
5215,
12655,
408,
7442,
13,
13,
5215,
427,
6112,
29889,
12676,
13,
13,
13,
1990,
4321,
29918,
12676,
29898,
348,
27958,
29889,
3057,
8259,
1125,
13,
1678,
9995,
13,
1678,
6987,
13,
1678,
9995,
13,
13,
1678,
822,
1243,
29918,
19529,
279,
29898,
1311,
1125,
13,
4706,
9995,
13,
4706,
19219,
1243,
310,
376,
12676,
29908,
322,
376,
4172,
29908,
773,
263,
4036,
4559,
29889,
13,
4706,
9995,
13,
13,
4706,
6588,
353,
427,
6112,
29889,
19529,
279,
580,
13,
13,
4706,
6588,
29889,
1202,
29918,
11249,
29898,
9302,
29889,
2378,
29898,
29896,
29889,
29900,
876,
13,
13,
4706,
1583,
29889,
9294,
8824,
29898,
9302,
29889,
275,
13707,
29898,
12483,
482,
29889,
12676,
22130,
13,
4706,
1583,
29889,
9294,
5574,
29898,
9302,
29889,
275,
13707,
29898,
12483,
482,
29889,
4172,
22130,
13,
13,
4706,
6588,
29889,
1202,
29918,
11249,
29898,
9302,
29889,
2378,
29898,
29896,
29889,
29900,
876,
13,
13,
4706,
1583,
29889,
9294,
8824,
29898,
9302,
29889,
275,
13707,
29898,
12483,
482,
29889,
12676,
22130,
13,
4706,
1583,
29889,
9294,
8824,
29898,
9302,
29889,
275,
13707,
29898,
12483,
482,
29889,
4172,
22130,
13,
13,
1678,
822,
1243,
29918,
19529,
279,
29918,
4563,
2459,
29898,
1311,
1125,
13,
4706,
9995,
13,
4706,
5399,
363,
5225,
8542,
29889,
13,
4706,
9995,
13,
13,
4706,
6588,
353,
427,
6112,
29889,
19529,
279,
580,
13,
13,
4706,
263,
353,
7442,
29889,
8172,
29889,
8172,
29898,
29945,
29900,
334,
29871,
29906,
29900,
467,
690,
14443,
29898,
29945,
29900,
29892,
29871,
29906,
29900,
29897,
13,
13,
4706,
363,
474,
297,
3464,
29898,
29874,
29889,
12181,
29961,
29900,
29962,
1125,
13,
9651,
6588,
29889,
1202,
29918,
11249,
29898,
29874,
29961,
29875,
29892,
584,
2314,
13,
13,
4706,
1583,
29889,
9294,
5574,
29898,
9302,
29889,
275,
5358,
29898,
12483,
482,
29889,
12676,
3285,
7442,
29889,
12676,
29898,
29874,
4961,
13,
4706,
1583,
29889,
9294,
5574,
29898,
9302,
29889,
275,
5358,
29898,
12483,
482,
29889,
4172,
3285,
7442,
29889,
4172,
29898,
29874,
511,
364,
25027,
29922,
29896,
29872,
29899,
29941,
876,
13,
13,
1678,
822,
1243,
29918,
7959,
29898,
1311,
1125,
13,
4706,
9995,
13,
4706,
19219,
1243,
310,
376,
12676,
29908,
322,
376,
4172,
29908,
773,
263,
4036,
4559,
29889,
13,
4706,
9995,
13,
13,
4706,
6588,
353,
427,
6112,
29889,
7959,
580,
13,
13,
4706,
263,
353,
7442,
29889,
8172,
29889,
8172,
29898,
29941,
29945,
334,
29871,
29945,
29900,
334,
29871,
29906,
29900,
467,
690,
14443,
29898,
29941,
29945,
29892,
29871,
29945,
29900,
29892,
29871,
29906,
29900,
29897,
13,
13,
4706,
363,
474,
297,
3464,
29898,
29874,
29889,
12181,
29961,
29900,
29962,
1125,
13,
9651,
6588,
29889,
1202,
29918,
11249,
29898,
29874,
29961,
29875,
29892,
584,
29892,
584,
2314,
13,
13,
4706,
1583,
29889,
9294,
5574,
29898,
9302,
29889,
497,
5358,
29898,
12483,
482,
29889,
12676,
3285,
7442,
29889,
12676,
29898,
29874,
29892,
9685,
29922,
29900,
4961,
13,
4706,
1583,
29889,
9294,
5574,
29898,
9302,
29889,
497,
5358,
29898,
12483,
482,
29889,
4172,
3285,
7442,
29889,
4172,
29898,
29874,
29892,
9685,
29922,
29900,
511,
364,
25027,
29922,
29945,
29872,
29899,
29896,
29892,
472,
324,
29922,
29896,
29872,
29899,
29941,
876,
13,
4706,
1583,
29889,
9294,
5574,
29898,
12483,
482,
29889,
12181,
580,
1275,
263,
29889,
12181,
29961,
29896,
29901,
2314,
13,
4706,
1583,
29889,
9294,
5574,
29898,
12483,
482,
29889,
2311,
580,
1275,
7442,
29889,
10633,
29898,
29874,
29889,
12181,
29961,
29896,
29901,
12622,
13,
13,
1678,
822,
1243,
29918,
7959,
29918,
336,
955,
29898,
1311,
1125,
13,
4706,
9995,
13,
4706,
8502,
584,
2272,
29901,
9891,
18078,
1688,
29918,
7959,
29952,
541,
411,
263,
1243,
310,
421,
336,
955,
1412,
13,
4706,
9995,
13,
13,
4706,
1409,
4561,
353,
427,
6112,
29889,
7959,
580,
13,
4706,
17336,
353,
427,
6112,
29889,
19529,
279,
580,
13,
13,
4706,
263,
353,
7442,
29889,
8172,
29889,
8172,
29898,
29941,
29945,
334,
29871,
29945,
29900,
334,
29871,
29906,
29900,
467,
690,
14443,
29898,
29941,
29945,
29892,
29871,
29945,
29900,
29892,
29871,
29906,
29900,
29897,
13,
13,
4706,
363,
474,
297,
3464,
29898,
29874,
29889,
12181,
29961,
29900,
29962,
1125,
13,
9651,
1409,
4561,
29889,
1202,
29918,
11249,
29898,
29874,
29961,
29875,
29892,
584,
29892,
584,
2314,
13,
9651,
17336,
29889,
1202,
29918,
11249,
29898,
29874,
29961,
29875,
29892,
584,
29892,
584,
2314,
13,
13,
4706,
12151,
353,
1409,
4561,
29889,
336,
955,
580,
13,
13,
4706,
1583,
29889,
9294,
5574,
29898,
9302,
29889,
497,
5358,
29898,
20620,
29889,
12676,
3285,
7442,
29889,
12676,
29898,
29874,
4961,
13,
4706,
1583,
29889,
9294,
5574,
29898,
9302,
29889,
497,
5358,
29898,
20620,
29889,
4172,
3285,
7442,
29889,
4172,
29898,
29874,
511,
364,
25027,
29922,
29945,
29872,
29899,
29896,
29892,
472,
324,
29922,
29896,
29872,
29899,
29941,
876,
13,
4706,
1583,
29889,
9294,
5574,
29898,
9302,
29889,
497,
5358,
29898,
20620,
29889,
12676,
3285,
17336,
29889,
12676,
22130,
13,
4706,
1583,
29889,
9294,
5574,
29898,
9302,
29889,
497,
5358,
29898,
20620,
29889,
4172,
3285,
17336,
29889,
4172,
3285,
364,
25027,
29922,
29945,
29872,
29899,
29896,
29892,
472,
324,
29922,
29896,
29872,
29899,
29941,
876,
13,
13,
1678,
822,
1243,
29918,
7959,
29918,
4563,
2459,
29898,
1311,
1125,
13,
4706,
9995,
13,
4706,
5399,
363,
5225,
8542,
29889,
13,
4706,
9995,
13,
13,
4706,
6588,
353,
427,
6112,
29889,
7959,
580,
13,
13,
4706,
6588,
29889,
1202,
29918,
11249,
29898,
9302,
29889,
2378,
4197,
29896,
29889,
29900,
12622,
13,
13,
4706,
1583,
29889,
9294,
8824,
29898,
9302,
29889,
275,
13707,
29898,
12483,
482,
29889,
12676,
22130,
13,
4706,
1583,
29889,
9294,
5574,
29898,
9302,
29889,
275,
13707,
29898,
12483,
482,
29889,
4172,
22130,
13,
13,
4706,
6588,
29889,
1202,
29918,
11249,
29898,
9302,
29889,
2378,
4197,
29896,
29889,
29900,
12622,
13,
13,
4706,
1583,
29889,
9294,
8824,
29898,
9302,
29889,
275,
13707,
29898,
12483,
482,
29889,
12676,
22130,
13,
4706,
1583,
29889,
9294,
8824,
29898,
9302,
29889,
275,
13707,
29898,
12483,
482,
29889,
4172,
22130,
13,
13,
1678,
822,
1243,
29918,
7959,
29918,
13168,
29898,
1311,
1125,
13,
13,
4706,
6588,
353,
427,
6112,
29889,
7959,
580,
13,
13,
4706,
263,
353,
7442,
29889,
8172,
29889,
8172,
29898,
29941,
29945,
334,
29871,
29945,
29900,
334,
29871,
29906,
29900,
467,
690,
14443,
29898,
29941,
29945,
29892,
29871,
29945,
29900,
29892,
29871,
29906,
29900,
29897,
13,
4706,
286,
353,
7442,
29889,
8172,
29889,
8172,
29898,
29941,
29945,
334,
29871,
29945,
29900,
334,
29871,
29906,
29900,
467,
690,
14443,
29898,
29941,
29945,
29892,
29871,
29945,
29900,
29892,
29871,
29906,
29900,
29897,
1405,
29871,
29900,
29889,
29947,
13,
13,
4706,
363,
474,
297,
3464,
29898,
29874,
29889,
12181,
29961,
29900,
29962,
1125,
13,
9651,
6588,
29889,
1202,
29918,
11249,
29898,
29874,
29961,
29875,
29892,
584,
29892,
584,
1402,
286,
29961,
29875,
29892,
584,
29892,
584,
2314,
13,
13,
4706,
1583,
29889,
9294,
5574,
29898,
13,
9651,
7442,
29889,
275,
5358,
29898,
13,
18884,
7442,
29889,
2083,
29898,
12483,
482,
29889,
4102,
3101,
847,
7442,
29889,
2083,
29898,
12483,
482,
29889,
12324,
25739,
13,
18884,
7442,
29889,
12676,
29898,
29874,
29961,
9302,
29889,
1188,
936,
29918,
1333,
29898,
29885,
4638,
511,
13,
9651,
1723,
13,
4706,
1723,
13,
13,
4706,
1583,
29889,
9294,
5574,
29898,
13,
9651,
7442,
29889,
275,
5358,
29898,
13,
18884,
7442,
29889,
2083,
29898,
12483,
482,
29889,
4102,
3101,
847,
7442,
29889,
2083,
29898,
12483,
482,
29889,
12324,
25739,
13,
18884,
7442,
29889,
12676,
29898,
29874,
29961,
9302,
29889,
1188,
936,
29918,
1333,
29898,
29885,
4638,
511,
13,
9651,
1723,
13,
4706,
1723,
13,
13,
4706,
1583,
29889,
9294,
5574,
29898,
9302,
29889,
497,
29898,
9302,
29889,
11745,
29898,
12483,
482,
29889,
12324,
3285,
7442,
29889,
2083,
29898,
9302,
29889,
1188,
936,
29918,
1333,
29898,
29885,
511,
9685,
29922,
29900,
13697,
13,
13,
1678,
822,
1243,
29918,
16626,
29896,
29881,
29898,
1311,
1125,
13,
13,
4706,
6588,
353,
427,
6112,
29889,
16626,
29896,
29881,
580,
13,
13,
4706,
6588,
29889,
1202,
29918,
11249,
29898,
9302,
29889,
2378,
4197,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
12622,
13,
4706,
6588,
29889,
1202,
29918,
11249,
29898,
9302,
29889,
2378,
4197,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
12622,
13,
4706,
6588,
29889,
1202,
29918,
11249,
29898,
9302,
29889,
2378,
4197,
29896,
29892,
29871,
29906,
12622,
13,
4706,
6588,
29889,
1202,
29918,
11249,
29898,
9302,
29889,
2378,
4197,
29896,
12622,
13,
13,
4706,
1583,
29889,
9294,
5574,
29898,
9302,
29889,
497,
5358,
29898,
12483,
482,
29889,
12676,
3285,
7442,
29889,
2378,
4197,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
29962,
4961,
13,
4706,
1583,
29889,
9294,
5574,
29898,
9302,
29889,
497,
5358,
29898,
12483,
482,
29889,
4172,
3285,
7442,
29889,
2378,
4197,
29900,
29892,
29871,
29900,
29892,
29871,
29900,
29962,
4961,
13,
4706,
1583,
29889,
9294,
9843,
29898,
12483,
482,
29889,
12181,
3285,
313,
29941,
29892,
876,
13,
4706,
1583,
29889,
9294,
9843,
29898,
12483,
482,
29889,
2311,
3285,
29871,
29941,
29897,
13,
13,
13,
1990,
4321,
29918,
4381,
8977,
29898,
348,
27958,
29889,
3057,
8259,
1125,
13,
1678,
9995,
13,
1678,
9863,
13,
1678,
9995,
13,
13,
1678,
822,
1243,
29918,
19529,
279,
29898,
1311,
1125,
13,
13,
4706,
6588,
353,
2322,
8977,
29898,
264,
6112,
29889,
19529,
279,
29897,
13,
13,
4706,
263,
353,
7442,
29889,
8172,
29889,
8172,
29898,
29945,
29900,
334,
29871,
29906,
29900,
467,
690,
14443,
29898,
29945,
29900,
29892,
29871,
29906,
29900,
29897,
13,
4706,
289,
353,
7442,
29889,
8172,
29889,
8172,
29898,
29945,
29906,
334,
29871,
29906,
29896,
467,
690,
14443,
29898,
29945,
29906,
29892,
29871,
29906,
29896,
29897,
13,
13,
4706,
363,
474,
297,
3464,
29898,
29874,
29889,
12181,
29961,
29900,
29962,
1125,
13,
9651,
6588,
3366,
29874,
16862,
1202,
29918,
11249,
29898,
29874,
29961,
29875,
29892,
584,
2314,
13,
13,
4706,
363,
474,
297,
3464,
29898,
29890,
29889,
12181,
29961,
29900,
29962,
1125,
13,
9651,
6588,
3366,
29890,
16862,
1202,
29918,
11249,
29898,
29890,
29961,
29875,
29892,
584,
2314,
13,
13,
4706,
1583,
29889,
9294,
5574,
29898,
9302,
29889,
275,
5358,
29898,
12483,
482,
3366,
29874,
16862,
12676,
3285,
7442,
29889,
12676,
29898,
29874,
4961,
13,
4706,
1583,
29889,
9294,
5574,
29898,
9302,
29889,
275,
5358,
29898,
12483,
482,
3366,
29890,
16862,
12676,
3285,
7442,
29889,
12676,
29898,
29890,
4961,
13,
13,
1678,
822,
1243,
29918,
7959,
29898,
1311,
1125,
13,
13,
4706,
6588,
353,
2322,
8977,
29898,
264,
6112,
29889,
7959,
29897,
13,
13,
4706,
263,
353,
7442,
29889,
8172,
29889,
8172,
29898,
29941,
29945,
334,
29871,
29945,
29900,
334,
29871,
29906,
29900,
467,
690,
14443,
29898,
29941,
29945,
29892,
29871,
29945,
29900,
29892,
29871,
29906,
29900,
29897,
13,
4706,
289,
353,
7442,
29889,
8172,
29889,
8172,
29898,
29941,
29955,
334,
29871,
29945,
29906,
334,
29871,
29906,
29896,
467,
690,
14443,
29898,
29941,
29955,
29892,
29871,
29945,
29906,
29892,
29871,
29906,
29896,
29897,
13,
13,
4706,
363,
474,
297,
3464,
29898,
29874,
29889,
12181,
29961,
29900,
29962,
1125,
13,
9651,
6588,
3366,
29874,
16862,
1202,
29918,
11249,
29898,
29874,
29961,
29875,
29892,
584,
29892,
584,
2314,
13,
13,
4706,
363,
474,
297,
3464,
29898,
29890,
29889,
12181,
29961,
29900,
29962,
1125,
13,
9651,
6588,
3366,
29890,
16862,
1202,
29918,
11249,
29898,
29890,
29961,
29875,
29892,
584,
29892,
584,
2314,
13,
13,
4706,
1583,
29889,
9294,
5574,
29898,
9302,
29889,
497,
5358,
29898,
12483,
482,
3366,
29874,
16862,
12676,
3285,
7442,
29889,
12676,
29898,
29874,
29892,
9685,
29922,
29900,
4961,
13,
4706,
1583,
29889,
9294,
5574,
29898,
9302,
29889,
497,
5358,
29898,
12483,
482,
3366,
29890,
16862,
12676,
3285,
7442,
29889,
12676,
29898,
29890,
29892,
9685,
29922,
29900,
4961,
13,
4706,
1583,
29889,
9294,
5574,
29898,
12483,
482,
3366,
29874,
16862,
12181,
580,
1275,
263,
29889,
12181,
29961,
29896,
29901,
2314,
13,
4706,
1583,
29889,
9294,
5574,
29898,
12483,
482,
3366,
29890,
16862,
12181,
580,
1275,
289,
29889,
12181,
29961,
29896,
29901,
2314,
13,
13,
13,
361,
4770,
978,
1649,
1275,
376,
1649,
3396,
1649,
1115,
13,
13,
1678,
443,
27958,
29889,
3396,
580,
13,
2
] |
Clients/PythonCatalyst/Testing/package_test/__init__.py | xj361685640/ParaView | 815 | 82042 | <gh_stars>100-1000
# filename: __init__.py
# used to test that Catalyst can load Packages
# correctly.
from paraview.simple import *
from paraview import print_info
# print start marker
print_info("begin '%s'", __name__)
tracker = {}
def count(f):
def wrapper(*args, **kwargs):
global tracker
c = tracker.get(f.__name__, 0)
tracker[f.__name__] = c+1
return f(*args, **kwargs)
return wrapper
@count
def catalyst_initialize():
print_info("in '%s::catalyst_initialize'", __name__)
@count
def catalyst_execute(info):
print_info("in '%s::catalyst_execute'", __name__)
@count
def catalyst_finalize():
print_info("in '%s::catalyst_finalize'", __name__)
global tracker
assert tracker["catalyst_initialize"] == 1
assert tracker["catalyst_finalize"] == 1
assert tracker["catalyst_execute"] >= 1
print_info("All's ok")
# print end marker
print_info("end '%s'", __name__)
| [
1,
529,
12443,
29918,
303,
1503,
29958,
29896,
29900,
29900,
29899,
29896,
29900,
29900,
29900,
13,
29937,
10422,
29901,
4770,
2344,
26914,
2272,
13,
29937,
1304,
304,
1243,
393,
11732,
858,
508,
2254,
18744,
1179,
13,
29937,
5149,
29889,
13,
13,
3166,
610,
485,
646,
29889,
12857,
1053,
334,
13,
3166,
610,
485,
646,
1053,
1596,
29918,
3888,
13,
13,
29937,
1596,
1369,
17456,
13,
2158,
29918,
3888,
703,
463,
14210,
29879,
29915,
613,
4770,
978,
1649,
29897,
13,
13,
3018,
4937,
353,
6571,
13,
1753,
2302,
29898,
29888,
1125,
13,
1678,
822,
14476,
10456,
5085,
29892,
3579,
19290,
1125,
13,
4706,
5534,
1020,
4937,
13,
4706,
274,
353,
1020,
4937,
29889,
657,
29898,
29888,
17255,
978,
1649,
29892,
29871,
29900,
29897,
13,
4706,
1020,
4937,
29961,
29888,
17255,
978,
1649,
29962,
353,
274,
29974,
29896,
13,
4706,
736,
285,
10456,
5085,
29892,
3579,
19290,
29897,
13,
1678,
736,
14476,
13,
13,
29992,
2798,
13,
1753,
17246,
858,
29918,
24926,
7295,
13,
1678,
1596,
29918,
3888,
703,
262,
14210,
29879,
1057,
16431,
858,
29918,
24926,
29915,
613,
4770,
978,
1649,
29897,
13,
13,
29992,
2798,
13,
1753,
17246,
858,
29918,
7978,
29898,
3888,
1125,
13,
1678,
1596,
29918,
3888,
703,
262,
14210,
29879,
1057,
16431,
858,
29918,
7978,
29915,
613,
4770,
978,
1649,
29897,
13,
13,
29992,
2798,
13,
1753,
17246,
858,
29918,
8394,
675,
7295,
13,
1678,
1596,
29918,
3888,
703,
262,
14210,
29879,
1057,
16431,
858,
29918,
8394,
675,
29915,
613,
4770,
978,
1649,
29897,
13,
1678,
5534,
1020,
4937,
13,
1678,
4974,
1020,
4937,
3366,
16431,
858,
29918,
24926,
3108,
1275,
29871,
29896,
13,
1678,
4974,
1020,
4937,
3366,
16431,
858,
29918,
8394,
675,
3108,
1275,
29871,
29896,
13,
1678,
4974,
1020,
4937,
3366,
16431,
858,
29918,
7978,
3108,
6736,
29871,
29896,
13,
1678,
1596,
29918,
3888,
703,
3596,
29915,
29879,
3431,
1159,
13,
13,
29937,
1596,
1095,
17456,
13,
2158,
29918,
3888,
703,
355,
14210,
29879,
29915,
613,
4770,
978,
1649,
29897,
13,
2
] |
tests/test_condition.py | richshaw2015/behavior3py | 0 | 64830 | import b3
import unittest
class TestCondition(unittest.TestCase):
def test_category(self):
self.assertEqual(b3.Condition.category, b3.CONDITION)
if __name__ == '__main__':
unittest.main()
| [
1,
1053,
289,
29941,
13,
5215,
443,
27958,
13,
13,
13,
1990,
4321,
25255,
29898,
348,
27958,
29889,
3057,
8259,
1125,
13,
1678,
822,
1243,
29918,
7320,
29898,
1311,
1125,
13,
4706,
1583,
29889,
9294,
9843,
29898,
29890,
29941,
29889,
25255,
29889,
7320,
29892,
289,
29941,
29889,
6007,
29928,
22122,
29897,
13,
13,
13,
361,
4770,
978,
1649,
1275,
525,
1649,
3396,
1649,
2396,
13,
1678,
443,
27958,
29889,
3396,
580,
13,
2
] |
main.py | Kingtous/pyLex | 1 | 94374 | <gh_stars>1-10
'''
@Author: Kingtous
@Date: 2019-11-01 18:40:29
@LastEditors: Kingtous
@LastEditTime: 2019-11-06 19:47:42
@Description: Kingtous' Code
'''
"""
Author: Kingtous
Date : 2019/09/24
"""
import nfa2dfa as DFATool
import reg2nfa as REGTool
import sys,os,networkx as nx
import tools,constDef
# 因为字符中(,),*跟词法里面的(,),*有冲突,我们需要先将源代码里的
# ()分别替换为{}
# * 替换为 ^
rule_sub_str='(a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|o|p|q|r|s|t|u|v|w|x|y|z|A|B|C|D|E|F|G|H|I|J|K|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z)*(a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|o|p|q|r|s|t|u|v|w|x|y|z|A|B|C|D|E|F|G|H|I|J|K|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z)'
rule_str = rule_sub_str + '(a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|o|p|q|r|s|t|u|v|w|x|y|z|A|B|C|D|E|F|G|H|I|J|K|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z|0|1|2|3|4|5|6|7|8|9)*'
rule_bound=',|.|;|{|}'
rule_cal = '+|-|^|/|:=|<|<=|>|>=|#|='
rule_num = '(0|1|2|3|4|5|6|7|8|9)*(0|1|2|3|4|5|6|7|8|9)'
rule_critical = 'begin|call|const|do|end|if|odd|procedure|read|then|var|while|write'
# [标识符,无符号整数,关键字,运算符,分隔符]
rules = [rule_str,rule_num,rule_critical,rule_cal,rule_bound]
if __name__ == "__main__":
g = []
for i in range(len(rules)):
mg = DFATool.convert2NFA(REGTool.genNFA(rules[i]))
name = tools.findSpeNodeInGraph(mg,constDef.color_startNode)
mg.node[name]['label'] = str(i)+'_'+ name
g.append(mg)
totalGraph = nx.compose_all(g)
tools.writeGraph2File(totalGraph,"pl0/dfa.dot")
# dot图生成时如果有,会出现问题,应该把,改为","
f = open('pl0/dfa.dot')
content = f.read()
f.close()
f=open('pl0/dfa.dot','w')
content = content.replace("=,",'=","')
f.write(content)
f.close()
| [
1,
529,
12443,
29918,
303,
1503,
29958,
29896,
29899,
29896,
29900,
13,
12008,
13,
29992,
13720,
29901,
4088,
29873,
681,
13,
29992,
2539,
29901,
29871,
29906,
29900,
29896,
29929,
29899,
29896,
29896,
29899,
29900,
29896,
29871,
29896,
29947,
29901,
29946,
29900,
29901,
29906,
29929,
13,
29992,
8897,
6103,
943,
29901,
4088,
29873,
681,
13,
29992,
8897,
6103,
2481,
29901,
29871,
29906,
29900,
29896,
29929,
29899,
29896,
29896,
29899,
29900,
29953,
29871,
29896,
29929,
29901,
29946,
29955,
29901,
29946,
29906,
13,
29992,
9868,
29901,
4088,
29873,
681,
29915,
5920,
13,
12008,
13,
15945,
29908,
13,
13720,
29901,
4088,
29873,
681,
13,
2539,
584,
29871,
29906,
29900,
29896,
29929,
29914,
29900,
29929,
29914,
29906,
29946,
13,
15945,
29908,
13,
5215,
302,
5444,
29906,
2176,
29874,
408,
360,
29943,
1299,
1507,
13,
5215,
1072,
29906,
29876,
5444,
408,
5195,
29954,
12229,
13,
5215,
10876,
29892,
359,
29892,
11618,
29916,
408,
302,
29916,
13,
5215,
8492,
29892,
3075,
3206,
13,
13,
29937,
29871,
31570,
30573,
30578,
31277,
30275,
29898,
29892,
511,
29930,
235,
186,
162,
235,
178,
144,
30545,
30755,
30806,
30210,
29898,
29892,
511,
29930,
30417,
232,
137,
181,
234,
173,
132,
30214,
30672,
31381,
31383,
30698,
31244,
30998,
31193,
30690,
31183,
30755,
30210,
13,
29937,
3861,
30748,
232,
139,
174,
233,
158,
194,
31640,
30573,
8875,
13,
29937,
334,
29871,
233,
158,
194,
31640,
30573,
6228,
13,
13,
7491,
29918,
1491,
29918,
710,
2433,
29898,
29874,
29989,
29890,
29989,
29883,
29989,
29881,
29989,
29872,
29989,
29888,
29989,
29887,
29989,
29882,
29989,
29875,
29989,
29926,
29989,
29895,
29989,
29880,
29989,
29885,
29989,
29876,
29989,
29877,
29989,
29886,
29989,
29939,
29989,
29878,
29989,
29879,
29989,
29873,
29989,
29877,
29989,
29886,
29989,
29939,
29989,
29878,
29989,
29879,
29989,
29873,
29989,
29884,
29989,
29894,
29989,
29893,
29989,
29916,
29989,
29891,
29989,
29920,
29989,
29909,
29989,
29933,
29989,
29907,
29989,
29928,
29989,
29923,
29989,
29943,
29989,
29954,
29989,
29950,
29989,
29902,
29989,
29967,
29989,
29968,
29989,
29931,
29989,
29924,
29989,
29940,
29989,
29949,
29989,
29925,
29989,
29984,
29989,
29934,
29989,
29903,
29989,
29911,
29989,
29965,
29989,
29963,
29989,
29956,
29989,
29990,
29989,
29979,
29989,
29999,
11877,
29898,
29874,
29989,
29890,
29989,
29883,
29989,
29881,
29989,
29872,
29989,
29888,
29989,
29887,
29989,
29882,
29989,
29875,
29989,
29926,
29989,
29895,
29989,
29880,
29989,
29885,
29989,
29876,
29989,
29877,
29989,
29886,
29989,
29939,
29989,
29878,
29989,
29879,
29989,
29873,
29989,
29877,
29989,
29886,
29989,
29939,
29989,
29878,
29989,
29879,
29989,
29873,
29989,
29884,
29989,
29894,
29989,
29893,
29989,
29916,
29989,
29891,
29989,
29920,
29989,
29909,
29989,
29933,
29989,
29907,
29989,
29928,
29989,
29923,
29989,
29943,
29989,
29954,
29989,
29950,
29989,
29902,
29989,
29967,
29989,
29968,
29989,
29931,
29989,
29924,
29989,
29940,
29989,
29949,
29989,
29925,
29989,
29984,
29989,
29934,
29989,
29903,
29989,
29911,
29989,
29965,
29989,
29963,
29989,
29956,
29989,
29990,
29989,
29979,
29989,
29999,
16029,
13,
7491,
29918,
710,
353,
5751,
29918,
1491,
29918,
710,
718,
525,
29898,
29874,
29989,
29890,
29989,
29883,
29989,
29881,
29989,
29872,
29989,
29888,
29989,
29887,
29989,
29882,
29989,
29875,
29989,
29926,
29989,
29895,
29989,
29880,
29989,
29885,
29989,
29876,
29989,
29877,
29989,
29886,
29989,
29939,
29989,
29878,
29989,
29879,
29989,
29873,
29989,
29877,
29989,
29886,
29989,
29939,
29989,
29878,
29989,
29879,
29989,
29873,
29989,
29884,
29989,
29894,
29989,
29893,
29989,
29916,
29989,
29891,
29989,
29920,
29989,
29909,
29989,
29933,
29989,
29907,
29989,
29928,
29989,
29923,
29989,
29943,
29989,
29954,
29989,
29950,
29989,
29902,
29989,
29967,
29989,
29968,
29989,
29931,
29989,
29924,
29989,
29940,
29989,
29949,
29989,
29925,
29989,
29984,
29989,
29934,
29989,
29903,
29989,
29911,
29989,
29965,
29989,
29963,
29989,
29956,
29989,
29990,
29989,
29979,
29989,
29999,
29989,
29900,
29989,
29896,
29989,
29906,
29989,
29941,
29989,
29946,
29989,
29945,
29989,
29953,
29989,
29955,
29989,
29947,
29989,
29929,
11877,
29915,
13,
7491,
29918,
9917,
29922,
742,
29989,
29889,
29989,
29936,
29989,
28437,
10162,
13,
7491,
29918,
1052,
353,
525,
29974,
29989,
29899,
15333,
29989,
29914,
29989,
9361,
29989,
29966,
29989,
14065,
29989,
29958,
29989,
18572,
29989,
29937,
29989,
2433,
13,
7491,
29918,
1949,
353,
525,
29898,
29900,
29989,
29896,
29989,
29906,
29989,
29941,
29989,
29946,
29989,
29945,
29989,
29953,
29989,
29955,
29989,
29947,
29989,
29929,
11877,
29898,
29900,
29989,
29896,
29989,
29906,
29989,
29941,
29989,
29946,
29989,
29945,
29989,
29953,
29989,
29955,
29989,
29947,
29989,
29929,
16029,
13,
7491,
29918,
9695,
936,
353,
525,
463,
29989,
4804,
29989,
3075,
29989,
1867,
29989,
355,
29989,
361,
29989,
22861,
29989,
771,
26600,
29989,
949,
29989,
6098,
29989,
1707,
29989,
8000,
29989,
3539,
29915,
13,
29937,
518,
31062,
235,
178,
137,
31277,
30214,
31352,
31277,
30850,
233,
152,
183,
30354,
30214,
31057,
236,
151,
177,
30578,
30214,
31894,
31565,
31277,
30214,
30748,
236,
157,
151,
31277,
29962,
13,
19238,
353,
518,
7491,
29918,
710,
29892,
7491,
29918,
1949,
29892,
7491,
29918,
9695,
936,
29892,
7491,
29918,
1052,
29892,
7491,
29918,
9917,
29962,
13,
13,
361,
4770,
978,
1649,
1275,
376,
1649,
3396,
1649,
1115,
13,
1678,
330,
353,
5159,
13,
1678,
363,
474,
297,
3464,
29898,
2435,
29898,
19238,
22164,
13,
4706,
286,
29887,
353,
360,
29943,
1299,
1507,
29889,
13441,
29906,
29940,
4519,
29898,
18166,
12229,
29889,
1885,
29940,
4519,
29898,
19238,
29961,
29875,
12622,
13,
4706,
1024,
353,
8492,
29889,
2886,
10649,
4247,
797,
9527,
29898,
29885,
29887,
29892,
3075,
3206,
29889,
2780,
29918,
2962,
4247,
29897,
13,
4706,
286,
29887,
29889,
3177,
29961,
978,
22322,
1643,
2033,
353,
851,
29898,
29875,
7240,
15972,
18717,
1024,
13,
4706,
330,
29889,
4397,
29898,
29885,
29887,
29897,
13,
1678,
3001,
9527,
353,
302,
29916,
29889,
19438,
29918,
497,
29898,
29887,
29897,
13,
1678,
8492,
29889,
3539,
9527,
29906,
2283,
29898,
7827,
9527,
1699,
572,
29900,
29914,
2176,
29874,
29889,
6333,
1159,
13,
1678,
396,
8329,
30861,
30486,
30494,
30594,
30847,
30801,
30417,
29892,
30437,
30544,
31424,
31658,
31596,
30214,
31370,
31751,
233,
141,
141,
29892,
31264,
30573,
3284,
13,
1678,
285,
353,
1722,
877,
572,
29900,
29914,
2176,
29874,
29889,
6333,
1495,
13,
1678,
2793,
353,
285,
29889,
949,
580,
13,
1678,
285,
29889,
5358,
580,
13,
1678,
285,
29922,
3150,
877,
572,
29900,
29914,
2176,
29874,
29889,
6333,
3788,
29893,
1495,
13,
1678,
2793,
353,
2793,
29889,
6506,
703,
29922,
29892,
613,
29915,
543,
1699,
1495,
13,
1678,
285,
29889,
3539,
29898,
3051,
29897,
13,
1678,
285,
29889,
5358,
580,
13,
13,
13,
308,
13,
13,
13,
2
] |
setup.py | ev3dev-python-tools/ev3devlogging | 0 | 175774 | from setuptools import setup
import os.path
import sys
setup(
name="ev3devlogging",
version="1.0.1",
description="easy logging library for ev3dev",
long_description="""
easy logging library for ev3dev
For more info: https://github.com/ev3dev-python-tools/ev3devlogging
""",
url="https://github.com/ev3dev-python-tools/ev3devlogging",
author="<NAME>",
author_email="<EMAIL>",
license="MIT",
classifiers=[
"Environment :: MacOS X",
"Environment :: Win32 (MS Windows)",
"Environment :: X11 Applications",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"License :: Freeware",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Education",
"Topic :: Software Development",
],
keywords="IDE education programming EV3 mindstorms lego",
platforms=["Windows", "macOS", "Linux"],
python_requires=">=3.6",
# no packages required; 'logging' already in standard distribution
py_modules=["ev3devlogging"]
)
| [
1,
515,
731,
21245,
8789,
1053,
6230,
13,
5215,
2897,
29889,
2084,
13,
5215,
10876,
13,
13,
13,
14669,
29898,
13,
418,
1024,
543,
5750,
29941,
3359,
21027,
613,
13,
418,
1873,
543,
29896,
29889,
29900,
29889,
29896,
613,
13,
418,
6139,
543,
29872,
8995,
12183,
3489,
363,
3415,
29941,
3359,
613,
13,
418,
1472,
29918,
8216,
13776,
29908,
13,
29872,
8995,
12183,
3489,
363,
3415,
29941,
3359,
13,
13,
2831,
901,
5235,
29901,
2045,
597,
3292,
29889,
510,
29914,
5750,
29941,
3359,
29899,
4691,
29899,
8504,
29914,
5750,
29941,
3359,
21027,
13,
15945,
613,
13,
418,
3142,
543,
991,
597,
3292,
29889,
510,
29914,
5750,
29941,
3359,
29899,
4691,
29899,
8504,
29914,
5750,
29941,
3359,
21027,
613,
13,
418,
4148,
543,
29966,
5813,
28341,
13,
418,
4148,
29918,
5269,
543,
29966,
26862,
6227,
28341,
13,
418,
19405,
543,
26349,
613,
13,
418,
770,
14903,
11759,
13,
4706,
376,
18649,
4761,
4326,
3267,
1060,
613,
13,
4706,
376,
18649,
4761,
8892,
29941,
29906,
313,
4345,
3852,
19123,
13,
4706,
376,
18649,
4761,
1060,
29896,
29896,
2401,
5795,
613,
13,
4706,
376,
2928,
2760,
319,
4749,
663,
4761,
10682,
414,
613,
13,
4706,
376,
2928,
2760,
319,
4749,
663,
4761,
13151,
613,
13,
4706,
376,
2928,
2760,
319,
4749,
663,
4761,
2796,
23861,
29914,
17600,
613,
13,
4706,
376,
29931,
293,
1947,
4761,
3878,
809,
598,
613,
13,
4706,
376,
29931,
293,
1947,
4761,
438,
5425,
28268,
1490,
4761,
341,
1806,
19245,
613,
13,
4706,
376,
29940,
18771,
17088,
4761,
4223,
613,
13,
4706,
376,
7094,
1218,
2184,
4761,
4326,
3267,
613,
13,
4706,
376,
7094,
1218,
2184,
4761,
7783,
4761,
3852,
613,
13,
4706,
376,
7094,
1218,
2184,
4761,
349,
3267,
6415,
613,
13,
4706,
376,
7094,
1218,
2184,
4761,
349,
3267,
6415,
4761,
8074,
613,
13,
4706,
376,
9283,
4056,
17088,
4761,
5132,
613,
13,
4706,
376,
9283,
4056,
17088,
4761,
5132,
4761,
29871,
29941,
613,
13,
4706,
376,
9283,
4056,
17088,
4761,
5132,
4761,
29871,
29941,
4761,
9333,
613,
13,
4706,
376,
9283,
4056,
17088,
4761,
5132,
4761,
29871,
29941,
29889,
29946,
613,
13,
4706,
376,
9283,
4056,
17088,
4761,
5132,
4761,
29871,
29941,
29889,
29945,
613,
13,
4706,
376,
9283,
4056,
17088,
4761,
5132,
4761,
29871,
29941,
29889,
29953,
613,
13,
4706,
376,
9283,
4056,
17088,
4761,
5132,
4761,
29871,
29941,
29889,
29955,
613,
13,
4706,
376,
7031,
293,
4761,
13151,
613,
13,
4706,
376,
7031,
293,
4761,
18540,
14650,
613,
13,
418,
21251,
13,
418,
29361,
543,
22027,
9793,
8720,
382,
29963,
29941,
3458,
303,
555,
29879,
454,
1484,
613,
13,
418,
21796,
29922,
3366,
7685,
613,
376,
8628,
3267,
613,
376,
24085,
12436,
13,
418,
3017,
29918,
276,
339,
2658,
543,
18572,
29941,
29889,
29953,
613,
13,
418,
396,
694,
9741,
3734,
29936,
525,
21027,
29915,
2307,
297,
3918,
4978,
13,
418,
11451,
29918,
7576,
29922,
3366,
5750,
29941,
3359,
21027,
3108,
13,
29897,
13,
2
] |
Project1/toFrames.py | vinitkumawat/uta-machine-learning | 0 | 183634 | import cv2
import numpy as np
import imutils
import shutil,os
shutil.rmtree('frames')
try:
os.makedirs('frames')
except OSError as e:
pass
video='2.mp4'
cap = cv2.VideoCapture(video)
cnt=0
if (cap.isOpened()== False):
print("Error opening video stream or file")
ret,first_frame = cap.read()
while(cap.isOpened()):
ret, frame = cap.read()
if ret == True:
cv2.imshow("image",frame)
if cv2.waitKey(25) & 0xFF == ord('q'):
break
cv2.imwrite('frames/'+str(cnt)+'.png',frame)
cnt=cnt+1
else:
break
cv2.destroyAllWindows()
| [
1,
1053,
13850,
29906,
13,
5215,
12655,
408,
7442,
13,
5215,
527,
13239,
13,
5215,
528,
4422,
29892,
359,
13,
13,
13,
845,
4422,
29889,
1758,
8336,
877,
19935,
1495,
13,
2202,
29901,
13,
1678,
2897,
29889,
29885,
12535,
12935,
877,
19935,
1495,
13,
19499,
438,
29173,
408,
321,
29901,
13,
1678,
1209,
13,
13,
9641,
2433,
29906,
29889,
1526,
29946,
29915,
13,
13,
5030,
353,
13850,
29906,
29889,
15167,
21133,
545,
29898,
9641,
29897,
13,
20047,
29922,
29900,
13,
361,
313,
5030,
29889,
275,
6585,
287,
580,
1360,
7700,
1125,
29871,
13,
29871,
1596,
703,
2392,
8718,
4863,
4840,
470,
934,
1159,
13,
2267,
29892,
4102,
29918,
2557,
353,
2117,
29889,
949,
580,
13,
8000,
29898,
5030,
29889,
275,
6585,
287,
580,
1125,
13,
29871,
3240,
29892,
3515,
353,
2117,
29889,
949,
580,
13,
29871,
565,
3240,
1275,
5852,
29901,
13,
1678,
13850,
29906,
29889,
326,
4294,
703,
3027,
613,
2557,
29897,
13,
1678,
565,
13850,
29906,
29889,
10685,
2558,
29898,
29906,
29945,
29897,
669,
29871,
29900,
29916,
4198,
1275,
4356,
877,
29939,
29374,
13,
418,
2867,
13,
1678,
13850,
29906,
29889,
326,
3539,
877,
19935,
29914,
18717,
710,
29898,
20047,
7240,
4286,
2732,
742,
2557,
29897,
13,
1678,
274,
593,
29922,
20047,
29974,
29896,
13,
29871,
1683,
29901,
29871,
13,
1678,
2867,
13,
13,
11023,
29906,
29889,
20524,
3596,
7685,
580,
13,
2
] |
backend/termination_request/models.py | adabutch/account_tracker | 0 | 111360 | from django.db import models
from django.contrib.auth.models import User
class TerminationRequest(models.Model):
"""
When an employee leaves the organization
remove access to the different services that were previously requested
"""
requester = models.ForeignKey(
User, related_name='requested_terminations', on_delete=models.SET_NULL,
blank=True, null=True)
# who is leaving?
user = models.ForeignKey(User, related_name='terminations',
on_delete=models.SET_NULL, blank=True, null=True)
# is it new? approved? completed? denied?
request_status = models.CharField(max_length=50)
# will the employee be coming back at a later date? i.e. seasonal?
returning = models.BooleanField(default=False)
return_date = models.DateField(blank=True, null=True)
requested = models.DateTimeField(auto_now_add=True)
# any associated logged actions could trigger an update to updated
updated = models.DateTimeField(auto_now=True)
# when the account was closed -- job's finished
terminated = models.DateTimeField(blank=True, null=True)
| [
1,
515,
9557,
29889,
2585,
1053,
4733,
13,
3166,
9557,
29889,
21570,
29889,
5150,
29889,
9794,
1053,
4911,
13,
13,
13,
1990,
11814,
3381,
3089,
29898,
9794,
29889,
3195,
1125,
13,
1678,
9995,
13,
1678,
1932,
385,
19001,
11308,
278,
13013,
13,
1678,
3349,
2130,
304,
278,
1422,
5786,
393,
892,
9251,
13877,
13,
1678,
9995,
13,
1678,
2009,
261,
353,
4733,
29889,
27755,
2558,
29898,
13,
4706,
4911,
29892,
4475,
29918,
978,
2433,
3827,
287,
29918,
18821,
800,
742,
373,
29918,
8143,
29922,
9794,
29889,
10490,
29918,
10074,
29892,
13,
4706,
9654,
29922,
5574,
29892,
1870,
29922,
5574,
29897,
13,
13,
1678,
396,
1058,
338,
10124,
29973,
13,
1678,
1404,
353,
4733,
29889,
27755,
2558,
29898,
2659,
29892,
4475,
29918,
978,
2433,
18821,
800,
742,
13,
462,
632,
373,
29918,
8143,
29922,
9794,
29889,
10490,
29918,
10074,
29892,
9654,
29922,
5574,
29892,
1870,
29922,
5574,
29897,
13,
13,
1678,
396,
338,
372,
716,
29973,
23454,
29973,
8676,
29973,
17935,
29973,
13,
1678,
2009,
29918,
4882,
353,
4733,
29889,
27890,
29898,
3317,
29918,
2848,
29922,
29945,
29900,
29897,
13,
13,
1678,
396,
674,
278,
19001,
367,
6421,
1250,
472,
263,
2678,
2635,
29973,
474,
29889,
29872,
29889,
4259,
284,
29973,
13,
1678,
7863,
353,
4733,
29889,
18146,
3073,
29898,
4381,
29922,
8824,
29897,
13,
1678,
736,
29918,
1256,
353,
4733,
29889,
2539,
3073,
29898,
19465,
29922,
5574,
29892,
1870,
29922,
5574,
29897,
13,
13,
1678,
13877,
353,
4733,
29889,
11384,
3073,
29898,
6921,
29918,
3707,
29918,
1202,
29922,
5574,
29897,
13,
1678,
396,
738,
6942,
13817,
8820,
1033,
7135,
385,
2767,
304,
4784,
13,
1678,
4784,
353,
4733,
29889,
11384,
3073,
29898,
6921,
29918,
3707,
29922,
5574,
29897,
13,
1678,
396,
746,
278,
3633,
471,
5764,
1192,
4982,
29915,
29879,
7743,
13,
1678,
29185,
353,
4733,
29889,
11384,
3073,
29898,
19465,
29922,
5574,
29892,
1870,
29922,
5574,
29897,
13,
2
] |
utils/rendering_layer.py | CSuppan/two-shot-brdf-shape | 0 | 186625 | <reponame>CSuppan/two-shot-brdf-shape
# -----------------------------------------------------------------------
# Copyright (c) 2020, NVIDIA Corporation. All rights reserved.
#
# This work is made available
# under the Nvidia Source Code License (1-way Commercial).
#
# Official Implementation of the CVPR2020 Paper
# Two-shot Spatially-varying BRDF and Shape Estimation
# <NAME>, <NAME>, <NAME>, <NAME>, <NAME>
# -----------------------------------------------------------------------
import os
import sys
from typing import Any, List, Tuple
import numpy as np
import tensorflow as tf
from tensorflow.python.framework import tensor_shape
import utils.common_layers as cl
import utils.layer_helper as layer_helper
from utils.common_layers import (
gamma_to_linear,
isclose,
linear_to_gamma,
mix,
safe_sqrt,
saturate,
srgb_to_linear,
)
from utils.dataflow_utils import apply_mask, chwToHwc, ensureSingleChannel, hwcToChw
EPS = 1e-7
class RenderingLayer:
def __init__(
self,
fov: int,
distanceToZero: float,
output_shape: tensor_shape.TensorShape,
data_format: str = "channels_last",
):
self.distanceToZero = distanceToZero
self.fov = fov
self.data_format = layer_helper.normalize_data_format(data_format)
self.build(output_shape)
def build(self, output_shape):
with tf.variable_scope("Prep"):
if self.data_format == "channels_first":
channel_axis = 1
height_axis = 2
width_axis = 3
else:
channel_axis = -1
height_axis = 1
width_axis = 2
if (
output_shape.dims[height_axis].value is None
or output_shape.dims[width_axis].value is None
):
raise ValueError(
"The width and height dimension of the inputs "
"should be defined. Found `None`."
)
height = int(output_shape[height_axis])
width = int(output_shape[width_axis])
yRange = xRange = self.distanceToZero * np.tan((self.fov * np.pi / 180) / 2)
x, y = np.meshgrid(
np.linspace(-xRange, xRange, height),
np.linspace(-yRange, yRange, width),
)
y = np.flipud(y)
x = np.fliplr(x)
z = np.ones((height, width), dtype=np.float32)
coord = np.stack([x, y, z]).astype(np.float32)
if self.data_format == "channels_last":
coord = chwToHwc(coord)
self.base_mesh = tf.convert_to_tensor(
np.expand_dims(coord, 0), dtype=tf.float32
)
def call(
self,
diffuse: tf.Tensor,
specular: tf.Tensor,
roughness: tf.Tensor,
normal: tf.Tensor,
depth: tf.Tensor,
mask: tf.Tensor,
camera_pos: tf.Tensor,
light_pos: tf.Tensor,
light_color: tf.Tensor,
sgs: tf.Tensor,
) -> tf.Tensor:
""" Evaluate the rendering equation
"""
with tf.variable_scope("Setup"):
assert (
sgs.shape[self._get_channel_axis()] == 7 and len(sgs.shape) == 3
) # n, sgs, c
assert (
diffuse.shape[self._get_channel_axis()] == 3 and len(diffuse.shape) == 4
)
assert (
specular.shape[self._get_channel_axis()] == 3
and len(specular.shape) == 4
)
assert (
roughness.shape[self._get_channel_axis()] == 1
and len(roughness.shape) == 4
)
assert (
normal.shape[self._get_channel_axis()] == 3 and len(normal.shape) == 4
)
assert mask.shape[self._get_channel_axis()] == 1 and len(mask.shape) == 4
assert (
camera_pos.shape[self._get_channel_axis()] == 3
and len(camera_pos.shape) == 2
)
assert (
light_pos.shape[self._get_channel_axis()] == 3
and len(light_pos.shape) == 2
)
assert (
light_color.shape[self._get_channel_axis()] == 3
and len(light_color.shape) == 2
)
realDepth = self._uncompressDepth(depth)
perturbed_mesh = self.base_mesh * realDepth
if self.data_format == "channels_first":
reshapeShape = [-1, 3, 1, 1]
else:
reshapeShape = [-1, 1, 1, 3]
lp = tf.reshape(light_pos, reshapeShape)
vp = tf.reshape(camera_pos, reshapeShape)
lc = tf.reshape(light_color, reshapeShape)
l_vec = lp - perturbed_mesh
v = self._normalize(vp - perturbed_mesh)
l = self._normalize(l_vec)
h = self._normalize(l + v)
axis_flip = tf.constant([-1, 1, -1], dtype=tf.float32)
axis_flip = tf.reshape(axis_flip, reshapeShape)
n = self._normalize(normal * 2.0 - 1.0) * axis_flip
ndl = saturate(self._dot(n, l))
ndv = saturate(self._dot(n, v), 1e-5)
ndh = saturate(self._dot(n, h))
ldh = saturate(self._dot(l, h))
vdh = saturate(self._dot(v, h))
sqrLightDistance = self._dot(l_vec, l_vec)
light = tf.div_no_nan(lc, sqrLightDistance)
diff = srgb_to_linear(diffuse)
spec = srgb_to_linear(specular)
directSpecular = self.spec(ndl, ndv, ndh, ldh, vdh, spec, roughness)
with tf.variable_scope("Diffuse"):
directDiffuse = diff * (1.0 / np.pi) * ndv * (1.0 - self.F(spec, ldh))
with tf.variable_scope("Direct_light"):
brdf = directSpecular + directDiffuse
direct = brdf * light
direct = tf.where(
tf.math.less(self._to_vec3(ndl), EPS), tf.zeros_like(direct), direct
)
direct = tf.where(
tf.math.less(self._to_vec3(ndv), EPS), tf.zeros_like(direct), direct
)
with tf.variable_scope("SG_light"):
sg_stack_axis = 2 if self.data_format == "channels_first" else 1
number_of_sgs = sgs.shape[sg_stack_axis]
env_direct = tf.zeros_like(direct)
for i in range(number_of_sgs):
if self.data_format == "channels_first":
sg = sgs[:, :, i]
else:
sg = sgs[:, i]
evaled = self.sg_eval(
sg, diffuse, specular, roughness, n, mask, perturbed_mesh, vp
)
env_direct = env_direct + evaled
with tf.variable_scope("Blending"):
return direct + env_direct
def F(self, F0: tf.Tensor, ldh: tf.Tensor) -> tf.Tensor:
with tf.variable_scope("Fresnel"):
ct = 1 - ldh
ctsq = ct * ct
ct5 = ctsq * ctsq * ct
return F0 + (1 - F0) * ct5
def _G(self, a2: tf.Tensor, ndx: tf.Tensor) -> tf.Tensor:
return tf.div_no_nan(2 * ndx, ndx + safe_sqrt(a2 + (1 - a2) * ndx * ndx))
def G(self, alpha: tf.Tensor, ndl: tf.Tensor, ndv: tf.Tensor) -> tf.Tensor:
with tf.variable_scope("Geometry"):
a2 = alpha * alpha
return self._G(a2, ndl) * self._G(a2, ndv)
def D(self, alpha: tf.Tensor, ndh: tf.Tensor) -> tf.Tensor:
with tf.variable_scope("Distribution"):
a2 = alpha * alpha
denom = (ndh * ndh) * (a2 - 1) + 1.0
denom2 = denom * denom
return tf.div_no_nan(a2, np.pi * denom2)
def spec(
self,
ndl: tf.Tensor,
ndv: tf.Tensor,
ndh: tf.Tensor,
ldh: tf.Tensor,
vdh: tf.Tensor,
F0: tf.Tensor,
roughness: tf.Tensor,
) -> tf.Tensor:
with tf.variable_scope("Specular"):
alpha = saturate(roughness * roughness, 1e-3)
F = self.F(F0, ldh)
G = self.G(alpha, ndl, ndv)
D = self.D(alpha, ndh)
ret = tf.div_no_nan(F * G * D, 4.0 * ndl)
ret = tf.where(
tf.math.less(self._to_vec3(ndh), EPS), tf.zeros_like(ret), ret
)
ret = tf.where(
tf.math.less(self._to_vec3(ldh * ndl), EPS), tf.zeros_like(ret), ret
)
ret = tf.where(
tf.math.less(self._to_vec3(vdh * ndv), EPS), tf.zeros_like(ret), ret
)
return ret
def _sg_integral(self, sg: tf.Tensor) -> tf.Tensor:
with tf.variable_scope("Integral"):
assert sg.shape[self._get_channel_axis()] == 7 and len(sg.shape) == 4
s_amplitude, s_axis, s_sharpness = self._extract_sg_components(sg)
expTerm = 1.0 - tf.exp(-2.0 * s_sharpness)
return 2 * np.pi * tf.div_no_nan(s_amplitude, s_sharpness) * expTerm
def _sg_evaluate(self, sg: tf.Tensor, d: tf.Tensor) -> tf.Tensor:
with tf.variable_scope("Evaluate"):
assert sg.shape[self._get_channel_axis()] == 7 and len(sg.shape) == 4
assert d.shape[self._get_channel_axis()] == 3 and len(d.shape) == 4
s_amplitude, s_axis, s_sharpness = self._extract_sg_components(sg)
cosAngle = self._dot(d, s_axis)
return s_amplitude * tf.exp(s_sharpness * (cosAngle - 1.0))
def _sg_inner_product(self, sg1: tf.Tensor, sg2: tf.Tensor) -> tf.Tensor:
with tf.variable_scope("InnerProd"):
assert sg1.shape[self._get_channel_axis()] == 7 and len(sg1.shape) == 4
assert sg2.shape[self._get_channel_axis()] == 7 and len(sg2.shape) == 4
s1_amplitude, s1_axis, s1_sharpness = self._extract_sg_components(sg1)
s2_amplitude, s2_axis, s2_sharpness = self._extract_sg_components(sg2)
umLength = self._magnitude(s1_sharpness * s1_axis + s2_sharpness * s2_axis)
expo = (
tf.exp(umLength - s1_sharpness - s2_sharpness)
* s1_amplitude
* s2_amplitude
)
other = 1.0 - tf.exp(-2.0 * umLength)
return tf.div_no_nan(2.0 * np.pi * expo * other, umLength)
def _sg_evaluate_diffuse(
self, sg: tf.Tensor, diffuse: tf.Tensor, normal: tf.Tensor
) -> tf.Tensor:
with tf.variable_scope("Diffuse"):
assert (
sg.shape[self._get_channel_axis()] == 7 and len(sg.shape) == 4
) # b, h, w, c | b, c, h, w
assert (
diffuse.shape[self._get_channel_axis()] == 3 and len(diffuse.shape) == 4
)
assert (
normal.shape[self._get_channel_axis()] == 3 and len(normal.shape) == 4
)
diff = tf.div_no_nan(diffuse, np.pi)
s_amplitude, s_axis, s_sharpness = self._extract_sg_components(sg)
mudn = saturate(self._dot(s_axis, normal))
c0 = 0.36
c1 = 1.0 / (4.0 * c0)
eml = tf.exp(-s_sharpness)
em2l = eml * eml
rl = tf.div_no_nan(1.0, s_sharpness)
scale = 1.0 + 2.0 * em2l - rl
bias = (eml - em2l) * rl - em2l
x = safe_sqrt(1.0 - scale)
x0 = c0 * mudn
x1 = c1 * x
n = x0 + x1
y = tf.where(tf.less_equal(tf.abs(x0), x1), n * tf.div_no_nan(n, x), mudn)
res = scale * y + bias
res = res * self._sg_integral(sg) * diff
return res
def _sg_distribution_term(self, d: tf.Tensor, roughness: tf.Tensor) -> tf.Tensor:
with tf.variable_scope("Distribution"):
assert d.shape[self._get_channel_axis()] == 3 and len(d.shape) == 4
assert (
roughness.shape[self._get_channel_axis()] == 1
and len(roughness.shape) == 4
)
a2 = saturate(roughness * roughness, 1e-3)
ret = tf.concat(
[
self._to_vec3(tf.div_no_nan(1.0, np.pi * a2)),
d,
tf.div_no_nan(2.0, a2),
],
self._get_channel_axis(),
)
return ret
def _sg_warp_distribution(self, ndfs: tf.Tensor, v: tf.Tensor) -> tf.Tensor:
with tf.variable_scope("WarpDistribution"):
assert ndfs.shape[self._get_channel_axis()] == 7 and len(ndfs.shape) == 4
assert v.shape[self._get_channel_axis()] == 3 and len(v.shape) == 4
ndf_amplitude, ndf_axis, ndf_sharpness = self._extract_sg_components(ndfs)
ret = tf.concat(
[
ndf_amplitude,
self._reflect(-v, ndf_axis),
tf.div_no_nan(
ndf_sharpness, (4.0 * saturate(self._dot(ndf_axis, v), 1e-4))
),
],
self._get_channel_axis(),
)
return ret
def _sg_ggx(self, a2: tf.Tensor, ndx: tf.Tensor) -> tf.Tensor:
with tf.variable_scope("Geometric"):
return tf.div_no_nan(1.0, (ndx + safe_sqrt(a2 + (1 - a2) * ndx * ndx)))
def _sg_evaluate_specular(
self,
sg: tf.Tensor,
specular: tf.Tensor,
roughness: tf.Tensor,
warped_ndf: tf.Tensor,
ndl: tf.Tensor,
ndv: tf.Tensor,
ldh: tf.Tensor,
vdh: tf.Tensor,
ndh: tf.Tensor,
) -> tf.Tensor:
with tf.variable_scope("Specular"):
assert sg.shape[self._get_channel_axis()] == 7 and len(sg.shape) == 4
assert (
warped_ndf.shape[self._get_channel_axis()] == 7
and len(warped_ndf.shape) == 4
)
assert (
specular.shape[self._get_channel_axis()] == 3
and len(specular.shape) == 4
)
assert (
roughness.shape[self._get_channel_axis()] == 1
and len(roughness.shape) == 4
)
assert ndl.shape[self._get_channel_axis()] == 1 and len(ndl.shape) == 4
assert ndv.shape[self._get_channel_axis()] == 1 and len(ndv.shape) == 4
assert ldh.shape[self._get_channel_axis()] == 1 and len(ldh.shape) == 4
assert vdh.shape[self._get_channel_axis()] == 1 and len(vdh.shape) == 4
assert ndh.shape[self._get_channel_axis()] == 1 and len(ndh.shape) == 4
a2 = saturate(roughness * roughness, 1e-3)
with tf.variable_scope("Distribution"):
D = self._sg_inner_product(warped_ndf, sg)
G = self._sg_ggx(a2, ndl) * self._sg_ggx(a2, ndv)
with tf.variable_scope("Fresnel"):
powTerm = tf.pow(1.0 - ldh, 5)
F = specular + (1.0 - specular) * powTerm
output = D * G * F * ndl
shadowed = tf.zeros_like(output)
zero_vec = tf.zeros_like(ndh)
output = tf.where(self._to_vec3(isclose(ndh, zero_vec)), shadowed, output)
output = tf.where(
self._to_vec3(isclose(ldh * ndl, zero_vec)), shadowed, output
)
output = tf.where(
self._to_vec3(isclose(vdh * ndv, zero_vec)), shadowed, output
)
return tf.maximum(output, 0.0)
def sg_eval(
self,
sg: tf.Tensor,
diffuse: tf.Tensor,
specular: tf.Tensor,
roughness: tf.Tensor,
normal: tf.Tensor,
mask: tf.Tensor,
perturbed_mesh: tf.Tensor,
camera_pos: tf.Tensor,
) -> tf.Tensor:
with tf.variable_scope("SG"):
assert sg.shape[self._get_channel_axis()] == 7 and len(sg.shape) == 2
assert (
diffuse.shape[self._get_channel_axis()] == 3 and len(diffuse.shape) == 4
)
assert (
specular.shape[self._get_channel_axis()] == 3
and len(specular.shape) == 4
)
assert (
roughness.shape[self._get_channel_axis()] == 1
and len(roughness.shape) == 4
)
assert (
normal.shape[self._get_channel_axis()] == 3 and len(normal.shape) == 4
)
assert (
normal.shape[self._get_channel_axis()] == 3 and len(normal.shape) == 4
)
assert mask.shape[self._get_channel_axis()] == 1 and len(mask.shape) == 4
assert (
camera_pos.shape[self._get_channel_axis()] == 3
and len(camera_pos.shape) == 4
)
if self.data_format == "channels_first":
sgShape = [-1, 7, 1, 1]
else:
sgShape = [-1, 1, 1, 7]
sg = tf.reshape(sg, sgShape)
v = self._normalize(camera_pos - perturbed_mesh)
diff = srgb_to_linear(diffuse)
spec = srgb_to_linear(specular)
norm = normal
rogh = roughness
ndf = self._sg_distribution_term(norm, rogh)
warped_ndf = self._sg_warp_distribution(ndf, v)
_, wndf_axis, _ = self._extract_sg_components(warped_ndf)
warpDir = wndf_axis
ndl = saturate(self._dot(norm, warpDir))
ndv = saturate(self._dot(norm, v), 1e-5)
h = self._normalize(warpDir + v)
ndh = saturate(self._dot(norm, h))
ldh = saturate(self._dot(warpDir, h))
vdh = saturate(self._dot(v, h))
diffuse_eval = self._sg_evaluate_diffuse(sg, diff, norm) * ndl
specular_eval = self._sg_evaluate_specular(
sg, spec, rogh, warped_ndf, ndl, ndv, ldh, vdh, ndh
)
shadowed = tf.zeros_like(diffuse_eval)
zero_vec = tf.zeros_like(ndl)
diffuse_eval = tf.where(
self._to_vec3(isclose(ndl, zero_vec)), shadowed, diffuse_eval
)
diffuse_eval = tf.where(
self._to_vec3(isclose(ndv, zero_vec)), shadowed, diffuse_eval
)
specular_eval = tf.where(
self._to_vec3(isclose(ndl, zero_vec)), shadowed, specular_eval
)
specular_eval = tf.where(
self._to_vec3(isclose(ndv, zero_vec)), shadowed, specular_eval
)
brdf_eval = diffuse_eval + specular_eval
return tf.where(
self._to_vec3(tf.equal(mask, zero_vec)), shadowed, brdf_eval
)
def _extract_sg_components(
self, sg: tf.Tensor
) -> Tuple[tf.Tensor, tf.Tensor, tf.Tensor]:
if self.data_format == "channels_first":
s_amplitude = sg[:, 0:3]
s_axis = sg[:, 3:6]
s_sharpness = sg[:, 6:7]
else:
s_amplitude = sg[..., 0:3]
s_axis = sg[..., 3:6]
s_sharpness = sg[..., 6:7]
return (s_amplitude, s_axis, s_sharpness)
def visualize_sgs(self, sgs: tf.Tensor, output: tf.Tensor, name: str = "sgs"):
with tf.variable_scope("Visualize"):
us, vs = tf.meshgrid(
tf.linspace(0.0, 1.0, output.shape[2]),
tf.linspace(0.0, 1.0, output.shape[1]),
) # OK
uvs = tf.stack([us, vs], -1)
# q f
theta = 2.0 * np.pi * uvs[..., 0] - (np.pi / 2)
phi = np.pi * uvs[..., 1]
d = tf.expand_dims(
tf.stack(
[
tf.cos(theta) * tf.sin(phi),
tf.cos(phi),
tf.sin(theta) * tf.sin(phi),
],
-1,
),
0,
)
for i in range(sgs.shape[1]):
output = output + self._sg_evaluate(
tf.reshape(sgs[:, i], [-1, 1, 1, 7]), d
)
tf.summary.image(name, output, max_outputs=10)
def _magnitude(self, x: tf.Tensor) -> tf.Tensor:
return cl.magnitude(x, data_format=self.data_format)
def _normalize(self, x: tf.Tensor) -> tf.Tensor:
return cl.normalize(x, data_format=self.data_format)
def _dot(self, x: tf.Tensor, y: tf.Tensor) -> tf.Tensor:
return cl.dot(x, y, data_format=self.data_format)
def _reflect(self, d: tf.Tensor, n: tf.Tensor) -> tf.Tensor:
return d - 2 * self._dot(d, n) * n
def _to_vec3(self, x: tf.Tensor) -> tf.Tensor:
return cl.to_vec3(x, data_format=self.data_format)
def _get_channel_axis(self) -> int:
return cl.get_channel_axis(data_format=self.data_format)
def _uncompressDepth(
self, d: tf.Tensor, sigma: float = 2.5, epsilon: float = 0.7
) -> tf.Tensor:
"""From 0-1 values to full depth range. The possible depth range
is modelled by sigma and epsilon and with sigma=2.5 and epsilon=0.7
it is between 0.17 and 1.4.
"""
return tf.div_no_nan(1.0, 2.0 * sigma * d + epsilon)
| [
1,
529,
276,
1112,
420,
29958,
29907,
20182,
273,
29914,
10184,
29899,
8962,
29899,
1182,
2176,
29899,
12181,
13,
29937,
448,
2683,
2683,
2683,
2683,
22158,
13,
29937,
14187,
1266,
313,
29883,
29897,
29871,
29906,
29900,
29906,
29900,
29892,
405,
13044,
10764,
15025,
29889,
2178,
10462,
21676,
29889,
13,
29937,
13,
29937,
910,
664,
338,
1754,
3625,
13,
29937,
1090,
278,
405,
28584,
7562,
5920,
19245,
313,
29896,
29899,
1582,
422,
1050,
1455,
467,
13,
29937,
13,
29937,
10564,
1954,
14607,
310,
278,
25778,
10593,
29906,
29900,
29906,
29900,
349,
7202,
13,
29937,
7803,
29899,
8962,
1706,
15238,
368,
29899,
29894,
653,
292,
25185,
4037,
322,
1383,
4085,
2661,
7715,
13,
29937,
529,
5813,
10202,
529,
5813,
10202,
529,
5813,
10202,
529,
5813,
10202,
529,
5813,
29958,
13,
29937,
448,
2683,
2683,
2683,
2683,
22158,
13,
13,
5215,
2897,
13,
5215,
10876,
13,
3166,
19229,
1053,
3139,
29892,
2391,
29892,
12603,
552,
13,
13,
5215,
12655,
408,
7442,
13,
5215,
26110,
408,
15886,
13,
3166,
26110,
29889,
4691,
29889,
4468,
1053,
12489,
29918,
12181,
13,
13,
5215,
3667,
29879,
29889,
9435,
29918,
29277,
408,
1067,
13,
5215,
3667,
29879,
29889,
13148,
29918,
20907,
408,
7546,
29918,
20907,
13,
3166,
3667,
29879,
29889,
9435,
29918,
29277,
1053,
313,
13,
1678,
330,
2735,
29918,
517,
29918,
10660,
29892,
13,
1678,
338,
5358,
29892,
13,
1678,
5608,
29918,
517,
29918,
4283,
29892,
13,
1678,
6837,
29892,
13,
1678,
9109,
29918,
3676,
29892,
13,
1678,
269,
1337,
403,
29892,
13,
1678,
269,
23973,
29918,
517,
29918,
10660,
29892,
13,
29897,
13,
3166,
3667,
29879,
29889,
1272,
1731,
29918,
13239,
1053,
3394,
29918,
13168,
29892,
521,
29893,
1762,
29950,
29893,
29883,
29892,
9801,
15771,
13599,
29892,
298,
29893,
29883,
1762,
1451,
29893,
13,
13,
29923,
7024,
353,
29871,
29896,
29872,
29899,
29955,
13,
13,
13,
1990,
26000,
292,
14420,
29901,
13,
1678,
822,
4770,
2344,
12035,
13,
4706,
1583,
29892,
13,
4706,
285,
586,
29901,
938,
29892,
13,
4706,
5418,
1762,
24214,
29901,
5785,
29892,
13,
4706,
1962,
29918,
12181,
29901,
12489,
29918,
12181,
29889,
29911,
6073,
24111,
29892,
13,
4706,
848,
29918,
4830,
29901,
851,
353,
376,
305,
12629,
29918,
4230,
613,
13,
268,
1125,
13,
4706,
1583,
29889,
19244,
1762,
24214,
353,
5418,
1762,
24214,
13,
4706,
1583,
29889,
29888,
586,
353,
285,
586,
13,
4706,
1583,
29889,
1272,
29918,
4830,
353,
7546,
29918,
20907,
29889,
8945,
675,
29918,
1272,
29918,
4830,
29898,
1272,
29918,
4830,
29897,
13,
13,
4706,
1583,
29889,
4282,
29898,
4905,
29918,
12181,
29897,
13,
13,
1678,
822,
2048,
29898,
1311,
29892,
1962,
29918,
12181,
1125,
13,
4706,
411,
15886,
29889,
11918,
29918,
6078,
703,
29925,
3445,
29908,
1125,
13,
9651,
565,
1583,
29889,
1272,
29918,
4830,
1275,
376,
305,
12629,
29918,
4102,
1115,
13,
18884,
8242,
29918,
8990,
353,
29871,
29896,
13,
18884,
3171,
29918,
8990,
353,
29871,
29906,
13,
18884,
2920,
29918,
8990,
353,
29871,
29941,
13,
9651,
1683,
29901,
13,
18884,
8242,
29918,
8990,
353,
448,
29896,
13,
18884,
3171,
29918,
8990,
353,
29871,
29896,
13,
18884,
2920,
29918,
8990,
353,
29871,
29906,
13,
13,
9651,
565,
313,
13,
18884,
1962,
29918,
12181,
29889,
6229,
29879,
29961,
3545,
29918,
8990,
1822,
1767,
338,
6213,
13,
18884,
470,
1962,
29918,
12181,
29889,
6229,
29879,
29961,
2103,
29918,
8990,
1822,
1767,
338,
6213,
13,
632,
1125,
13,
18884,
12020,
7865,
2392,
29898,
13,
462,
1678,
376,
1576,
2920,
322,
3171,
9927,
310,
278,
10970,
376,
13,
462,
1678,
376,
9344,
367,
3342,
29889,
7460,
421,
8516,
29952,
1213,
13,
18884,
1723,
13,
13,
9651,
3171,
353,
938,
29898,
4905,
29918,
12181,
29961,
3545,
29918,
8990,
2314,
13,
9651,
2920,
353,
938,
29898,
4905,
29918,
12181,
29961,
2103,
29918,
8990,
2314,
13,
13,
9651,
343,
6069,
353,
921,
6069,
353,
1583,
29889,
19244,
1762,
24214,
334,
7442,
29889,
13161,
3552,
1311,
29889,
29888,
586,
334,
7442,
29889,
1631,
847,
29871,
29896,
29947,
29900,
29897,
847,
29871,
29906,
29897,
13,
13,
9651,
921,
29892,
343,
353,
7442,
29889,
4467,
29882,
7720,
29898,
13,
18884,
7442,
29889,
1915,
3493,
6278,
29916,
6069,
29892,
921,
6069,
29892,
3171,
511,
13,
18884,
7442,
29889,
1915,
3493,
6278,
29891,
6069,
29892,
343,
6069,
29892,
2920,
511,
13,
9651,
1723,
13,
9651,
343,
353,
7442,
29889,
29888,
3466,
566,
29898,
29891,
29897,
13,
9651,
921,
353,
7442,
29889,
20157,
572,
29878,
29898,
29916,
29897,
13,
13,
9651,
503,
353,
7442,
29889,
2873,
3552,
3545,
29892,
2920,
511,
26688,
29922,
9302,
29889,
7411,
29941,
29906,
29897,
13,
9651,
29311,
353,
7442,
29889,
1429,
4197,
29916,
29892,
343,
29892,
503,
14664,
579,
668,
29898,
9302,
29889,
7411,
29941,
29906,
29897,
13,
9651,
565,
1583,
29889,
1272,
29918,
4830,
1275,
376,
305,
12629,
29918,
4230,
1115,
13,
18884,
29311,
353,
521,
29893,
1762,
29950,
29893,
29883,
29898,
1111,
536,
29897,
13,
13,
9651,
1583,
29889,
3188,
29918,
4467,
29882,
353,
15886,
29889,
13441,
29918,
517,
29918,
20158,
29898,
13,
18884,
7442,
29889,
18837,
29918,
6229,
29879,
29898,
1111,
536,
29892,
29871,
29900,
511,
26688,
29922,
13264,
29889,
7411,
29941,
29906,
13,
9651,
1723,
13,
13,
1678,
822,
1246,
29898,
13,
4706,
1583,
29892,
13,
4706,
2923,
1509,
29901,
15886,
29889,
29911,
6073,
29892,
13,
4706,
1580,
1070,
29901,
15886,
29889,
29911,
6073,
29892,
13,
4706,
12164,
2264,
29901,
15886,
29889,
29911,
6073,
29892,
13,
4706,
4226,
29901,
15886,
29889,
29911,
6073,
29892,
13,
4706,
10809,
29901,
15886,
29889,
29911,
6073,
29892,
13,
4706,
11105,
29901,
15886,
29889,
29911,
6073,
29892,
13,
4706,
10656,
29918,
1066,
29901,
15886,
29889,
29911,
6073,
29892,
13,
4706,
3578,
29918,
1066,
29901,
15886,
29889,
29911,
6073,
29892,
13,
4706,
3578,
29918,
2780,
29901,
15886,
29889,
29911,
6073,
29892,
13,
4706,
269,
3174,
29901,
15886,
29889,
29911,
6073,
29892,
13,
1678,
1723,
1599,
15886,
29889,
29911,
6073,
29901,
13,
4706,
9995,
382,
4387,
403,
278,
15061,
6306,
13,
4706,
9995,
13,
4706,
411,
15886,
29889,
11918,
29918,
6078,
703,
26947,
29908,
1125,
13,
9651,
4974,
313,
13,
18884,
269,
3174,
29889,
12181,
29961,
1311,
3032,
657,
29918,
12719,
29918,
8990,
580,
29962,
1275,
29871,
29955,
322,
7431,
29898,
29879,
3174,
29889,
12181,
29897,
1275,
29871,
29941,
13,
9651,
1723,
29871,
396,
302,
29892,
269,
3174,
29892,
274,
13,
9651,
4974,
313,
13,
18884,
2923,
1509,
29889,
12181,
29961,
1311,
3032,
657,
29918,
12719,
29918,
8990,
580,
29962,
1275,
29871,
29941,
322,
7431,
29898,
12765,
1509,
29889,
12181,
29897,
1275,
29871,
29946,
13,
9651,
1723,
13,
9651,
4974,
313,
13,
18884,
1580,
1070,
29889,
12181,
29961,
1311,
3032,
657,
29918,
12719,
29918,
8990,
580,
29962,
1275,
29871,
29941,
13,
18884,
322,
7431,
29898,
6550,
1070,
29889,
12181,
29897,
1275,
29871,
29946,
13,
9651,
1723,
13,
9651,
4974,
313,
13,
18884,
12164,
2264,
29889,
12181,
29961,
1311,
3032,
657,
29918,
12719,
29918,
8990,
580,
29962,
1275,
29871,
29896,
13,
18884,
322,
7431,
29898,
10573,
2264,
29889,
12181,
29897,
1275,
29871,
29946,
13,
9651,
1723,
13,
9651,
4974,
313,
13,
18884,
4226,
29889,
12181,
29961,
1311,
3032,
657,
29918,
12719,
29918,
8990,
580,
29962,
1275,
29871,
29941,
322,
7431,
29898,
8945,
29889,
12181,
29897,
1275,
29871,
29946,
13,
9651,
1723,
13,
9651,
4974,
11105,
29889,
12181,
29961,
1311,
3032,
657,
29918,
12719,
29918,
8990,
580,
29962,
1275,
29871,
29896,
322,
7431,
29898,
13168,
29889,
12181,
29897,
1275,
29871,
29946,
13,
9651,
4974,
313,
13,
18884,
10656,
29918,
1066,
29889,
12181,
29961,
1311,
3032,
657,
29918,
12719,
29918,
8990,
580,
29962,
1275,
29871,
29941,
13,
18884,
322,
7431,
29898,
26065,
29918,
1066,
29889,
12181,
29897,
1275,
29871,
29906,
13,
9651,
1723,
13,
9651,
4974,
313,
13,
18884,
3578,
29918,
1066,
29889,
12181,
29961,
1311,
3032,
657,
29918,
12719,
29918,
8990,
580,
29962,
1275,
29871,
29941,
13,
18884,
322,
7431,
29898,
4366,
29918,
1066,
29889,
12181,
29897,
1275,
29871,
29906,
13,
9651,
1723,
13,
9651,
4974,
313,
13,
18884,
3578,
29918,
2780,
29889,
12181,
29961,
1311,
3032,
657,
29918,
12719,
29918,
8990,
580,
29962,
1275,
29871,
29941,
13,
18884,
322,
7431,
29898,
4366,
29918,
2780,
29889,
12181,
29897,
1275,
29871,
29906,
13,
9651,
1723,
13,
13,
9651,
1855,
8498,
386,
353,
1583,
3032,
348,
510,
2139,
8498,
386,
29898,
19488,
29897,
13,
9651,
13499,
28179,
29918,
4467,
29882,
353,
1583,
29889,
3188,
29918,
4467,
29882,
334,
1855,
8498,
386,
13,
13,
9651,
565,
1583,
29889,
1272,
29918,
4830,
1275,
376,
305,
12629,
29918,
4102,
1115,
13,
18884,
620,
14443,
24111,
353,
21069,
29896,
29892,
29871,
29941,
29892,
29871,
29896,
29892,
29871,
29896,
29962,
13,
9651,
1683,
29901,
13,
18884,
620,
14443,
24111,
353,
21069,
29896,
29892,
29871,
29896,
29892,
29871,
29896,
29892,
29871,
29941,
29962,
13,
13,
9651,
301,
29886,
353,
15886,
29889,
690,
14443,
29898,
4366,
29918,
1066,
29892,
620,
14443,
24111,
29897,
13,
9651,
325,
29886,
353,
15886,
29889,
690,
14443,
29898,
26065,
29918,
1066,
29892,
620,
14443,
24111,
29897,
13,
9651,
301,
29883,
353,
15886,
29889,
690,
14443,
29898,
4366,
29918,
2780,
29892,
620,
14443,
24111,
29897,
13,
13,
9651,
301,
29918,
2003,
353,
301,
29886,
448,
13499,
28179,
29918,
4467,
29882,
13,
13,
9651,
325,
353,
1583,
3032,
8945,
675,
29898,
29894,
29886,
448,
13499,
28179,
29918,
4467,
29882,
29897,
13,
9651,
301,
353,
1583,
3032,
8945,
675,
29898,
29880,
29918,
2003,
29897,
13,
9651,
298,
353,
1583,
3032,
8945,
675,
29898,
29880,
718,
325,
29897,
13,
13,
9651,
9685,
29918,
29888,
3466,
353,
15886,
29889,
23362,
4197,
29899,
29896,
29892,
29871,
29896,
29892,
448,
29896,
1402,
26688,
29922,
13264,
29889,
7411,
29941,
29906,
29897,
13,
9651,
9685,
29918,
29888,
3466,
353,
15886,
29889,
690,
14443,
29898,
8990,
29918,
29888,
3466,
29892,
620,
14443,
24111,
29897,
13,
9651,
302,
353,
1583,
3032,
8945,
675,
29898,
8945,
334,
29871,
29906,
29889,
29900,
448,
29871,
29896,
29889,
29900,
29897,
334,
9685,
29918,
29888,
3466,
13,
13,
632,
299,
29880,
353,
269,
1337,
403,
29898,
1311,
3032,
6333,
29898,
29876,
29892,
301,
876,
13,
632,
299,
29894,
353,
269,
1337,
403,
29898,
1311,
3032,
6333,
29898,
29876,
29892,
325,
511,
29871,
29896,
29872,
29899,
29945,
29897,
13,
632,
299,
29882,
353,
269,
1337,
403,
29898,
1311,
3032,
6333,
29898,
29876,
29892,
298,
876,
13,
9651,
301,
12744,
353,
269,
1337,
403,
29898,
1311,
3032,
6333,
29898,
29880,
29892,
298,
876,
13,
9651,
325,
12744,
353,
269,
1337,
403,
29898,
1311,
3032,
6333,
29898,
29894,
29892,
298,
876,
13,
13,
9651,
18074,
29878,
20769,
27469,
353,
1583,
3032,
6333,
29898,
29880,
29918,
2003,
29892,
301,
29918,
2003,
29897,
13,
9651,
3578,
353,
15886,
29889,
4563,
29918,
1217,
29918,
13707,
29898,
29880,
29883,
29892,
18074,
29878,
20769,
27469,
29897,
13,
13,
9651,
2923,
353,
269,
23973,
29918,
517,
29918,
10660,
29898,
12765,
1509,
29897,
13,
9651,
1580,
353,
269,
23973,
29918,
517,
29918,
10660,
29898,
6550,
1070,
29897,
13,
13,
4706,
1513,
10299,
1070,
353,
1583,
29889,
6550,
29898,
299,
29880,
29892,
29871,
299,
29894,
29892,
29871,
299,
29882,
29892,
301,
12744,
29892,
325,
12744,
29892,
1580,
29892,
12164,
2264,
29897,
13,
4706,
411,
15886,
29889,
11918,
29918,
6078,
703,
26023,
1509,
29908,
1125,
13,
9651,
1513,
26023,
1509,
353,
2923,
334,
313,
29896,
29889,
29900,
847,
7442,
29889,
1631,
29897,
334,
29871,
299,
29894,
334,
313,
29896,
29889,
29900,
448,
1583,
29889,
29943,
29898,
6550,
29892,
301,
12744,
876,
13,
13,
4706,
411,
15886,
29889,
11918,
29918,
6078,
703,
17392,
29918,
4366,
29908,
1125,
13,
9651,
1506,
2176,
353,
1513,
10299,
1070,
718,
1513,
26023,
1509,
13,
9651,
1513,
353,
1506,
2176,
334,
3578,
13,
13,
9651,
1513,
353,
15886,
29889,
3062,
29898,
13,
18884,
15886,
29889,
755,
29889,
2222,
29898,
1311,
3032,
517,
29918,
2003,
29941,
29898,
299,
29880,
511,
382,
7024,
511,
15886,
29889,
3298,
359,
29918,
4561,
29898,
11851,
511,
1513,
13,
9651,
1723,
13,
9651,
1513,
353,
15886,
29889,
3062,
29898,
13,
18884,
15886,
29889,
755,
29889,
2222,
29898,
1311,
3032,
517,
29918,
2003,
29941,
29898,
299,
29894,
511,
382,
7024,
511,
15886,
29889,
3298,
359,
29918,
4561,
29898,
11851,
511,
1513,
13,
9651,
1723,
13,
13,
4706,
411,
15886,
29889,
11918,
29918,
6078,
703,
26016,
29918,
4366,
29908,
1125,
13,
9651,
269,
29887,
29918,
1429,
29918,
8990,
353,
29871,
29906,
565,
1583,
29889,
1272,
29918,
4830,
1275,
376,
305,
12629,
29918,
4102,
29908,
1683,
29871,
29896,
13,
9651,
1353,
29918,
974,
29918,
29879,
3174,
353,
269,
3174,
29889,
12181,
29961,
5311,
29918,
1429,
29918,
8990,
29962,
13,
13,
9651,
8829,
29918,
11851,
353,
15886,
29889,
3298,
359,
29918,
4561,
29898,
11851,
29897,
13,
9651,
363,
474,
297,
3464,
29898,
4537,
29918,
974,
29918,
29879,
3174,
1125,
13,
18884,
565,
1583,
29889,
1272,
29918,
4830,
1275,
376,
305,
12629,
29918,
4102,
1115,
13,
462,
1678,
269,
29887,
353,
269,
3174,
7503,
29892,
584,
29892,
474,
29962,
13,
18884,
1683,
29901,
13,
462,
1678,
269,
29887,
353,
269,
3174,
7503,
29892,
474,
29962,
13,
13,
18884,
3415,
7943,
353,
1583,
29889,
5311,
29918,
14513,
29898,
13,
462,
1678,
269,
29887,
29892,
2923,
1509,
29892,
1580,
1070,
29892,
12164,
2264,
29892,
302,
29892,
11105,
29892,
13499,
28179,
29918,
4467,
29882,
29892,
325,
29886,
13,
18884,
1723,
13,
13,
18884,
8829,
29918,
11851,
353,
8829,
29918,
11851,
718,
3415,
7943,
13,
13,
4706,
411,
15886,
29889,
11918,
29918,
6078,
703,
10358,
2548,
29908,
1125,
13,
9651,
736,
1513,
718,
8829,
29918,
11851,
13,
13,
1678,
822,
383,
29898,
1311,
29892,
383,
29900,
29901,
15886,
29889,
29911,
6073,
29892,
301,
12744,
29901,
15886,
29889,
29911,
6073,
29897,
1599,
15886,
29889,
29911,
6073,
29901,
13,
4706,
411,
15886,
29889,
11918,
29918,
6078,
703,
29943,
690,
9139,
29908,
1125,
13,
9651,
274,
29873,
353,
29871,
29896,
448,
301,
12744,
13,
9651,
274,
1372,
29939,
353,
274,
29873,
334,
274,
29873,
13,
9651,
274,
29873,
29945,
353,
274,
1372,
29939,
334,
274,
1372,
29939,
334,
274,
29873,
13,
9651,
736,
383,
29900,
718,
313,
29896,
448,
383,
29900,
29897,
334,
274,
29873,
29945,
13,
13,
1678,
822,
903,
29954,
29898,
1311,
29892,
263,
29906,
29901,
15886,
29889,
29911,
6073,
29892,
29871,
299,
29916,
29901,
15886,
29889,
29911,
6073,
29897,
1599,
15886,
29889,
29911,
6073,
29901,
13,
4706,
736,
15886,
29889,
4563,
29918,
1217,
29918,
13707,
29898,
29906,
334,
29871,
299,
29916,
29892,
29871,
299,
29916,
718,
9109,
29918,
3676,
29898,
29874,
29906,
718,
313,
29896,
448,
263,
29906,
29897,
334,
29871,
299,
29916,
334,
29871,
299,
29916,
876,
13,
13,
1678,
822,
402,
29898,
1311,
29892,
15595,
29901,
15886,
29889,
29911,
6073,
29892,
29871,
299,
29880,
29901,
15886,
29889,
29911,
6073,
29892,
29871,
299,
29894,
29901,
15886,
29889,
29911,
6073,
29897,
1599,
15886,
29889,
29911,
6073,
29901,
13,
4706,
411,
15886,
29889,
11918,
29918,
6078,
703,
7999,
7843,
29908,
1125,
13,
9651,
263,
29906,
353,
15595,
334,
15595,
13,
9651,
736,
1583,
3032,
29954,
29898,
29874,
29906,
29892,
29871,
299,
29880,
29897,
334,
1583,
3032,
29954,
29898,
29874,
29906,
29892,
29871,
299,
29894,
29897,
13,
13,
1678,
822,
360,
29898,
1311,
29892,
15595,
29901,
15886,
29889,
29911,
6073,
29892,
29871,
299,
29882,
29901,
15886,
29889,
29911,
6073,
29897,
1599,
15886,
29889,
29911,
6073,
29901,
13,
4706,
411,
15886,
29889,
11918,
29918,
6078,
703,
13398,
3224,
29908,
1125,
13,
9651,
263,
29906,
353,
15595,
334,
15595,
13,
13,
9651,
972,
290,
353,
313,
299,
29882,
334,
29871,
299,
29882,
29897,
334,
313,
29874,
29906,
448,
29871,
29896,
29897,
718,
29871,
29896,
29889,
29900,
13,
9651,
972,
290,
29906,
353,
972,
290,
334,
972,
290,
13,
13,
9651,
736,
15886,
29889,
4563,
29918,
1217,
29918,
13707,
29898,
29874,
29906,
29892,
7442,
29889,
1631,
334,
972,
290,
29906,
29897,
13,
13,
1678,
822,
1580,
29898,
13,
4706,
1583,
29892,
13,
308,
299,
29880,
29901,
15886,
29889,
29911,
6073,
29892,
13,
308,
299,
29894,
29901,
15886,
29889,
29911,
6073,
29892,
13,
308,
299,
29882,
29901,
15886,
29889,
29911,
6073,
29892,
13,
4706,
301,
12744,
29901,
15886,
29889,
29911,
6073,
29892,
13,
4706,
325,
12744,
29901,
15886,
29889,
29911,
6073,
29892,
13,
4706,
383,
29900,
29901,
15886,
29889,
29911,
6073,
29892,
13,
4706,
12164,
2264,
29901,
15886,
29889,
29911,
6073,
29892,
13,
1678,
1723,
1599,
15886,
29889,
29911,
6073,
29901,
13,
4706,
411,
15886,
29889,
11918,
29918,
6078,
703,
10299,
1070,
29908,
1125,
13,
9651,
15595,
353,
269,
1337,
403,
29898,
10573,
2264,
334,
12164,
2264,
29892,
29871,
29896,
29872,
29899,
29941,
29897,
13,
13,
9651,
383,
353,
1583,
29889,
29943,
29898,
29943,
29900,
29892,
301,
12744,
29897,
13,
9651,
402,
353,
1583,
29889,
29954,
29898,
2312,
29892,
29871,
299,
29880,
29892,
29871,
299,
29894,
29897,
13,
9651,
360,
353,
1583,
29889,
29928,
29898,
2312,
29892,
29871,
299,
29882,
29897,
13,
13,
9651,
3240,
353,
15886,
29889,
4563,
29918,
1217,
29918,
13707,
29898,
29943,
334,
402,
334,
360,
29892,
29871,
29946,
29889,
29900,
334,
29871,
299,
29880,
29897,
13,
13,
9651,
3240,
353,
15886,
29889,
3062,
29898,
13,
18884,
15886,
29889,
755,
29889,
2222,
29898,
1311,
3032,
517,
29918,
2003,
29941,
29898,
299,
29882,
511,
382,
7024,
511,
15886,
29889,
3298,
359,
29918,
4561,
29898,
2267,
511,
3240,
13,
9651,
1723,
13,
9651,
3240,
353,
15886,
29889,
3062,
29898,
13,
18884,
15886,
29889,
755,
29889,
2222,
29898,
1311,
3032,
517,
29918,
2003,
29941,
29898,
430,
29882,
334,
29871,
299,
29880,
511,
382,
7024,
511,
15886,
29889,
3298,
359,
29918,
4561,
29898,
2267,
511,
3240,
13,
9651,
1723,
13,
9651,
3240,
353,
15886,
29889,
3062,
29898,
13,
18884,
15886,
29889,
755,
29889,
2222,
29898,
1311,
3032,
517,
29918,
2003,
29941,
29898,
29894,
12744,
334,
29871,
299,
29894,
511,
382,
7024,
511,
15886,
29889,
3298,
359,
29918,
4561,
29898,
2267,
511,
3240,
13,
9651,
1723,
13,
9651,
736,
3240,
13,
13,
1678,
822,
903,
5311,
29918,
14146,
284,
29898,
1311,
29892,
269,
29887,
29901,
15886,
29889,
29911,
6073,
29897,
1599,
15886,
29889,
29911,
6073,
29901,
13,
4706,
411,
15886,
29889,
11918,
29918,
6078,
703,
23573,
284,
29908,
1125,
13,
9651,
4974,
269,
29887,
29889,
12181,
29961,
1311,
3032,
657,
29918,
12719,
29918,
8990,
580,
29962,
1275,
29871,
29955,
322,
7431,
29898,
5311,
29889,
12181,
29897,
1275,
29871,
29946,
13,
13,
9651,
269,
29918,
314,
2830,
1151,
29892,
269,
29918,
8990,
29892,
269,
29918,
22064,
2264,
353,
1583,
3032,
21111,
29918,
5311,
29918,
14036,
29898,
5311,
29897,
13,
13,
9651,
1518,
14343,
353,
29871,
29896,
29889,
29900,
448,
15886,
29889,
4548,
6278,
29906,
29889,
29900,
334,
269,
29918,
22064,
2264,
29897,
13,
9651,
736,
29871,
29906,
334,
7442,
29889,
1631,
334,
15886,
29889,
4563,
29918,
1217,
29918,
13707,
29898,
29879,
29918,
314,
2830,
1151,
29892,
269,
29918,
22064,
2264,
29897,
334,
1518,
14343,
13,
13,
1678,
822,
903,
5311,
29918,
24219,
403,
29898,
1311,
29892,
269,
29887,
29901,
15886,
29889,
29911,
6073,
29892,
270,
29901,
15886,
29889,
29911,
6073,
29897,
1599,
15886,
29889,
29911,
6073,
29901,
13,
4706,
411,
15886,
29889,
11918,
29918,
6078,
703,
29923,
4387,
403,
29908,
1125,
13,
9651,
4974,
269,
29887,
29889,
12181,
29961,
1311,
3032,
657,
29918,
12719,
29918,
8990,
580,
29962,
1275,
29871,
29955,
322,
7431,
29898,
5311,
29889,
12181,
29897,
1275,
29871,
29946,
13,
9651,
4974,
270,
29889,
12181,
29961,
1311,
3032,
657,
29918,
12719,
29918,
8990,
580,
29962,
1275,
29871,
29941,
322,
7431,
29898,
29881,
29889,
12181,
29897,
1275,
29871,
29946,
13,
13,
9651,
269,
29918,
314,
2830,
1151,
29892,
269,
29918,
8990,
29892,
269,
29918,
22064,
2264,
353,
1583,
3032,
21111,
29918,
5311,
29918,
14036,
29898,
5311,
29897,
13,
13,
9651,
6776,
19582,
353,
1583,
3032,
6333,
29898,
29881,
29892,
269,
29918,
8990,
29897,
13,
9651,
736,
269,
29918,
314,
2830,
1151,
334,
15886,
29889,
4548,
29898,
29879,
29918,
22064,
2264,
334,
313,
3944,
19582,
448,
29871,
29896,
29889,
29900,
876,
13,
13,
1678,
822,
903,
5311,
29918,
3993,
29918,
4704,
29898,
1311,
29892,
269,
29887,
29896,
29901,
15886,
29889,
29911,
6073,
29892,
269,
29887,
29906,
29901,
15886,
29889,
29911,
6073,
29897,
1599,
15886,
29889,
29911,
6073,
29901,
13,
4706,
411,
15886,
29889,
11918,
29918,
6078,
703,
27748,
1184,
29881,
29908,
1125,
13,
9651,
4974,
269,
29887,
29896,
29889,
12181,
29961,
1311,
3032,
657,
29918,
12719,
29918,
8990,
580,
29962,
1275,
29871,
29955,
322,
7431,
29898,
5311,
29896,
29889,
12181,
29897,
1275,
29871,
29946,
13,
9651,
4974,
269,
29887,
29906,
29889,
12181,
29961,
1311,
3032,
657,
29918,
12719,
29918,
8990,
580,
29962,
1275,
29871,
29955,
322,
7431,
29898,
5311,
29906,
29889,
12181,
29897,
1275,
29871,
29946,
13,
13,
9651,
269,
29896,
29918,
314,
2830,
1151,
29892,
269,
29896,
29918,
8990,
29892,
269,
29896,
29918,
22064,
2264,
353,
1583,
3032,
21111,
29918,
5311,
29918,
14036,
29898,
5311,
29896,
29897,
13,
9651,
269,
29906,
29918,
314,
2830,
1151,
29892,
269,
29906,
29918,
8990,
29892,
269,
29906,
29918,
22064,
2264,
353,
1583,
3032,
21111,
29918,
5311,
29918,
14036,
29898,
5311,
29906,
29897,
13,
13,
9651,
1922,
6513,
353,
1583,
3032,
29885,
4211,
4279,
29898,
29879,
29896,
29918,
22064,
2264,
334,
269,
29896,
29918,
8990,
718,
269,
29906,
29918,
22064,
2264,
334,
269,
29906,
29918,
8990,
29897,
13,
9651,
429,
1129,
353,
313,
13,
18884,
15886,
29889,
4548,
29898,
398,
6513,
448,
269,
29896,
29918,
22064,
2264,
448,
269,
29906,
29918,
22064,
2264,
29897,
13,
18884,
334,
269,
29896,
29918,
314,
2830,
1151,
13,
18884,
334,
269,
29906,
29918,
314,
2830,
1151,
13,
9651,
1723,
13,
13,
9651,
916,
353,
29871,
29896,
29889,
29900,
448,
15886,
29889,
4548,
6278,
29906,
29889,
29900,
334,
1922,
6513,
29897,
13,
13,
9651,
736,
15886,
29889,
4563,
29918,
1217,
29918,
13707,
29898,
29906,
29889,
29900,
334,
7442,
29889,
1631,
334,
429,
1129,
334,
916,
29892,
1922,
6513,
29897,
13,
13,
1678,
822,
903,
5311,
29918,
24219,
403,
29918,
12765,
1509,
29898,
13,
4706,
1583,
29892,
269,
29887,
29901,
15886,
29889,
29911,
6073,
29892,
2923,
1509,
29901,
15886,
29889,
29911,
6073,
29892,
4226,
29901,
15886,
29889,
29911,
6073,
13,
1678,
1723,
1599,
15886,
29889,
29911,
6073,
29901,
13,
4706,
411,
15886,
29889,
11918,
29918,
6078,
703,
26023,
1509,
29908,
1125,
13,
9651,
4974,
313,
13,
18884,
269,
29887,
29889,
12181,
29961,
1311,
3032,
657,
29918,
12719,
29918,
8990,
580,
29962,
1275,
29871,
29955,
322,
7431,
29898,
5311,
29889,
12181,
29897,
1275,
29871,
29946,
13,
9651,
1723,
29871,
396,
289,
29892,
298,
29892,
281,
29892,
274,
891,
289,
29892,
274,
29892,
298,
29892,
281,
13,
9651,
4974,
313,
13,
18884,
2923,
1509,
29889,
12181,
29961,
1311,
3032,
657,
29918,
12719,
29918,
8990,
580,
29962,
1275,
29871,
29941,
322,
7431,
29898,
12765,
1509,
29889,
12181,
29897,
1275,
29871,
29946,
13,
9651,
1723,
13,
9651,
4974,
313,
13,
18884,
4226,
29889,
12181,
29961,
1311,
3032,
657,
29918,
12719,
29918,
8990,
580,
29962,
1275,
29871,
29941,
322,
7431,
29898,
8945,
29889,
12181,
29897,
1275,
29871,
29946,
13,
9651,
1723,
13,
13,
9651,
2923,
353,
15886,
29889,
4563,
29918,
1217,
29918,
13707,
29898,
12765,
1509,
29892,
7442,
29889,
1631,
29897,
13,
13,
9651,
269,
29918,
314,
2830,
1151,
29892,
269,
29918,
8990,
29892,
269,
29918,
22064,
2264,
353,
1583,
3032,
21111,
29918,
5311,
29918,
14036,
29898,
5311,
29897,
13,
13,
9651,
17439,
29876,
353,
269,
1337,
403,
29898,
1311,
3032,
6333,
29898,
29879,
29918,
8990,
29892,
4226,
876,
13,
13,
9651,
274,
29900,
353,
29871,
29900,
29889,
29941,
29953,
13,
9651,
274,
29896,
353,
29871,
29896,
29889,
29900,
847,
313,
29946,
29889,
29900,
334,
274,
29900,
29897,
13,
13,
9651,
321,
828,
353,
15886,
29889,
4548,
6278,
29879,
29918,
22064,
2264,
29897,
13,
9651,
953,
29906,
29880,
353,
321,
828,
334,
321,
828,
13,
9651,
364,
29880,
353,
15886,
29889,
4563,
29918,
1217,
29918,
13707,
29898,
29896,
29889,
29900,
29892,
269,
29918,
22064,
2264,
29897,
13,
13,
9651,
6287,
353,
29871,
29896,
29889,
29900,
718,
29871,
29906,
29889,
29900,
334,
953,
29906,
29880,
448,
364,
29880,
13,
9651,
24003,
353,
313,
331,
29880,
448,
953,
29906,
29880,
29897,
334,
364,
29880,
448,
953,
29906,
29880,
13,
13,
9651,
921,
353,
9109,
29918,
3676,
29898,
29896,
29889,
29900,
448,
6287,
29897,
13,
9651,
921,
29900,
353,
274,
29900,
334,
17439,
29876,
13,
9651,
921,
29896,
353,
274,
29896,
334,
921,
13,
13,
9651,
302,
353,
921,
29900,
718,
921,
29896,
13,
13,
9651,
343,
353,
15886,
29889,
3062,
29898,
13264,
29889,
2222,
29918,
11745,
29898,
13264,
29889,
6897,
29898,
29916,
29900,
511,
921,
29896,
511,
302,
334,
15886,
29889,
4563,
29918,
1217,
29918,
13707,
29898,
29876,
29892,
921,
511,
17439,
29876,
29897,
13,
13,
9651,
620,
353,
6287,
334,
343,
718,
24003,
13,
13,
9651,
620,
353,
620,
334,
1583,
3032,
5311,
29918,
14146,
284,
29898,
5311,
29897,
334,
2923,
13,
13,
9651,
736,
620,
13,
13,
1678,
822,
903,
5311,
29918,
27691,
29918,
8489,
29898,
1311,
29892,
270,
29901,
15886,
29889,
29911,
6073,
29892,
12164,
2264,
29901,
15886,
29889,
29911,
6073,
29897,
1599,
15886,
29889,
29911,
6073,
29901,
13,
4706,
411,
15886,
29889,
11918,
29918,
6078,
703,
13398,
3224,
29908,
1125,
13,
9651,
4974,
270,
29889,
12181,
29961,
1311,
3032,
657,
29918,
12719,
29918,
8990,
580,
29962,
1275,
29871,
29941,
322,
7431,
29898,
29881,
29889,
12181,
29897,
1275,
29871,
29946,
13,
9651,
4974,
313,
13,
18884,
12164,
2264,
29889,
12181,
29961,
1311,
3032,
657,
29918,
12719,
29918,
8990,
580,
29962,
1275,
29871,
29896,
13,
18884,
322,
7431,
29898,
10573,
2264,
29889,
12181,
29897,
1275,
29871,
29946,
13,
9651,
1723,
13,
13,
9651,
263,
29906,
353,
269,
1337,
403,
29898,
10573,
2264,
334,
12164,
2264,
29892,
29871,
29896,
29872,
29899,
29941,
29897,
13,
13,
9651,
3240,
353,
15886,
29889,
17685,
29898,
13,
18884,
518,
13,
462,
1678,
1583,
3032,
517,
29918,
2003,
29941,
29898,
13264,
29889,
4563,
29918,
1217,
29918,
13707,
29898,
29896,
29889,
29900,
29892,
7442,
29889,
1631,
334,
263,
29906,
8243,
13,
462,
1678,
270,
29892,
13,
462,
1678,
15886,
29889,
4563,
29918,
1217,
29918,
13707,
29898,
29906,
29889,
29900,
29892,
263,
29906,
511,
13,
18884,
21251,
13,
18884,
1583,
3032,
657,
29918,
12719,
29918,
8990,
3285,
13,
9651,
1723,
13,
13,
9651,
736,
3240,
13,
13,
1678,
822,
903,
5311,
29918,
4495,
29886,
29918,
27691,
29898,
1311,
29892,
29871,
299,
5847,
29901,
15886,
29889,
29911,
6073,
29892,
325,
29901,
15886,
29889,
29911,
6073,
29897,
1599,
15886,
29889,
29911,
6073,
29901,
13,
4706,
411,
15886,
29889,
11918,
29918,
6078,
703,
29956,
6834,
13398,
3224,
29908,
1125,
13,
9651,
4974,
29871,
299,
5847,
29889,
12181,
29961,
1311,
3032,
657,
29918,
12719,
29918,
8990,
580,
29962,
1275,
29871,
29955,
322,
7431,
29898,
299,
5847,
29889,
12181,
29897,
1275,
29871,
29946,
13,
9651,
4974,
325,
29889,
12181,
29961,
1311,
3032,
657,
29918,
12719,
29918,
8990,
580,
29962,
1275,
29871,
29941,
322,
7431,
29898,
29894,
29889,
12181,
29897,
1275,
29871,
29946,
13,
13,
632,
299,
29888,
29918,
314,
2830,
1151,
29892,
29871,
299,
29888,
29918,
8990,
29892,
29871,
299,
29888,
29918,
22064,
2264,
353,
1583,
3032,
21111,
29918,
5311,
29918,
14036,
29898,
299,
5847,
29897,
13,
13,
9651,
3240,
353,
15886,
29889,
17685,
29898,
13,
18884,
518,
13,
462,
268,
299,
29888,
29918,
314,
2830,
1151,
29892,
13,
462,
1678,
1583,
3032,
13191,
6278,
29894,
29892,
29871,
299,
29888,
29918,
8990,
511,
13,
462,
1678,
15886,
29889,
4563,
29918,
1217,
29918,
13707,
29898,
13,
462,
308,
299,
29888,
29918,
22064,
2264,
29892,
313,
29946,
29889,
29900,
334,
269,
1337,
403,
29898,
1311,
3032,
6333,
29898,
299,
29888,
29918,
8990,
29892,
325,
511,
29871,
29896,
29872,
29899,
29946,
876,
13,
462,
1678,
10353,
13,
18884,
21251,
13,
18884,
1583,
3032,
657,
29918,
12719,
29918,
8990,
3285,
13,
9651,
1723,
13,
13,
9651,
736,
3240,
13,
13,
1678,
822,
903,
5311,
29918,
1505,
29916,
29898,
1311,
29892,
263,
29906,
29901,
15886,
29889,
29911,
6073,
29892,
29871,
299,
29916,
29901,
15886,
29889,
29911,
6073,
29897,
1599,
15886,
29889,
29911,
6073,
29901,
13,
4706,
411,
15886,
29889,
11918,
29918,
6078,
703,
7999,
14066,
29908,
1125,
13,
9651,
736,
15886,
29889,
4563,
29918,
1217,
29918,
13707,
29898,
29896,
29889,
29900,
29892,
313,
299,
29916,
718,
9109,
29918,
3676,
29898,
29874,
29906,
718,
313,
29896,
448,
263,
29906,
29897,
334,
29871,
299,
29916,
334,
29871,
299,
29916,
4961,
13,
13,
1678,
822,
903,
5311,
29918,
24219,
403,
29918,
6550,
1070,
29898,
13,
4706,
1583,
29892,
13,
4706,
269,
29887,
29901,
15886,
29889,
29911,
6073,
29892,
13,
4706,
1580,
1070,
29901,
15886,
29889,
29911,
6073,
29892,
13,
4706,
12164,
2264,
29901,
15886,
29889,
29911,
6073,
29892,
13,
4706,
1370,
9795,
29918,
299,
29888,
29901,
15886,
29889,
29911,
6073,
29892,
13,
308,
299,
29880,
29901,
15886,
29889,
29911,
6073,
29892,
13,
308,
299,
29894,
29901,
15886,
29889,
29911,
6073,
29892,
13,
4706,
301,
12744,
29901,
15886,
29889,
29911,
6073,
29892,
13,
4706,
325,
12744,
29901,
15886,
29889,
29911,
6073,
29892,
13,
308,
299,
29882,
29901,
15886,
29889,
29911,
6073,
29892,
13,
1678,
1723,
1599,
15886,
29889,
29911,
6073,
29901,
13,
4706,
411,
15886,
29889,
11918,
29918,
6078,
703,
10299,
1070,
29908,
1125,
13,
9651,
4974,
269,
29887,
29889,
12181,
29961,
1311,
3032,
657,
29918,
12719,
29918,
8990,
580,
29962,
1275,
29871,
29955,
322,
7431,
29898,
5311,
29889,
12181,
29897,
1275,
29871,
29946,
13,
9651,
4974,
313,
13,
18884,
1370,
9795,
29918,
299,
29888,
29889,
12181,
29961,
1311,
3032,
657,
29918,
12719,
29918,
8990,
580,
29962,
1275,
29871,
29955,
13,
18884,
322,
7431,
29898,
4495,
9795,
29918,
299,
29888,
29889,
12181,
29897,
1275,
29871,
29946,
13,
9651,
1723,
13,
9651,
4974,
313,
13,
18884,
1580,
1070,
29889,
12181,
29961,
1311,
3032,
657,
29918,
12719,
29918,
8990,
580,
29962,
1275,
29871,
29941,
13,
18884,
322,
7431,
29898,
6550,
1070,
29889,
12181,
29897,
1275,
29871,
29946,
13,
9651,
1723,
13,
9651,
4974,
313,
13,
18884,
12164,
2264,
29889,
12181,
29961,
1311,
3032,
657,
29918,
12719,
29918,
8990,
580,
29962,
1275,
29871,
29896,
13,
18884,
322,
7431,
29898,
10573,
2264,
29889,
12181,
29897,
1275,
29871,
29946,
13,
9651,
1723,
13,
9651,
4974,
29871,
299,
29880,
29889,
12181,
29961,
1311,
3032,
657,
29918,
12719,
29918,
8990,
580,
29962,
1275,
29871,
29896,
322,
7431,
29898,
299,
29880,
29889,
12181,
29897,
1275,
29871,
29946,
13,
9651,
4974,
29871,
299,
29894,
29889,
12181,
29961,
1311,
3032,
657,
29918,
12719,
29918,
8990,
580,
29962,
1275,
29871,
29896,
322,
7431,
29898,
299,
29894,
29889,
12181,
29897,
1275,
29871,
29946,
13,
9651,
4974,
301,
12744,
29889,
12181,
29961,
1311,
3032,
657,
29918,
12719,
29918,
8990,
580,
29962,
1275,
29871,
29896,
322,
7431,
29898,
430,
29882,
29889,
12181,
29897,
1275,
29871,
29946,
13,
9651,
4974,
325,
12744,
29889,
12181,
29961,
1311,
3032,
657,
29918,
12719,
29918,
8990,
580,
29962,
1275,
29871,
29896,
322,
7431,
29898,
29894,
12744,
29889,
12181,
29897,
1275,
29871,
29946,
13,
9651,
4974,
29871,
299,
29882,
29889,
12181,
29961,
1311,
3032,
657,
29918,
12719,
29918,
8990,
580,
29962,
1275,
29871,
29896,
322,
7431,
29898,
299,
29882,
29889,
12181,
29897,
1275,
29871,
29946,
13,
13,
9651,
263,
29906,
353,
269,
1337,
403,
29898,
10573,
2264,
334,
12164,
2264,
29892,
29871,
29896,
29872,
29899,
29941,
29897,
13,
13,
9651,
411,
15886,
29889,
11918,
29918,
6078,
703,
13398,
3224,
29908,
1125,
13,
18884,
360,
353,
1583,
3032,
5311,
29918,
3993,
29918,
4704,
29898,
4495,
9795,
29918,
299,
29888,
29892,
269,
29887,
29897,
13,
13,
9651,
402,
353,
1583,
3032,
5311,
29918,
1505,
29916,
29898,
29874,
29906,
29892,
29871,
299,
29880,
29897,
334,
1583,
3032,
5311,
29918,
1505,
29916,
29898,
29874,
29906,
29892,
29871,
299,
29894,
29897,
13,
13,
9651,
411,
15886,
29889,
11918,
29918,
6078,
703,
29943,
690,
9139,
29908,
1125,
13,
18884,
4764,
14343,
353,
15886,
29889,
12248,
29898,
29896,
29889,
29900,
448,
301,
12744,
29892,
29871,
29945,
29897,
13,
18884,
383,
353,
1580,
1070,
718,
313,
29896,
29889,
29900,
448,
1580,
1070,
29897,
334,
4764,
14343,
13,
13,
9651,
1962,
353,
360,
334,
402,
334,
383,
334,
29871,
299,
29880,
13,
13,
9651,
15504,
287,
353,
15886,
29889,
3298,
359,
29918,
4561,
29898,
4905,
29897,
13,
9651,
5225,
29918,
2003,
353,
15886,
29889,
3298,
359,
29918,
4561,
29898,
299,
29882,
29897,
13,
9651,
1962,
353,
15886,
29889,
3062,
29898,
1311,
3032,
517,
29918,
2003,
29941,
29898,
275,
5358,
29898,
299,
29882,
29892,
5225,
29918,
2003,
8243,
15504,
287,
29892,
1962,
29897,
13,
9651,
1962,
353,
15886,
29889,
3062,
29898,
13,
18884,
1583,
3032,
517,
29918,
2003,
29941,
29898,
275,
5358,
29898,
430,
29882,
334,
29871,
299,
29880,
29892,
5225,
29918,
2003,
8243,
15504,
287,
29892,
1962,
13,
9651,
1723,
13,
9651,
1962,
353,
15886,
29889,
3062,
29898,
13,
18884,
1583,
3032,
517,
29918,
2003,
29941,
29898,
275,
5358,
29898,
29894,
12744,
334,
29871,
299,
29894,
29892,
5225,
29918,
2003,
8243,
15504,
287,
29892,
1962,
13,
9651,
1723,
13,
13,
9651,
736,
15886,
29889,
27525,
398,
29898,
4905,
29892,
29871,
29900,
29889,
29900,
29897,
13,
13,
1678,
822,
269,
29887,
29918,
14513,
29898,
13,
4706,
1583,
29892,
13,
4706,
269,
29887,
29901,
15886,
29889,
29911,
6073,
29892,
13,
4706,
2923,
1509,
29901,
15886,
29889,
29911,
6073,
29892,
13,
4706,
1580,
1070,
29901,
15886,
29889,
29911,
6073,
29892,
13,
4706,
12164,
2264,
29901,
15886,
29889,
29911,
6073,
29892,
13,
4706,
4226,
29901,
15886,
29889,
29911,
6073,
29892,
13,
4706,
11105,
29901,
15886,
29889,
29911,
6073,
29892,
13,
4706,
13499,
28179,
29918,
4467,
29882,
29901,
15886,
29889,
29911,
6073,
29892,
13,
4706,
10656,
29918,
1066,
29901,
15886,
29889,
29911,
6073,
29892,
13,
1678,
1723,
1599,
15886,
29889,
29911,
6073,
29901,
13,
4706,
411,
15886,
29889,
11918,
29918,
6078,
703,
26016,
29908,
1125,
13,
9651,
4974,
269,
29887,
29889,
12181,
29961,
1311,
3032,
657,
29918,
12719,
29918,
8990,
580,
29962,
1275,
29871,
29955,
322,
7431,
29898,
5311,
29889,
12181,
29897,
1275,
29871,
29906,
13,
9651,
4974,
313,
13,
18884,
2923,
1509,
29889,
12181,
29961,
1311,
3032,
657,
29918,
12719,
29918,
8990,
580,
29962,
1275,
29871,
29941,
322,
7431,
29898,
12765,
1509,
29889,
12181,
29897,
1275,
29871,
29946,
13,
9651,
1723,
13,
9651,
4974,
313,
13,
18884,
1580,
1070,
29889,
12181,
29961,
1311,
3032,
657,
29918,
12719,
29918,
8990,
580,
29962,
1275,
29871,
29941,
13,
18884,
322,
7431,
29898,
6550,
1070,
29889,
12181,
29897,
1275,
29871,
29946,
13,
9651,
1723,
13,
9651,
4974,
313,
13,
18884,
12164,
2264,
29889,
12181,
29961,
1311,
3032,
657,
29918,
12719,
29918,
8990,
580,
29962,
1275,
29871,
29896,
13,
18884,
322,
7431,
29898,
10573,
2264,
29889,
12181,
29897,
1275,
29871,
29946,
13,
9651,
1723,
13,
9651,
4974,
313,
13,
18884,
4226,
29889,
12181,
29961,
1311,
3032,
657,
29918,
12719,
29918,
8990,
580,
29962,
1275,
29871,
29941,
322,
7431,
29898,
8945,
29889,
12181,
29897,
1275,
29871,
29946,
13,
9651,
1723,
13,
9651,
4974,
313,
13,
18884,
4226,
29889,
12181,
29961,
1311,
3032,
657,
29918,
12719,
29918,
8990,
580,
29962,
1275,
29871,
29941,
322,
7431,
29898,
8945,
29889,
12181,
29897,
1275,
29871,
29946,
13,
9651,
1723,
13,
9651,
4974,
11105,
29889,
12181,
29961,
1311,
3032,
657,
29918,
12719,
29918,
8990,
580,
29962,
1275,
29871,
29896,
322,
7431,
29898,
13168,
29889,
12181,
29897,
1275,
29871,
29946,
13,
9651,
4974,
313,
13,
18884,
10656,
29918,
1066,
29889,
12181,
29961,
1311,
3032,
657,
29918,
12719,
29918,
8990,
580,
29962,
1275,
29871,
29941,
13,
18884,
322,
7431,
29898,
26065,
29918,
1066,
29889,
12181,
29897,
1275,
29871,
29946,
13,
9651,
1723,
13,
13,
9651,
565,
1583,
29889,
1272,
29918,
4830,
1275,
376,
305,
12629,
29918,
4102,
1115,
13,
18884,
269,
29887,
24111,
353,
21069,
29896,
29892,
29871,
29955,
29892,
29871,
29896,
29892,
29871,
29896,
29962,
13,
9651,
1683,
29901,
13,
18884,
269,
29887,
24111,
353,
21069,
29896,
29892,
29871,
29896,
29892,
29871,
29896,
29892,
29871,
29955,
29962,
13,
13,
9651,
269,
29887,
353,
15886,
29889,
690,
14443,
29898,
5311,
29892,
269,
29887,
24111,
29897,
13,
13,
9651,
325,
353,
1583,
3032,
8945,
675,
29898,
26065,
29918,
1066,
448,
13499,
28179,
29918,
4467,
29882,
29897,
13,
9651,
2923,
353,
269,
23973,
29918,
517,
29918,
10660,
29898,
12765,
1509,
29897,
13,
9651,
1580,
353,
269,
23973,
29918,
517,
29918,
10660,
29898,
6550,
1070,
29897,
13,
9651,
6056,
353,
4226,
13,
9651,
696,
12443,
353,
12164,
2264,
13,
13,
632,
299,
29888,
353,
1583,
3032,
5311,
29918,
27691,
29918,
8489,
29898,
12324,
29892,
696,
12443,
29897,
13,
13,
9651,
1370,
9795,
29918,
299,
29888,
353,
1583,
3032,
5311,
29918,
4495,
29886,
29918,
27691,
29898,
299,
29888,
29892,
325,
29897,
13,
9651,
17117,
281,
299,
29888,
29918,
8990,
29892,
903,
353,
1583,
3032,
21111,
29918,
5311,
29918,
14036,
29898,
4495,
9795,
29918,
299,
29888,
29897,
13,
13,
9651,
1370,
29886,
9170,
353,
281,
299,
29888,
29918,
8990,
13,
13,
632,
299,
29880,
353,
269,
1337,
403,
29898,
1311,
3032,
6333,
29898,
12324,
29892,
1370,
29886,
9170,
876,
13,
632,
299,
29894,
353,
269,
1337,
403,
29898,
1311,
3032,
6333,
29898,
12324,
29892,
325,
511,
29871,
29896,
29872,
29899,
29945,
29897,
13,
9651,
298,
353,
1583,
3032,
8945,
675,
29898,
4495,
29886,
9170,
718,
325,
29897,
13,
632,
299,
29882,
353,
269,
1337,
403,
29898,
1311,
3032,
6333,
29898,
12324,
29892,
298,
876,
13,
9651,
301,
12744,
353,
269,
1337,
403,
29898,
1311,
3032,
6333,
29898,
4495,
29886,
9170,
29892,
298,
876,
13,
9651,
325,
12744,
353,
269,
1337,
403,
29898,
1311,
3032,
6333,
29898,
29894,
29892,
298,
876,
13,
13,
9651,
2923,
1509,
29918,
14513,
353,
1583,
3032,
5311,
29918,
24219,
403,
29918,
12765,
1509,
29898,
5311,
29892,
2923,
29892,
6056,
29897,
334,
29871,
299,
29880,
13,
9651,
1580,
1070,
29918,
14513,
353,
1583,
3032,
5311,
29918,
24219,
403,
29918,
6550,
1070,
29898,
13,
18884,
269,
29887,
29892,
1580,
29892,
696,
12443,
29892,
1370,
9795,
29918,
299,
29888,
29892,
29871,
299,
29880,
29892,
29871,
299,
29894,
29892,
301,
12744,
29892,
325,
12744,
29892,
29871,
299,
29882,
13,
9651,
1723,
13,
13,
9651,
15504,
287,
353,
15886,
29889,
3298,
359,
29918,
4561,
29898,
12765,
1509,
29918,
14513,
29897,
13,
9651,
5225,
29918,
2003,
353,
15886,
29889,
3298,
359,
29918,
4561,
29898,
299,
29880,
29897,
13,
9651,
2923,
1509,
29918,
14513,
353,
15886,
29889,
3062,
29898,
13,
18884,
1583,
3032,
517,
29918,
2003,
29941,
29898,
275,
5358,
29898,
299,
29880,
29892,
5225,
29918,
2003,
8243,
15504,
287,
29892,
2923,
1509,
29918,
14513,
13,
9651,
1723,
13,
9651,
2923,
1509,
29918,
14513,
353,
15886,
29889,
3062,
29898,
13,
18884,
1583,
3032,
517,
29918,
2003,
29941,
29898,
275,
5358,
29898,
299,
29894,
29892,
5225,
29918,
2003,
8243,
15504,
287,
29892,
2923,
1509,
29918,
14513,
13,
9651,
1723,
13,
13,
9651,
1580,
1070,
29918,
14513,
353,
15886,
29889,
3062,
29898,
13,
18884,
1583,
3032,
517,
29918,
2003,
29941,
29898,
275,
5358,
29898,
299,
29880,
29892,
5225,
29918,
2003,
8243,
15504,
287,
29892,
1580,
1070,
29918,
14513,
13,
9651,
1723,
13,
9651,
1580,
1070,
29918,
14513,
353,
15886,
29889,
3062,
29898,
13,
18884,
1583,
3032,
517,
29918,
2003,
29941,
29898,
275,
5358,
29898,
299,
29894,
29892,
5225,
29918,
2003,
8243,
15504,
287,
29892,
1580,
1070,
29918,
14513,
13,
9651,
1723,
13,
13,
9651,
1506,
2176,
29918,
14513,
353,
2923,
1509,
29918,
14513,
718,
1580,
1070,
29918,
14513,
13,
13,
9651,
736,
15886,
29889,
3062,
29898,
13,
18884,
1583,
3032,
517,
29918,
2003,
29941,
29898,
13264,
29889,
11745,
29898,
13168,
29892,
5225,
29918,
2003,
8243,
15504,
287,
29892,
1506,
2176,
29918,
14513,
13,
9651,
1723,
13,
13,
1678,
822,
903,
21111,
29918,
5311,
29918,
14036,
29898,
13,
4706,
1583,
29892,
269,
29887,
29901,
15886,
29889,
29911,
6073,
13,
1678,
1723,
1599,
12603,
552,
29961,
13264,
29889,
29911,
6073,
29892,
15886,
29889,
29911,
6073,
29892,
15886,
29889,
29911,
6073,
5387,
13,
4706,
565,
1583,
29889,
1272,
29918,
4830,
1275,
376,
305,
12629,
29918,
4102,
1115,
13,
9651,
269,
29918,
314,
2830,
1151,
353,
269,
29887,
7503,
29892,
29871,
29900,
29901,
29941,
29962,
13,
9651,
269,
29918,
8990,
353,
269,
29887,
7503,
29892,
29871,
29941,
29901,
29953,
29962,
13,
9651,
269,
29918,
22064,
2264,
353,
269,
29887,
7503,
29892,
29871,
29953,
29901,
29955,
29962,
13,
4706,
1683,
29901,
13,
9651,
269,
29918,
314,
2830,
1151,
353,
269,
29887,
29961,
16361,
29871,
29900,
29901,
29941,
29962,
13,
9651,
269,
29918,
8990,
353,
269,
29887,
29961,
16361,
29871,
29941,
29901,
29953,
29962,
13,
9651,
269,
29918,
22064,
2264,
353,
269,
29887,
29961,
16361,
29871,
29953,
29901,
29955,
29962,
13,
13,
4706,
736,
313,
29879,
29918,
314,
2830,
1151,
29892,
269,
29918,
8990,
29892,
269,
29918,
22064,
2264,
29897,
13,
13,
1678,
822,
7604,
675,
29918,
29879,
3174,
29898,
1311,
29892,
269,
3174,
29901,
15886,
29889,
29911,
6073,
29892,
1962,
29901,
15886,
29889,
29911,
6073,
29892,
1024,
29901,
851,
353,
376,
29879,
3174,
29908,
1125,
13,
4706,
411,
15886,
29889,
11918,
29918,
6078,
703,
16227,
675,
29908,
1125,
13,
9651,
502,
29892,
7186,
353,
15886,
29889,
4467,
29882,
7720,
29898,
13,
18884,
15886,
29889,
1915,
3493,
29898,
29900,
29889,
29900,
29892,
29871,
29896,
29889,
29900,
29892,
1962,
29889,
12181,
29961,
29906,
11724,
13,
18884,
15886,
29889,
1915,
3493,
29898,
29900,
29889,
29900,
29892,
29871,
29896,
29889,
29900,
29892,
1962,
29889,
12181,
29961,
29896,
11724,
13,
9651,
1723,
29871,
396,
9280,
13,
13,
9651,
318,
4270,
353,
15886,
29889,
1429,
4197,
375,
29892,
7186,
1402,
448,
29896,
29897,
13,
9651,
396,
3855,
259,
285,
13,
13,
9651,
278,
941,
353,
29871,
29906,
29889,
29900,
334,
7442,
29889,
1631,
334,
318,
4270,
29961,
16361,
29871,
29900,
29962,
448,
313,
9302,
29889,
1631,
847,
29871,
29906,
29897,
13,
9651,
1374,
29875,
353,
7442,
29889,
1631,
334,
318,
4270,
29961,
16361,
29871,
29896,
29962,
13,
13,
9651,
270,
353,
15886,
29889,
18837,
29918,
6229,
29879,
29898,
13,
18884,
15886,
29889,
1429,
29898,
13,
462,
1678,
518,
13,
462,
4706,
15886,
29889,
3944,
29898,
3416,
29897,
334,
15886,
29889,
5223,
29898,
2876,
511,
13,
462,
4706,
15886,
29889,
3944,
29898,
2876,
511,
13,
462,
4706,
15886,
29889,
5223,
29898,
3416,
29897,
334,
15886,
29889,
5223,
29898,
2876,
511,
13,
462,
1678,
21251,
13,
462,
1678,
448,
29896,
29892,
13,
18884,
10353,
13,
462,
29900,
29892,
13,
9651,
1723,
13,
13,
9651,
363,
474,
297,
3464,
29898,
29879,
3174,
29889,
12181,
29961,
29896,
29962,
1125,
13,
18884,
1962,
353,
1962,
718,
1583,
3032,
5311,
29918,
24219,
403,
29898,
13,
462,
1678,
15886,
29889,
690,
14443,
29898,
29879,
3174,
7503,
29892,
474,
1402,
21069,
29896,
29892,
29871,
29896,
29892,
29871,
29896,
29892,
29871,
29955,
11724,
270,
13,
18884,
1723,
13,
13,
9651,
15886,
29889,
7727,
29889,
3027,
29898,
978,
29892,
1962,
29892,
4236,
29918,
4905,
29879,
29922,
29896,
29900,
29897,
13,
13,
1678,
822,
903,
29885,
4211,
4279,
29898,
1311,
29892,
921,
29901,
15886,
29889,
29911,
6073,
29897,
1599,
15886,
29889,
29911,
6073,
29901,
13,
4706,
736,
1067,
29889,
29885,
4211,
4279,
29898,
29916,
29892,
848,
29918,
4830,
29922,
1311,
29889,
1272,
29918,
4830,
29897,
13,
13,
1678,
822,
903,
8945,
675,
29898,
1311,
29892,
921,
29901,
15886,
29889,
29911,
6073,
29897,
1599,
15886,
29889,
29911,
6073,
29901,
13,
4706,
736,
1067,
29889,
8945,
675,
29898,
29916,
29892,
848,
29918,
4830,
29922,
1311,
29889,
1272,
29918,
4830,
29897,
13,
13,
1678,
822,
903,
6333,
29898,
1311,
29892,
921,
29901,
15886,
29889,
29911,
6073,
29892,
343,
29901,
15886,
29889,
29911,
6073,
29897,
1599,
15886,
29889,
29911,
6073,
29901,
13,
4706,
736,
1067,
29889,
6333,
29898,
29916,
29892,
343,
29892,
848,
29918,
4830,
29922,
1311,
29889,
1272,
29918,
4830,
29897,
13,
13,
1678,
822,
903,
13191,
29898,
1311,
29892,
270,
29901,
15886,
29889,
29911,
6073,
29892,
302,
29901,
15886,
29889,
29911,
6073,
29897,
1599,
15886,
29889,
29911,
6073,
29901,
13,
4706,
736,
270,
448,
29871,
29906,
334,
1583,
3032,
6333,
29898,
29881,
29892,
302,
29897,
334,
302,
13,
13,
1678,
822,
903,
517,
29918,
2003,
29941,
29898,
1311,
29892,
921,
29901,
15886,
29889,
29911,
6073,
29897,
1599,
15886,
29889,
29911,
6073,
29901,
13,
4706,
736,
1067,
29889,
517,
29918,
2003,
29941,
29898,
29916,
29892,
848,
29918,
4830,
29922,
1311,
29889,
1272,
29918,
4830,
29897,
13,
13,
1678,
822,
903,
657,
29918,
12719,
29918,
8990,
29898,
1311,
29897,
1599,
938,
29901,
13,
4706,
736,
1067,
29889,
657,
29918,
12719,
29918,
8990,
29898,
1272,
29918,
4830,
29922,
1311,
29889,
1272,
29918,
4830,
29897,
13,
13,
1678,
822,
903,
348,
510,
2139,
8498,
386,
29898,
13,
4706,
1583,
29892,
270,
29901,
15886,
29889,
29911,
6073,
29892,
269,
2934,
29901,
5785,
353,
29871,
29906,
29889,
29945,
29892,
321,
3232,
29901,
5785,
353,
29871,
29900,
29889,
29955,
13,
1678,
1723,
1599,
15886,
29889,
29911,
6073,
29901,
13,
4706,
9995,
4591,
29871,
29900,
29899,
29896,
1819,
304,
2989,
10809,
3464,
29889,
450,
1950,
10809,
3464,
13,
4706,
338,
1904,
839,
491,
269,
2934,
322,
321,
3232,
322,
411,
269,
2934,
29922,
29906,
29889,
29945,
322,
321,
3232,
29922,
29900,
29889,
29955,
13,
4706,
372,
338,
1546,
29871,
29900,
29889,
29896,
29955,
322,
29871,
29896,
29889,
29946,
29889,
13,
4706,
9995,
13,
4706,
736,
15886,
29889,
4563,
29918,
1217,
29918,
13707,
29898,
29896,
29889,
29900,
29892,
29871,
29906,
29889,
29900,
334,
269,
2934,
334,
270,
718,
321,
3232,
29897,
13,
2
] |
genes/models.py | xueyanmu/django-genes | 4 | 106011 | <reponame>xueyanmu/django-genes<gh_stars>1-10
import re
from django.db import models
from django.core.exceptions import FieldError
from organisms.models import Organism
# Regular expressions to be matched in the methods of 'Gene'.
nonalpha = re.compile(r'[^a-zA-Z0-9]')
num = re.compile(r'[0-9]')
class Gene(models.Model):
"""
The class 'Gene' extends the Model class in Django. For more information,
see: https://docs.djangoproject.com/en/dev/topics/db/models/
Genes will be added from an online database like 'Entrez', using the Django
management commands (see management/commands/genes_load_geneinfo.py).
"""
entrezid = models.IntegerField(null=True, db_index=True, unique=True)
# Used for organisms like yeast.
systematic_name = models.CharField(max_length=32, db_index=True)
standard_name = models.CharField(max_length=32, null=True, db_index=True)
# Description/full name of gene.
description = models.TextField()
# "organism" field contains the primary key of whichever organism
# instance the gene belongs to. For more info, see:
# https://docs.djangoproject.com/en/dev/ref/models/fields/#django.db.models.ForeignKey
organism = models.ForeignKey(Organism, null=False)
# "aliases" stores a space-separated list of aliases.
aliases = models.TextField()
obsolete = models.BooleanField(default=False)
# Weight used for search results, needed now that we allow genes with
# identical symbols.
weight = models.FloatField(default=1)
# __unicode__ in django, explained at:
# https://docs.djangoproject.com/en/dev/ref/models/instances/#unicode
def __unicode__(self):
if self.standard_name:
return self.standard_name
return self.systematic_name
def wall_of_name(self):
'''
Appends identifiers for the different databases (such as Entrez id's)
and returns them. Uses the CrossRef class below.
'''
names = []
if self.standard_name:
names.append(self.standard_name)
if self.systematic_name:
names.append(self.systematic_name)
names.extend([xref.xrid for xref in self.crossref_set.all()])
for i in range(len(names)):
names[i] = re.sub(nonalpha, '', names[i])
names_string = ' '.join(names)
if self.standard_name:
names_string += ' ' + re.sub(num, '', self.standard_name)
return names_string
def save(self, *args, **kwargs):
"""
Override save() method to make sure that standard_name and
systematic_name won't be null or empty, or consist of only space
characters (such as space, tab, new line, etc).
"""
empty_std_name = False
if not self.standard_name or self.standard_name.isspace():
empty_std_name = True
empty_sys_name = False
if not self.systematic_name or self.systematic_name.isspace():
empty_sys_name = True
if empty_std_name and empty_sys_name:
raise ValueError(
"Both standard_name and systematic_name are empty")
super(Gene, self).save(*args, **kwargs) # Call the "real" save().
class CrossRefDB(models.Model):
name = models.CharField(max_length=64, unique=True, db_index=True,
blank=False)
url = models.URLField()
def save(self, *args, **kwargs):
"""
Extends save() method of Django models to check that the database name
is not left blank.
Note: 'blank=False' is only checked at a form-validation-stage. A test
using Fixtureless that tries to randomly create a CrossRefDB with an
empty string name would unintentionally break the test.
"""
if self.name == '':
raise FieldError
else:
return super(CrossRefDB, self).save(*args, **kwargs)
def __unicode__(self):
return self.name
class Meta:
verbose_name = "Cross Reference Database"
class CrossRef(models.Model):
crossrefdb = models.ForeignKey(CrossRefDB, null=False)
gene = models.ForeignKey(Gene, null=False)
xrid = models.CharField(max_length=32, null=False, db_index=True)
def __unicode__(self):
return self.xrid
# Return the url for this entry
def _get_url(self):
url = self.crossrefdb.url
if "_SPEC_" in url:
species_name = self.gene.organism.scientific_name
url = url.replace("_SPEC_", species_name.replace(" ", "+"))
url = url.replace("_REPL_", self.xrid)
return url
specific_url = property(_get_url)
| [
1,
529,
276,
1112,
420,
29958,
29916,
434,
10094,
2589,
29914,
14095,
29899,
1885,
267,
29966,
12443,
29918,
303,
1503,
29958,
29896,
29899,
29896,
29900,
13,
5215,
337,
13,
13,
3166,
9557,
29889,
2585,
1053,
4733,
13,
3166,
9557,
29889,
3221,
29889,
11739,
29879,
1053,
8989,
2392,
13,
3166,
2894,
12903,
29889,
9794,
1053,
9205,
1608,
13,
13,
29937,
2169,
1070,
12241,
304,
367,
19228,
297,
278,
3519,
310,
525,
29954,
1600,
4286,
13,
5464,
2312,
353,
337,
29889,
12198,
29898,
29878,
29915,
22896,
29874,
29899,
25265,
29899,
29999,
29900,
29899,
29929,
29962,
1495,
13,
1949,
353,
337,
29889,
12198,
29898,
29878,
29915,
29961,
29900,
29899,
29929,
29962,
1495,
13,
13,
13,
1990,
15350,
29898,
9794,
29889,
3195,
1125,
13,
1678,
9995,
13,
1678,
450,
770,
525,
29954,
1600,
29915,
4988,
278,
8125,
770,
297,
15337,
29889,
1152,
901,
2472,
29892,
13,
1678,
1074,
29901,
2045,
597,
2640,
29889,
19776,
574,
26555,
622,
29889,
510,
29914,
264,
29914,
3359,
29914,
3332,
1199,
29914,
2585,
29914,
9794,
29914,
13,
13,
1678,
5739,
267,
674,
367,
2715,
515,
385,
7395,
2566,
763,
525,
5292,
15749,
742,
773,
278,
15337,
13,
1678,
10643,
8260,
313,
4149,
10643,
29914,
26381,
29914,
1885,
267,
29918,
1359,
29918,
29887,
1600,
3888,
29889,
2272,
467,
13,
1678,
9995,
13,
1678,
2637,
29920,
333,
353,
4733,
29889,
7798,
3073,
29898,
4304,
29922,
5574,
29892,
4833,
29918,
2248,
29922,
5574,
29892,
5412,
29922,
5574,
29897,
13,
13,
1678,
396,
501,
8485,
363,
2894,
12903,
763,
8007,
579,
29889,
13,
1678,
1788,
2454,
29918,
978,
353,
4733,
29889,
27890,
29898,
3317,
29918,
2848,
29922,
29941,
29906,
29892,
4833,
29918,
2248,
29922,
5574,
29897,
13,
13,
1678,
3918,
29918,
978,
353,
4733,
29889,
27890,
29898,
3317,
29918,
2848,
29922,
29941,
29906,
29892,
1870,
29922,
5574,
29892,
4833,
29918,
2248,
29922,
5574,
29897,
13,
13,
1678,
396,
12953,
29914,
8159,
1024,
310,
18530,
29889,
13,
1678,
6139,
353,
4733,
29889,
15778,
580,
13,
13,
1678,
396,
376,
6388,
1608,
29908,
1746,
3743,
278,
7601,
1820,
310,
377,
4070,
369,
2894,
1608,
13,
1678,
396,
2777,
278,
18530,
14393,
304,
29889,
29871,
1152,
901,
5235,
29892,
1074,
29901,
13,
1678,
396,
2045,
597,
2640,
29889,
19776,
574,
26555,
622,
29889,
510,
29914,
264,
29914,
3359,
29914,
999,
29914,
9794,
29914,
9621,
8484,
14095,
29889,
2585,
29889,
9794,
29889,
27755,
2558,
13,
1678,
2894,
1608,
353,
4733,
29889,
27755,
2558,
29898,
27356,
1608,
29892,
1870,
29922,
8824,
29897,
13,
13,
1678,
396,
376,
2606,
2129,
29908,
14422,
263,
2913,
29899,
25048,
630,
1051,
310,
14430,
2129,
29889,
13,
1678,
14430,
2129,
353,
4733,
29889,
15778,
580,
13,
13,
1678,
704,
2170,
371,
353,
4733,
29889,
18146,
3073,
29898,
4381,
29922,
8824,
29897,
13,
13,
1678,
396,
1334,
523,
1304,
363,
2740,
2582,
29892,
4312,
1286,
393,
591,
2758,
2531,
267,
411,
13,
1678,
396,
13557,
15072,
29889,
13,
1678,
7688,
353,
4733,
29889,
11031,
3073,
29898,
4381,
29922,
29896,
29897,
13,
13,
1678,
396,
4770,
2523,
356,
1649,
297,
9557,
29892,
10824,
472,
29901,
13,
1678,
396,
2045,
597,
2640,
29889,
19776,
574,
26555,
622,
29889,
510,
29914,
264,
29914,
3359,
29914,
999,
29914,
9794,
29914,
2611,
2925,
8484,
2523,
356,
13,
1678,
822,
4770,
2523,
356,
12035,
1311,
1125,
13,
4706,
565,
1583,
29889,
15770,
29918,
978,
29901,
13,
9651,
736,
1583,
29889,
15770,
29918,
978,
13,
4706,
736,
1583,
29889,
5205,
2454,
29918,
978,
13,
13,
1678,
822,
10090,
29918,
974,
29918,
978,
29898,
1311,
1125,
13,
4706,
14550,
13,
4706,
2401,
1975,
2893,
14903,
363,
278,
1422,
21218,
313,
14565,
408,
14447,
29920,
1178,
29915,
29879,
29897,
13,
4706,
322,
3639,
963,
29889,
10783,
267,
278,
11189,
5620,
770,
2400,
29889,
13,
4706,
14550,
13,
4706,
2983,
353,
5159,
13,
4706,
565,
1583,
29889,
15770,
29918,
978,
29901,
13,
9651,
2983,
29889,
4397,
29898,
1311,
29889,
15770,
29918,
978,
29897,
13,
4706,
565,
1583,
29889,
5205,
2454,
29918,
978,
29901,
13,
9651,
2983,
29889,
4397,
29898,
1311,
29889,
5205,
2454,
29918,
978,
29897,
13,
4706,
2983,
29889,
21843,
4197,
29916,
999,
29889,
29916,
2429,
363,
921,
999,
297,
1583,
29889,
19128,
999,
29918,
842,
29889,
497,
580,
2314,
13,
4706,
363,
474,
297,
3464,
29898,
2435,
29898,
7039,
22164,
13,
9651,
2983,
29961,
29875,
29962,
353,
337,
29889,
1491,
29898,
5464,
2312,
29892,
15516,
2983,
29961,
29875,
2314,
13,
13,
4706,
2983,
29918,
1807,
353,
525,
15300,
7122,
29898,
7039,
29897,
13,
4706,
565,
1583,
29889,
15770,
29918,
978,
29901,
13,
9651,
2983,
29918,
1807,
4619,
525,
525,
718,
337,
29889,
1491,
29898,
1949,
29892,
15516,
1583,
29889,
15770,
29918,
978,
29897,
13,
4706,
736,
2983,
29918,
1807,
13,
13,
1678,
822,
4078,
29898,
1311,
29892,
334,
5085,
29892,
3579,
19290,
1125,
13,
4706,
9995,
13,
4706,
6811,
2426,
4078,
580,
1158,
304,
1207,
1854,
393,
3918,
29918,
978,
322,
13,
4706,
1788,
2454,
29918,
978,
2113,
29915,
29873,
367,
1870,
470,
4069,
29892,
470,
5718,
310,
871,
2913,
13,
4706,
4890,
313,
14565,
408,
2913,
29892,
4434,
29892,
716,
1196,
29892,
2992,
467,
13,
4706,
9995,
13,
4706,
4069,
29918,
4172,
29918,
978,
353,
7700,
13,
4706,
565,
451,
1583,
29889,
15770,
29918,
978,
470,
1583,
29889,
15770,
29918,
978,
29889,
790,
3535,
7295,
13,
9651,
4069,
29918,
4172,
29918,
978,
353,
5852,
13,
13,
4706,
4069,
29918,
9675,
29918,
978,
353,
7700,
13,
4706,
565,
451,
1583,
29889,
5205,
2454,
29918,
978,
470,
1583,
29889,
5205,
2454,
29918,
978,
29889,
790,
3535,
7295,
13,
9651,
4069,
29918,
9675,
29918,
978,
353,
5852,
13,
13,
4706,
565,
4069,
29918,
4172,
29918,
978,
322,
4069,
29918,
9675,
29918,
978,
29901,
13,
9651,
12020,
7865,
2392,
29898,
13,
18884,
376,
29933,
720,
3918,
29918,
978,
322,
1788,
2454,
29918,
978,
526,
4069,
1159,
13,
13,
4706,
2428,
29898,
29954,
1600,
29892,
1583,
467,
7620,
10456,
5085,
29892,
3579,
19290,
29897,
29871,
396,
8251,
278,
376,
6370,
29908,
4078,
2141,
13,
13,
13,
1990,
11189,
5620,
4051,
29898,
9794,
29889,
3195,
1125,
13,
1678,
1024,
353,
4733,
29889,
27890,
29898,
3317,
29918,
2848,
29922,
29953,
29946,
29892,
5412,
29922,
5574,
29892,
4833,
29918,
2248,
29922,
5574,
29892,
13,
462,
9651,
9654,
29922,
8824,
29897,
13,
1678,
3142,
353,
4733,
29889,
4219,
3073,
580,
13,
13,
1678,
822,
4078,
29898,
1311,
29892,
334,
5085,
29892,
3579,
19290,
1125,
13,
4706,
9995,
13,
4706,
7338,
1975,
4078,
580,
1158,
310,
15337,
4733,
304,
1423,
393,
278,
2566,
1024,
13,
4706,
338,
451,
2175,
9654,
29889,
13,
4706,
3940,
29901,
525,
19465,
29922,
8824,
29915,
338,
871,
7120,
472,
263,
883,
29899,
18157,
29899,
19190,
29889,
319,
1243,
13,
4706,
773,
383,
29875,
15546,
2222,
393,
14335,
304,
20459,
1653,
263,
11189,
5620,
4051,
411,
385,
13,
4706,
4069,
1347,
1024,
723,
443,
524,
2509,
635,
2867,
278,
1243,
29889,
13,
4706,
9995,
13,
4706,
565,
1583,
29889,
978,
1275,
525,
2396,
13,
9651,
12020,
8989,
2392,
13,
4706,
1683,
29901,
13,
9651,
736,
2428,
29898,
29907,
2124,
5620,
4051,
29892,
1583,
467,
7620,
10456,
5085,
29892,
3579,
19290,
29897,
13,
13,
1678,
822,
4770,
2523,
356,
12035,
1311,
1125,
13,
4706,
736,
1583,
29889,
978,
13,
13,
1678,
770,
20553,
29901,
13,
4706,
26952,
29918,
978,
353,
376,
29907,
2124,
12105,
5470,
29908,
13,
13,
13,
1990,
11189,
5620,
29898,
9794,
29889,
3195,
1125,
13,
1678,
4891,
999,
2585,
353,
4733,
29889,
27755,
2558,
29898,
29907,
2124,
5620,
4051,
29892,
1870,
29922,
8824,
29897,
13,
1678,
18530,
353,
4733,
29889,
27755,
2558,
29898,
29954,
1600,
29892,
1870,
29922,
8824,
29897,
13,
1678,
921,
2429,
353,
4733,
29889,
27890,
29898,
3317,
29918,
2848,
29922,
29941,
29906,
29892,
1870,
29922,
8824,
29892,
4833,
29918,
2248,
29922,
5574,
29897,
13,
13,
1678,
822,
4770,
2523,
356,
12035,
1311,
1125,
13,
4706,
736,
1583,
29889,
29916,
2429,
13,
13,
1678,
396,
7106,
278,
3142,
363,
445,
6251,
13,
1678,
822,
903,
657,
29918,
2271,
29898,
1311,
1125,
13,
4706,
3142,
353,
1583,
29889,
19128,
999,
2585,
29889,
2271,
13,
4706,
565,
11119,
29903,
4162,
29907,
27508,
297,
3142,
29901,
13,
9651,
6606,
29918,
978,
353,
1583,
29889,
29887,
1600,
29889,
6388,
1608,
29889,
29879,
15566,
928,
29918,
978,
13,
9651,
3142,
353,
3142,
29889,
6506,
703,
29918,
29903,
4162,
29907,
29918,
613,
6606,
29918,
978,
29889,
6506,
703,
9162,
15691,
5783,
13,
4706,
3142,
353,
3142,
29889,
6506,
703,
29918,
1525,
7390,
29918,
613,
1583,
29889,
29916,
2429,
29897,
13,
4706,
736,
3142,
13,
13,
1678,
2702,
29918,
2271,
353,
2875,
7373,
657,
29918,
2271,
29897,
13,
2
] |
src/utils/pytorch_evaluation.py | owkin/idash-2020 | 5 | 89801 | #!/usr/bin/env python
# Copyright 2021 Owkin, inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import torch
import numpy as np
def predict(model, X, threshold=0.5):
"""Generate NumPy output predictions on a dataset using a given model.
Args:
model (torch model): A Pytroch model
X (dataloader): A dataframe-based gene dataset to predict on
"""
X_tensor, _ = convert_dataframe_to_tensor(X, [])
model.eval()
with torch.no_grad():
y_pred = (model(X_tensor) >= threshold).int().numpy()
return y_pred
def convert_dataframe_to_tensor(X, y):
tensor_x = torch.Tensor(X.to_numpy().astype(np.float32))
tensor_y = torch.Tensor(y)
return tensor_x, tensor_y
| [
1,
18787,
4855,
29914,
2109,
29914,
6272,
3017,
13,
29937,
14187,
1266,
29871,
29906,
29900,
29906,
29896,
438,
29893,
9089,
29892,
5528,
29889,
13,
29937,
13,
29937,
10413,
21144,
1090,
278,
13380,
19245,
29892,
10079,
29871,
29906,
29889,
29900,
313,
1552,
376,
29931,
293,
1947,
1496,
13,
29937,
366,
1122,
451,
671,
445,
934,
5174,
297,
752,
13036,
411,
278,
19245,
29889,
13,
29937,
887,
1122,
4017,
263,
3509,
310,
278,
19245,
472,
13,
29937,
13,
29937,
418,
1732,
597,
1636,
29889,
4288,
29889,
990,
29914,
506,
11259,
29914,
27888,
1430,
1660,
29899,
29906,
29889,
29900,
13,
29937,
13,
29937,
25870,
3734,
491,
22903,
4307,
470,
15502,
304,
297,
5007,
29892,
7047,
13,
29937,
13235,
1090,
278,
19245,
338,
13235,
373,
385,
376,
3289,
8519,
29908,
350,
3289,
3235,
29892,
13,
29937,
399,
1806,
8187,
2692,
399,
1718,
29934,
13566,
29059,
6323,
8707,
29928,
22122,
29903,
8079,
13764,
29979,
476,
22255,
29892,
2845,
4653,
470,
2411,
2957,
29889,
13,
29937,
2823,
278,
19245,
363,
278,
2702,
4086,
14765,
1076,
11239,
322,
13,
29937,
27028,
1090,
278,
19245,
29889,
13,
13,
5215,
4842,
305,
13,
5215,
12655,
408,
7442,
13,
13,
13,
1753,
8500,
29898,
4299,
29892,
1060,
29892,
16897,
29922,
29900,
29889,
29945,
1125,
13,
1678,
9995,
5631,
403,
11848,
19737,
1962,
27303,
373,
263,
8783,
773,
263,
2183,
1904,
29889,
13,
13,
1678,
826,
3174,
29901,
13,
4706,
1904,
313,
7345,
305,
1904,
1125,
319,
349,
3637,
307,
305,
1904,
13,
4706,
1060,
313,
29881,
2075,
29877,
1664,
1125,
319,
12205,
29899,
6707,
18530,
8783,
304,
8500,
373,
13,
1678,
9995,
13,
1678,
1060,
29918,
20158,
29892,
903,
29871,
353,
3588,
29918,
1272,
2557,
29918,
517,
29918,
20158,
29898,
29990,
29892,
518,
2314,
13,
13,
1678,
1904,
29889,
14513,
580,
13,
1678,
411,
4842,
305,
29889,
1217,
29918,
5105,
7295,
13,
4706,
343,
29918,
11965,
353,
313,
4299,
29898,
29990,
29918,
20158,
29897,
6736,
16897,
467,
524,
2141,
23749,
580,
13,
13,
1678,
736,
343,
29918,
11965,
13,
13,
1753,
3588,
29918,
1272,
2557,
29918,
517,
29918,
20158,
29898,
29990,
29892,
343,
1125,
13,
1678,
12489,
29918,
29916,
353,
4842,
305,
29889,
29911,
6073,
29898,
29990,
29889,
517,
29918,
23749,
2141,
579,
668,
29898,
9302,
29889,
7411,
29941,
29906,
876,
13,
1678,
12489,
29918,
29891,
353,
4842,
305,
29889,
29911,
6073,
29898,
29891,
29897,
13,
1678,
736,
12489,
29918,
29916,
29892,
12489,
29918,
29891,
13,
13,
2
] |
Tests/Methods/Mesh/Interpolation/test_interpolation.py | harshasunder-1/pyleecan | 2 | 8222 | <filename>Tests/Methods/Mesh/Interpolation/test_interpolation.py<gh_stars>1-10
# -*- coding: utf-8 -*-
import pytest
import numpy as np
from unittest import TestCase
from pyleecan.Classes.CellMat import CellMat
from pyleecan.Classes.MeshSolution import MeshSolution
from pyleecan.Classes.PointMat import PointMat
from pyleecan.Classes.MeshMat import MeshMat
from pyleecan.Classes.ScalarProductL2 import ScalarProductL2
from pyleecan.Classes.Interpolation import Interpolation
from pyleecan.Classes.RefSegmentP1 import RefSegmentP1
from pyleecan.Classes.FPGNSeg import FPGNSeg
@pytest.mark.MeshSol
class unittest_real_points(TestCase):
""" Tests for interpolation method"""
def test_line(self):
DELTA = 1e-10
mesh = MeshMat()
mesh.cell["line"] = CellMat(nb_pt_per_cell=2)
mesh.point = PointMat()
mesh.point.add_point(np.array([0, 0]))
mesh.point.add_point(np.array([1, 0]))
mesh.point.add_point(np.array([0, 1]))
mesh.point.add_point(np.array([2, 3]))
mesh.point.add_point(np.array([3, 3]))
mesh.add_cell(np.array([0, 1]), "line")
mesh.add_cell(np.array([0, 2]), "line")
mesh.add_cell(np.array([1, 2]), "line")
c_line = mesh.cell["line"]
c_line.interpolation = Interpolation()
c_line.interpolation.ref_cell = RefSegmentP1()
c_line.interpolation.scalar_product = ScalarProductL2()
c_line.interpolation.gauss_point = FPGNSeg()
meshsol = MeshSolution()
meshsol.mesh = [mesh]
vert = mesh.get_vertice(0)["line"]
test_pt = np.array([0.7, 0])
test_field = np.array([1, 1])
sol = [1]
func = c_line.interpolation.ref_cell.interpolation(test_pt, vert, test_field)
testA = np.sum(abs(func - sol))
msg = "Wrong result: returned " + str(func) + ", expected: " + str(test_field)
self.assertAlmostEqual(testA, 0, msg=msg, delta=DELTA)
vert = mesh.get_vertice(0)["line"]
test_pt = np.array([0.7, 0])
test_field = np.ones(
(2, 120, 3)
) # Simulate a 3D vector field for 120 time step
func = c_line.interpolation.ref_cell.interpolation(test_pt, vert, test_field)
sol = np.ones((120, 3))
testA = np.sum(abs(func - sol))
msg = "Wrong result: returned " + str(func) + ", expected: " + str(sol)
self.assertAlmostEqual(testA, 0, msg=msg, delta=DELTA)
vert = mesh.get_vertice(2)["line"]
test_pt = np.array([0.6, 0.4])
test_field = np.zeros((2, 120, 3))
test_field[0, :] = np.ones(
(1, 120, 3)
) # Simulate a 3D vector field for 120 time step
func = c_line.interpolation.ref_cell.interpolation(test_pt, vert, test_field)
sol = 0.6 * np.ones((120, 3))
testA = np.sum(abs(sol - func))
msg = "Wrong result: returned " + str(func) + ", expected: " + str(sol)
self.assertAlmostEqual(testA, 0, msg=msg, delta=DELTA)
vert = mesh.get_vertice(1)["line"]
test_pt = np.array([0, 0.4])
test_field = np.zeros((2, 120, 3))
test_field[1, :] = np.ones(
(1, 120, 3)
) # Simulate a 3D vector field for 120 time step
func = c_line.interpolation.ref_cell.interpolation(test_pt, vert, test_field)
sol = 0.4 * np.ones((120, 3))
testA = np.sum(abs(sol - func))
msg = "Wrong result: returned " + str(func) + ", expected: " + str(sol)
self.assertAlmostEqual(testA, 0, msg=msg, delta=DELTA)
| [
1,
529,
9507,
29958,
24376,
29914,
26112,
29914,
29924,
12094,
29914,
4074,
3733,
362,
29914,
1688,
29918,
1639,
3733,
362,
29889,
2272,
29966,
12443,
29918,
303,
1503,
29958,
29896,
29899,
29896,
29900,
13,
29937,
448,
29930,
29899,
14137,
29901,
23616,
29899,
29947,
448,
29930,
29899,
13,
13,
5215,
11451,
1688,
13,
5215,
12655,
408,
7442,
13,
3166,
443,
27958,
1053,
4321,
8259,
13,
13,
3166,
282,
1508,
687,
273,
29889,
27403,
29889,
4617,
9782,
1053,
19413,
9782,
13,
3166,
282,
1508,
687,
273,
29889,
27403,
29889,
29924,
12094,
13296,
918,
1053,
341,
12094,
13296,
918,
13,
3166,
282,
1508,
687,
273,
29889,
27403,
29889,
5228,
9782,
1053,
8984,
9782,
13,
3166,
282,
1508,
687,
273,
29889,
27403,
29889,
29924,
12094,
9782,
1053,
341,
12094,
9782,
13,
3166,
282,
1508,
687,
273,
29889,
27403,
29889,
29636,
279,
7566,
29931,
29906,
1053,
317,
1052,
279,
7566,
29931,
29906,
13,
3166,
282,
1508,
687,
273,
29889,
27403,
29889,
4074,
3733,
362,
1053,
4124,
3733,
362,
13,
3166,
282,
1508,
687,
273,
29889,
27403,
29889,
5620,
17669,
358,
29925,
29896,
1053,
9897,
17669,
358,
29925,
29896,
13,
3166,
282,
1508,
687,
273,
29889,
27403,
29889,
29943,
16903,
3059,
387,
1053,
383,
16903,
3059,
387,
13,
13,
13,
29992,
2272,
1688,
29889,
3502,
29889,
29924,
12094,
13296,
13,
1990,
443,
27958,
29918,
6370,
29918,
9748,
29898,
3057,
8259,
1125,
13,
1678,
9995,
4321,
29879,
363,
29694,
1158,
15945,
29908,
13,
13,
1678,
822,
1243,
29918,
1220,
29898,
1311,
1125,
13,
4706,
5012,
5850,
29909,
353,
29871,
29896,
29872,
29899,
29896,
29900,
13,
13,
4706,
27716,
353,
341,
12094,
9782,
580,
13,
4706,
27716,
29889,
3729,
3366,
1220,
3108,
353,
19413,
9782,
29898,
9877,
29918,
415,
29918,
546,
29918,
3729,
29922,
29906,
29897,
13,
4706,
27716,
29889,
3149,
353,
8984,
9782,
580,
13,
4706,
27716,
29889,
3149,
29889,
1202,
29918,
3149,
29898,
9302,
29889,
2378,
4197,
29900,
29892,
29871,
29900,
12622,
13,
4706,
27716,
29889,
3149,
29889,
1202,
29918,
3149,
29898,
9302,
29889,
2378,
4197,
29896,
29892,
29871,
29900,
12622,
13,
4706,
27716,
29889,
3149,
29889,
1202,
29918,
3149,
29898,
9302,
29889,
2378,
4197,
29900,
29892,
29871,
29896,
12622,
13,
4706,
27716,
29889,
3149,
29889,
1202,
29918,
3149,
29898,
9302,
29889,
2378,
4197,
29906,
29892,
29871,
29941,
12622,
13,
4706,
27716,
29889,
3149,
29889,
1202,
29918,
3149,
29898,
9302,
29889,
2378,
4197,
29941,
29892,
29871,
29941,
12622,
13,
13,
4706,
27716,
29889,
1202,
29918,
3729,
29898,
9302,
29889,
2378,
4197,
29900,
29892,
29871,
29896,
11724,
376,
1220,
1159,
13,
4706,
27716,
29889,
1202,
29918,
3729,
29898,
9302,
29889,
2378,
4197,
29900,
29892,
29871,
29906,
11724,
376,
1220,
1159,
13,
4706,
27716,
29889,
1202,
29918,
3729,
29898,
9302,
29889,
2378,
4197,
29896,
29892,
29871,
29906,
11724,
376,
1220,
1159,
13,
13,
4706,
274,
29918,
1220,
353,
27716,
29889,
3729,
3366,
1220,
3108,
13,
13,
4706,
274,
29918,
1220,
29889,
1639,
3733,
362,
353,
4124,
3733,
362,
580,
13,
4706,
274,
29918,
1220,
29889,
1639,
3733,
362,
29889,
999,
29918,
3729,
353,
9897,
17669,
358,
29925,
29896,
580,
13,
4706,
274,
29918,
1220,
29889,
1639,
3733,
362,
29889,
19529,
279,
29918,
4704,
353,
317,
1052,
279,
7566,
29931,
29906,
580,
13,
4706,
274,
29918,
1220,
29889,
1639,
3733,
362,
29889,
29887,
11214,
29918,
3149,
353,
383,
16903,
3059,
387,
580,
13,
13,
4706,
27716,
2929,
353,
341,
12094,
13296,
918,
580,
13,
4706,
27716,
2929,
29889,
4467,
29882,
353,
518,
4467,
29882,
29962,
13,
13,
4706,
4837,
353,
27716,
29889,
657,
29918,
1765,
625,
29898,
29900,
29897,
3366,
1220,
3108,
13,
4706,
1243,
29918,
415,
353,
7442,
29889,
2378,
4197,
29900,
29889,
29955,
29892,
29871,
29900,
2314,
13,
4706,
1243,
29918,
2671,
353,
7442,
29889,
2378,
4197,
29896,
29892,
29871,
29896,
2314,
13,
4706,
899,
353,
518,
29896,
29962,
13,
4706,
3653,
353,
274,
29918,
1220,
29889,
1639,
3733,
362,
29889,
999,
29918,
3729,
29889,
1639,
3733,
362,
29898,
1688,
29918,
415,
29892,
4837,
29892,
1243,
29918,
2671,
29897,
13,
4706,
1243,
29909,
353,
7442,
29889,
2083,
29898,
6897,
29898,
9891,
448,
899,
876,
13,
4706,
10191,
353,
376,
29956,
29373,
1121,
29901,
4133,
376,
718,
851,
29898,
9891,
29897,
718,
9162,
3806,
29901,
376,
718,
851,
29898,
1688,
29918,
2671,
29897,
13,
4706,
1583,
29889,
9294,
2499,
3242,
9843,
29898,
1688,
29909,
29892,
29871,
29900,
29892,
10191,
29922,
7645,
29892,
19471,
29922,
2287,
5850,
29909,
29897,
13,
13,
4706,
4837,
353,
27716,
29889,
657,
29918,
1765,
625,
29898,
29900,
29897,
3366,
1220,
3108,
13,
4706,
1243,
29918,
415,
353,
7442,
29889,
2378,
4197,
29900,
29889,
29955,
29892,
29871,
29900,
2314,
13,
4706,
1243,
29918,
2671,
353,
7442,
29889,
2873,
29898,
13,
9651,
313,
29906,
29892,
29871,
29896,
29906,
29900,
29892,
29871,
29941,
29897,
13,
4706,
1723,
29871,
396,
3439,
5987,
263,
29871,
29941,
29928,
4608,
1746,
363,
29871,
29896,
29906,
29900,
931,
4331,
13,
4706,
3653,
353,
274,
29918,
1220,
29889,
1639,
3733,
362,
29889,
999,
29918,
3729,
29889,
1639,
3733,
362,
29898,
1688,
29918,
415,
29892,
4837,
29892,
1243,
29918,
2671,
29897,
13,
4706,
899,
353,
7442,
29889,
2873,
3552,
29896,
29906,
29900,
29892,
29871,
29941,
876,
13,
4706,
1243,
29909,
353,
7442,
29889,
2083,
29898,
6897,
29898,
9891,
448,
899,
876,
13,
4706,
10191,
353,
376,
29956,
29373,
1121,
29901,
4133,
376,
718,
851,
29898,
9891,
29897,
718,
9162,
3806,
29901,
376,
718,
851,
29898,
2929,
29897,
13,
4706,
1583,
29889,
9294,
2499,
3242,
9843,
29898,
1688,
29909,
29892,
29871,
29900,
29892,
10191,
29922,
7645,
29892,
19471,
29922,
2287,
5850,
29909,
29897,
13,
13,
4706,
4837,
353,
27716,
29889,
657,
29918,
1765,
625,
29898,
29906,
29897,
3366,
1220,
3108,
13,
4706,
1243,
29918,
415,
353,
7442,
29889,
2378,
4197,
29900,
29889,
29953,
29892,
29871,
29900,
29889,
29946,
2314,
13,
4706,
1243,
29918,
2671,
353,
7442,
29889,
3298,
359,
3552,
29906,
29892,
29871,
29896,
29906,
29900,
29892,
29871,
29941,
876,
13,
4706,
1243,
29918,
2671,
29961,
29900,
29892,
584,
29962,
353,
7442,
29889,
2873,
29898,
13,
9651,
313,
29896,
29892,
29871,
29896,
29906,
29900,
29892,
29871,
29941,
29897,
13,
4706,
1723,
29871,
396,
3439,
5987,
263,
29871,
29941,
29928,
4608,
1746,
363,
29871,
29896,
29906,
29900,
931,
4331,
13,
4706,
3653,
353,
274,
29918,
1220,
29889,
1639,
3733,
362,
29889,
999,
29918,
3729,
29889,
1639,
3733,
362,
29898,
1688,
29918,
415,
29892,
4837,
29892,
1243,
29918,
2671,
29897,
13,
4706,
899,
353,
29871,
29900,
29889,
29953,
334,
7442,
29889,
2873,
3552,
29896,
29906,
29900,
29892,
29871,
29941,
876,
13,
4706,
1243,
29909,
353,
7442,
29889,
2083,
29898,
6897,
29898,
2929,
448,
3653,
876,
13,
4706,
10191,
353,
376,
29956,
29373,
1121,
29901,
4133,
376,
718,
851,
29898,
9891,
29897,
718,
9162,
3806,
29901,
376,
718,
851,
29898,
2929,
29897,
13,
4706,
1583,
29889,
9294,
2499,
3242,
9843,
29898,
1688,
29909,
29892,
29871,
29900,
29892,
10191,
29922,
7645,
29892,
19471,
29922,
2287,
5850,
29909,
29897,
13,
13,
4706,
4837,
353,
27716,
29889,
657,
29918,
1765,
625,
29898,
29896,
29897,
3366,
1220,
3108,
13,
4706,
1243,
29918,
415,
353,
7442,
29889,
2378,
4197,
29900,
29892,
29871,
29900,
29889,
29946,
2314,
13,
4706,
1243,
29918,
2671,
353,
7442,
29889,
3298,
359,
3552,
29906,
29892,
29871,
29896,
29906,
29900,
29892,
29871,
29941,
876,
13,
4706,
1243,
29918,
2671,
29961,
29896,
29892,
584,
29962,
353,
7442,
29889,
2873,
29898,
13,
9651,
313,
29896,
29892,
29871,
29896,
29906,
29900,
29892,
29871,
29941,
29897,
13,
4706,
1723,
29871,
396,
3439,
5987,
263,
29871,
29941,
29928,
4608,
1746,
363,
29871,
29896,
29906,
29900,
931,
4331,
13,
4706,
3653,
353,
274,
29918,
1220,
29889,
1639,
3733,
362,
29889,
999,
29918,
3729,
29889,
1639,
3733,
362,
29898,
1688,
29918,
415,
29892,
4837,
29892,
1243,
29918,
2671,
29897,
13,
4706,
899,
353,
29871,
29900,
29889,
29946,
334,
7442,
29889,
2873,
3552,
29896,
29906,
29900,
29892,
29871,
29941,
876,
13,
4706,
1243,
29909,
353,
7442,
29889,
2083,
29898,
6897,
29898,
2929,
448,
3653,
876,
13,
4706,
10191,
353,
376,
29956,
29373,
1121,
29901,
4133,
376,
718,
851,
29898,
9891,
29897,
718,
9162,
3806,
29901,
376,
718,
851,
29898,
2929,
29897,
13,
4706,
1583,
29889,
9294,
2499,
3242,
9843,
29898,
1688,
29909,
29892,
29871,
29900,
29892,
10191,
29922,
7645,
29892,
19471,
29922,
2287,
5850,
29909,
29897,
13,
2
] |
dashboard/source/dashboard/__init__.py | mueller-stephan/car-classification | 2 | 190011 | from .layout import attempt, finish_page, main_layout, result, start_page
__all__ = ['main_layout', 'attempt', 'result', 'start_page', 'finish_page']
| [
1,
515,
869,
2680,
1053,
4218,
29892,
8341,
29918,
3488,
29892,
1667,
29918,
2680,
29892,
1121,
29892,
1369,
29918,
3488,
13,
13,
1649,
497,
1649,
353,
6024,
3396,
29918,
2680,
742,
525,
1131,
3456,
742,
525,
2914,
742,
525,
2962,
29918,
3488,
742,
525,
4951,
728,
29918,
3488,
2033,
13,
2
] |
LogRecorder.py | yangshouguo/Graph-based_Bug_Search | 9 | 1613237 |
import logging
class CLogRecoder:
def __init__(self, logfile = 'log.log', format = '%(asctime)s : %(message)s', level = logging.DEBUG):
logging.basicConfig(filename= logfile, level= level , format= format)
self._ft = format
def addStreamHandler(self):
console = logging.StreamHandler()
console.setLevel(logging.INFO)
formater = logging.Formatter(self._ft)
console.setFormatter(formater)
logging.getLogger('').addHandler(console)
return self
def INFO(self, message):
logging.info(message)
return self
if __name__ == '__main__':
lr = CLogRecoder().addStreamHandler()
lr.INFO("test")
| [
1,
29871,
13,
5215,
12183,
13,
13,
13,
1990,
315,
3403,
4789,
6119,
29901,
13,
13,
1678,
822,
4770,
2344,
12035,
1311,
29892,
1480,
1445,
353,
525,
1188,
29889,
1188,
742,
3402,
353,
14210,
29898,
294,
312,
603,
29897,
29879,
584,
1273,
29898,
4906,
29897,
29879,
742,
3233,
353,
12183,
29889,
18525,
1125,
13,
4706,
12183,
29889,
16121,
3991,
29898,
9507,
29922,
1480,
1445,
29892,
3233,
29922,
3233,
1919,
3402,
29922,
3402,
29897,
13,
4706,
1583,
3032,
615,
353,
3402,
13,
13,
1678,
822,
788,
3835,
4598,
29898,
1311,
1125,
13,
4706,
2991,
353,
12183,
29889,
3835,
4598,
580,
13,
4706,
2991,
29889,
842,
10108,
29898,
21027,
29889,
11690,
29897,
13,
4706,
883,
1008,
353,
12183,
29889,
18522,
29898,
1311,
3032,
615,
29897,
13,
4706,
2991,
29889,
842,
18522,
29898,
689,
1008,
29897,
13,
4706,
12183,
29889,
657,
16363,
877,
2824,
1202,
4598,
29898,
11058,
29897,
13,
4706,
736,
1583,
13,
13,
1678,
822,
15233,
29898,
1311,
29892,
2643,
1125,
13,
4706,
12183,
29889,
3888,
29898,
4906,
29897,
13,
4706,
736,
1583,
13,
13,
13,
13,
361,
4770,
978,
1649,
1275,
525,
1649,
3396,
1649,
2396,
13,
1678,
301,
29878,
353,
315,
3403,
4789,
6119,
2141,
1202,
3835,
4598,
580,
13,
1678,
301,
29878,
29889,
11690,
703,
1688,
1159,
13,
13,
2
] |
percona-nagios-plugins/nagios/bin/pmp-check-aws-rds.py | waja/pkg-nagios-plugins-contrib | 0 | 143366 | <gh_stars>0
#!/usr/bin/env python
"""Nagios plugin for Amazon RDS monitoring.
This program is part of $PROJECT_NAME$
License: GPL License (see COPYING)
Author <NAME>
Copyright 2014-2015 Percona LLC and/or its affiliates
"""
import datetime
import optparse
import pprint
import sys
import boto
import boto.rds
import boto.ec2.cloudwatch
# Nagios status codes
OK = 0
WARNING = 1
CRITICAL = 2
UNKNOWN = 3
class RDS(object):
"""RDS connection class"""
def __init__(self, region, profile=None, identifier=None):
"""Get RDS instance details"""
self.region = region
self.profile = profile
self.identifier = identifier
if self.region == 'all':
self.regions_list = [reg.name for reg in boto.rds.regions()]
else:
self.regions_list = [self.region]
self.info = None
if self.identifier:
for reg in self.regions_list:
try:
rds = boto.rds.connect_to_region(reg, profile_name=self.profile)
self.info = rds.get_all_dbinstances(self.identifier)
except (boto.provider.ProfileNotFoundError, boto.exception.BotoServerError) as msg:
debug(msg)
else:
# Exit on the first region and identifier match
self.region = reg
break
def get_info(self):
"""Get RDS instance info"""
if self.info:
return self.info[0]
else:
return None
def get_list(self):
"""Get list of available instances by region(s)"""
result = dict()
for reg in self.regions_list:
try:
rds = boto.rds.connect_to_region(reg, profile_name=self.profile)
result[reg] = rds.get_all_dbinstances()
except (boto.provider.ProfileNotFoundError, boto.exception.BotoServerError) as msg:
debug(msg)
return result
def get_metric(self, metric, start_time, end_time, step):
"""Get RDS metric from CloudWatch"""
cw_conn = boto.ec2.cloudwatch.connect_to_region(self.region, profile_name=self.profile)
result = cw_conn.get_metric_statistics(
step,
start_time,
end_time,
metric,
'AWS/RDS',
'Average',
dimensions={'DBInstanceIdentifier': [self.identifier]}
)
if result:
if len(result) > 1:
# Get the last point
result = sorted(result, key=lambda k: k['Timestamp'])
result.reverse()
result = float('%.2f' % result[0]['Average'])
return result
def debug(val):
"""Debugging output"""
global options
if options.debug:
print 'DEBUG: %s' % val
def main():
"""Main function"""
global options
short_status = {
OK: 'OK',
WARNING: 'WARN',
CRITICAL: 'CRIT',
UNKNOWN: 'UNK'
}
# DB instance classes as listed on
# http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
db_classes = {
'db.t1.micro': 0.615,
'db.m1.small': 1.7,
'db.m1.medium': 3.75,
'db.m1.large': 7.5,
'db.m1.xlarge': 15,
'db.m4.large': 8,
'db.m4.xlarge': 16,
'db.m4.2xlarge': 32,
'db.m4.4xlarge': 64,
'db.m4.10xlarge': 160,
'db.r3.large': 15,
'db.r3.xlarge': 30.5,
'db.r3.2xlarge': 61,
'db.r3.4xlarge': 122,
'db.r3.8xlarge': 244,
'db.t2.micro': 1,
'db.t2.small': 2,
'db.t2.medium': 4,
'db.t2.large': 8,
'db.m3.medium': 3.75,
'db.m3.large': 7.5,
'db.m3.xlarge': 15,
'db.m3.2xlarge': 30,
'db.m2.xlarge': 17.1,
'db.m2.2xlarge': 34.2,
'db.m2.4xlarge': 68.4,
'db.cr1.8xlarge': 244,
}
# RDS metrics http://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/rds-metricscollected.html
metrics = {
'status': 'RDS availability',
'load': 'CPUUtilization',
'memory': 'FreeableMemory',
'storage': 'FreeStorageSpace'
}
units = ('percent', 'GB')
# Parse options
parser = optparse.OptionParser()
parser.add_option('-l', '--list', help='list of all DB instances',
action='store_true', default=False, dest='db_list')
parser.add_option('-n', '--profile', default=None,
help='AWS profile from ~/.boto or /etc/boto.cfg. Default: None, fallbacks to "[Credentials]".')
parser.add_option('-r', '--region', default='us-east-1',
help='AWS region. Default: us-east-1. If set to "all", we try to detect the instance region '
'across all of them, note this will be slower than if you specify the region explicitly.')
parser.add_option('-i', '--ident', help='DB instance identifier')
parser.add_option('-p', '--print', help='print status and other details for a given DB instance',
action='store_true', default=False, dest='printinfo')
parser.add_option('-m', '--metric', help='metric to check: [%s]' % ', '.join(metrics.keys()))
parser.add_option('-w', '--warn', help='warning threshold')
parser.add_option('-c', '--crit', help='critical threshold')
parser.add_option('-u', '--unit', help='unit of thresholds for "storage" and "memory" metrics: [%s].'
'Default: percent' % ', '.join(units), default='percent')
parser.add_option('-t', '--time', help='time period in minutes to query. Default: 5',
type='int', default=5)
parser.add_option('-a', '--avg', help='time average in minutes to request. Default: 1',
type='int', default=1)
parser.add_option('-f', '--forceunknown', help='force alerts on unknown status. This prevents issues related to '
'AWS Cloudwatch throttling limits Default: False',
action='store_true', default=False)
parser.add_option('-d', '--debug', help='enable debug output',
action='store_true', default=False)
options, _ = parser.parse_args()
if options.debug:
boto.set_stream_logger('boto')
rds = RDS(region=options.region, profile=options.profile, identifier=options.ident)
# Check args
if len(sys.argv) == 1:
parser.print_help()
sys.exit()
elif options.db_list:
info = rds.get_list()
print 'List of all DB instances in %s region(s):' % (options.region,)
pprint.pprint(info)
sys.exit()
elif not options.ident:
parser.print_help()
parser.error('DB identifier is not set.')
elif options.printinfo:
info = rds.get_info()
if info:
pprint.pprint(vars(info))
else:
print 'No DB instance "%s" found on your AWS account and %s region(s).' % (options.ident, options.region)
sys.exit()
elif not options.metric or options.metric not in metrics.keys():
parser.print_help()
parser.error('Metric is not set or not valid.')
elif not options.warn and options.metric != 'status':
parser.print_help()
parser.error('Warning threshold is not set.')
elif not options.crit and options.metric != 'status':
parser.print_help()
parser.error('Critical threshold is not set.')
elif options.avg <= 0 and options.metric != 'status':
parser.print_help()
parser.error('Average must be greater than zero.')
elif options.time <= 0 and options.metric != 'status':
parser.print_help()
parser.error('Time must be greater than zero.')
now = datetime.datetime.utcnow()
status = None
note = ''
perf_data = None
# RDS Status
if options.metric == 'status':
info = rds.get_info()
if not info:
status = UNKNOWN
note = 'Unable to get RDS instance'
else:
status = OK
try:
version = info.EngineVersion
except:
version = info.engine_version
note = '%s %s. Status: %s' % (info.engine, version, info.status)
# RDS Load Average
elif options.metric == 'load':
# Check thresholds
try:
warns = [float(x) for x in options.warn.split(',')]
crits = [float(x) for x in options.crit.split(',')]
fail = len(warns) + len(crits)
except:
fail = 0
if fail != 6:
parser.error('Warning and critical thresholds should be 3 comma separated numbers, e.g. 20,15,10')
loads = []
fail = False
j = 0
perf_data = []
for i in [1, 5, 15]:
if i == 1:
# Some stats are delaying to update on CloudWatch.
# Let's pick a few points for 1-min load avg and get the last point.
points = 5
else:
points = i
load = rds.get_metric(metrics[options.metric], now - datetime.timedelta(seconds=points * 60), now, i * 60)
if not load:
status = UNKNOWN
note = 'Unable to get RDS statistics'
perf_data = None
break
loads.append(str(load))
perf_data.append('load%s=%s;%s;%s;0;100' % (i, load, warns[j], crits[j]))
# Compare thresholds
if not fail:
if warns[j] > crits[j]:
parser.error('Parameter inconsistency: warning threshold is greater than critical.')
elif load >= crits[j]:
status = CRITICAL
fail = True
elif load >= warns[j]:
status = WARNING
j = j + 1
if status != UNKNOWN:
if status is None:
status = OK
note = 'Load average: %s%%' % '%, '.join(loads)
perf_data = ' '.join(perf_data)
# RDS Free Storage
# RDS Free Memory
elif options.metric in ['storage', 'memory']:
# Check thresholds
try:
warn = float(options.warn)
crit = float(options.crit)
except:
parser.error('Warning and critical thresholds should be integers.')
if crit > warn:
parser.error('Parameter inconsistency: critical threshold is greater than warning.')
if options.unit not in units:
parser.print_help()
parser.error('Unit is not valid.')
info = rds.get_info()
free = rds.get_metric(metrics[options.metric], now - datetime.timedelta(seconds=options.time * 60),
now, options.avg * 60)
if not info or not free:
status = UNKNOWN
note = 'Unable to get RDS details and statistics'
else:
if options.metric == 'storage':
storage = float(info.allocated_storage)
elif options.metric == 'memory':
try:
storage = db_classes[info.instance_class]
except:
print 'Unknown DB instance class "%s"' % info.instance_class
sys.exit(CRITICAL)
free = '%.2f' % (free / 1024 ** 3)
free_pct = '%.2f' % (float(free) / storage * 100)
if options.unit == 'percent':
val = float(free_pct)
val_max = 100
elif options.unit == 'GB':
val = float(free)
val_max = storage
# Compare thresholds
if val <= crit:
status = CRITICAL
elif val <= warn:
status = WARNING
if status is None:
status = OK
note = 'Free %s: %s GB (%.0f%%) of %s GB' % (options.metric, free, float(free_pct), storage)
perf_data = 'free_%s=%s;%s;%s;0;%s' % (options.metric, val, warn, crit, val_max)
# Final output
if status != UNKNOWN and perf_data:
print '%s %s | %s' % (short_status[status], note, perf_data)
elif status == UNKNOWN and not options.forceunknown:
print '%s %s | null' % ('OK', note)
sys.exit(0)
else:
print '%s %s' % (short_status[status], note)
sys.exit(status)
if __name__ == '__main__':
main()
# ############################################################################
# Documentation
# ############################################################################
"""
=pod
=head1 NAME
pmp-check-aws-rds.py - Check Amazon RDS metrics.
=head1 SYNOPSIS
Usage: pmp-check-aws-rds.py [options]
Options:
-h, --help show this help message and exit
-l, --list list of all DB instances
-n PROFILE, --profile-name=PROFILE
AWS profile from ~/.boto or /etc/boto.cfg. Default:
None, fallbacks to "[Credentials]".
-r REGION, --region=REGION
AWS region. Default: us-east-1. If set to "all", we
try to detect the instance region across all of them,
note this will be slower than you specify the region.
-i IDENT, --ident=IDENT
DB instance identifier
-p, --print print status and other details for a given DB instance
-m METRIC, --metric=METRIC
metric to check: [status, load, storage, memory]
-w WARN, --warn=WARN warning threshold
-c CRIT, --crit=CRIT critical threshold
-u UNIT, --unit=UNIT unit of thresholds for "storage" and "memory" metrics:
[percent, GB]. Default: percent
-t TIME, --time=TIME time period in minutes to query. Default: 5
-a AVG, --avg=AVG time average in minutes to request. Default: 1
-f, --forceunknown force alerts on unknown status. This prevents issues
related to AWS Cloudwatch throttling limits Default:
False
-d, --debug enable debug output
=head1 REQUIREMENTS
This plugin is written on Python and utilizes the module C<boto> (Python interface
to Amazon Web Services) to get various RDS metrics from CloudWatch and compare
them against the thresholds.
* Install the package: C<yum install python-boto> or C<apt-get install python-boto>
* Create a config /etc/boto.cfg or ~nagios/.boto with your AWS API credentials.
See http://code.google.com/p/boto/wiki/BotoConfig
This plugin that is supposed to be run by Nagios, i.e. under ``nagios`` user,
should have permissions to read the config /etc/boto.cfg or ~nagios/.boto.
Example:
[root@centos6 ~]# cat /etc/boto.cfg
[Credentials]
aws_access_key_id = THISISATESTKEY
aws_secret_access_key = thisisatestawssecretaccesskey
If you do not use this config with other tools such as our Cacti script,
you can secure this file the following way:
[root@centos6 ~]# chown nagios /etc/boto.cfg
[root@centos6 ~]# chmod 600 /etc/boto.cfg
=head1 DESCRIPTION
The plugin provides 4 checks and some options to list and print RDS details:
* RDS Status
* RDS Load Average
* RDS Free Storage
* RDS Free Memory
To get the list of all RDS instances under AWS account:
# ./pmp-check-aws-rds.py -l
To get the detailed status of RDS instance identified as C<blackbox>:
# ./pmp-check-aws-rds.py -i blackbox -p
Nagios check for the overall status. Useful if you want to set the rest
of the checks dependent from this one:
# ./pmp-check-aws-rds.py -i blackbox -m status
OK mysql 5.1.63. Status: available
Nagios check for CPU utilization, specify thresholds as percentage of
1-min., 5-min., 15-min. average accordingly:
# ./pmp-check-aws-rds.py -i blackbox -m load -w 90,85,80 -c 98,95,90
OK Load average: 18.36%, 18.51%, 15.95% | load1=18.36;90.0;98.0;0;100 load5=18.51;85.0;95.0;0;100 load15=15.95;80.0;90.0;0;100
Nagios check for the free memory, specify thresholds as percentage:
# ./pmp-check-aws-rds.py -i blackbox -m memory -w 5 -c 2
OK Free memory: 5.90 GB (9%) of 68 GB | free_memory=8.68;5.0;2.0;0;100
# ./pmp-check-aws-rds.py -i blackbox -m memory -u GB -w 4 -c 2
OK Free memory: 5.90 GB (9%) of 68 GB | free_memory=5.9;4.0;2.0;0;68
Nagios check for the free storage space, specify thresholds as percentage or GB:
# ./pmp-check-aws-rds.py -i blackbox -m storage -w 10 -c 5
OK Free storage: 162.55 GB (33%) of 500.0 GB | free_storage=32.51;10.0;5.0;0;100
# ./pmp-check-aws-rds.py -i blackbox -m storage -u GB -w 10 -c 5
OK Free storage: 162.55 GB (33%) of 500.0 GB | free_storage=162.55;10.0;5.0;0;500.0
By default, the region is set to ``us-east-1``. You can re-define it globally in boto config or
specify with -r option. The following command will list all instances across all regions under your AWS account:
# ./pmp-check-aws-rds.py -r all -l
The following command will show the status for the first instance identified as ``blackbox`` in all regions:
# ./pmp-check-aws-rds.py -r all -i blackbox -p
Remember, scanning regions are slower operation than specifying it explicitly.
=head1 CONFIGURATION
Here is the excerpt of potential Nagios config:
define host{
use mysql-host
host_name blackbox
alias blackbox
address blackbox.abcdefgh.us-east-1.rds.amazonaws.com
}
define servicedependency{
host_name blackbox
service_description RDS Status
dependent_service_description RDS Load Average, RDS Free Storage, RDS Free Memory
execution_failure_criteria w,c,u,p
notification_failure_criteria w,c,u,p
}
define service{
use active-service
host_name blackbox
service_description RDS Status
check_command check_rds!status!0!0
}
define service{
use active-service
host_name blackbox
service_description RDS Load Average
check_command check_rds!load!90,85,80!98,95,90
}
define service{
use active-service
host_name blackbox
service_description RDS Free Storage
check_command check_rds!storage!10!5
}
define service{
use active-service
host_name blackbox
service_description RDS Free Memory
check_command check_rds!memory!5!2
}
define command{
command_name check_rds
command_line $USER1$/pmp-check-aws-rds.py -i $HOSTALIAS$ -m $ARG1$ -w $ARG2$ -c $ARG3$
}
=head1 COPYRIGHT, LICENSE, AND WARRANTY
This program is copyright 2014 Percona LLC and/or its affiliates.
Feedback and improvements are welcome.
THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation, version 2. You should have received a copy of the GNU General
Public License along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
=head1 VERSION
$PROJECT_NAME$ pmp-check-aws-rds.py $VERSION$
=cut
"""
| [
1,
529,
12443,
29918,
303,
1503,
29958,
29900,
13,
29937,
14708,
4855,
29914,
2109,
29914,
6272,
3017,
13,
15945,
29908,
29940,
351,
2363,
7079,
363,
16631,
390,
8452,
29652,
29889,
13,
13,
4013,
1824,
338,
760,
310,
395,
8618,
17637,
29918,
5813,
29938,
13,
29931,
293,
1947,
29901,
402,
7390,
19245,
313,
4149,
315,
4590,
29979,
4214,
29897,
13,
13,
13720,
529,
5813,
29958,
13,
11882,
1266,
29871,
29906,
29900,
29896,
29946,
29899,
29906,
29900,
29896,
29945,
2431,
535,
29874,
365,
12182,
322,
29914,
272,
967,
23736,
1078,
13,
15945,
29908,
13,
13,
5215,
12865,
13,
5215,
3523,
5510,
13,
5215,
282,
2158,
13,
5215,
10876,
13,
13,
5215,
289,
3747,
13,
5215,
289,
3747,
29889,
5499,
29879,
13,
5215,
289,
3747,
29889,
687,
29906,
29889,
9274,
12344,
13,
13,
29937,
14461,
2363,
4660,
11561,
13,
8949,
353,
29871,
29900,
13,
29956,
25614,
353,
29871,
29896,
13,
11341,
1806,
2965,
1964,
353,
29871,
29906,
13,
3904,
29968,
6632,
16048,
353,
29871,
29941,
13,
13,
13,
1990,
390,
8452,
29898,
3318,
1125,
13,
13,
1678,
9995,
29934,
8452,
3957,
770,
15945,
29908,
13,
13,
1678,
822,
4770,
2344,
12035,
1311,
29892,
5120,
29892,
8722,
29922,
8516,
29892,
15882,
29922,
8516,
1125,
13,
4706,
9995,
2577,
390,
8452,
2777,
4902,
15945,
29908,
13,
4706,
1583,
29889,
12803,
353,
5120,
13,
4706,
1583,
29889,
10185,
353,
8722,
13,
4706,
1583,
29889,
25378,
353,
15882,
13,
13,
4706,
565,
1583,
29889,
12803,
1275,
525,
497,
2396,
13,
9651,
1583,
29889,
1727,
1080,
29918,
1761,
353,
518,
1727,
29889,
978,
363,
1072,
297,
289,
3747,
29889,
5499,
29879,
29889,
1727,
1080,
580,
29962,
13,
4706,
1683,
29901,
13,
9651,
1583,
29889,
1727,
1080,
29918,
1761,
353,
518,
1311,
29889,
12803,
29962,
13,
13,
4706,
1583,
29889,
3888,
353,
6213,
13,
4706,
565,
1583,
29889,
25378,
29901,
13,
9651,
363,
1072,
297,
1583,
29889,
1727,
1080,
29918,
1761,
29901,
13,
18884,
1018,
29901,
13,
462,
1678,
364,
6289,
353,
289,
3747,
29889,
5499,
29879,
29889,
6915,
29918,
517,
29918,
12803,
29898,
1727,
29892,
8722,
29918,
978,
29922,
1311,
29889,
10185,
29897,
13,
462,
1678,
1583,
29889,
3888,
353,
364,
6289,
29889,
657,
29918,
497,
29918,
29881,
2109,
303,
2925,
29898,
1311,
29889,
25378,
29897,
13,
18884,
5174,
313,
29890,
3747,
29889,
18121,
29889,
13909,
17413,
2392,
29892,
289,
3747,
29889,
11739,
29889,
29933,
3747,
6004,
2392,
29897,
408,
10191,
29901,
13,
462,
1678,
4744,
29898,
7645,
29897,
13,
18884,
1683,
29901,
13,
462,
1678,
396,
25954,
373,
278,
937,
5120,
322,
15882,
1993,
13,
462,
1678,
1583,
29889,
12803,
353,
1072,
13,
462,
1678,
2867,
13,
13,
1678,
822,
679,
29918,
3888,
29898,
1311,
1125,
13,
4706,
9995,
2577,
390,
8452,
2777,
5235,
15945,
29908,
13,
4706,
565,
1583,
29889,
3888,
29901,
13,
9651,
736,
1583,
29889,
3888,
29961,
29900,
29962,
13,
4706,
1683,
29901,
13,
9651,
736,
6213,
13,
13,
1678,
822,
679,
29918,
1761,
29898,
1311,
1125,
13,
4706,
9995,
2577,
1051,
310,
3625,
8871,
491,
5120,
29898,
29879,
5513,
15945,
13,
4706,
1121,
353,
9657,
580,
13,
4706,
363,
1072,
297,
1583,
29889,
1727,
1080,
29918,
1761,
29901,
13,
9651,
1018,
29901,
13,
18884,
364,
6289,
353,
289,
3747,
29889,
5499,
29879,
29889,
6915,
29918,
517,
29918,
12803,
29898,
1727,
29892,
8722,
29918,
978,
29922,
1311,
29889,
10185,
29897,
13,
18884,
1121,
29961,
1727,
29962,
353,
364,
6289,
29889,
657,
29918,
497,
29918,
29881,
2109,
303,
2925,
580,
13,
9651,
5174,
313,
29890,
3747,
29889,
18121,
29889,
13909,
17413,
2392,
29892,
289,
3747,
29889,
11739,
29889,
29933,
3747,
6004,
2392,
29897,
408,
10191,
29901,
13,
18884,
4744,
29898,
7645,
29897,
13,
13,
4706,
736,
1121,
13,
13,
1678,
822,
679,
29918,
16414,
29898,
1311,
29892,
12714,
29892,
1369,
29918,
2230,
29892,
1095,
29918,
2230,
29892,
4331,
1125,
13,
4706,
9995,
2577,
390,
8452,
12714,
515,
14293,
24709,
15945,
29908,
13,
4706,
274,
29893,
29918,
13082,
353,
289,
3747,
29889,
687,
29906,
29889,
9274,
12344,
29889,
6915,
29918,
517,
29918,
12803,
29898,
1311,
29889,
12803,
29892,
8722,
29918,
978,
29922,
1311,
29889,
10185,
29897,
13,
4706,
1121,
353,
274,
29893,
29918,
13082,
29889,
657,
29918,
16414,
29918,
6112,
6765,
29898,
13,
9651,
4331,
29892,
13,
9651,
1369,
29918,
2230,
29892,
13,
9651,
1095,
29918,
2230,
29892,
13,
9651,
12714,
29892,
13,
9651,
525,
29909,
7811,
29914,
29934,
8452,
742,
13,
9651,
525,
29909,
19698,
742,
13,
9651,
13391,
3790,
29915,
4051,
4998,
12889,
2396,
518,
1311,
29889,
25378,
12258,
13,
4706,
1723,
13,
4706,
565,
1121,
29901,
13,
9651,
565,
7431,
29898,
2914,
29897,
1405,
29871,
29896,
29901,
13,
18884,
396,
3617,
278,
1833,
1298,
13,
18884,
1121,
353,
12705,
29898,
2914,
29892,
1820,
29922,
2892,
413,
29901,
413,
1839,
27939,
11287,
13,
18884,
1121,
29889,
24244,
580,
13,
13,
9651,
1121,
353,
5785,
877,
15543,
29906,
29888,
29915,
1273,
1121,
29961,
29900,
22322,
29909,
19698,
11287,
13,
13,
4706,
736,
1121,
13,
13,
13,
1753,
4744,
29898,
791,
1125,
13,
1678,
9995,
11862,
3460,
1962,
15945,
29908,
13,
1678,
5534,
3987,
13,
1678,
565,
3987,
29889,
8382,
29901,
13,
4706,
1596,
525,
18525,
29901,
1273,
29879,
29915,
1273,
659,
13,
13,
13,
1753,
1667,
7295,
13,
1678,
9995,
6330,
740,
15945,
29908,
13,
1678,
5534,
3987,
13,
13,
1678,
3273,
29918,
4882,
353,
426,
13,
4706,
9280,
29901,
525,
8949,
742,
13,
4706,
399,
25614,
29901,
525,
29956,
15249,
742,
13,
4706,
15600,
1806,
2965,
1964,
29901,
525,
11341,
1806,
742,
13,
4706,
8291,
29968,
6632,
16048,
29901,
525,
3904,
29968,
29915,
13,
1678,
500,
13,
13,
1678,
396,
6535,
2777,
4413,
408,
9904,
373,
13,
1678,
396,
1732,
597,
2640,
29889,
10467,
29889,
17260,
29889,
510,
29914,
29909,
655,
6626,
29934,
8452,
29914,
12333,
29914,
2659,
9485,
680,
29914,
1168,
1547,
29879,
29889,
4051,
4998,
2385,
29889,
1420,
13,
1678,
4833,
29918,
13203,
353,
426,
13,
4706,
525,
2585,
29889,
29873,
29896,
29889,
29885,
2357,
2396,
29871,
29900,
29889,
29953,
29896,
29945,
29892,
13,
4706,
525,
2585,
29889,
29885,
29896,
29889,
9278,
2396,
29871,
29896,
29889,
29955,
29892,
13,
4706,
525,
2585,
29889,
29885,
29896,
29889,
27891,
2396,
29871,
29941,
29889,
29955,
29945,
29892,
13,
4706,
525,
2585,
29889,
29885,
29896,
29889,
16961,
2396,
29871,
29955,
29889,
29945,
29892,
13,
4706,
525,
2585,
29889,
29885,
29896,
29889,
29916,
16961,
2396,
29871,
29896,
29945,
29892,
13,
4706,
525,
2585,
29889,
29885,
29946,
29889,
16961,
2396,
29871,
29947,
29892,
13,
4706,
525,
2585,
29889,
29885,
29946,
29889,
29916,
16961,
2396,
29871,
29896,
29953,
29892,
13,
4706,
525,
2585,
29889,
29885,
29946,
29889,
29906,
29916,
16961,
2396,
29871,
29941,
29906,
29892,
13,
4706,
525,
2585,
29889,
29885,
29946,
29889,
29946,
29916,
16961,
2396,
29871,
29953,
29946,
29892,
13,
4706,
525,
2585,
29889,
29885,
29946,
29889,
29896,
29900,
29916,
16961,
2396,
29871,
29896,
29953,
29900,
29892,
13,
4706,
525,
2585,
29889,
29878,
29941,
29889,
16961,
2396,
29871,
29896,
29945,
29892,
13,
4706,
525,
2585,
29889,
29878,
29941,
29889,
29916,
16961,
2396,
29871,
29941,
29900,
29889,
29945,
29892,
13,
4706,
525,
2585,
29889,
29878,
29941,
29889,
29906,
29916,
16961,
2396,
29871,
29953,
29896,
29892,
13,
4706,
525,
2585,
29889,
29878,
29941,
29889,
29946,
29916,
16961,
2396,
29871,
29896,
29906,
29906,
29892,
13,
4706,
525,
2585,
29889,
29878,
29941,
29889,
29947,
29916,
16961,
2396,
29871,
29906,
29946,
29946,
29892,
13,
4706,
525,
2585,
29889,
29873,
29906,
29889,
29885,
2357,
2396,
29871,
29896,
29892,
13,
4706,
525,
2585,
29889,
29873,
29906,
29889,
9278,
2396,
29871,
29906,
29892,
13,
4706,
525,
2585,
29889,
29873,
29906,
29889,
27891,
2396,
29871,
29946,
29892,
13,
4706,
525,
2585,
29889,
29873,
29906,
29889,
16961,
2396,
29871,
29947,
29892,
13,
4706,
525,
2585,
29889,
29885,
29941,
29889,
27891,
2396,
29871,
29941,
29889,
29955,
29945,
29892,
13,
4706,
525,
2585,
29889,
29885,
29941,
29889,
16961,
2396,
29871,
29955,
29889,
29945,
29892,
13,
4706,
525,
2585,
29889,
29885,
29941,
29889,
29916,
16961,
2396,
29871,
29896,
29945,
29892,
13,
4706,
525,
2585,
29889,
29885,
29941,
29889,
29906,
29916,
16961,
2396,
29871,
29941,
29900,
29892,
13,
4706,
525,
2585,
29889,
29885,
29906,
29889,
29916,
16961,
2396,
29871,
29896,
29955,
29889,
29896,
29892,
13,
4706,
525,
2585,
29889,
29885,
29906,
29889,
29906,
29916,
16961,
2396,
29871,
29941,
29946,
29889,
29906,
29892,
13,
4706,
525,
2585,
29889,
29885,
29906,
29889,
29946,
29916,
16961,
2396,
29871,
29953,
29947,
29889,
29946,
29892,
13,
4706,
525,
2585,
29889,
7283,
29896,
29889,
29947,
29916,
16961,
2396,
29871,
29906,
29946,
29946,
29892,
13,
1678,
500,
13,
13,
1678,
396,
390,
8452,
21556,
1732,
597,
2640,
29889,
10467,
29889,
17260,
29889,
510,
29914,
29909,
655,
6626,
20442,
24709,
29914,
12333,
29914,
21956,
261,
9485,
680,
29914,
5499,
29879,
29899,
2527,
10817,
15914,
287,
29889,
1420,
13,
1678,
21556,
353,
426,
13,
4706,
525,
4882,
2396,
525,
29934,
8452,
20847,
3097,
742,
13,
4706,
525,
1359,
2396,
525,
6271,
29965,
7270,
2133,
742,
13,
4706,
525,
14834,
2396,
525,
20475,
519,
16015,
742,
13,
4706,
525,
12925,
2396,
525,
20475,
10486,
14936,
29915,
13,
1678,
500,
13,
13,
1678,
10340,
353,
6702,
25376,
742,
525,
7210,
1495,
13,
13,
1678,
396,
20969,
3987,
13,
1678,
13812,
353,
3523,
5510,
29889,
8375,
11726,
580,
13,
1678,
13812,
29889,
1202,
29918,
3385,
877,
29899,
29880,
742,
525,
489,
1761,
742,
1371,
2433,
1761,
310,
599,
6535,
8871,
742,
13,
462,
418,
3158,
2433,
8899,
29918,
3009,
742,
2322,
29922,
8824,
29892,
2731,
2433,
2585,
29918,
1761,
1495,
13,
1678,
13812,
29889,
1202,
29918,
3385,
877,
29899,
29876,
742,
525,
489,
10185,
742,
2322,
29922,
8516,
29892,
13,
462,
418,
1371,
2433,
29909,
7811,
8722,
515,
3695,
6294,
29890,
3747,
470,
847,
7070,
29914,
29890,
3747,
29889,
16859,
29889,
13109,
29901,
6213,
29892,
6416,
1627,
29879,
304,
14704,
28037,
29962,
1642,
1495,
13,
1678,
13812,
29889,
1202,
29918,
3385,
877,
29899,
29878,
742,
525,
489,
12803,
742,
2322,
2433,
375,
29899,
23027,
29899,
29896,
742,
13,
462,
418,
1371,
2433,
29909,
7811,
5120,
29889,
13109,
29901,
502,
29899,
23027,
29899,
29896,
29889,
960,
731,
304,
376,
497,
613,
591,
1018,
304,
6459,
278,
2777,
5120,
525,
13,
462,
965,
525,
562,
2124,
599,
310,
963,
29892,
4443,
445,
674,
367,
20312,
1135,
565,
366,
6084,
278,
5120,
9479,
29889,
1495,
13,
1678,
13812,
29889,
1202,
29918,
3385,
877,
29899,
29875,
742,
525,
489,
1693,
742,
1371,
2433,
4051,
2777,
15882,
1495,
13,
1678,
13812,
29889,
1202,
29918,
3385,
877,
29899,
29886,
742,
525,
489,
2158,
742,
1371,
2433,
2158,
4660,
322,
916,
4902,
363,
263,
2183,
6535,
2777,
742,
13,
462,
418,
3158,
2433,
8899,
29918,
3009,
742,
2322,
29922,
8824,
29892,
2731,
2433,
2158,
3888,
1495,
13,
1678,
13812,
29889,
1202,
29918,
3385,
877,
29899,
29885,
742,
525,
489,
16414,
742,
1371,
2433,
16414,
304,
1423,
29901,
518,
29995,
29879,
29962,
29915,
1273,
13420,
15300,
7122,
29898,
2527,
10817,
29889,
8149,
22130,
13,
1678,
13812,
29889,
1202,
29918,
3385,
877,
29899,
29893,
742,
525,
489,
25442,
742,
1371,
2433,
27392,
16897,
1495,
13,
1678,
13812,
29889,
1202,
29918,
3385,
877,
29899,
29883,
742,
525,
489,
9695,
742,
1371,
2433,
9695,
936,
16897,
1495,
13,
1678,
13812,
29889,
1202,
29918,
3385,
877,
29899,
29884,
742,
525,
489,
5441,
742,
1371,
2433,
5441,
310,
266,
3781,
3361,
363,
376,
12925,
29908,
322,
376,
14834,
29908,
21556,
29901,
518,
29995,
29879,
1822,
29915,
13,
462,
418,
525,
4592,
29901,
10151,
29915,
1273,
13420,
15300,
7122,
29898,
348,
1169,
511,
2322,
2433,
25376,
1495,
13,
1678,
13812,
29889,
1202,
29918,
3385,
877,
29899,
29873,
742,
525,
489,
2230,
742,
1371,
2433,
2230,
3785,
297,
6233,
304,
2346,
29889,
13109,
29901,
29871,
29945,
742,
13,
462,
418,
1134,
2433,
524,
742,
2322,
29922,
29945,
29897,
13,
1678,
13812,
29889,
1202,
29918,
3385,
877,
29899,
29874,
742,
525,
489,
485,
29887,
742,
1371,
2433,
2230,
6588,
297,
6233,
304,
2009,
29889,
13109,
29901,
29871,
29896,
742,
13,
462,
418,
1134,
2433,
524,
742,
2322,
29922,
29896,
29897,
13,
1678,
13812,
29889,
1202,
29918,
3385,
877,
29899,
29888,
742,
525,
489,
10118,
26690,
742,
1371,
2433,
10118,
6655,
29879,
373,
9815,
4660,
29889,
910,
28057,
5626,
4475,
304,
525,
13,
462,
418,
525,
29909,
7811,
14293,
12344,
20961,
698,
1847,
13071,
13109,
29901,
7700,
742,
13,
462,
418,
3158,
2433,
8899,
29918,
3009,
742,
2322,
29922,
8824,
29897,
13,
1678,
13812,
29889,
1202,
29918,
3385,
877,
29899,
29881,
742,
525,
489,
8382,
742,
1371,
2433,
12007,
4744,
1962,
742,
13,
462,
418,
3158,
2433,
8899,
29918,
3009,
742,
2322,
29922,
8824,
29897,
13,
1678,
3987,
29892,
903,
353,
13812,
29889,
5510,
29918,
5085,
580,
13,
13,
1678,
565,
3987,
29889,
8382,
29901,
13,
4706,
289,
3747,
29889,
842,
29918,
5461,
29918,
21707,
877,
29890,
3747,
1495,
13,
13,
1678,
364,
6289,
353,
390,
8452,
29898,
12803,
29922,
6768,
29889,
12803,
29892,
8722,
29922,
6768,
29889,
10185,
29892,
15882,
29922,
6768,
29889,
1693,
29897,
13,
13,
1678,
396,
5399,
6389,
13,
1678,
565,
7431,
29898,
9675,
29889,
19218,
29897,
1275,
29871,
29896,
29901,
13,
4706,
13812,
29889,
2158,
29918,
8477,
580,
13,
4706,
10876,
29889,
13322,
580,
13,
1678,
25342,
3987,
29889,
2585,
29918,
1761,
29901,
13,
4706,
5235,
353,
364,
6289,
29889,
657,
29918,
1761,
580,
13,
4706,
1596,
525,
1293,
310,
599,
6535,
8871,
297,
1273,
29879,
5120,
29898,
29879,
1125,
29915,
1273,
313,
6768,
29889,
12803,
29892,
29897,
13,
4706,
282,
2158,
29889,
407,
29878,
524,
29898,
3888,
29897,
13,
4706,
10876,
29889,
13322,
580,
13,
1678,
25342,
451,
3987,
29889,
1693,
29901,
13,
4706,
13812,
29889,
2158,
29918,
8477,
580,
13,
4706,
13812,
29889,
2704,
877,
4051,
15882,
338,
451,
731,
29889,
1495,
13,
1678,
25342,
3987,
29889,
2158,
3888,
29901,
13,
4706,
5235,
353,
364,
6289,
29889,
657,
29918,
3888,
580,
13,
4706,
565,
5235,
29901,
13,
9651,
282,
2158,
29889,
407,
29878,
524,
29898,
16908,
29898,
3888,
876,
13,
4706,
1683,
29901,
13,
9651,
1596,
525,
3782,
6535,
2777,
11860,
29879,
29908,
1476,
373,
596,
15540,
3633,
322,
1273,
29879,
5120,
29898,
29879,
467,
29915,
1273,
313,
6768,
29889,
1693,
29892,
3987,
29889,
12803,
29897,
13,
13,
4706,
10876,
29889,
13322,
580,
13,
1678,
25342,
451,
3987,
29889,
16414,
470,
3987,
29889,
16414,
451,
297,
21556,
29889,
8149,
7295,
13,
4706,
13812,
29889,
2158,
29918,
8477,
580,
13,
4706,
13812,
29889,
2704,
877,
10095,
2200,
338,
451,
731,
470,
451,
2854,
29889,
1495,
13,
1678,
25342,
451,
3987,
29889,
25442,
322,
3987,
29889,
16414,
2804,
525,
4882,
2396,
13,
4706,
13812,
29889,
2158,
29918,
8477,
580,
13,
4706,
13812,
29889,
2704,
877,
22709,
16897,
338,
451,
731,
29889,
1495,
13,
1678,
25342,
451,
3987,
29889,
9695,
322,
3987,
29889,
16414,
2804,
525,
4882,
2396,
13,
4706,
13812,
29889,
2158,
29918,
8477,
580,
13,
4706,
13812,
29889,
2704,
877,
29907,
768,
936,
16897,
338,
451,
731,
29889,
1495,
13,
1678,
25342,
3987,
29889,
485,
29887,
5277,
29871,
29900,
322,
3987,
29889,
16414,
2804,
525,
4882,
2396,
13,
4706,
13812,
29889,
2158,
29918,
8477,
580,
13,
4706,
13812,
29889,
2704,
877,
29909,
19698,
1818,
367,
7621,
1135,
5225,
29889,
1495,
13,
1678,
25342,
3987,
29889,
2230,
5277,
29871,
29900,
322,
3987,
29889,
16414,
2804,
525,
4882,
2396,
13,
4706,
13812,
29889,
2158,
29918,
8477,
580,
13,
4706,
13812,
29889,
2704,
877,
2481,
1818,
367,
7621,
1135,
5225,
29889,
1495,
13,
13,
1678,
1286,
353,
12865,
29889,
12673,
29889,
329,
29883,
3707,
580,
13,
1678,
4660,
353,
6213,
13,
1678,
4443,
353,
6629,
13,
1678,
23895,
29918,
1272,
353,
6213,
13,
13,
1678,
396,
390,
8452,
16034,
13,
1678,
565,
3987,
29889,
16414,
1275,
525,
4882,
2396,
13,
4706,
5235,
353,
364,
6289,
29889,
657,
29918,
3888,
580,
13,
4706,
565,
451,
5235,
29901,
13,
9651,
4660,
353,
8291,
29968,
6632,
16048,
13,
9651,
4443,
353,
525,
2525,
519,
304,
679,
390,
8452,
2777,
29915,
13,
4706,
1683,
29901,
13,
9651,
4660,
353,
9280,
13,
9651,
1018,
29901,
13,
18884,
1873,
353,
5235,
29889,
12412,
6594,
13,
9651,
5174,
29901,
13,
18884,
1873,
353,
5235,
29889,
10599,
29918,
3259,
13,
13,
9651,
4443,
353,
14210,
29879,
1273,
29879,
29889,
16034,
29901,
1273,
29879,
29915,
1273,
313,
3888,
29889,
10599,
29892,
1873,
29892,
5235,
29889,
4882,
29897,
13,
13,
1678,
396,
390,
8452,
16012,
319,
19698,
13,
1678,
25342,
3987,
29889,
16414,
1275,
525,
1359,
2396,
13,
4706,
396,
5399,
266,
3781,
3361,
13,
4706,
1018,
29901,
13,
9651,
1370,
1983,
353,
518,
7411,
29898,
29916,
29897,
363,
921,
297,
3987,
29889,
25442,
29889,
5451,
29317,
1495,
29962,
13,
9651,
3994,
29879,
353,
518,
7411,
29898,
29916,
29897,
363,
921,
297,
3987,
29889,
9695,
29889,
5451,
29317,
1495,
29962,
13,
9651,
4418,
353,
7431,
29898,
4495,
1983,
29897,
718,
7431,
29898,
9695,
29879,
29897,
13,
4706,
5174,
29901,
13,
9651,
4418,
353,
29871,
29900,
13,
13,
4706,
565,
4418,
2804,
29871,
29953,
29901,
13,
9651,
13812,
29889,
2704,
877,
22709,
322,
12187,
266,
3781,
3361,
881,
367,
29871,
29941,
16694,
13055,
3694,
29892,
321,
29889,
29887,
29889,
29871,
29906,
29900,
29892,
29896,
29945,
29892,
29896,
29900,
1495,
13,
13,
4706,
15376,
353,
5159,
13,
4706,
4418,
353,
7700,
13,
4706,
432,
353,
29871,
29900,
13,
4706,
23895,
29918,
1272,
353,
5159,
13,
4706,
363,
474,
297,
518,
29896,
29892,
29871,
29945,
29892,
29871,
29896,
29945,
5387,
13,
9651,
565,
474,
1275,
29871,
29896,
29901,
13,
18884,
396,
3834,
22663,
526,
9055,
292,
304,
2767,
373,
14293,
24709,
29889,
13,
18884,
396,
2803,
29915,
29879,
5839,
263,
2846,
3291,
363,
29871,
29896,
29899,
1195,
2254,
1029,
29887,
322,
679,
278,
1833,
1298,
29889,
13,
18884,
3291,
353,
29871,
29945,
13,
9651,
1683,
29901,
13,
18884,
3291,
353,
474,
13,
13,
9651,
2254,
353,
364,
6289,
29889,
657,
29918,
16414,
29898,
2527,
10817,
29961,
6768,
29889,
16414,
1402,
1286,
448,
12865,
29889,
9346,
287,
2554,
29898,
23128,
29922,
9748,
334,
29871,
29953,
29900,
511,
1286,
29892,
474,
334,
29871,
29953,
29900,
29897,
13,
9651,
565,
451,
2254,
29901,
13,
18884,
4660,
353,
8291,
29968,
6632,
16048,
13,
18884,
4443,
353,
525,
2525,
519,
304,
679,
390,
8452,
13964,
29915,
13,
18884,
23895,
29918,
1272,
353,
6213,
13,
18884,
2867,
13,
13,
9651,
15376,
29889,
4397,
29898,
710,
29898,
1359,
876,
13,
9651,
23895,
29918,
1272,
29889,
4397,
877,
1359,
29995,
29879,
16328,
29879,
29936,
29995,
29879,
29936,
29995,
29879,
29936,
29900,
29936,
29896,
29900,
29900,
29915,
1273,
313,
29875,
29892,
2254,
29892,
1370,
1983,
29961,
29926,
1402,
3994,
29879,
29961,
29926,
12622,
13,
13,
9651,
396,
3831,
598,
266,
3781,
3361,
13,
9651,
565,
451,
4418,
29901,
13,
18884,
565,
1370,
1983,
29961,
29926,
29962,
1405,
3994,
29879,
29961,
29926,
5387,
13,
462,
1678,
13812,
29889,
2704,
877,
9329,
22435,
391,
3819,
29901,
9177,
16897,
338,
7621,
1135,
12187,
29889,
1495,
13,
18884,
25342,
2254,
6736,
3994,
29879,
29961,
29926,
5387,
13,
462,
1678,
4660,
353,
15600,
1806,
2965,
1964,
13,
462,
1678,
4418,
353,
5852,
13,
18884,
25342,
2254,
6736,
1370,
1983,
29961,
29926,
5387,
13,
462,
1678,
4660,
353,
399,
25614,
13,
13,
9651,
432,
353,
432,
718,
29871,
29896,
13,
13,
4706,
565,
4660,
2804,
8291,
29968,
6632,
16048,
29901,
13,
9651,
565,
4660,
338,
6213,
29901,
13,
18884,
4660,
353,
9280,
13,
13,
9651,
4443,
353,
525,
5896,
6588,
29901,
1273,
29879,
7686,
29915,
1273,
525,
13667,
15300,
7122,
29898,
18132,
29897,
13,
9651,
23895,
29918,
1272,
353,
525,
15300,
7122,
29898,
546,
29888,
29918,
1272,
29897,
13,
13,
1678,
396,
390,
8452,
12362,
26162,
13,
1678,
396,
390,
8452,
12362,
18914,
13,
1678,
25342,
3987,
29889,
16414,
297,
6024,
12925,
742,
525,
14834,
2033,
29901,
13,
4706,
396,
5399,
266,
3781,
3361,
13,
4706,
1018,
29901,
13,
9651,
29383,
353,
5785,
29898,
6768,
29889,
25442,
29897,
13,
9651,
3994,
353,
5785,
29898,
6768,
29889,
9695,
29897,
13,
4706,
5174,
29901,
13,
9651,
13812,
29889,
2704,
877,
22709,
322,
12187,
266,
3781,
3361,
881,
367,
11920,
29889,
1495,
13,
13,
4706,
565,
3994,
1405,
29383,
29901,
13,
9651,
13812,
29889,
2704,
877,
9329,
22435,
391,
3819,
29901,
12187,
16897,
338,
7621,
1135,
9177,
29889,
1495,
13,
13,
4706,
565,
3987,
29889,
5441,
451,
297,
10340,
29901,
13,
9651,
13812,
29889,
2158,
29918,
8477,
580,
13,
9651,
13812,
29889,
2704,
877,
8325,
338,
451,
2854,
29889,
1495,
13,
13,
4706,
5235,
353,
364,
6289,
29889,
657,
29918,
3888,
580,
13,
4706,
3889,
353,
364,
6289,
29889,
657,
29918,
16414,
29898,
2527,
10817,
29961,
6768,
29889,
16414,
1402,
1286,
448,
12865,
29889,
9346,
287,
2554,
29898,
23128,
29922,
6768,
29889,
2230,
334,
29871,
29953,
29900,
511,
13,
462,
795,
1286,
29892,
3987,
29889,
485,
29887,
334,
29871,
29953,
29900,
29897,
13,
4706,
565,
451,
5235,
470,
451,
3889,
29901,
13,
9651,
4660,
353,
8291,
29968,
6632,
16048,
13,
9651,
4443,
353,
525,
2525,
519,
304,
679,
390,
8452,
4902,
322,
13964,
29915,
13,
4706,
1683,
29901,
13,
9651,
565,
3987,
29889,
16414,
1275,
525,
12925,
2396,
13,
18884,
8635,
353,
5785,
29898,
3888,
29889,
15956,
630,
29918,
12925,
29897,
13,
9651,
25342,
3987,
29889,
16414,
1275,
525,
14834,
2396,
13,
18884,
1018,
29901,
13,
462,
1678,
8635,
353,
4833,
29918,
13203,
29961,
3888,
29889,
8758,
29918,
1990,
29962,
13,
18884,
5174,
29901,
13,
462,
1678,
1596,
525,
14148,
6535,
2777,
770,
11860,
29879,
29908,
29915,
1273,
5235,
29889,
8758,
29918,
1990,
13,
462,
1678,
10876,
29889,
13322,
29898,
11341,
1806,
2965,
1964,
29897,
13,
13,
9651,
3889,
353,
14210,
29889,
29906,
29888,
29915,
1273,
313,
9021,
847,
29871,
29896,
29900,
29906,
29946,
3579,
29871,
29941,
29897,
13,
9651,
3889,
29918,
29886,
312,
353,
14210,
29889,
29906,
29888,
29915,
1273,
313,
7411,
29898,
9021,
29897,
847,
8635,
334,
29871,
29896,
29900,
29900,
29897,
13,
9651,
565,
3987,
29889,
5441,
1275,
525,
25376,
2396,
13,
18884,
659,
353,
5785,
29898,
9021,
29918,
29886,
312,
29897,
13,
18884,
659,
29918,
3317,
353,
29871,
29896,
29900,
29900,
13,
9651,
25342,
3987,
29889,
5441,
1275,
525,
7210,
2396,
13,
18884,
659,
353,
5785,
29898,
9021,
29897,
13,
18884,
659,
29918,
3317,
353,
8635,
13,
13,
9651,
396,
3831,
598,
266,
3781,
3361,
13,
9651,
565,
659,
5277,
3994,
29901,
13,
18884,
4660,
353,
15600,
1806,
2965,
1964,
13,
9651,
25342,
659,
5277,
29383,
29901,
13,
18884,
4660,
353,
399,
25614,
13,
13,
9651,
565,
4660,
338,
6213,
29901,
13,
18884,
4660,
353,
9280,
13,
13,
9651,
4443,
353,
525,
20475,
1273,
29879,
29901,
1273,
29879,
19289,
313,
15543,
29900,
29888,
7686,
29897,
310,
1273,
29879,
19289,
29915,
1273,
313,
6768,
29889,
16414,
29892,
3889,
29892,
5785,
29898,
9021,
29918,
29886,
312,
511,
8635,
29897,
13,
9651,
23895,
29918,
1272,
353,
525,
9021,
29918,
29995,
29879,
16328,
29879,
29936,
29995,
29879,
29936,
29995,
29879,
29936,
29900,
29936,
29995,
29879,
29915,
1273,
313,
6768,
29889,
16414,
29892,
659,
29892,
29383,
29892,
3994,
29892,
659,
29918,
3317,
29897,
13,
13,
1678,
396,
9550,
1962,
13,
1678,
565,
4660,
2804,
8291,
29968,
6632,
16048,
322,
23895,
29918,
1272,
29901,
13,
4706,
1596,
14210,
29879,
1273,
29879,
891,
1273,
29879,
29915,
1273,
313,
12759,
29918,
4882,
29961,
4882,
1402,
4443,
29892,
23895,
29918,
1272,
29897,
13,
1678,
25342,
4660,
1275,
8291,
29968,
6632,
16048,
322,
451,
3987,
29889,
10118,
26690,
29901,
13,
4706,
1596,
14210,
29879,
1273,
29879,
891,
1870,
29915,
1273,
6702,
8949,
742,
4443,
29897,
13,
4706,
10876,
29889,
13322,
29898,
29900,
29897,
13,
1678,
1683,
29901,
13,
4706,
1596,
14210,
29879,
1273,
29879,
29915,
1273,
313,
12759,
29918,
4882,
29961,
4882,
1402,
4443,
29897,
13,
13,
1678,
10876,
29889,
13322,
29898,
4882,
29897,
13,
13,
13,
361,
4770,
978,
1649,
1275,
525,
1649,
3396,
1649,
2396,
13,
1678,
1667,
580,
13,
13,
29937,
835,
13383,
13383,
13383,
13383,
7346,
29937,
13,
29937,
10854,
362,
13,
29937,
835,
13383,
13383,
13383,
13383,
7346,
29937,
13,
15945,
29908,
13,
29922,
15334,
13,
13,
29922,
2813,
29896,
27085,
13,
13,
29886,
1526,
29899,
3198,
29899,
10467,
29899,
5499,
29879,
29889,
2272,
448,
5399,
16631,
390,
8452,
21556,
29889,
13,
13,
29922,
2813,
29896,
28962,
29940,
4590,
29903,
3235,
13,
13,
29871,
10783,
482,
29901,
282,
1526,
29899,
3198,
29899,
10467,
29899,
5499,
29879,
29889,
2272,
518,
6768,
29962,
13,
13,
29871,
25186,
29901,
13,
1678,
448,
29882,
29892,
1192,
8477,
9651,
1510,
445,
1371,
2643,
322,
6876,
13,
1678,
448,
29880,
29892,
1192,
1761,
9651,
1051,
310,
599,
6535,
8871,
13,
1678,
448,
29876,
13756,
7724,
29892,
1192,
10185,
29899,
978,
29922,
8618,
7724,
13,
462,
3986,
15540,
8722,
515,
3695,
6294,
29890,
3747,
470,
847,
7070,
29914,
29890,
3747,
29889,
16859,
29889,
13109,
29901,
13,
462,
3986,
6213,
29892,
6416,
1627,
29879,
304,
14704,
28037,
29962,
1642,
13,
1678,
448,
29878,
5195,
29954,
2725,
29892,
1192,
12803,
29922,
18166,
2725,
13,
462,
3986,
15540,
5120,
29889,
13109,
29901,
502,
29899,
23027,
29899,
29896,
29889,
960,
731,
304,
376,
497,
613,
591,
13,
462,
3986,
1018,
304,
6459,
278,
2777,
5120,
4822,
599,
310,
963,
29892,
13,
462,
3986,
4443,
445,
674,
367,
20312,
1135,
366,
6084,
278,
5120,
29889,
13,
1678,
448,
29875,
3553,
3919,
29892,
1192,
1693,
29922,
1367,
3919,
13,
462,
3986,
6535,
2777,
15882,
13,
1678,
448,
29886,
29892,
1192,
2158,
965,
1596,
4660,
322,
916,
4902,
363,
263,
2183,
6535,
2777,
13,
1678,
448,
29885,
341,
2544,
29934,
2965,
29892,
1192,
16414,
29922,
2303,
5659,
2965,
13,
462,
3986,
12714,
304,
1423,
29901,
518,
4882,
29892,
2254,
29892,
8635,
29892,
3370,
29962,
13,
1678,
448,
29893,
399,
15249,
29892,
1192,
25442,
29922,
29956,
15249,
29871,
9177,
16897,
13,
1678,
448,
29883,
15600,
1806,
29892,
1192,
9695,
29922,
11341,
1806,
29871,
12187,
16897,
13,
1678,
448,
29884,
8291,
1806,
29892,
1192,
5441,
29922,
3904,
1806,
29871,
5190,
310,
266,
3781,
3361,
363,
376,
12925,
29908,
322,
376,
14834,
29908,
21556,
29901,
13,
462,
3986,
518,
25376,
29892,
19289,
1822,
13109,
29901,
10151,
13,
1678,
448,
29873,
323,
8890,
29892,
1192,
2230,
29922,
15307,
29871,
931,
3785,
297,
6233,
304,
2346,
29889,
13109,
29901,
29871,
29945,
13,
1678,
448,
29874,
16884,
29954,
29892,
1192,
485,
29887,
29922,
7520,
29954,
268,
931,
6588,
297,
6233,
304,
2009,
29889,
13109,
29901,
29871,
29896,
13,
1678,
448,
29888,
29892,
1192,
10118,
26690,
1678,
4889,
6655,
29879,
373,
9815,
4660,
29889,
910,
28057,
5626,
13,
462,
3986,
4475,
304,
15540,
14293,
12344,
20961,
698,
1847,
13071,
13109,
29901,
13,
462,
3986,
7700,
13,
1678,
448,
29881,
29892,
1192,
8382,
965,
9025,
4744,
1962,
13,
13,
29922,
2813,
29896,
5195,
29984,
3120,
1525,
13780,
29903,
13,
13,
4013,
7079,
338,
3971,
373,
5132,
322,
3667,
7093,
278,
3883,
315,
29966,
29890,
3747,
29958,
313,
11980,
5067,
13,
517,
16631,
2563,
15538,
29897,
304,
679,
5164,
390,
8452,
21556,
515,
14293,
24709,
322,
7252,
13,
386,
331,
2750,
278,
266,
3781,
3361,
29889,
13,
13,
29930,
16052,
278,
3577,
29901,
315,
29966,
29891,
398,
2601,
3017,
29899,
29890,
3747,
29958,
470,
315,
29966,
2156,
29899,
657,
2601,
3017,
29899,
29890,
3747,
29958,
13,
29930,
6204,
263,
2295,
847,
7070,
29914,
29890,
3747,
29889,
16859,
470,
3695,
29876,
351,
2363,
6294,
29890,
3747,
411,
596,
15540,
3450,
16140,
29889,
13,
29871,
2823,
1732,
597,
401,
29889,
3608,
29889,
510,
29914,
29886,
29914,
29890,
3747,
29914,
4594,
29914,
29933,
3747,
3991,
13,
13,
4013,
7079,
393,
338,
7424,
304,
367,
1065,
491,
14461,
2363,
29892,
474,
29889,
29872,
29889,
1090,
4954,
29876,
351,
2363,
16159,
1404,
29892,
13,
9344,
505,
11239,
304,
1303,
278,
2295,
847,
7070,
29914,
29890,
3747,
29889,
16859,
470,
3695,
29876,
351,
2363,
6294,
29890,
3747,
29889,
13,
13,
14023,
29901,
13,
13,
29871,
518,
4632,
29992,
1760,
359,
29953,
3695,
29962,
29937,
6635,
847,
7070,
29914,
29890,
3747,
29889,
16859,
13,
29871,
518,
28037,
29962,
13,
29871,
25879,
29918,
5943,
29918,
1989,
29918,
333,
353,
3446,
3235,
3235,
3040,
1254,
10818,
13,
29871,
25879,
29918,
19024,
29918,
5943,
29918,
1989,
353,
445,
24766,
342,
10467,
19024,
5943,
1989,
13,
13,
3644,
366,
437,
451,
671,
445,
2295,
411,
916,
8492,
1316,
408,
1749,
315,
627,
29875,
2471,
29892,
13,
6293,
508,
11592,
445,
934,
278,
1494,
982,
29901,
13,
13,
29871,
518,
4632,
29992,
1760,
359,
29953,
3695,
29962,
29937,
521,
776,
17995,
2363,
847,
7070,
29914,
29890,
3747,
29889,
16859,
13,
29871,
518,
4632,
29992,
1760,
359,
29953,
3695,
29962,
29937,
521,
1545,
29871,
29953,
29900,
29900,
847,
7070,
29914,
29890,
3747,
29889,
16859,
13,
13,
29922,
2813,
29896,
23050,
24290,
2725,
13,
13,
1576,
7079,
8128,
29871,
29946,
12747,
322,
777,
3987,
304,
1051,
322,
1596,
390,
8452,
4902,
29901,
13,
13,
29930,
390,
8452,
16034,
13,
29930,
390,
8452,
16012,
319,
19698,
13,
29930,
390,
8452,
12362,
26162,
13,
29930,
390,
8452,
12362,
18914,
13,
13,
1762,
679,
278,
1051,
310,
599,
390,
8452,
8871,
1090,
15540,
3633,
29901,
13,
13,
29871,
396,
11431,
29886,
1526,
29899,
3198,
29899,
10467,
29899,
5499,
29879,
29889,
2272,
448,
29880,
13,
13,
1762,
679,
278,
13173,
4660,
310,
390,
8452,
2777,
15659,
408,
315,
29966,
8517,
1884,
23917,
13,
13,
29871,
396,
11431,
29886,
1526,
29899,
3198,
29899,
10467,
29899,
5499,
29879,
29889,
2272,
448,
29875,
4628,
1884,
448,
29886,
13,
13,
29940,
351,
2363,
1423,
363,
278,
12463,
4660,
29889,
4803,
1319,
565,
366,
864,
304,
731,
278,
1791,
13,
974,
278,
12747,
14278,
515,
445,
697,
29901,
13,
13,
29871,
396,
11431,
29886,
1526,
29899,
3198,
29899,
10467,
29899,
5499,
29879,
29889,
2272,
448,
29875,
4628,
1884,
448,
29885,
4660,
13,
29871,
9280,
5749,
29871,
29945,
29889,
29896,
29889,
29953,
29941,
29889,
16034,
29901,
3625,
13,
13,
29940,
351,
2363,
1423,
363,
10808,
3667,
2133,
29892,
6084,
266,
3781,
3361,
408,
19649,
310,
13,
29896,
29899,
1195,
1696,
29871,
29945,
29899,
1195,
1696,
29871,
29896,
29945,
29899,
1195,
29889,
6588,
16205,
29901,
13,
13,
29871,
396,
11431,
29886,
1526,
29899,
3198,
29899,
10467,
29899,
5499,
29879,
29889,
2272,
448,
29875,
4628,
1884,
448,
29885,
2254,
448,
29893,
29871,
29929,
29900,
29892,
29947,
29945,
29892,
29947,
29900,
448,
29883,
29871,
29929,
29947,
29892,
29929,
29945,
29892,
29929,
29900,
13,
29871,
9280,
16012,
6588,
29901,
29871,
29896,
29947,
29889,
29941,
29953,
13667,
29871,
29896,
29947,
29889,
29945,
29896,
13667,
29871,
29896,
29945,
29889,
29929,
29945,
29995,
891,
2254,
29896,
29922,
29896,
29947,
29889,
29941,
29953,
29936,
29929,
29900,
29889,
29900,
29936,
29929,
29947,
29889,
29900,
29936,
29900,
29936,
29896,
29900,
29900,
2254,
29945,
29922,
29896,
29947,
29889,
29945,
29896,
29936,
29947,
29945,
29889,
29900,
29936,
29929,
29945,
29889,
29900,
29936,
29900,
29936,
29896,
29900,
29900,
2254,
29896,
29945,
29922,
29896,
29945,
29889,
29929,
29945,
29936,
29947,
29900,
29889,
29900,
29936,
29929,
29900,
29889,
29900,
29936,
29900,
29936,
29896,
29900,
29900,
13,
13,
29940,
351,
2363,
1423,
363,
278,
3889,
3370,
29892,
6084,
266,
3781,
3361,
408,
19649,
29901,
13,
13,
29871,
396,
11431,
29886,
1526,
29899,
3198,
29899,
10467,
29899,
5499,
29879,
29889,
2272,
448,
29875,
4628,
1884,
448,
29885,
3370,
448,
29893,
29871,
29945,
448,
29883,
29871,
29906,
13,
29871,
9280,
12362,
3370,
29901,
29871,
29945,
29889,
29929,
29900,
19289,
313,
29929,
10997,
310,
29871,
29953,
29947,
19289,
891,
3889,
29918,
14834,
29922,
29947,
29889,
29953,
29947,
29936,
29945,
29889,
29900,
29936,
29906,
29889,
29900,
29936,
29900,
29936,
29896,
29900,
29900,
13,
29871,
396,
11431,
29886,
1526,
29899,
3198,
29899,
10467,
29899,
5499,
29879,
29889,
2272,
448,
29875,
4628,
1884,
448,
29885,
3370,
448,
29884,
19289,
448,
29893,
29871,
29946,
448,
29883,
29871,
29906,
13,
29871,
9280,
12362,
3370,
29901,
29871,
29945,
29889,
29929,
29900,
19289,
313,
29929,
10997,
310,
29871,
29953,
29947,
19289,
891,
3889,
29918,
14834,
29922,
29945,
29889,
29929,
29936,
29946,
29889,
29900,
29936,
29906,
29889,
29900,
29936,
29900,
29936,
29953,
29947,
13,
13,
29940,
351,
2363,
1423,
363,
278,
3889,
8635,
2913,
29892,
6084,
266,
3781,
3361,
408,
19649,
470,
19289,
29901,
13,
13,
29871,
396,
11431,
29886,
1526,
29899,
3198,
29899,
10467,
29899,
5499,
29879,
29889,
2272,
448,
29875,
4628,
1884,
448,
29885,
8635,
448,
29893,
29871,
29896,
29900,
448,
29883,
29871,
29945,
13,
29871,
9280,
12362,
8635,
29901,
29871,
29896,
29953,
29906,
29889,
29945,
29945,
19289,
313,
29941,
29941,
10997,
310,
29871,
29945,
29900,
29900,
29889,
29900,
19289,
891,
3889,
29918,
12925,
29922,
29941,
29906,
29889,
29945,
29896,
29936,
29896,
29900,
29889,
29900,
29936,
29945,
29889,
29900,
29936,
29900,
29936,
29896,
29900,
29900,
13,
29871,
396,
11431,
29886,
1526,
29899,
3198,
29899,
10467,
29899,
5499,
29879,
29889,
2272,
448,
29875,
4628,
1884,
448,
29885,
8635,
448,
29884,
19289,
448,
29893,
29871,
29896,
29900,
448,
29883,
29871,
29945,
13,
29871,
9280,
12362,
8635,
29901,
29871,
29896,
29953,
29906,
29889,
29945,
29945,
19289,
313,
29941,
29941,
10997,
310,
29871,
29945,
29900,
29900,
29889,
29900,
19289,
891,
3889,
29918,
12925,
29922,
29896,
29953,
29906,
29889,
29945,
29945,
29936,
29896,
29900,
29889,
29900,
29936,
29945,
29889,
29900,
29936,
29900,
29936,
29945,
29900,
29900,
29889,
29900,
13,
13,
2059,
2322,
29892,
278,
5120,
338,
731,
304,
4954,
375,
29899,
23027,
29899,
29896,
29952,
1412,
887,
508,
337,
29899,
7922,
372,
13149,
635,
297,
289,
3747,
2295,
470,
13,
6550,
1598,
411,
448,
29878,
2984,
29889,
450,
1494,
1899,
674,
1051,
599,
8871,
4822,
599,
12786,
1090,
596,
15540,
3633,
29901,
13,
13,
29871,
396,
11431,
29886,
1526,
29899,
3198,
29899,
10467,
29899,
5499,
29879,
29889,
2272,
448,
29878,
599,
448,
29880,
13,
13,
1576,
1494,
1899,
674,
1510,
278,
4660,
363,
278,
937,
2777,
15659,
408,
4954,
8517,
1884,
16159,
297,
599,
12786,
29901,
13,
13,
29871,
396,
11431,
29886,
1526,
29899,
3198,
29899,
10467,
29899,
5499,
29879,
29889,
2272,
448,
29878,
599,
448,
29875,
4628,
1884,
448,
29886,
13,
13,
7301,
1096,
29892,
885,
9450,
12786,
526,
20312,
5858,
1135,
22146,
372,
9479,
29889,
13,
13,
29922,
2813,
29896,
8707,
18667,
4574,
8098,
13,
13,
10605,
338,
278,
429,
2265,
415,
310,
7037,
14461,
2363,
2295,
29901,
13,
13,
29871,
4529,
3495,
29912,
13,
4706,
671,
462,
632,
5749,
29899,
3069,
13,
4706,
3495,
29918,
978,
462,
539,
4628,
1884,
13,
4706,
13995,
462,
965,
4628,
1884,
13,
4706,
3211,
462,
308,
4628,
1884,
29889,
10736,
1753,
12443,
29889,
375,
29899,
23027,
29899,
29896,
29889,
5499,
29879,
29889,
17260,
10467,
29889,
510,
13,
4706,
500,
13,
13,
29871,
4529,
3348,
7612,
1022,
5197,
29912,
13,
4706,
3495,
29918,
978,
462,
539,
4628,
1884,
13,
4706,
2669,
29918,
8216,
632,
390,
8452,
16034,
13,
4706,
14278,
29918,
5509,
29918,
8216,
259,
390,
8452,
16012,
319,
19698,
29892,
390,
8452,
12362,
26162,
29892,
390,
8452,
12362,
18914,
13,
4706,
8225,
29918,
14057,
545,
29918,
29883,
21977,
418,
281,
29892,
29883,
29892,
29884,
29892,
29886,
13,
4706,
12519,
29918,
14057,
545,
29918,
29883,
21977,
259,
281,
29892,
29883,
29892,
29884,
29892,
29886,
13,
4706,
500,
13,
13,
29871,
4529,
2669,
29912,
13,
4706,
671,
462,
632,
6136,
29899,
5509,
13,
4706,
3495,
29918,
978,
462,
539,
4628,
1884,
13,
4706,
2669,
29918,
8216,
632,
390,
8452,
16034,
13,
4706,
1423,
29918,
6519,
462,
259,
1423,
29918,
5499,
29879,
29991,
4882,
29991,
29900,
29991,
29900,
13,
4706,
500,
13,
13,
29871,
4529,
2669,
29912,
13,
4706,
671,
462,
632,
6136,
29899,
5509,
13,
4706,
3495,
29918,
978,
462,
539,
4628,
1884,
13,
4706,
2669,
29918,
8216,
632,
390,
8452,
16012,
319,
19698,
13,
4706,
1423,
29918,
6519,
462,
259,
1423,
29918,
5499,
29879,
29991,
1359,
29991,
29929,
29900,
29892,
29947,
29945,
29892,
29947,
29900,
29991,
29929,
29947,
29892,
29929,
29945,
29892,
29929,
29900,
13,
4706,
500,
13,
13,
29871,
4529,
2669,
29912,
13,
4706,
671,
462,
632,
6136,
29899,
5509,
13,
4706,
3495,
29918,
978,
462,
539,
4628,
1884,
13,
4706,
2669,
29918,
8216,
632,
390,
8452,
12362,
26162,
13,
4706,
1423,
29918,
6519,
462,
259,
1423,
29918,
5499,
29879,
29991,
12925,
29991,
29896,
29900,
29991,
29945,
13,
4706,
500,
13,
13,
29871,
4529,
2669,
29912,
13,
4706,
671,
462,
632,
6136,
29899,
5509,
13,
4706,
3495,
29918,
978,
462,
539,
4628,
1884,
13,
4706,
2669,
29918,
8216,
632,
390,
8452,
12362,
18914,
13,
4706,
1423,
29918,
6519,
462,
259,
1423,
29918,
5499,
29879,
29991,
14834,
29991,
29945,
29991,
29906,
13,
4706,
500,
13,
13,
29871,
4529,
1899,
29912,
13,
4706,
1899,
29918,
978,
1678,
1423,
29918,
5499,
29879,
13,
4706,
1899,
29918,
1220,
1678,
395,
11889,
29896,
29938,
29914,
29886,
1526,
29899,
3198,
29899,
10467,
29899,
5499,
29879,
29889,
2272,
448,
29875,
395,
20832,
1964,
29902,
3289,
29938,
448,
29885,
395,
1718,
29954,
29896,
29938,
448,
29893,
395,
1718,
29954,
29906,
29938,
448,
29883,
395,
1718,
29954,
29941,
29938,
13,
4706,
500,
13,
13,
29922,
2813,
29896,
315,
4590,
29979,
22789,
3912,
29892,
365,
2965,
1430,
1660,
29892,
5300,
399,
1718,
29934,
13566,
29979,
13,
13,
4013,
1824,
338,
3509,
1266,
29871,
29906,
29900,
29896,
29946,
2431,
535,
29874,
365,
12182,
322,
29914,
272,
967,
23736,
1078,
29889,
13,
29737,
1627,
322,
28473,
526,
12853,
29889,
13,
13,
4690,
3235,
13756,
29954,
25058,
8519,
13756,
13044,
3352,
376,
3289,
8519,
29908,
5300,
399,
1806,
8187,
2692,
13764,
29979,
8528,
15094,
1799,
6323,
306,
3580,
5265,
3352,
13,
29956,
1718,
29934,
13566,
29059,
29892,
2672,
6154,
15789,
4214,
29892,
399,
1806,
8187,
2692,
27848,
8098,
29892,
6093,
306,
3580,
5265,
3352,
399,
1718,
29934,
13566,
29059,
8079,
13,
29924,
1001,
3210,
13566,
2882,
6227,
11937,
5300,
383,
1806,
8186,
1799,
15842,
319,
349,
8322,
2965,
13309,
1718,
349,
4574,
13152,
1660,
29889,
13,
13,
4013,
1824,
338,
3889,
7047,
29936,
366,
508,
2654,
391,
2666,
372,
322,
29914,
272,
6623,
372,
1090,
13,
1552,
4958,
310,
278,
15143,
4593,
5236,
19245,
408,
6369,
491,
278,
12362,
18540,
13,
28077,
29892,
1873,
29871,
29906,
29889,
29871,
887,
881,
505,
4520,
263,
3509,
310,
278,
15143,
4593,
13,
19858,
19245,
3412,
411,
445,
1824,
29936,
565,
451,
29892,
2436,
304,
278,
12362,
18540,
13,
28077,
29892,
9266,
1696,
29871,
29945,
29929,
18057,
15484,
29892,
2166,
568,
29871,
29941,
29941,
29900,
29892,
12115,
29892,
14861,
259,
29900,
29906,
29896,
29896,
29896,
29899,
29896,
29941,
29900,
29955,
29871,
8278,
29889,
13,
13,
29922,
2813,
29896,
478,
1001,
13381,
13,
13,
29938,
8618,
17637,
29918,
5813,
29938,
282,
1526,
29899,
3198,
29899,
10467,
29899,
5499,
29879,
29889,
2272,
395,
16358,
29938,
13,
13,
29922,
7582,
13,
13,
15945,
29908,
13,
2
] |
Models/__init__.py | Sijiu/Xbill | 14 | 81756 | <reponame>Sijiu/Xbill
from .BaseModel import database, BillModel
from .AlipayBill import AlipayBill
from .WeChatBill import WeChatBill
from .ICBCBill import ICBCBill
from .XBill import XBill
def create_table():
database.create_tables([AlipayBill, WeChatBill, ICBCBill, XBill], safe=True)
| [
1,
529,
276,
1112,
420,
29958,
29903,
823,
5871,
29914,
29990,
29890,
453,
13,
3166,
869,
5160,
3195,
1053,
2566,
29892,
6682,
3195,
13,
3166,
869,
29909,
3466,
388,
29933,
453,
1053,
319,
3466,
388,
29933,
453,
13,
3166,
869,
4806,
1451,
271,
29933,
453,
1053,
1334,
1451,
271,
29933,
453,
13,
3166,
869,
2965,
5371,
29933,
453,
1053,
18340,
5371,
29933,
453,
13,
3166,
869,
29990,
29933,
453,
1053,
1060,
29933,
453,
13,
13,
13,
1753,
1653,
29918,
2371,
7295,
13,
1678,
2566,
29889,
3258,
29918,
24051,
4197,
29909,
3466,
388,
29933,
453,
29892,
1334,
1451,
271,
29933,
453,
29892,
18340,
5371,
29933,
453,
29892,
1060,
29933,
453,
1402,
9109,
29922,
5574,
29897,
13,
2
] |
TwoDPCA.py | UtkarshPandey55557/Face_detcetion | 0 | 131938 | <reponame>UtkarshPandey55557/Face_detcetion
import numpy as np
import cv2
import scipy.linalg as s_linalg
class two_d_pca_class:
#function used for finding value of p for covering 95% of image information
def give_p(self, d):
#sum of all eigen values
sum = np.sum(d)
sum_95 = 0.95 * sum
temp = 0
p = 0
while temp < sum_95:
temp += d[p]
p += 1
return p
def reduce_dim(self):
no_of_images = self.images.shape[0]
mat_height = self.images.shape[1]
#creating emptymatrix for find covarience matrix
g_t = np.zeros((mat_height, mat_height))
for i in range(no_of_images):
#multiplying net subtracted image with its transpose and adding in gt
temp = np.dot(self.images_mean_subtracted[i].T, self.images_mean_subtracted[i])
g_t += temp
#dividing by total number of images
g_t /= no_of_images
#finding eigen values and eigen vectors
d_mat, p_mat = np.linalg.eig(g_t)
#finding first p important vectors
p = self.give_p(d_mat)
self.new_bases = p_mat[:, 0:p]
#finding new coordinates using dot product new bases
self.new_coordinates = np.dot(self.images, self.new_bases)
#returning new coordinates matrix
return self.new_coordinates
def __init__(self, images, y, target_names):
self.images = np.asarray(images)
self.y = y
self.target_names = target_names
#finding means of image
self.mean_face = np.mean(self.images, 0)
#subtracting mean face from images
self.images_mean_subtracted = self.images - self.mean_face
def original_data(self, new_coordinates):
return (np.dot(new_coordinates, self.new_bases.T))
def new_cord(self, name, img_height, img_width):
img = cv2.imread(name, 0)
cv2.imshow("Recognize Image", img)
cv2.waitKey()
gray = cv2.resize(img, (img_height, img_width))
return np.dot(gray, self.new_bases)
def new_cord_for_image(self, image):
return np.dot(image, self.new_bases)
def recognize_face(self, new_cord):
no_of_images = len(self.y)
distances = []
for i in range(no_of_images):
temp_imgs = self.new_coordinates[i]
dist = np.linalg.norm(new_cord - temp_imgs)
distances += [dist]
print("Distances", distances)
min = np.argmin(distances)
per = self.y[min]
per_name = self.target_names[per]
print("Person", per, ":", min, self.target_names[per], "Dist:", distances[min])
return per_name
| [
1,
529,
276,
1112,
420,
29958,
29965,
29873,
5689,
845,
29925,
4182,
29891,
29945,
29945,
29945,
29945,
29955,
29914,
23360,
29918,
4801,
29883,
300,
291,
13,
5215,
12655,
408,
7442,
30004,
13,
5215,
13850,
29906,
30004,
13,
5215,
4560,
2272,
29889,
29880,
979,
29887,
408,
269,
29918,
29880,
979,
29887,
30004,
13,
30004,
13,
30004,
13,
1990,
1023,
29918,
29881,
29918,
29886,
1113,
29918,
1990,
29901,
30004,
13,
30004,
13,
1678,
396,
2220,
1304,
363,
9138,
995,
310,
282,
363,
21653,
29871,
29929,
29945,
29995,
310,
1967,
2472,
30004,
13,
1678,
822,
2367,
29918,
29886,
29898,
1311,
29892,
270,
1125,
30004,
13,
30004,
13,
4706,
396,
2083,
310,
599,
7388,
1819,
30004,
13,
4706,
2533,
353,
7442,
29889,
2083,
29898,
29881,
8443,
13,
4706,
2533,
29918,
29929,
29945,
353,
29871,
29900,
29889,
29929,
29945,
334,
2533,
30004,
13,
4706,
5694,
353,
29871,
29900,
30004,
13,
4706,
282,
353,
29871,
29900,
30004,
13,
4706,
1550,
5694,
529,
2533,
29918,
29929,
29945,
29901,
30004,
13,
9651,
5694,
4619,
270,
29961,
29886,
29962,
30004,
13,
9651,
282,
4619,
29871,
29896,
30004,
13,
4706,
736,
282,
30004,
13,
30004,
13,
1678,
822,
10032,
29918,
6229,
29898,
1311,
1125,
30004,
13,
30004,
13,
4706,
694,
29918,
974,
29918,
8346,
353,
1583,
29889,
8346,
29889,
12181,
29961,
29900,
29962,
30004,
13,
4706,
1775,
29918,
3545,
353,
1583,
29889,
8346,
29889,
12181,
29961,
29896,
29962,
30004,
13,
30004,
13,
4706,
396,
1037,
1218,
953,
415,
962,
271,
2126,
363,
1284,
18838,
1306,
663,
4636,
30004,
13,
4706,
330,
29918,
29873,
353,
7442,
29889,
3298,
359,
3552,
2922,
29918,
3545,
29892,
1775,
29918,
3545,
876,
30004,
13,
30004,
13,
4706,
363,
474,
297,
3464,
29898,
1217,
29918,
974,
29918,
8346,
1125,
30004,
13,
30004,
13,
9651,
396,
18056,
5890,
7787,
23197,
287,
1967,
411,
967,
1301,
4220,
322,
4417,
297,
330,
29873,
30004,
13,
9651,
5694,
353,
7442,
29889,
6333,
29898,
1311,
29889,
8346,
29918,
12676,
29918,
1491,
29873,
1461,
287,
29961,
29875,
1822,
29911,
29892,
1583,
29889,
8346,
29918,
12676,
29918,
1491,
29873,
1461,
287,
29961,
29875,
2314,
30004,
13,
9651,
330,
29918,
29873,
4619,
5694,
30004,
13,
30004,
13,
4706,
396,
29881,
3640,
292,
491,
3001,
1353,
310,
4558,
30004,
13,
4706,
330,
29918,
29873,
847,
29922,
694,
29918,
974,
29918,
8346,
30004,
13,
30004,
13,
4706,
396,
2886,
292,
7388,
1819,
322,
7388,
12047,
30004,
13,
4706,
270,
29918,
2922,
29892,
282,
29918,
2922,
353,
7442,
29889,
29880,
979,
29887,
29889,
29872,
335,
29898,
29887,
29918,
29873,
8443,
13,
30004,
13,
4706,
396,
2886,
292,
937,
282,
4100,
12047,
30004,
13,
4706,
282,
353,
1583,
29889,
29887,
573,
29918,
29886,
29898,
29881,
29918,
2922,
8443,
13,
4706,
1583,
29889,
1482,
29918,
29890,
2129,
353,
282,
29918,
2922,
7503,
29892,
29871,
29900,
29901,
29886,
29962,
30004,
13,
30004,
13,
4706,
396,
2886,
292,
716,
10350,
773,
8329,
3234,
716,
22561,
30004,
13,
4706,
1583,
29889,
1482,
29918,
1111,
24266,
353,
7442,
29889,
6333,
29898,
1311,
29889,
8346,
29892,
1583,
29889,
1482,
29918,
29890,
2129,
8443,
13,
30004,
13,
4706,
396,
2457,
292,
716,
10350,
4636,
30004,
13,
4706,
736,
1583,
29889,
1482,
29918,
1111,
24266,
30004,
13,
30004,
13,
30004,
13,
1678,
822,
4770,
2344,
12035,
1311,
29892,
4558,
29892,
343,
29892,
3646,
29918,
7039,
1125,
30004,
13,
4706,
1583,
29889,
8346,
353,
7442,
29889,
294,
2378,
29898,
8346,
8443,
13,
4706,
1583,
29889,
29891,
353,
343,
30004,
13,
4706,
1583,
29889,
5182,
29918,
7039,
353,
3646,
29918,
7039,
30004,
13,
30004,
13,
4706,
396,
2886,
292,
2794,
310,
1967,
30004,
13,
4706,
1583,
29889,
12676,
29918,
2161,
353,
7442,
29889,
12676,
29898,
1311,
29889,
8346,
29892,
29871,
29900,
8443,
13,
30004,
13,
4706,
396,
1491,
29873,
1461,
292,
2099,
3700,
515,
4558,
30004,
13,
4706,
1583,
29889,
8346,
29918,
12676,
29918,
1491,
29873,
1461,
287,
353,
1583,
29889,
8346,
448,
1583,
29889,
12676,
29918,
2161,
30004,
13,
30004,
13,
30004,
13,
1678,
822,
2441,
29918,
1272,
29898,
1311,
29892,
716,
29918,
1111,
24266,
1125,
30004,
13,
4706,
736,
313,
9302,
29889,
6333,
29898,
1482,
29918,
1111,
24266,
29892,
1583,
29889,
1482,
29918,
29890,
2129,
29889,
29911,
876,
30004,
13,
30004,
13,
30004,
13,
1678,
822,
716,
29918,
16090,
29898,
1311,
29892,
1024,
29892,
10153,
29918,
3545,
29892,
10153,
29918,
2103,
1125,
30004,
13,
4706,
10153,
353,
13850,
29906,
29889,
326,
949,
29898,
978,
29892,
29871,
29900,
8443,
13,
4706,
13850,
29906,
29889,
326,
4294,
703,
23122,
675,
7084,
613,
10153,
8443,
13,
4706,
13850,
29906,
29889,
10685,
2558,
26471,
13,
4706,
16749,
353,
13850,
29906,
29889,
21476,
29898,
2492,
29892,
313,
2492,
29918,
3545,
29892,
10153,
29918,
2103,
876,
30004,
13,
4706,
736,
7442,
29889,
6333,
29898,
21012,
29892,
1583,
29889,
1482,
29918,
29890,
2129,
8443,
13,
30004,
13,
1678,
822,
716,
29918,
16090,
29918,
1454,
29918,
3027,
29898,
1311,
29892,
1967,
1125,
30004,
13,
4706,
736,
7442,
29889,
6333,
29898,
3027,
29892,
1583,
29889,
1482,
29918,
29890,
2129,
8443,
13,
30004,
13,
30004,
13,
1678,
822,
18720,
29918,
2161,
29898,
1311,
29892,
716,
29918,
16090,
1125,
30004,
13,
4706,
694,
29918,
974,
29918,
8346,
353,
7431,
29898,
1311,
29889,
29891,
8443,
13,
4706,
24610,
353,
5159,
30004,
13,
4706,
363,
474,
297,
3464,
29898,
1217,
29918,
974,
29918,
8346,
1125,
30004,
13,
9651,
5694,
29918,
2492,
29879,
353,
1583,
29889,
1482,
29918,
1111,
24266,
29961,
29875,
29962,
30004,
13,
9651,
1320,
353,
7442,
29889,
29880,
979,
29887,
29889,
12324,
29898,
1482,
29918,
16090,
448,
5694,
29918,
2492,
29879,
8443,
13,
9651,
24610,
4619,
518,
5721,
29962,
30004,
13,
30004,
13,
4706,
1596,
703,
13398,
2925,
613,
24610,
8443,
13,
4706,
1375,
353,
7442,
29889,
1191,
1195,
29898,
5721,
2925,
8443,
13,
4706,
639,
353,
1583,
29889,
29891,
29961,
1195,
29962,
30004,
13,
4706,
639,
29918,
978,
353,
1583,
29889,
5182,
29918,
7039,
29961,
546,
29962,
30004,
13,
30004,
13,
4706,
1596,
703,
7435,
613,
639,
29892,
29242,
613,
1375,
29892,
1583,
29889,
5182,
29918,
7039,
29961,
546,
1402,
376,
13398,
29901,
613,
24610,
29961,
1195,
2314,
30004,
13,
4706,
736,
639,
29918,
978,
30004,
13,
30004,
13,
30004,
13,
30004,
13,
30004,
13,
30004,
13,
30004,
13,
2
] |
graphbar/graphbar.py | manuelgilm/graphbar | 0 | 170253 | import matplotlib.pyplot as plt
import numpy as np
def plot_bars_by_group(grouped_data,colors,edgecolor=None,property_name="Data by group",ylabel="Value",figsize=(16,6),annotations = True):
"""Make bar graph by group.
Params:
------
grouped_data: (dict)
Each key represents a group, each group is a dictionary, where each key is a characteristic with its value.
colors: (list)
List with the colors of each characteristic
edgecolor: (str)
Color of the border of the rectangle, if it is None the border will be equeal to the color of the rectangle
property_name: (str) Chart title
ylabel: (str) Y axis name
figsize: (tuple) Chart dimensions
annotations (boolean) If each bar shows the value
Output:
------
Bar graph by group
"""
groups = list(grouped_data.keys())
labels = [list(grouped_data[k].keys()) for k in grouped_data.keys()][0]
n_groups = len(groups)
n_labels = len(labels)
width = 1/(n_groups+1)
# the label locations
main_x = np.arange(n_labels)
if n_groups % 2 == 0:
pos = "edge"
else:
pos = "center"
X = []
k = [k if i == 0 else -1*k for k in range(1,n_groups) for i in range(2)]
for n in range(n_groups-1):
X.append([r+k[n]*width for r in main_x])
fig, ax = plt.subplots()
fig.set_size_inches(figsize)
rects = []
for g in range(n_groups):
if g == 0:
rects.append(ax.bar(main_x,grouped_data[groups[g]].values(),width=width,label=groups[g],color=colors[g],edgecolor = edgecolor,align=pos))
else:
rects.append(ax.bar(X[g-1],grouped_data[groups[g]].values(),width=width,label=groups[g],color=colors[g],edgecolor = edgecolor,align=pos))
# Add some text for labels, title and custom x-axis tick labels, etc.
ax.set_ylabel(ylabel)
ax.set_title(f'{property_name}')
if pos == "center":
ax.set_xticks(main_x)
else:
ax.set_xticks(X[0])
ax.set_xticklabels(labels)
ax.grid(False)
ax.legend()
#add annotations
if annotations:
heights = []
for rect in rects:
for r in rect:
height = r.get_height()
ax.annotate('{} '.format(height),
xy=(r.get_x() + r.get_width() / 2, height),
xytext=(0, 3), # 3 points vertical offset
textcoords="offset points",
ha='center', va='bottom') | [
1,
1053,
22889,
29889,
2272,
5317,
408,
14770,
29871,
13,
5215,
12655,
408,
7442,
29871,
13,
13,
13,
13,
1753,
6492,
29918,
28408,
29918,
1609,
29918,
2972,
29898,
2972,
287,
29918,
1272,
29892,
27703,
29892,
12864,
2780,
29922,
8516,
29892,
6799,
29918,
978,
543,
1469,
491,
2318,
613,
29891,
1643,
543,
1917,
613,
1003,
2311,
7607,
29896,
29953,
29892,
29953,
511,
6735,
800,
353,
5852,
1125,
13,
268,
13,
1678,
9995,
9984,
2594,
3983,
491,
2318,
29889,
13,
1678,
1459,
2232,
29901,
13,
1678,
448,
23648,
13,
268,
13,
1678,
27831,
29918,
1272,
29901,
313,
8977,
29897,
29871,
13,
4706,
7806,
1820,
11524,
263,
2318,
29892,
1269,
2318,
338,
263,
8600,
29892,
988,
1269,
1820,
338,
263,
17443,
411,
967,
995,
29889,
13,
1678,
11955,
29901,
313,
1761,
29897,
13,
4706,
2391,
411,
278,
11955,
310,
1269,
17443,
13,
1678,
7636,
2780,
29901,
313,
710,
29897,
13,
4706,
9159,
310,
278,
5139,
310,
278,
16701,
29892,
565,
372,
338,
6213,
278,
5139,
674,
367,
321,
802,
284,
304,
278,
2927,
310,
278,
16701,
13,
1678,
2875,
29918,
978,
29901,
313,
710,
29897,
14477,
3611,
29871,
13,
1678,
343,
1643,
29901,
313,
710,
29897,
612,
9685,
1024,
13,
1678,
2537,
2311,
29901,
313,
23583,
29897,
14477,
13391,
13,
1678,
25495,
313,
20054,
29897,
960,
1269,
2594,
3697,
278,
995,
13,
1678,
10604,
29901,
13,
1678,
448,
23648,
13,
1678,
2261,
3983,
491,
2318,
13,
268,
13,
1678,
9995,
13,
13,
1678,
6471,
353,
1051,
29898,
2972,
287,
29918,
1272,
29889,
8149,
3101,
13,
1678,
11073,
353,
518,
1761,
29898,
2972,
287,
29918,
1272,
29961,
29895,
1822,
8149,
3101,
363,
413,
297,
27831,
29918,
1272,
29889,
8149,
580,
3816,
29900,
29962,
13,
13,
1678,
302,
29918,
13155,
353,
7431,
29898,
13155,
29897,
13,
1678,
302,
29918,
21134,
353,
7431,
29898,
21134,
29897,
13,
268,
13,
1678,
2920,
353,
29871,
29896,
14571,
29876,
29918,
13155,
29974,
29896,
29897,
13,
13,
1678,
396,
278,
3858,
14354,
13,
1678,
1667,
29918,
29916,
353,
7442,
29889,
279,
927,
29898,
29876,
29918,
21134,
29897,
13,
268,
13,
1678,
565,
302,
29918,
13155,
1273,
29871,
29906,
1275,
29871,
29900,
29901,
13,
4706,
926,
353,
376,
12864,
29908,
13,
1678,
1683,
29901,
13,
4706,
926,
353,
376,
5064,
29908,
13,
268,
13,
1678,
1060,
353,
5159,
13,
1678,
413,
353,
518,
29895,
565,
474,
1275,
29871,
29900,
1683,
448,
29896,
29930,
29895,
363,
413,
297,
3464,
29898,
29896,
29892,
29876,
29918,
13155,
29897,
363,
474,
297,
3464,
29898,
29906,
4638,
29871,
13,
1678,
363,
302,
297,
3464,
29898,
29876,
29918,
13155,
29899,
29896,
1125,
13,
4706,
1060,
29889,
4397,
4197,
29878,
29974,
29895,
29961,
29876,
14178,
2103,
363,
364,
297,
1667,
29918,
29916,
2314,
13,
462,
308,
13,
1678,
2537,
29892,
4853,
353,
14770,
29889,
1491,
26762,
580,
13,
1678,
2537,
29889,
842,
29918,
2311,
29918,
262,
6609,
29898,
1003,
2311,
29897,
13,
13,
1678,
7705,
29879,
353,
5159,
13,
268,
13,
1678,
363,
330,
297,
3464,
29898,
29876,
29918,
13155,
1125,
13,
4706,
565,
330,
1275,
29871,
29900,
29901,
13,
9651,
7705,
29879,
29889,
4397,
29898,
1165,
29889,
1646,
29898,
3396,
29918,
29916,
29892,
2972,
287,
29918,
1272,
29961,
13155,
29961,
29887,
29962,
1822,
5975,
3285,
2103,
29922,
2103,
29892,
1643,
29922,
13155,
29961,
29887,
1402,
2780,
29922,
27703,
29961,
29887,
1402,
12864,
2780,
353,
7636,
2780,
29892,
2520,
29922,
1066,
876,
13,
4706,
1683,
29901,
13,
9651,
7705,
29879,
29889,
4397,
29898,
1165,
29889,
1646,
29898,
29990,
29961,
29887,
29899,
29896,
1402,
2972,
287,
29918,
1272,
29961,
13155,
29961,
29887,
29962,
1822,
5975,
3285,
2103,
29922,
2103,
29892,
1643,
29922,
13155,
29961,
29887,
1402,
2780,
29922,
27703,
29961,
29887,
1402,
12864,
2780,
353,
7636,
2780,
29892,
2520,
29922,
1066,
876,
13,
13,
1678,
396,
3462,
777,
1426,
363,
11073,
29892,
3611,
322,
2888,
921,
29899,
8990,
16892,
11073,
29892,
2992,
29889,
13,
1678,
4853,
29889,
842,
29918,
29891,
1643,
29898,
29891,
1643,
29897,
13,
1678,
4853,
29889,
842,
29918,
3257,
29898,
29888,
29915,
29912,
6799,
29918,
978,
29913,
1495,
13,
1678,
565,
926,
1275,
376,
5064,
1115,
13,
4706,
4853,
29889,
842,
29918,
486,
7358,
29898,
3396,
29918,
29916,
29897,
13,
1678,
1683,
29901,
13,
4706,
4853,
29889,
842,
29918,
486,
7358,
29898,
29990,
29961,
29900,
2314,
13,
1678,
4853,
29889,
842,
29918,
486,
860,
21134,
29898,
21134,
29897,
13,
1678,
4853,
29889,
7720,
29898,
8824,
29897,
13,
1678,
4853,
29889,
26172,
580,
13,
13,
1678,
396,
1202,
25495,
13,
1678,
565,
25495,
29901,
13,
4706,
3171,
29879,
353,
5159,
13,
4706,
363,
7705,
297,
7705,
29879,
29901,
13,
9651,
363,
364,
297,
7705,
29901,
13,
18884,
3171,
353,
364,
29889,
657,
29918,
3545,
580,
13,
18884,
4853,
29889,
6735,
403,
877,
8875,
15300,
4830,
29898,
3545,
511,
13,
462,
1678,
921,
29891,
7607,
29878,
29889,
657,
29918,
29916,
580,
718,
364,
29889,
657,
29918,
2103,
580,
847,
29871,
29906,
29892,
3171,
511,
13,
462,
1678,
921,
29891,
726,
7607,
29900,
29892,
29871,
29941,
511,
29871,
396,
29871,
29941,
3291,
11408,
9210,
13,
462,
1678,
1426,
1111,
4339,
543,
10289,
3291,
613,
13,
462,
1678,
447,
2433,
5064,
742,
2947,
2433,
8968,
1495,
2
] |
RACE_for_thesis/src/nn_layers.py | l11x0m7/master_thesis_public | 1 | 199101 | <gh_stars>1-10
import theano.tensor as T
import lasagne
import lasagne.layers as L
# my addition
class SelfAttention(L.MergeLayer):
# incomings[0]: B * P * 2D
# B * P
def __init__(self, incomings, num_units,
nonlinearity=lasagne.nonlinearities.tanh,
mask_input=None,
name='',
init=lasagne.init.Uniform(), **kwargs):
if len(incomings) != 2:
raise NotImplementedError
if mask_input is not None:
incomings.append(mask_input)
super(SelfAttention, self).__init__(incomings, **kwargs)
self.nonlinearity = nonlinearity
self.num_units = num_units
self.W0 = self.add_param(init, (self.num_units, self.num_units), name='W0_sa_{}'.format(name))
self.Wb = self.add_param(init, (self.num_units, ), name='Wb_sa_{}'.format(name))
# inputs[0]: B * P * 2D
# inputs[1]: B * P
def get_output_for(self, inputs, **kwargs):
B, P, D = inputs[0].shape
# B * P
alphas = T.dot(self.nonlinearity(T.dot(inputs[0], self.W0)), self.Wb)
alphas = T.nnet.softmax(alphas) * inputs[1]
alphas = alphas / (alphas.sum(axis=1, keepdims=True) + 1e-8) * inputs[1]
att = T.sum(inputs[0] * alphas.dimshuffle(0, 1, 'x'), axis=1)
return att
def get_output_shape_for(self, input_shapes):
# outputs: B * 2D
return (input_shapes[0][0], input_shapes[0][2])
class SqueezeLayer(lasagne.layers.Layer):
def get_output_for(self, input, **kwargs):
return T.cast(input.sum(axis=-1) > 0, 'int32')
def get_output_shape_for(self, input_shape):
return input_shape[:-1]
class CombineLayer(L.MergeLayer):
# inputs[0]: B * N
# inputs[1]: B * N
def get_output_for(self, inputs, **kwargs):
return (inputs[0] + inputs[1]) / 2.
def get_output_shape_for(self, input_shapes):
return input_shapes[0]
class OptionGateLayer(L.MergeLayer):
# inputs[0]: B * 4 * N
# inputs[1]: B * 4
def get_output_for(self, inputs, **kwargs):
return inputs[0] * inputs[1].dimshuffle(0, 1, 'x')
def get_output_shape_for(self, input_shapes):
return input_shapes[0]
# -----------------------------origin------------------------------
class GatedAttentionLayerWithQueryAttention(L.MergeLayer):
# inputs[0]: B * N * 2D
# inputs[1]: B * Q * 2D
# inputs[2]: B * Q (l_m_q)
def get_output_for(self, inputs, **kwargs):
M = T.batched_dot(inputs[0], inputs[1].dimshuffle((0,2,1))) # B x N x Q
B, N, Q = M.shape
alphas = T.nnet.softmax(T.reshape(M, (B*N, Q)))
alphas_r = T.reshape(alphas, (B,N,Q)) * inputs[2].dimshuffle(0, 'x', 1) # B x N x Q
alphas_r = alphas_r / alphas_r.sum(axis=2, keepdims=True) # B x N x Q
q_rep = T.batched_dot(alphas_r, inputs[1]) # B x N x 2D
d_gated = inputs[0] * q_rep
return d_gated
def get_output_shape_for(self, input_shapes):
return input_shapes[0]
class GateWithQuery(L.MergeLayer):
# inputs[0]: B * N * 2D
# inputs[1]: B * 2D
def get_output_for(self, inputs, **kwargs):
M = T.batched_dot(inputs[0], inputs[1])
M = T.nnet.sigmoid(M)
d_gated = inputs[0] * M.dimshuffle((0, 1, 'x'))
return d_gated
def get_output_shape_for(self, input_shapes):
return input_shapes[0]
class QuerySliceLayer(L.MergeLayer):
# inputs[0]: B * Q * 2D (q)
# inputs[1]: B (q_var)
def get_output_for(self, inputs, **kwargs):
q_slice = inputs[0][T.arange(inputs[0].shape[0]), inputs[1]-1, :] # B x 2D
return q_slice
def get_output_shape_for(self, input_shapes):
return (input_shapes[0][0], input_shapes[0][2])
class GatedAttentionLayer(L.MergeLayer):
# inputs[0]: B * N * 2D
# inputs[1]: N * 2D
def get_output_for(self, inputs, **kwargs):
return inputs[0] * inputs[1].dimshuffle(0, 'x', 1)
def get_output_shape_for(self, input_shapes):
return input_shapes[0]
class AttentionSumLayer(L.MergeLayer):
# inputs[0]: batch * len * h (d)
# inputs[1]: batch * h (q_slice)
# inputs[2]: batch * len * num_cand (c_var)
# inputs[3]: batch * len (m_c_var)
def get_output_for(self, inputs, **kwargs):
dq = T.batched_dot(inputs[0], inputs[1]) # B x len
attention = T.nnet.softmax(dq) * inputs[3] # B x len
attention = attention / attention.sum(axis=1, keepdims=True)
probs = T.batched_dot(attention, inputs[2]) # B x num_cand
probs = probs / probs.sum(axis=1, keepdims=True)
return probs
def get_output_shape_for(self, input_shapes):
return (input_shapes[2][0], input_shapes[2][2])
def stack_rnn(l_emb, l_mask, num_layers, num_units,
grad_clipping=10, dropout_rate=0.,
bidir=True,
only_return_final=False,
name='',
rnn_layer=lasagne.layers.LSTMLayer):
"""
Stack multiple RNN layers.
"""
def _rnn(backwards=True, name=''):
network = l_emb
for layer in range(num_layers):
if dropout_rate > 0:
network = lasagne.layers.DropoutLayer(network, p=dropout_rate)
c_only_return_final = only_return_final and (layer == num_layers - 1)
network = rnn_layer(network, num_units,
grad_clipping=grad_clipping,
mask_input=l_mask,
only_return_final=c_only_return_final,
backwards=backwards,
name=name + '_layer' + str(layer + 1))
return network
network = _rnn(True, name)
if bidir:
network = lasagne.layers.ConcatLayer([network, _rnn(False, name + '_back')], axis=-1)
return network
class AveragePoolingLayer(lasagne.layers.MergeLayer):
"""
Average pooling.
incoming: batch x len x h
"""
def __init__(self, incoming, mask_input=None, **kwargs):
incomings = [incoming]
if mask_input is not None:
incomings.append(mask_input)
super(AveragePoolingLayer, self).__init__(incomings, **kwargs)
if len(self.input_shapes[0]) != 3:
raise ValueError('the shape of incoming must be a 3-element tuple')
def get_output_shape_for(self, input_shapes):
return input_shapes[0][:-2] + input_shapes[0][-1:]
def get_output_for(self, inputs, **kwargs):
if len(inputs) == 1:
# mask_input is None
return T.mean(inputs[0], axis=1)
else:
# inputs[0]: batch x len x h
# inputs[1] = mask_input: batch x len
return (T.sum(inputs[0] * inputs[1].dimshuffle(0, 1, 'x'), axis=1) /
T.sum(inputs[1], axis=1).dimshuffle(0, 'x'))
class MLPAttentionLayer(lasagne.layers.MergeLayer):
"""
An MLP attention layer.
incomings[0]: batch x len x h
incomings[1]: batch x h
Reference: http://arxiv.org/abs/1506.03340
"""
def __init__(self, incomings, num_units,
nonlinearity=lasagne.nonlinearities.tanh,
mask_input=None,
init=lasagne.init.Uniform(), **kwargs):
if len(incomings) != 2:
raise NotImplementedError
if mask_input is not None:
incomings.append(mask_input)
super(MLPAttentionLayer, self).__init__(incomings, **kwargs)
self.nonlinearity = nonlinearity
self.num_units = num_units
self.W0 = self.add_param(init, (self.num_units, self.num_units), name='W0_mlp')
self.W1 = self.add_param(init, (self.num_units, self.num_units), name='W1_mlp')
self.Wb = self.add_param(init, (self.num_units, ), name='Wb_mlp')
def get_output_shape_for(self, input_shapes):
return input_shapes[1]
def get_output_for(self, inputs, **kwargs):
M = T.dot(inputs[0], self.W0) + T.dot(inputs[1], self.W1).dimshuffle(0, 'x', 1)
M = self.nonlinearity(M)
alpha = T.nnet.softmax(T.dot(M, self.Wb))
if len(inputs) == 3:
alpha = alpha * inputs[2]
alpha = alpha / alpha.sum(axis=1).reshape((alpha.shape[0], 1))
return T.sum(inputs[0] * alpha.dimshuffle(0, 1, 'x'), axis=1)
class LengthLayer(lasagne.layers.Layer):
def get_output_for(self, input, **kwargs):
return T.cast(input.sum(axis=-1), 'int32')
def get_output_shape_for(self, input_shape):
return input_shape[:-1]
class QuerySliceLayer(L.MergeLayer):
# inputs[0]: B * Q * 2D (q)
# inputs[1]: B (q_var)
def get_output_for(self, inputs, **kwargs):
q_slice = inputs[0][T.arange(inputs[0].shape[0]), inputs[1] - 1, :] # B x 2D
return q_slice
def get_output_shape_for(self, input_shapes):
return (input_shapes[0][0], input_shapes[0][2])
class MultiplyLayer(L.MergeLayer):
# inputs[0]: B * P * 2D
# inputs[1]: B * P
def get_output_for(self, inputs, **kwargs):
return T.sum(inputs[0] * inputs[1].dimshuffle(0, 1, 'x'), axis=1)
def get_output_shape_for(self, input_shapes):
return input_shapes[0]
class BilinearAttentionLayer(lasagne.layers.MergeLayer):
"""
A bilinear attention layer.
incomings[0]: batch x len x h
incomings[1]: batch x h
"""
def __init__(self, incomings, num_units,
mask_input=None,
init=lasagne.init.Uniform(), **kwargs):
if len(incomings) != 2:
raise NotImplementedError
if mask_input is not None:
incomings.append(mask_input)
super(BilinearAttentionLayer, self).__init__(incomings, **kwargs)
self.num_units = num_units
if 'name' not in kwargs:
self.W = self.add_param(init, (self.num_units, self.num_units), name='W_bilinear')
else:
self.W = self.add_param(init, (self.num_units, self.num_units), name='W_bilinear_{}'.format(kwargs['name']))
def get_output_shape_for(self, input_shapes):
return input_shapes[1]
def get_output_for(self, inputs, **kwargs):
# inputs[0]: batch * len * h
# inputs[1]: batch * h
# W: h * h
M = T.dot(inputs[1], self.W).dimshuffle(0, 'x', 1)
alpha = T.nnet.softmax(T.sum(inputs[0] * M, axis=2))
if len(inputs) == 3:
alpha = alpha * inputs[2]
alpha = alpha / (alpha.sum(axis=1).reshape((alpha.shape[0], 1)) + 1e-8) * inputs[2]
return T.sum(inputs[0] * alpha.dimshuffle(0, 1, 'x'), axis=1)
class BilinearAttentionMatLayer(lasagne.layers.MergeLayer):
"""
A bilinear attention layer.
incomings[0]: batch x len x h
incomings[1]: batch x h
"""
def __init__(self, incomings, num_units,
mask_input=None,
init=lasagne.init.Uniform(), **kwargs):
if len(incomings) != 2:
raise NotImplementedError
if mask_input is not None:
incomings.append(mask_input)
super(BilinearAttentionMatLayer, self).__init__(incomings, **kwargs)
self.num_units = num_units
if 'name' not in kwargs:
self.W = self.add_param(init, (self.num_units, self.num_units), name='W_bilinear')
else:
self.W = self.add_param(init, (self.num_units, self.num_units), name='W_bilinear_{}'.format(kwargs['name']))
def get_output_shape_for(self, input_shapes):
return input_shapes[0][:2]
def get_output_for(self, inputs, **kwargs):
# inputs[0]: batch * len * h
# inputs[1]: batch * h
# W: h * h
M = T.dot(inputs[1], self.W).dimshuffle(0, 'x', 1)
alpha = T.nnet.softmax(T.sum(inputs[0] * M, axis=2))
if len(inputs) == 3:
alpha = alpha * inputs[2]
alpha = alpha / (alpha.sum(axis=1).reshape((alpha.shape[0], 1)) + 1e-8) * inputs[2]
return alpha
class BilinearDotLayer(lasagne.layers.MergeLayer):
"""
A bilinear attention layer.
incomings[0]: batch x len x h
incomings[1]: batch x h
"""
def __init__(self, incomings, num_units,
mask_input=None,
init=lasagne.init.Uniform(), **kwargs):
if len(incomings) != 2:
raise NotImplementedError
if mask_input is not None:
incomings.append(mask_input)
super(BilinearDotLayer, self).__init__(incomings, **kwargs)
self.num_units = num_units
if 'name' not in kwargs:
self.W = self.add_param(init, (self.num_units, self.num_units), name='W_bilinear')
else:
self.W = self.add_param(init, (self.num_units, self.num_units), name='W_bilinear_{}'.format(kwargs['name']))
def get_output_shape_for(self, input_shapes):
return input_shapes[0][:2]
def get_output_for(self, inputs, **kwargs):
# inputs[0]: batch * len * h
# inputs[1]: batch * h
# inputs[2]: batch * len
# W: h * h
M = T.dot(inputs[1], self.W).dimshuffle(0, 'x', 1) #batch * 1 * h
alpha = T.nnet.softmax(T.sum(inputs[0] * M, axis=2)) #batch * len
if len(inputs) == 3:
alpha = alpha * inputs[2]
alpha = alpha / (alpha.sum(axis=1).reshape((alpha.shape[0], 1)) + 1e-8) * inputs[2]
return alpha
class BilinearDotLayerTensor(lasagne.layers.MergeLayer):
"""
A bilinear attention layer.
incomings[0]: batch x len x h
incomings[1]: batch x len x h
"""
def __init__(self, incomings, num_units,
mask_input=None,
init=lasagne.init.Uniform(), **kwargs):
if len(incomings) != 2:
raise NotImplementedError
if mask_input is not None:
incomings.append(mask_input)
super(BilinearDotLayerTensor, self).__init__(incomings, **kwargs)
self.num_units = num_units
def get_output_shape_for(self, input_shapes):
return input_shapes[0][:2]
def get_output_for(self, inputs, **kwargs):
alpha = T.nnet.softmax(T.sum(inputs[0] * inputs[1], axis=2))
return alpha
class DotProductAttentionLayer(lasagne.layers.MergeLayer):
"""
A bilinear attention layer.
incomings[0]: batch x len x h
incomings[1]: batch x h
"""
def __init__(self, incomings, mask_input=None, **kwargs):
if len(incomings) != 2:
raise NotImplementedError
if mask_input is not None:
incomings.append(mask_input)
super(DotProductAttentionLayer, self).__init__(incomings, **kwargs)
def get_output_shape_for(self, input_shapes):
return input_shapes[1]
def get_output_for(self, inputs, **kwargs):
# inputs[0]: batch * len * h
# inputs[1]: batch * h
# mask_input (if any): batch * len
alpha = T.nnet.softmax(T.sum(inputs[0] * inputs[1].dimshuffle(0, 'x', 1), axis=2))
if len(inputs) == 3:
alpha = alpha * inputs[2]
alpha = alpha / alpha.sum(axis=1).reshape((alpha.shape[0], 1))
return T.sum(inputs[0] * alpha.dimshuffle(0, 1, 'x'), axis=1)
| [
1,
529,
12443,
29918,
303,
1503,
29958,
29896,
29899,
29896,
29900,
13,
5215,
278,
1562,
29889,
20158,
408,
323,
13,
5215,
1869,
5889,
13,
5215,
1869,
5889,
29889,
29277,
408,
365,
13,
13,
13,
29937,
590,
6124,
13,
1990,
21782,
4165,
2509,
29898,
29931,
29889,
15836,
479,
14420,
1125,
13,
1678,
396,
297,
510,
886,
29961,
29900,
5387,
350,
334,
349,
334,
29871,
29906,
29928,
13,
1678,
396,
350,
334,
349,
13,
1678,
822,
4770,
2344,
12035,
1311,
29892,
297,
510,
886,
29892,
954,
29918,
348,
1169,
29892,
13,
462,
1661,
10660,
537,
29922,
3333,
5889,
29889,
5464,
10660,
1907,
29889,
13161,
29882,
29892,
13,
462,
11105,
29918,
2080,
29922,
8516,
29892,
13,
462,
1024,
2433,
742,
13,
462,
2069,
29922,
3333,
5889,
29889,
2344,
29889,
2525,
5560,
3285,
3579,
19290,
1125,
13,
4706,
565,
7431,
29898,
262,
510,
886,
29897,
2804,
29871,
29906,
29901,
13,
9651,
12020,
2216,
1888,
2037,
287,
2392,
13,
4706,
565,
11105,
29918,
2080,
338,
451,
6213,
29901,
13,
9651,
297,
510,
886,
29889,
4397,
29898,
13168,
29918,
2080,
29897,
13,
4706,
2428,
29898,
24313,
4165,
2509,
29892,
1583,
467,
1649,
2344,
12035,
262,
510,
886,
29892,
3579,
19290,
29897,
13,
4706,
1583,
29889,
5464,
10660,
537,
353,
1661,
10660,
537,
13,
4706,
1583,
29889,
1949,
29918,
348,
1169,
353,
954,
29918,
348,
1169,
13,
4706,
1583,
29889,
29956,
29900,
353,
1583,
29889,
1202,
29918,
3207,
29898,
2344,
29892,
313,
1311,
29889,
1949,
29918,
348,
1169,
29892,
1583,
29889,
1949,
29918,
348,
1169,
511,
1024,
2433,
29956,
29900,
29918,
4977,
648,
29913,
4286,
4830,
29898,
978,
876,
13,
4706,
1583,
29889,
29956,
29890,
353,
1583,
29889,
1202,
29918,
3207,
29898,
2344,
29892,
313,
1311,
29889,
1949,
29918,
348,
1169,
29892,
10353,
1024,
2433,
29956,
29890,
29918,
4977,
648,
29913,
4286,
4830,
29898,
978,
876,
13,
1678,
396,
10970,
29961,
29900,
5387,
350,
334,
349,
334,
29871,
29906,
29928,
13,
1678,
396,
10970,
29961,
29896,
5387,
350,
334,
349,
13,
1678,
822,
679,
29918,
4905,
29918,
1454,
29898,
1311,
29892,
10970,
29892,
3579,
19290,
1125,
13,
4706,
350,
29892,
349,
29892,
360,
353,
10970,
29961,
29900,
1822,
12181,
13,
4706,
396,
350,
334,
349,
13,
4706,
394,
16130,
353,
323,
29889,
6333,
29898,
1311,
29889,
5464,
10660,
537,
29898,
29911,
29889,
6333,
29898,
2080,
29879,
29961,
29900,
1402,
1583,
29889,
29956,
29900,
8243,
1583,
29889,
29956,
29890,
29897,
13,
4706,
394,
16130,
353,
323,
29889,
29876,
1212,
29889,
2695,
3317,
29898,
284,
16130,
29897,
334,
10970,
29961,
29896,
29962,
13,
4706,
394,
16130,
353,
394,
16130,
847,
313,
284,
16130,
29889,
2083,
29898,
8990,
29922,
29896,
29892,
3013,
6229,
29879,
29922,
5574,
29897,
718,
29871,
29896,
29872,
29899,
29947,
29897,
334,
10970,
29961,
29896,
29962,
13,
13,
4706,
1098,
353,
323,
29889,
2083,
29898,
2080,
29879,
29961,
29900,
29962,
334,
394,
16130,
29889,
6229,
845,
21897,
29898,
29900,
29892,
29871,
29896,
29892,
525,
29916,
5477,
9685,
29922,
29896,
29897,
13,
13,
4706,
736,
1098,
13,
13,
1678,
822,
679,
29918,
4905,
29918,
12181,
29918,
1454,
29898,
1311,
29892,
1881,
29918,
845,
11603,
1125,
13,
4706,
396,
14391,
29901,
350,
334,
29871,
29906,
29928,
13,
4706,
736,
313,
2080,
29918,
845,
11603,
29961,
29900,
3816,
29900,
1402,
1881,
29918,
845,
11603,
29961,
29900,
3816,
29906,
2314,
13,
13,
13,
1990,
317,
802,
29872,
911,
14420,
29898,
3333,
5889,
29889,
29277,
29889,
14420,
1125,
13,
1678,
822,
679,
29918,
4905,
29918,
1454,
29898,
1311,
29892,
1881,
29892,
3579,
19290,
1125,
13,
4706,
736,
323,
29889,
4384,
29898,
2080,
29889,
2083,
29898,
8990,
10457,
29896,
29897,
1405,
29871,
29900,
29892,
525,
524,
29941,
29906,
1495,
13,
13,
1678,
822,
679,
29918,
4905,
29918,
12181,
29918,
1454,
29898,
1311,
29892,
1881,
29918,
12181,
1125,
13,
4706,
736,
1881,
29918,
12181,
7503,
29899,
29896,
29962,
13,
13,
13,
1990,
422,
26062,
14420,
29898,
29931,
29889,
15836,
479,
14420,
1125,
13,
1678,
396,
10970,
29961,
29900,
5387,
350,
334,
405,
13,
1678,
396,
10970,
29961,
29896,
5387,
350,
334,
405,
13,
13,
1678,
822,
679,
29918,
4905,
29918,
1454,
29898,
1311,
29892,
10970,
29892,
3579,
19290,
1125,
13,
4706,
736,
313,
2080,
29879,
29961,
29900,
29962,
718,
10970,
29961,
29896,
2314,
847,
29871,
29906,
29889,
13,
13,
1678,
822,
679,
29918,
4905,
29918,
12181,
29918,
1454,
29898,
1311,
29892,
1881,
29918,
845,
11603,
1125,
13,
4706,
736,
1881,
29918,
845,
11603,
29961,
29900,
29962,
13,
13,
1990,
10831,
29954,
403,
14420,
29898,
29931,
29889,
15836,
479,
14420,
1125,
13,
1678,
396,
10970,
29961,
29900,
5387,
350,
334,
29871,
29946,
334,
405,
13,
1678,
396,
10970,
29961,
29896,
5387,
350,
334,
29871,
29946,
13,
13,
1678,
822,
679,
29918,
4905,
29918,
1454,
29898,
1311,
29892,
10970,
29892,
3579,
19290,
1125,
13,
4706,
736,
10970,
29961,
29900,
29962,
334,
10970,
29961,
29896,
1822,
6229,
845,
21897,
29898,
29900,
29892,
29871,
29896,
29892,
525,
29916,
1495,
13,
13,
1678,
822,
679,
29918,
4905,
29918,
12181,
29918,
1454,
29898,
1311,
29892,
1881,
29918,
845,
11603,
1125,
13,
4706,
736,
1881,
29918,
845,
11603,
29961,
29900,
29962,
13,
13,
29937,
448,
2683,
9072,
12574,
2683,
9072,
489,
13,
13,
1990,
402,
630,
4165,
2509,
14420,
3047,
3010,
4165,
2509,
29898,
29931,
29889,
15836,
479,
14420,
1125,
13,
1678,
396,
10970,
29961,
29900,
5387,
350,
334,
405,
334,
29871,
29906,
29928,
13,
1678,
396,
10970,
29961,
29896,
5387,
350,
334,
660,
334,
29871,
29906,
29928,
13,
1678,
396,
10970,
29961,
29906,
5387,
350,
334,
660,
3986,
313,
29880,
29918,
29885,
29918,
29939,
29897,
13,
13,
1678,
822,
679,
29918,
4905,
29918,
1454,
29898,
1311,
29892,
10970,
29892,
3579,
19290,
1125,
13,
4706,
341,
353,
323,
29889,
16175,
287,
29918,
6333,
29898,
2080,
29879,
29961,
29900,
1402,
10970,
29961,
29896,
1822,
6229,
845,
21897,
3552,
29900,
29892,
29906,
29892,
29896,
4961,
632,
396,
350,
921,
405,
921,
660,
13,
4706,
350,
29892,
405,
29892,
660,
353,
341,
29889,
12181,
13,
4706,
394,
16130,
353,
323,
29889,
29876,
1212,
29889,
2695,
3317,
29898,
29911,
29889,
690,
14443,
29898,
29924,
29892,
313,
29933,
29930,
29940,
29892,
660,
4961,
13,
4706,
394,
16130,
29918,
29878,
353,
323,
29889,
690,
14443,
29898,
284,
16130,
29892,
313,
29933,
29892,
29940,
29892,
29984,
876,
334,
10970,
29961,
29906,
1822,
6229,
845,
21897,
29898,
29900,
29892,
525,
29916,
742,
29871,
29896,
29897,
396,
350,
921,
405,
921,
660,
13,
4706,
394,
16130,
29918,
29878,
353,
394,
16130,
29918,
29878,
847,
394,
16130,
29918,
29878,
29889,
2083,
29898,
8990,
29922,
29906,
29892,
3013,
6229,
29879,
29922,
5574,
29897,
1669,
396,
350,
921,
405,
921,
660,
13,
4706,
3855,
29918,
3445,
353,
323,
29889,
16175,
287,
29918,
6333,
29898,
284,
16130,
29918,
29878,
29892,
10970,
29961,
29896,
2314,
462,
795,
396,
350,
921,
405,
921,
29871,
29906,
29928,
13,
4706,
270,
29918,
29887,
630,
353,
10970,
29961,
29900,
29962,
334,
3855,
29918,
3445,
13,
4706,
736,
270,
29918,
29887,
630,
13,
13,
1678,
822,
679,
29918,
4905,
29918,
12181,
29918,
1454,
29898,
1311,
29892,
1881,
29918,
845,
11603,
1125,
13,
4706,
736,
1881,
29918,
845,
11603,
29961,
29900,
29962,
13,
13,
1990,
22510,
3047,
3010,
29898,
29931,
29889,
15836,
479,
14420,
1125,
13,
1678,
396,
10970,
29961,
29900,
5387,
350,
334,
405,
334,
29871,
29906,
29928,
13,
1678,
396,
10970,
29961,
29896,
5387,
350,
334,
29871,
29906,
29928,
13,
1678,
822,
679,
29918,
4905,
29918,
1454,
29898,
1311,
29892,
10970,
29892,
3579,
19290,
1125,
13,
4706,
341,
353,
323,
29889,
16175,
287,
29918,
6333,
29898,
2080,
29879,
29961,
29900,
1402,
10970,
29961,
29896,
2314,
13,
4706,
341,
353,
323,
29889,
29876,
1212,
29889,
18816,
29885,
3398,
29898,
29924,
29897,
13,
4706,
270,
29918,
29887,
630,
353,
10970,
29961,
29900,
29962,
334,
341,
29889,
6229,
845,
21897,
3552,
29900,
29892,
29871,
29896,
29892,
525,
29916,
8785,
13,
4706,
736,
270,
29918,
29887,
630,
13,
13,
1678,
822,
679,
29918,
4905,
29918,
12181,
29918,
1454,
29898,
1311,
29892,
1881,
29918,
845,
11603,
1125,
13,
4706,
736,
1881,
29918,
845,
11603,
29961,
29900,
29962,
13,
13,
13,
1990,
13641,
29903,
5897,
14420,
29898,
29931,
29889,
15836,
479,
14420,
1125,
13,
1678,
396,
10970,
29961,
29900,
5387,
350,
334,
660,
334,
29871,
29906,
29928,
313,
29939,
29897,
13,
1678,
396,
10970,
29961,
29896,
5387,
350,
3986,
313,
29939,
29918,
1707,
29897,
13,
13,
1678,
822,
679,
29918,
4905,
29918,
1454,
29898,
1311,
29892,
10970,
29892,
3579,
19290,
1125,
13,
4706,
3855,
29918,
18337,
353,
10970,
29961,
29900,
3816,
29911,
29889,
279,
927,
29898,
2080,
29879,
29961,
29900,
1822,
12181,
29961,
29900,
11724,
10970,
29961,
29896,
29962,
29899,
29896,
29892,
584,
29962,
268,
396,
350,
921,
29871,
29906,
29928,
13,
4706,
736,
3855,
29918,
18337,
13,
13,
1678,
822,
679,
29918,
4905,
29918,
12181,
29918,
1454,
29898,
1311,
29892,
1881,
29918,
845,
11603,
1125,
13,
4706,
736,
313,
2080,
29918,
845,
11603,
29961,
29900,
3816,
29900,
1402,
1881,
29918,
845,
11603,
29961,
29900,
3816,
29906,
2314,
13,
13,
1990,
402,
630,
4165,
2509,
14420,
29898,
29931,
29889,
15836,
479,
14420,
1125,
13,
1678,
396,
10970,
29961,
29900,
5387,
350,
334,
405,
334,
29871,
29906,
29928,
13,
1678,
396,
10970,
29961,
29896,
5387,
405,
334,
29871,
29906,
29928,
13,
13,
1678,
822,
679,
29918,
4905,
29918,
1454,
29898,
1311,
29892,
10970,
29892,
3579,
19290,
1125,
13,
4706,
736,
10970,
29961,
29900,
29962,
334,
10970,
29961,
29896,
1822,
6229,
845,
21897,
29898,
29900,
29892,
525,
29916,
742,
29871,
29896,
29897,
13,
13,
1678,
822,
679,
29918,
4905,
29918,
12181,
29918,
1454,
29898,
1311,
29892,
1881,
29918,
845,
11603,
1125,
13,
4706,
736,
1881,
29918,
845,
11603,
29961,
29900,
29962,
13,
13,
13,
1990,
6212,
2509,
11139,
14420,
29898,
29931,
29889,
15836,
479,
14420,
1125,
13,
1678,
396,
10970,
29961,
29900,
5387,
9853,
334,
7431,
334,
298,
9651,
313,
29881,
29897,
13,
1678,
396,
10970,
29961,
29896,
5387,
9853,
334,
298,
462,
29871,
313,
29939,
29918,
18337,
29897,
13,
1678,
396,
10970,
29961,
29906,
5387,
9853,
334,
7431,
334,
954,
29918,
29883,
392,
268,
313,
29883,
29918,
1707,
29897,
13,
1678,
396,
10970,
29961,
29941,
5387,
9853,
334,
7431,
18884,
313,
29885,
29918,
29883,
29918,
1707,
29897,
13,
13,
1678,
822,
679,
29918,
4905,
29918,
1454,
29898,
1311,
29892,
10970,
29892,
3579,
19290,
1125,
13,
4706,
270,
29939,
353,
323,
29889,
16175,
287,
29918,
6333,
29898,
2080,
29879,
29961,
29900,
1402,
10970,
29961,
29896,
2314,
1678,
396,
350,
921,
7431,
13,
4706,
8570,
353,
323,
29889,
29876,
1212,
29889,
2695,
3317,
29898,
29881,
29939,
29897,
334,
10970,
29961,
29941,
29962,
29871,
396,
350,
921,
7431,
13,
4706,
8570,
353,
8570,
847,
8570,
29889,
2083,
29898,
8990,
29922,
29896,
29892,
3013,
6229,
29879,
29922,
5574,
29897,
13,
4706,
2070,
29879,
353,
323,
29889,
16175,
287,
29918,
6333,
29898,
1131,
2509,
29892,
10970,
29961,
29906,
2314,
396,
350,
921,
954,
29918,
29883,
392,
13,
4706,
2070,
29879,
353,
2070,
29879,
847,
2070,
29879,
29889,
2083,
29898,
8990,
29922,
29896,
29892,
3013,
6229,
29879,
29922,
5574,
29897,
13,
4706,
736,
2070,
29879,
13,
13,
1678,
822,
679,
29918,
4905,
29918,
12181,
29918,
1454,
29898,
1311,
29892,
1881,
29918,
845,
11603,
1125,
13,
4706,
736,
313,
2080,
29918,
845,
11603,
29961,
29906,
3816,
29900,
1402,
1881,
29918,
845,
11603,
29961,
29906,
3816,
29906,
2314,
13,
13,
1753,
5096,
29918,
29878,
15755,
29898,
29880,
29918,
1590,
29892,
301,
29918,
13168,
29892,
954,
29918,
29277,
29892,
954,
29918,
348,
1169,
29892,
13,
795,
4656,
29918,
11303,
3262,
29922,
29896,
29900,
29892,
5768,
449,
29918,
10492,
29922,
29900,
1696,
13,
795,
21000,
381,
29922,
5574,
29892,
13,
795,
871,
29918,
2457,
29918,
8394,
29922,
8824,
29892,
13,
795,
1024,
2433,
742,
13,
795,
364,
15755,
29918,
13148,
29922,
3333,
5889,
29889,
29277,
29889,
29931,
1254,
1988,
2747,
1125,
13,
1678,
9995,
13,
4706,
10292,
2999,
390,
10262,
15359,
29889,
13,
1678,
9995,
13,
13,
1678,
822,
903,
29878,
15755,
29898,
1627,
2935,
29922,
5574,
29892,
1024,
2433,
29374,
13,
4706,
3564,
353,
301,
29918,
1590,
13,
4706,
363,
7546,
297,
3464,
29898,
1949,
29918,
29277,
1125,
13,
9651,
565,
5768,
449,
29918,
10492,
1405,
29871,
29900,
29901,
13,
18884,
3564,
353,
1869,
5889,
29889,
29277,
29889,
15063,
449,
14420,
29898,
11618,
29892,
282,
29922,
8865,
449,
29918,
10492,
29897,
13,
9651,
274,
29918,
6194,
29918,
2457,
29918,
8394,
353,
871,
29918,
2457,
29918,
8394,
322,
313,
13148,
1275,
954,
29918,
29277,
448,
29871,
29896,
29897,
13,
9651,
3564,
353,
364,
15755,
29918,
13148,
29898,
11618,
29892,
954,
29918,
348,
1169,
29892,
13,
462,
18884,
4656,
29918,
11303,
3262,
29922,
5105,
29918,
11303,
3262,
29892,
13,
462,
18884,
11105,
29918,
2080,
29922,
29880,
29918,
13168,
29892,
13,
462,
18884,
871,
29918,
2457,
29918,
8394,
29922,
29883,
29918,
6194,
29918,
2457,
29918,
8394,
29892,
13,
462,
18884,
28953,
29922,
1627,
2935,
29892,
13,
462,
18884,
1024,
29922,
978,
718,
22868,
13148,
29915,
718,
851,
29898,
13148,
718,
29871,
29896,
876,
13,
4706,
736,
3564,
13,
13,
1678,
3564,
353,
903,
29878,
15755,
29898,
5574,
29892,
1024,
29897,
13,
1678,
565,
21000,
381,
29901,
13,
4706,
3564,
353,
1869,
5889,
29889,
29277,
29889,
1168,
4117,
14420,
4197,
11618,
29892,
903,
29878,
15755,
29898,
8824,
29892,
1024,
718,
22868,
1627,
1495,
1402,
9685,
10457,
29896,
29897,
13,
1678,
736,
3564,
13,
13,
13,
1990,
319,
19698,
11426,
292,
14420,
29898,
3333,
5889,
29889,
29277,
29889,
15836,
479,
14420,
1125,
13,
1678,
9995,
13,
4706,
319,
19698,
11565,
292,
29889,
13,
4706,
23235,
29901,
9853,
921,
7431,
921,
298,
13,
1678,
9995,
13,
1678,
822,
4770,
2344,
12035,
1311,
29892,
23235,
29892,
11105,
29918,
2080,
29922,
8516,
29892,
3579,
19290,
1125,
13,
4706,
297,
510,
886,
353,
518,
262,
11506,
29962,
13,
4706,
565,
11105,
29918,
2080,
338,
451,
6213,
29901,
13,
9651,
297,
510,
886,
29889,
4397,
29898,
13168,
29918,
2080,
29897,
13,
4706,
2428,
29898,
29909,
19698,
11426,
292,
14420,
29892,
1583,
467,
1649,
2344,
12035,
262,
510,
886,
29892,
3579,
19290,
29897,
13,
4706,
565,
7431,
29898,
1311,
29889,
2080,
29918,
845,
11603,
29961,
29900,
2314,
2804,
29871,
29941,
29901,
13,
9651,
12020,
7865,
2392,
877,
1552,
8267,
310,
23235,
1818,
367,
263,
29871,
29941,
29899,
5029,
18761,
1495,
13,
13,
1678,
822,
679,
29918,
4905,
29918,
12181,
29918,
1454,
29898,
1311,
29892,
1881,
29918,
845,
11603,
1125,
13,
4706,
736,
1881,
29918,
845,
11603,
29961,
29900,
3816,
13018,
29906,
29962,
718,
1881,
29918,
845,
11603,
29961,
29900,
3816,
29899,
29896,
17531,
13,
13,
1678,
822,
679,
29918,
4905,
29918,
1454,
29898,
1311,
29892,
10970,
29892,
3579,
19290,
1125,
13,
4706,
565,
7431,
29898,
2080,
29879,
29897,
1275,
29871,
29896,
29901,
13,
9651,
396,
11105,
29918,
2080,
338,
6213,
13,
9651,
736,
323,
29889,
12676,
29898,
2080,
29879,
29961,
29900,
1402,
9685,
29922,
29896,
29897,
13,
4706,
1683,
29901,
13,
9651,
396,
10970,
29961,
29900,
5387,
9853,
921,
7431,
921,
298,
13,
9651,
396,
10970,
29961,
29896,
29962,
353,
11105,
29918,
2080,
29901,
9853,
921,
7431,
13,
9651,
736,
313,
29911,
29889,
2083,
29898,
2080,
29879,
29961,
29900,
29962,
334,
10970,
29961,
29896,
1822,
6229,
845,
21897,
29898,
29900,
29892,
29871,
29896,
29892,
525,
29916,
5477,
9685,
29922,
29896,
29897,
847,
13,
462,
1678,
323,
29889,
2083,
29898,
2080,
29879,
29961,
29896,
1402,
9685,
29922,
29896,
467,
6229,
845,
21897,
29898,
29900,
29892,
525,
29916,
8785,
13,
13,
13,
1990,
341,
13208,
4165,
2509,
14420,
29898,
3333,
5889,
29889,
29277,
29889,
15836,
479,
14420,
1125,
13,
1678,
9995,
13,
4706,
530,
341,
13208,
8570,
7546,
29889,
13,
4706,
297,
510,
886,
29961,
29900,
5387,
9853,
921,
7431,
921,
298,
13,
4706,
297,
510,
886,
29961,
29896,
5387,
9853,
921,
298,
13,
4706,
12105,
29901,
1732,
597,
279,
26560,
29889,
990,
29914,
6897,
29914,
29896,
29945,
29900,
29953,
29889,
29900,
29941,
29941,
29946,
29900,
13,
1678,
9995,
13,
1678,
822,
4770,
2344,
12035,
1311,
29892,
297,
510,
886,
29892,
954,
29918,
348,
1169,
29892,
13,
462,
1661,
10660,
537,
29922,
3333,
5889,
29889,
5464,
10660,
1907,
29889,
13161,
29882,
29892,
13,
462,
11105,
29918,
2080,
29922,
8516,
29892,
13,
462,
2069,
29922,
3333,
5889,
29889,
2344,
29889,
2525,
5560,
3285,
3579,
19290,
1125,
13,
4706,
565,
7431,
29898,
262,
510,
886,
29897,
2804,
29871,
29906,
29901,
13,
9651,
12020,
2216,
1888,
2037,
287,
2392,
13,
4706,
565,
11105,
29918,
2080,
338,
451,
6213,
29901,
13,
9651,
297,
510,
886,
29889,
4397,
29898,
13168,
29918,
2080,
29897,
13,
4706,
2428,
29898,
1988,
29925,
4165,
2509,
14420,
29892,
1583,
467,
1649,
2344,
12035,
262,
510,
886,
29892,
3579,
19290,
29897,
13,
4706,
1583,
29889,
5464,
10660,
537,
353,
1661,
10660,
537,
13,
4706,
1583,
29889,
1949,
29918,
348,
1169,
353,
954,
29918,
348,
1169,
13,
4706,
1583,
29889,
29956,
29900,
353,
1583,
29889,
1202,
29918,
3207,
29898,
2344,
29892,
313,
1311,
29889,
1949,
29918,
348,
1169,
29892,
1583,
29889,
1949,
29918,
348,
1169,
511,
1024,
2433,
29956,
29900,
29918,
828,
29886,
1495,
13,
4706,
1583,
29889,
29956,
29896,
353,
1583,
29889,
1202,
29918,
3207,
29898,
2344,
29892,
313,
1311,
29889,
1949,
29918,
348,
1169,
29892,
1583,
29889,
1949,
29918,
348,
1169,
511,
1024,
2433,
29956,
29896,
29918,
828,
29886,
1495,
13,
4706,
1583,
29889,
29956,
29890,
353,
1583,
29889,
1202,
29918,
3207,
29898,
2344,
29892,
313,
1311,
29889,
1949,
29918,
348,
1169,
29892,
10353,
1024,
2433,
29956,
29890,
29918,
828,
29886,
1495,
13,
13,
1678,
822,
679,
29918,
4905,
29918,
12181,
29918,
1454,
29898,
1311,
29892,
1881,
29918,
845,
11603,
1125,
13,
4706,
736,
1881,
29918,
845,
11603,
29961,
29896,
29962,
13,
13,
1678,
822,
679,
29918,
4905,
29918,
1454,
29898,
1311,
29892,
10970,
29892,
3579,
19290,
1125,
13,
4706,
341,
353,
323,
29889,
6333,
29898,
2080,
29879,
29961,
29900,
1402,
1583,
29889,
29956,
29900,
29897,
718,
323,
29889,
6333,
29898,
2080,
29879,
29961,
29896,
1402,
1583,
29889,
29956,
29896,
467,
6229,
845,
21897,
29898,
29900,
29892,
525,
29916,
742,
29871,
29896,
29897,
13,
4706,
341,
353,
1583,
29889,
5464,
10660,
537,
29898,
29924,
29897,
13,
4706,
15595,
353,
323,
29889,
29876,
1212,
29889,
2695,
3317,
29898,
29911,
29889,
6333,
29898,
29924,
29892,
1583,
29889,
29956,
29890,
876,
13,
4706,
565,
7431,
29898,
2080,
29879,
29897,
1275,
29871,
29941,
29901,
13,
9651,
15595,
353,
15595,
334,
10970,
29961,
29906,
29962,
13,
9651,
15595,
353,
15595,
847,
15595,
29889,
2083,
29898,
8990,
29922,
29896,
467,
690,
14443,
3552,
2312,
29889,
12181,
29961,
29900,
1402,
29871,
29896,
876,
13,
4706,
736,
323,
29889,
2083,
29898,
2080,
29879,
29961,
29900,
29962,
334,
15595,
29889,
6229,
845,
21897,
29898,
29900,
29892,
29871,
29896,
29892,
525,
29916,
5477,
9685,
29922,
29896,
29897,
13,
13,
13,
1990,
365,
1477,
14420,
29898,
3333,
5889,
29889,
29277,
29889,
14420,
1125,
13,
1678,
822,
679,
29918,
4905,
29918,
1454,
29898,
1311,
29892,
1881,
29892,
3579,
19290,
1125,
13,
4706,
736,
323,
29889,
4384,
29898,
2080,
29889,
2083,
29898,
8990,
10457,
29896,
511,
525,
524,
29941,
29906,
1495,
13,
13,
1678,
822,
679,
29918,
4905,
29918,
12181,
29918,
1454,
29898,
1311,
29892,
1881,
29918,
12181,
1125,
13,
4706,
736,
1881,
29918,
12181,
7503,
29899,
29896,
29962,
13,
13,
1990,
13641,
29903,
5897,
14420,
29898,
29931,
29889,
15836,
479,
14420,
1125,
13,
1678,
396,
10970,
29961,
29900,
5387,
350,
334,
660,
334,
29871,
29906,
29928,
313,
29939,
29897,
13,
1678,
396,
10970,
29961,
29896,
5387,
350,
3986,
313,
29939,
29918,
1707,
29897,
13,
13,
1678,
822,
679,
29918,
4905,
29918,
1454,
29898,
1311,
29892,
10970,
29892,
3579,
19290,
1125,
13,
4706,
3855,
29918,
18337,
353,
10970,
29961,
29900,
3816,
29911,
29889,
279,
927,
29898,
2080,
29879,
29961,
29900,
1822,
12181,
29961,
29900,
11724,
10970,
29961,
29896,
29962,
448,
29871,
29896,
29892,
584,
29962,
268,
396,
350,
921,
29871,
29906,
29928,
13,
4706,
736,
3855,
29918,
18337,
13,
13,
1678,
822,
679,
29918,
4905,
29918,
12181,
29918,
1454,
29898,
1311,
29892,
1881,
29918,
845,
11603,
1125,
13,
4706,
736,
313,
2080,
29918,
845,
11603,
29961,
29900,
3816,
29900,
1402,
1881,
29918,
845,
11603,
29961,
29900,
3816,
29906,
2314,
13,
13,
1990,
9683,
666,
368,
14420,
29898,
29931,
29889,
15836,
479,
14420,
1125,
13,
1678,
396,
10970,
29961,
29900,
5387,
350,
334,
349,
334,
29871,
29906,
29928,
13,
1678,
396,
10970,
29961,
29896,
5387,
350,
334,
349,
13,
13,
1678,
822,
679,
29918,
4905,
29918,
1454,
29898,
1311,
29892,
10970,
29892,
3579,
19290,
1125,
13,
4706,
736,
323,
29889,
2083,
29898,
2080,
29879,
29961,
29900,
29962,
334,
10970,
29961,
29896,
1822,
6229,
845,
21897,
29898,
29900,
29892,
29871,
29896,
29892,
525,
29916,
5477,
9685,
29922,
29896,
29897,
13,
13,
1678,
822,
679,
29918,
4905,
29918,
12181,
29918,
1454,
29898,
1311,
29892,
1881,
29918,
845,
11603,
1125,
13,
4706,
736,
1881,
29918,
845,
11603,
29961,
29900,
29962,
13,
13,
1990,
20347,
457,
279,
4165,
2509,
14420,
29898,
3333,
5889,
29889,
29277,
29889,
15836,
479,
14420,
1125,
13,
1678,
9995,
13,
4706,
319,
13181,
457,
279,
8570,
7546,
29889,
13,
4706,
297,
510,
886,
29961,
29900,
5387,
9853,
921,
7431,
921,
298,
13,
4706,
297,
510,
886,
29961,
29896,
5387,
9853,
921,
298,
13,
1678,
9995,
13,
1678,
822,
4770,
2344,
12035,
1311,
29892,
297,
510,
886,
29892,
954,
29918,
348,
1169,
29892,
13,
462,
11105,
29918,
2080,
29922,
8516,
29892,
13,
462,
2069,
29922,
3333,
5889,
29889,
2344,
29889,
2525,
5560,
3285,
3579,
19290,
1125,
13,
4706,
565,
7431,
29898,
262,
510,
886,
29897,
2804,
29871,
29906,
29901,
13,
9651,
12020,
2216,
1888,
2037,
287,
2392,
13,
4706,
565,
11105,
29918,
2080,
338,
451,
6213,
29901,
13,
9651,
297,
510,
886,
29889,
4397,
29898,
13168,
29918,
2080,
29897,
13,
4706,
2428,
29898,
29933,
309,
457,
279,
4165,
2509,
14420,
29892,
1583,
467,
1649,
2344,
12035,
262,
510,
886,
29892,
3579,
19290,
29897,
13,
4706,
1583,
29889,
1949,
29918,
348,
1169,
353,
954,
29918,
348,
1169,
13,
4706,
565,
525,
978,
29915,
451,
297,
9049,
5085,
29901,
13,
9651,
1583,
29889,
29956,
353,
1583,
29889,
1202,
29918,
3207,
29898,
2344,
29892,
313,
1311,
29889,
1949,
29918,
348,
1169,
29892,
1583,
29889,
1949,
29918,
348,
1169,
511,
1024,
2433,
29956,
29918,
18152,
457,
279,
1495,
13,
4706,
1683,
29901,
13,
9651,
1583,
29889,
29956,
353,
1583,
29889,
1202,
29918,
3207,
29898,
2344,
29892,
313,
1311,
29889,
1949,
29918,
348,
1169,
29892,
1583,
29889,
1949,
29918,
348,
1169,
511,
1024,
2433,
29956,
29918,
18152,
457,
279,
648,
29913,
4286,
4830,
29898,
19290,
1839,
978,
25901,
13,
13,
13,
1678,
822,
679,
29918,
4905,
29918,
12181,
29918,
1454,
29898,
1311,
29892,
1881,
29918,
845,
11603,
1125,
13,
4706,
736,
1881,
29918,
845,
11603,
29961,
29896,
29962,
13,
13,
1678,
822,
679,
29918,
4905,
29918,
1454,
29898,
1311,
29892,
10970,
29892,
3579,
19290,
1125,
13,
13,
4706,
396,
10970,
29961,
29900,
5387,
9853,
334,
7431,
334,
298,
13,
4706,
396,
10970,
29961,
29896,
5387,
9853,
334,
298,
13,
4706,
396,
399,
29901,
298,
334,
298,
13,
4706,
341,
353,
323,
29889,
6333,
29898,
2080,
29879,
29961,
29896,
1402,
1583,
29889,
29956,
467,
6229,
845,
21897,
29898,
29900,
29892,
525,
29916,
742,
29871,
29896,
29897,
13,
4706,
15595,
353,
323,
29889,
29876,
1212,
29889,
2695,
3317,
29898,
29911,
29889,
2083,
29898,
2080,
29879,
29961,
29900,
29962,
334,
341,
29892,
9685,
29922,
29906,
876,
13,
4706,
565,
7431,
29898,
2080,
29879,
29897,
1275,
29871,
29941,
29901,
13,
9651,
15595,
353,
15595,
334,
10970,
29961,
29906,
29962,
13,
9651,
15595,
353,
15595,
847,
313,
2312,
29889,
2083,
29898,
8990,
29922,
29896,
467,
690,
14443,
3552,
2312,
29889,
12181,
29961,
29900,
1402,
29871,
29896,
876,
718,
29871,
29896,
29872,
29899,
29947,
29897,
334,
10970,
29961,
29906,
29962,
13,
4706,
736,
323,
29889,
2083,
29898,
2080,
29879,
29961,
29900,
29962,
334,
15595,
29889,
6229,
845,
21897,
29898,
29900,
29892,
29871,
29896,
29892,
525,
29916,
5477,
9685,
29922,
29896,
29897,
13,
13,
13,
1990,
20347,
457,
279,
4165,
2509,
9782,
14420,
29898,
3333,
5889,
29889,
29277,
29889,
15836,
479,
14420,
1125,
13,
1678,
9995,
13,
4706,
319,
13181,
457,
279,
8570,
7546,
29889,
13,
4706,
297,
510,
886,
29961,
29900,
5387,
9853,
921,
7431,
921,
298,
13,
4706,
297,
510,
886,
29961,
29896,
5387,
9853,
921,
298,
13,
1678,
9995,
13,
1678,
822,
4770,
2344,
12035,
1311,
29892,
297,
510,
886,
29892,
954,
29918,
348,
1169,
29892,
13,
462,
11105,
29918,
2080,
29922,
8516,
29892,
13,
462,
2069,
29922,
3333,
5889,
29889,
2344,
29889,
2525,
5560,
3285,
3579,
19290,
1125,
13,
4706,
565,
7431,
29898,
262,
510,
886,
29897,
2804,
29871,
29906,
29901,
13,
9651,
12020,
2216,
1888,
2037,
287,
2392,
13,
4706,
565,
11105,
29918,
2080,
338,
451,
6213,
29901,
13,
9651,
297,
510,
886,
29889,
4397,
29898,
13168,
29918,
2080,
29897,
13,
4706,
2428,
29898,
29933,
309,
457,
279,
4165,
2509,
9782,
14420,
29892,
1583,
467,
1649,
2344,
12035,
262,
510,
886,
29892,
3579,
19290,
29897,
13,
4706,
1583,
29889,
1949,
29918,
348,
1169,
353,
954,
29918,
348,
1169,
13,
4706,
565,
525,
978,
29915,
451,
297,
9049,
5085,
29901,
13,
9651,
1583,
29889,
29956,
353,
1583,
29889,
1202,
29918,
3207,
29898,
2344,
29892,
313,
1311,
29889,
1949,
29918,
348,
1169,
29892,
1583,
29889,
1949,
29918,
348,
1169,
511,
1024,
2433,
29956,
29918,
18152,
457,
279,
1495,
13,
4706,
1683,
29901,
13,
9651,
1583,
29889,
29956,
353,
1583,
29889,
1202,
29918,
3207,
29898,
2344,
29892,
313,
1311,
29889,
1949,
29918,
348,
1169,
29892,
1583,
29889,
1949,
29918,
348,
1169,
511,
1024,
2433,
29956,
29918,
18152,
457,
279,
648,
29913,
4286,
4830,
29898,
19290,
1839,
978,
25901,
13,
13,
13,
1678,
822,
679,
29918,
4905,
29918,
12181,
29918,
1454,
29898,
1311,
29892,
1881,
29918,
845,
11603,
1125,
13,
4706,
736,
1881,
29918,
845,
11603,
29961,
29900,
3816,
29901,
29906,
29962,
13,
13,
1678,
822,
679,
29918,
4905,
29918,
1454,
29898,
1311,
29892,
10970,
29892,
3579,
19290,
1125,
13,
13,
4706,
396,
10970,
29961,
29900,
5387,
9853,
334,
7431,
334,
298,
13,
4706,
396,
10970,
29961,
29896,
5387,
9853,
334,
298,
13,
4706,
396,
399,
29901,
298,
334,
298,
13,
4706,
341,
353,
323,
29889,
6333,
29898,
2080,
29879,
29961,
29896,
1402,
1583,
29889,
29956,
467,
6229,
845,
21897,
29898,
29900,
29892,
525,
29916,
742,
29871,
29896,
29897,
13,
4706,
15595,
353,
323,
29889,
29876,
1212,
29889,
2695,
3317,
29898,
29911,
29889,
2083,
29898,
2080,
29879,
29961,
29900,
29962,
334,
341,
29892,
9685,
29922,
29906,
876,
13,
4706,
565,
7431,
29898,
2080,
29879,
29897,
1275,
29871,
29941,
29901,
13,
9651,
15595,
353,
15595,
334,
10970,
29961,
29906,
29962,
13,
9651,
15595,
353,
15595,
847,
313,
2312,
29889,
2083,
29898,
8990,
29922,
29896,
467,
690,
14443,
3552,
2312,
29889,
12181,
29961,
29900,
1402,
29871,
29896,
876,
718,
29871,
29896,
29872,
29899,
29947,
29897,
334,
10970,
29961,
29906,
29962,
13,
4706,
736,
15595,
13,
13,
13,
13,
1990,
20347,
457,
279,
29928,
327,
14420,
29898,
3333,
5889,
29889,
29277,
29889,
15836,
479,
14420,
1125,
13,
1678,
9995,
13,
4706,
319,
13181,
457,
279,
8570,
7546,
29889,
13,
4706,
297,
510,
886,
29961,
29900,
5387,
9853,
921,
7431,
921,
298,
13,
4706,
297,
510,
886,
29961,
29896,
5387,
9853,
921,
298,
13,
1678,
9995,
13,
1678,
822,
4770,
2344,
12035,
1311,
29892,
297,
510,
886,
29892,
954,
29918,
348,
1169,
29892,
13,
462,
11105,
29918,
2080,
29922,
8516,
29892,
13,
462,
2069,
29922,
3333,
5889,
29889,
2344,
29889,
2525,
5560,
3285,
3579,
19290,
1125,
13,
4706,
565,
7431,
29898,
262,
510,
886,
29897,
2804,
29871,
29906,
29901,
13,
9651,
12020,
2216,
1888,
2037,
287,
2392,
13,
4706,
565,
11105,
29918,
2080,
338,
451,
6213,
29901,
13,
9651,
297,
510,
886,
29889,
4397,
29898,
13168,
29918,
2080,
29897,
13,
4706,
2428,
29898,
29933,
309,
457,
279,
29928,
327,
14420,
29892,
1583,
467,
1649,
2344,
12035,
262,
510,
886,
29892,
3579,
19290,
29897,
13,
4706,
1583,
29889,
1949,
29918,
348,
1169,
353,
954,
29918,
348,
1169,
13,
4706,
565,
525,
978,
29915,
451,
297,
9049,
5085,
29901,
13,
9651,
1583,
29889,
29956,
353,
1583,
29889,
1202,
29918,
3207,
29898,
2344,
29892,
313,
1311,
29889,
1949,
29918,
348,
1169,
29892,
1583,
29889,
1949,
29918,
348,
1169,
511,
1024,
2433,
29956,
29918,
18152,
457,
279,
1495,
13,
4706,
1683,
29901,
13,
9651,
1583,
29889,
29956,
353,
1583,
29889,
1202,
29918,
3207,
29898,
2344,
29892,
313,
1311,
29889,
1949,
29918,
348,
1169,
29892,
1583,
29889,
1949,
29918,
348,
1169,
511,
1024,
2433,
29956,
29918,
18152,
457,
279,
648,
29913,
4286,
4830,
29898,
19290,
1839,
978,
25901,
13,
13,
1678,
822,
679,
29918,
4905,
29918,
12181,
29918,
1454,
29898,
1311,
29892,
1881,
29918,
845,
11603,
1125,
13,
4706,
736,
1881,
29918,
845,
11603,
29961,
29900,
3816,
29901,
29906,
29962,
13,
13,
1678,
822,
679,
29918,
4905,
29918,
1454,
29898,
1311,
29892,
10970,
29892,
3579,
19290,
1125,
13,
13,
4706,
396,
10970,
29961,
29900,
5387,
9853,
334,
7431,
334,
298,
13,
4706,
396,
10970,
29961,
29896,
5387,
9853,
334,
298,
13,
4706,
396,
10970,
29961,
29906,
5387,
9853,
334,
7431,
13,
4706,
396,
399,
29901,
298,
334,
298,
13,
4706,
341,
353,
323,
29889,
6333,
29898,
2080,
29879,
29961,
29896,
1402,
1583,
29889,
29956,
467,
6229,
845,
21897,
29898,
29900,
29892,
525,
29916,
742,
29871,
29896,
29897,
396,
16175,
334,
29871,
29896,
334,
298,
13,
4706,
15595,
353,
323,
29889,
29876,
1212,
29889,
2695,
3317,
29898,
29911,
29889,
2083,
29898,
2080,
29879,
29961,
29900,
29962,
334,
341,
29892,
9685,
29922,
29906,
876,
396,
16175,
334,
7431,
13,
4706,
565,
7431,
29898,
2080,
29879,
29897,
1275,
29871,
29941,
29901,
13,
9651,
15595,
353,
15595,
334,
10970,
29961,
29906,
29962,
13,
9651,
15595,
353,
15595,
847,
313,
2312,
29889,
2083,
29898,
8990,
29922,
29896,
467,
690,
14443,
3552,
2312,
29889,
12181,
29961,
29900,
1402,
29871,
29896,
876,
718,
29871,
29896,
29872,
29899,
29947,
29897,
334,
10970,
29961,
29906,
29962,
13,
4706,
736,
15595,
13,
13,
1990,
20347,
457,
279,
29928,
327,
14420,
29911,
6073,
29898,
3333,
5889,
29889,
29277,
29889,
15836,
479,
14420,
1125,
13,
1678,
9995,
13,
4706,
319,
13181,
457,
279,
8570,
7546,
29889,
13,
4706,
297,
510,
886,
29961,
29900,
5387,
9853,
921,
7431,
921,
298,
13,
4706,
297,
510,
886,
29961,
29896,
5387,
9853,
921,
7431,
921,
298,
13,
13,
1678,
9995,
13,
1678,
822,
4770,
2344,
12035,
1311,
29892,
297,
510,
886,
29892,
954,
29918,
348,
1169,
29892,
13,
462,
11105,
29918,
2080,
29922,
8516,
29892,
13,
462,
2069,
29922,
3333,
5889,
29889,
2344,
29889,
2525,
5560,
3285,
3579,
19290,
1125,
13,
4706,
565,
7431,
29898,
262,
510,
886,
29897,
2804,
29871,
29906,
29901,
13,
9651,
12020,
2216,
1888,
2037,
287,
2392,
13,
4706,
565,
11105,
29918,
2080,
338,
451,
6213,
29901,
13,
9651,
297,
510,
886,
29889,
4397,
29898,
13168,
29918,
2080,
29897,
13,
4706,
2428,
29898,
29933,
309,
457,
279,
29928,
327,
14420,
29911,
6073,
29892,
1583,
467,
1649,
2344,
12035,
262,
510,
886,
29892,
3579,
19290,
29897,
13,
4706,
1583,
29889,
1949,
29918,
348,
1169,
353,
954,
29918,
348,
1169,
13,
13,
1678,
822,
679,
29918,
4905,
29918,
12181,
29918,
1454,
29898,
1311,
29892,
1881,
29918,
845,
11603,
1125,
13,
4706,
736,
1881,
29918,
845,
11603,
29961,
29900,
3816,
29901,
29906,
29962,
13,
13,
1678,
822,
679,
29918,
4905,
29918,
1454,
29898,
1311,
29892,
10970,
29892,
3579,
19290,
1125,
13,
4706,
15595,
353,
323,
29889,
29876,
1212,
29889,
2695,
3317,
29898,
29911,
29889,
2083,
29898,
2080,
29879,
29961,
29900,
29962,
334,
10970,
29961,
29896,
1402,
9685,
29922,
29906,
876,
13,
4706,
736,
15595,
13,
13,
1990,
360,
327,
7566,
4165,
2509,
14420,
29898,
3333,
5889,
29889,
29277,
29889,
15836,
479,
14420,
1125,
13,
1678,
9995,
13,
4706,
319,
13181,
457,
279,
8570,
7546,
29889,
13,
4706,
297,
510,
886,
29961,
29900,
5387,
9853,
921,
7431,
921,
298,
13,
4706,
297,
510,
886,
29961,
29896,
5387,
9853,
921,
298,
13,
1678,
9995,
13,
1678,
822,
4770,
2344,
12035,
1311,
29892,
297,
510,
886,
29892,
11105,
29918,
2080,
29922,
8516,
29892,
3579,
19290,
1125,
13,
4706,
565,
7431,
29898,
262,
510,
886,
29897,
2804,
29871,
29906,
29901,
13,
9651,
12020,
2216,
1888,
2037,
287,
2392,
13,
4706,
565,
11105,
29918,
2080,
338,
451,
6213,
29901,
13,
9651,
297,
510,
886,
29889,
4397,
29898,
13168,
29918,
2080,
29897,
13,
4706,
2428,
29898,
29928,
327,
7566,
4165,
2509,
14420,
29892,
1583,
467,
1649,
2344,
12035,
262,
510,
886,
29892,
3579,
19290,
29897,
13,
13,
1678,
822,
679,
29918,
4905,
29918,
12181,
29918,
1454,
29898,
1311,
29892,
1881,
29918,
845,
11603,
1125,
13,
4706,
736,
1881,
29918,
845,
11603,
29961,
29896,
29962,
13,
13,
1678,
822,
679,
29918,
4905,
29918,
1454,
29898,
1311,
29892,
10970,
29892,
3579,
19290,
1125,
13,
13,
4706,
396,
10970,
29961,
29900,
5387,
9853,
334,
7431,
334,
298,
13,
4706,
396,
10970,
29961,
29896,
5387,
9853,
334,
298,
13,
4706,
396,
11105,
29918,
2080,
313,
361,
738,
1125,
9853,
334,
7431,
13,
13,
4706,
15595,
353,
323,
29889,
29876,
1212,
29889,
2695,
3317,
29898,
29911,
29889,
2083,
29898,
2080,
29879,
29961,
29900,
29962,
334,
10970,
29961,
29896,
1822,
6229,
845,
21897,
29898,
29900,
29892,
525,
29916,
742,
29871,
29896,
511,
9685,
29922,
29906,
876,
13,
4706,
565,
7431,
29898,
2080,
29879,
29897,
1275,
29871,
29941,
29901,
13,
9651,
15595,
353,
15595,
334,
10970,
29961,
29906,
29962,
13,
9651,
15595,
353,
15595,
847,
15595,
29889,
2083,
29898,
8990,
29922,
29896,
467,
690,
14443,
3552,
2312,
29889,
12181,
29961,
29900,
1402,
29871,
29896,
876,
13,
4706,
736,
323,
29889,
2083,
29898,
2080,
29879,
29961,
29900,
29962,
334,
15595,
29889,
6229,
845,
21897,
29898,
29900,
29892,
29871,
29896,
29892,
525,
29916,
5477,
9685,
29922,
29896,
29897,
13,
2
] |
tmach/tmach_def.py | cbchoi/tmach | 0 | 120132 | from enum import Enum, auto
class StrEnum(Enum):
def _generate_next_value(name, start, count, last_values):
return name
def __repr__(self):
return self.name
def __str__(self):
return self.name
class RegRegOpcode(StrEnum):
HALT = auto()
IN = auto()
OUT = auto()
ADD = auto()
SUB = auto()
MUL = auto()
DIV = auto()
UNK = auto()
class RegMemOpcode(StrEnum):
LD = auto()
ST = auto()
class RegValOpcode(StrEnum):
LDA = auto()
LDC = auto()
JLT = auto()
JLE = auto()
JGT = auto()
JGE = auto()
JEQ = auto()
JNE = auto()
class Instruction(object):
def __init__(self, opcode = RegRegOpcode.UNK, arg1=-1, arg2=-1, arg3=-1):
self.opcode = opcode
self.arg1 = arg1
self.arg2 = arg2
self.arg3 = arg3
class StepResult(StrEnum):
OKAY = auto()
HALT = auto()
IMEM_ERR = auto()
DMEM_ERR = auto()
DIV_ZERO = auto()
INPUT_ERR = auto() | [
1,
515,
14115,
1053,
1174,
398,
29892,
4469,
13,
13,
1990,
3767,
16854,
29898,
16854,
1125,
13,
12,
1753,
903,
17158,
29918,
4622,
29918,
1767,
29898,
978,
29892,
1369,
29892,
2302,
29892,
1833,
29918,
5975,
1125,
13,
12,
12,
2457,
1024,
13,
13,
12,
1753,
4770,
276,
558,
12035,
1311,
1125,
13,
12,
12,
2457,
1583,
29889,
978,
13,
13,
12,
1753,
4770,
710,
12035,
1311,
1125,
13,
12,
12,
2457,
1583,
29889,
978,
13,
13,
13,
1990,
2169,
4597,
11746,
401,
29898,
5015,
16854,
1125,
13,
12,
29950,
1964,
29911,
353,
4469,
580,
13,
12,
1177,
353,
4469,
580,
13,
12,
12015,
353,
4469,
580,
13,
12,
17744,
353,
4469,
580,
13,
12,
20633,
353,
4469,
580,
13,
12,
29924,
13309,
353,
4469,
580,
13,
12,
4571,
29963,
353,
4469,
580,
13,
12,
3904,
29968,
353,
4469,
580,
13,
13,
1990,
2169,
11442,
11746,
401,
29898,
5015,
16854,
1125,
13,
12,
10249,
353,
4469,
580,
13,
12,
1254,
353,
4469,
580,
13,
13,
13,
1990,
2169,
1440,
11746,
401,
29898,
5015,
16854,
1125,
13,
12,
29931,
7698,
353,
4469,
580,
13,
12,
10249,
29907,
353,
4469,
580,
13,
12,
29967,
5850,
353,
4469,
580,
13,
12,
29967,
1307,
353,
4469,
580,
13,
12,
29967,
23799,
353,
4469,
580,
13,
12,
29967,
1692,
353,
4469,
580,
13,
12,
29967,
28879,
353,
4469,
580,
13,
12,
29967,
8186,
353,
4469,
580,
13,
13,
1990,
2799,
4080,
29898,
3318,
1125,
13,
12,
1753,
4770,
2344,
12035,
1311,
29892,
1015,
401,
353,
2169,
4597,
11746,
401,
29889,
3904,
29968,
29892,
1852,
29896,
10457,
29896,
29892,
1852,
29906,
10457,
29896,
29892,
1852,
29941,
10457,
29896,
1125,
13,
12,
12,
1311,
29889,
459,
401,
353,
1015,
401,
13,
12,
12,
1311,
29889,
1191,
29896,
353,
1852,
29896,
13,
12,
12,
1311,
29889,
1191,
29906,
353,
1852,
29906,
13,
12,
12,
1311,
29889,
1191,
29941,
353,
1852,
29941,
13,
13,
1990,
16696,
3591,
29898,
5015,
16854,
1125,
13,
12,
8949,
29909,
29979,
353,
4469,
580,
13,
12,
29950,
1964,
29911,
353,
4469,
580,
13,
12,
8890,
29924,
29918,
21662,
353,
4469,
580,
13,
12,
29928,
2303,
29924,
29918,
21662,
353,
4469,
580,
13,
12,
4571,
29963,
29918,
29999,
1001,
29949,
353,
4469,
580,
13,
12,
1177,
12336,
29918,
21662,
353,
4469,
580,
2
] |
tests/transformers/test_uniqueness.py | vishalbelsare/tsfuse | 23 | 72718 | import numpy as np
from tsfuse.transformers.uniqueness import *
from tsfuse.data import Collection
def test_has_duplicate_true():
x = Collection.from_array([1, 2, 3, 3])
actual = HasDuplicate().transform(x).values
np.testing.assert_equal(actual, True)
def test_has_duplicate_false():
x = Collection.from_array([1, 2, 3, 4])
actual = HasDuplicate().transform(x).values
np.testing.assert_equal(actual, False)
def test_has_duplicate_min_true():
x = Collection.from_array([1, 1, 2, 3])
actual = HasDuplicateMin().transform(x).values
np.testing.assert_equal(actual, True)
def test_has_duplicate_min_false():
x = Collection.from_array([2, 3, 4, 4])
actual = HasDuplicateMin().transform(x).values
np.testing.assert_equal(actual, False)
def test_has_duplicate_max_true():
x = Collection.from_array([2, 3, 4, 4])
actual = HasDuplicateMax().transform(x).values
np.testing.assert_equal(actual, True)
def test_has_duplicate_max_false():
x = Collection.from_array([1, 1, 2, 3])
actual = HasDuplicateMax().transform(x).values
np.testing.assert_equal(actual, False)
def test_has_duplicate_empty():
x = Collection.from_array([np.nan])
actual = HasDuplicate().transform(x).values
np.testing.assert_equal(actual, False)
def test_number_of_unique_values_rel():
x = Collection.from_array([1, 2, 3, 4])
actual = NumberUniqueValues(rel=True).transform(x).values
np.testing.assert_equal(actual, 1.0)
def test_number_of_unique_values_abs():
x = Collection.from_array([1, 2, 3, 4])
actual = NumberUniqueValues(rel=False).transform(x).values
np.testing.assert_equal(actual, 4)
def test_number_of_unique_values_1_rel():
x = Collection.from_array([2, 2, 2, 2])
actual = NumberUniqueValues(rel=True).transform(x).values
np.testing.assert_equal(actual, 0.25)
def test_number_of_unique_values_1_abs():
x = Collection.from_array([2, 2, 2, 2])
actual = NumberUniqueValues(rel=False).transform(x).values
np.testing.assert_equal(actual, 1)
def test_number_of_unique_values_0_rel():
x = Collection.from_array([np.nan])
actual = NumberUniqueValues(rel=True).transform(x).values
np.testing.assert_equal(actual, np.nan)
def test_number_of_unique_values_0_abs():
x = Collection.from_array([np.nan])
actual = NumberUniqueValues(rel=False).transform(x).values
np.testing.assert_equal(actual, np.nan)
def test_sum_of_reoccurring_data_poins():
x = Collection.from_array([1, 1, 2, 3, 3, 4])
actual = SumReoccurringDataPoints().transform(x).values
np.testing.assert_equal(actual, 8)
def test_sum_of_reoccurring_data_points_0():
x = Collection.from_array([1, 2, 3, 4])
actual = SumReoccurringDataPoints().transform(x).values
np.testing.assert_equal(actual, 0)
def test_sum_of_reoccurring_values():
x = Collection.from_array([1, 1, 2, 3, 3, 4])
actual = SumReoccurringValues().transform(x).values
np.testing.assert_equal(actual, 4)
def test_sum_of_reoccurring_values_0():
x = Collection.from_array([1, 2, 3, 4])
actual = SumReoccurringValues().transform(x).values
np.testing.assert_equal(actual, 0)
| [
1,
1053,
12655,
408,
7442,
13,
13,
3166,
260,
4668,
1509,
29889,
9067,
414,
29889,
3909,
339,
18543,
1053,
334,
13,
3166,
260,
4668,
1509,
29889,
1272,
1053,
14348,
13,
13,
13,
1753,
1243,
29918,
5349,
29918,
20908,
5926,
29918,
3009,
7295,
13,
1678,
921,
353,
14348,
29889,
3166,
29918,
2378,
4197,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29941,
2314,
13,
1678,
3935,
353,
11699,
29928,
786,
5926,
2141,
9067,
29898,
29916,
467,
5975,
13,
1678,
7442,
29889,
13424,
29889,
9294,
29918,
11745,
29898,
19304,
29892,
5852,
29897,
13,
13,
13,
1753,
1243,
29918,
5349,
29918,
20908,
5926,
29918,
4541,
7295,
13,
1678,
921,
353,
14348,
29889,
3166,
29918,
2378,
4197,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
2314,
13,
1678,
3935,
353,
11699,
29928,
786,
5926,
2141,
9067,
29898,
29916,
467,
5975,
13,
1678,
7442,
29889,
13424,
29889,
9294,
29918,
11745,
29898,
19304,
29892,
7700,
29897,
13,
13,
13,
1753,
1243,
29918,
5349,
29918,
20908,
5926,
29918,
1195,
29918,
3009,
7295,
13,
1678,
921,
353,
14348,
29889,
3166,
29918,
2378,
4197,
29896,
29892,
29871,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
2314,
13,
1678,
3935,
353,
11699,
29928,
786,
5926,
8140,
2141,
9067,
29898,
29916,
467,
5975,
13,
1678,
7442,
29889,
13424,
29889,
9294,
29918,
11745,
29898,
19304,
29892,
5852,
29897,
13,
13,
13,
1753,
1243,
29918,
5349,
29918,
20908,
5926,
29918,
1195,
29918,
4541,
7295,
13,
1678,
921,
353,
14348,
29889,
3166,
29918,
2378,
4197,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29946,
2314,
13,
1678,
3935,
353,
11699,
29928,
786,
5926,
8140,
2141,
9067,
29898,
29916,
467,
5975,
13,
1678,
7442,
29889,
13424,
29889,
9294,
29918,
11745,
29898,
19304,
29892,
7700,
29897,
13,
13,
13,
1753,
1243,
29918,
5349,
29918,
20908,
5926,
29918,
3317,
29918,
3009,
7295,
13,
1678,
921,
353,
14348,
29889,
3166,
29918,
2378,
4197,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
29892,
29871,
29946,
2314,
13,
1678,
3935,
353,
11699,
29928,
786,
5926,
7976,
2141,
9067,
29898,
29916,
467,
5975,
13,
1678,
7442,
29889,
13424,
29889,
9294,
29918,
11745,
29898,
19304,
29892,
5852,
29897,
13,
13,
13,
1753,
1243,
29918,
5349,
29918,
20908,
5926,
29918,
3317,
29918,
4541,
7295,
13,
1678,
921,
353,
14348,
29889,
3166,
29918,
2378,
4197,
29896,
29892,
29871,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
2314,
13,
1678,
3935,
353,
11699,
29928,
786,
5926,
7976,
2141,
9067,
29898,
29916,
467,
5975,
13,
1678,
7442,
29889,
13424,
29889,
9294,
29918,
11745,
29898,
19304,
29892,
7700,
29897,
13,
13,
13,
1753,
1243,
29918,
5349,
29918,
20908,
5926,
29918,
6310,
7295,
13,
1678,
921,
353,
14348,
29889,
3166,
29918,
2378,
4197,
9302,
29889,
13707,
2314,
13,
1678,
3935,
353,
11699,
29928,
786,
5926,
2141,
9067,
29898,
29916,
467,
5975,
13,
1678,
7442,
29889,
13424,
29889,
9294,
29918,
11745,
29898,
19304,
29892,
7700,
29897,
13,
13,
13,
1753,
1243,
29918,
4537,
29918,
974,
29918,
13092,
29918,
5975,
29918,
2674,
7295,
13,
1678,
921,
353,
14348,
29889,
3166,
29918,
2378,
4197,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
2314,
13,
1678,
3935,
353,
9681,
8110,
802,
9065,
29898,
2674,
29922,
5574,
467,
9067,
29898,
29916,
467,
5975,
13,
1678,
7442,
29889,
13424,
29889,
9294,
29918,
11745,
29898,
19304,
29892,
29871,
29896,
29889,
29900,
29897,
13,
13,
13,
1753,
1243,
29918,
4537,
29918,
974,
29918,
13092,
29918,
5975,
29918,
6897,
7295,
13,
1678,
921,
353,
14348,
29889,
3166,
29918,
2378,
4197,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
2314,
13,
1678,
3935,
353,
9681,
8110,
802,
9065,
29898,
2674,
29922,
8824,
467,
9067,
29898,
29916,
467,
5975,
13,
1678,
7442,
29889,
13424,
29889,
9294,
29918,
11745,
29898,
19304,
29892,
29871,
29946,
29897,
13,
13,
13,
1753,
1243,
29918,
4537,
29918,
974,
29918,
13092,
29918,
5975,
29918,
29896,
29918,
2674,
7295,
13,
1678,
921,
353,
14348,
29889,
3166,
29918,
2378,
4197,
29906,
29892,
29871,
29906,
29892,
29871,
29906,
29892,
29871,
29906,
2314,
13,
1678,
3935,
353,
9681,
8110,
802,
9065,
29898,
2674,
29922,
5574,
467,
9067,
29898,
29916,
467,
5975,
13,
1678,
7442,
29889,
13424,
29889,
9294,
29918,
11745,
29898,
19304,
29892,
29871,
29900,
29889,
29906,
29945,
29897,
13,
13,
13,
1753,
1243,
29918,
4537,
29918,
974,
29918,
13092,
29918,
5975,
29918,
29896,
29918,
6897,
7295,
13,
1678,
921,
353,
14348,
29889,
3166,
29918,
2378,
4197,
29906,
29892,
29871,
29906,
29892,
29871,
29906,
29892,
29871,
29906,
2314,
13,
1678,
3935,
353,
9681,
8110,
802,
9065,
29898,
2674,
29922,
8824,
467,
9067,
29898,
29916,
467,
5975,
13,
1678,
7442,
29889,
13424,
29889,
9294,
29918,
11745,
29898,
19304,
29892,
29871,
29896,
29897,
13,
13,
13,
1753,
1243,
29918,
4537,
29918,
974,
29918,
13092,
29918,
5975,
29918,
29900,
29918,
2674,
7295,
13,
1678,
921,
353,
14348,
29889,
3166,
29918,
2378,
4197,
9302,
29889,
13707,
2314,
13,
1678,
3935,
353,
9681,
8110,
802,
9065,
29898,
2674,
29922,
5574,
467,
9067,
29898,
29916,
467,
5975,
13,
1678,
7442,
29889,
13424,
29889,
9294,
29918,
11745,
29898,
19304,
29892,
7442,
29889,
13707,
29897,
13,
13,
13,
1753,
1243,
29918,
4537,
29918,
974,
29918,
13092,
29918,
5975,
29918,
29900,
29918,
6897,
7295,
13,
1678,
921,
353,
14348,
29889,
3166,
29918,
2378,
4197,
9302,
29889,
13707,
2314,
13,
1678,
3935,
353,
9681,
8110,
802,
9065,
29898,
2674,
29922,
8824,
467,
9067,
29898,
29916,
467,
5975,
13,
1678,
7442,
29889,
13424,
29889,
9294,
29918,
11745,
29898,
19304,
29892,
7442,
29889,
13707,
29897,
13,
13,
13,
1753,
1243,
29918,
2083,
29918,
974,
29918,
276,
15693,
1038,
292,
29918,
1272,
29918,
1129,
1144,
7295,
13,
1678,
921,
353,
14348,
29889,
3166,
29918,
2378,
4197,
29896,
29892,
29871,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29941,
29892,
29871,
29946,
2314,
13,
1678,
3935,
353,
6991,
1123,
15693,
1038,
292,
1469,
20325,
2141,
9067,
29898,
29916,
467,
5975,
13,
1678,
7442,
29889,
13424,
29889,
9294,
29918,
11745,
29898,
19304,
29892,
29871,
29947,
29897,
13,
13,
13,
1753,
1243,
29918,
2083,
29918,
974,
29918,
276,
15693,
1038,
292,
29918,
1272,
29918,
9748,
29918,
29900,
7295,
13,
1678,
921,
353,
14348,
29889,
3166,
29918,
2378,
4197,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
2314,
13,
1678,
3935,
353,
6991,
1123,
15693,
1038,
292,
1469,
20325,
2141,
9067,
29898,
29916,
467,
5975,
13,
1678,
7442,
29889,
13424,
29889,
9294,
29918,
11745,
29898,
19304,
29892,
29871,
29900,
29897,
13,
13,
13,
1753,
1243,
29918,
2083,
29918,
974,
29918,
276,
15693,
1038,
292,
29918,
5975,
7295,
13,
1678,
921,
353,
14348,
29889,
3166,
29918,
2378,
4197,
29896,
29892,
29871,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29941,
29892,
29871,
29946,
2314,
13,
1678,
3935,
353,
6991,
1123,
15693,
1038,
292,
9065,
2141,
9067,
29898,
29916,
467,
5975,
13,
1678,
7442,
29889,
13424,
29889,
9294,
29918,
11745,
29898,
19304,
29892,
29871,
29946,
29897,
13,
13,
13,
1753,
1243,
29918,
2083,
29918,
974,
29918,
276,
15693,
1038,
292,
29918,
5975,
29918,
29900,
7295,
13,
1678,
921,
353,
14348,
29889,
3166,
29918,
2378,
4197,
29896,
29892,
29871,
29906,
29892,
29871,
29941,
29892,
29871,
29946,
2314,
13,
1678,
3935,
353,
6991,
1123,
15693,
1038,
292,
9065,
2141,
9067,
29898,
29916,
467,
5975,
13,
1678,
7442,
29889,
13424,
29889,
9294,
29918,
11745,
29898,
19304,
29892,
29871,
29900,
29897,
13,
2
] |
app.py | victorcesc/sistema-gerador-avaliacoes | 0 | 133028 | <reponame>victorcesc/sistema-gerador-avaliacoes
import random
from flask import render_template, flash, request
from flask_bootstrap import Bootstrap
from flask_nav import Nav
from flask_nav.elements import Navbar, View, Subgroup, Link
from werkzeug.utils import redirect
from forms import *
from models import *
boostrap = Bootstrap(app) # isso habilita o template bootstrap/base.html
nav = Nav()
nav.init_app(app) # isso habilita a criação de menus de navegação do pacote Flask-Nav
@nav.navigation()
def meunavbar():
menu = Navbar('Minha aplicação')
menu.items = [View('Home', 'inicio')]
if session.get('logged_in') is True:
menu.items.append(Subgroup('Disciplina', View('Cadastro de Disciplina', 'cadastroDisciplina'), View('Listar Disciplina', 'listarDisciplina')))
menu.items.append(Subgroup('Assunto', View('Cadastro de Assuntos', 'cadastroAssunto'), View('Listar Assuntos', 'listarAssunto')))
menu.items.append(Subgroup('Questoes', View('Cadastro de Questoes', 'cadastroQuestao'), View('Listar Questoes', 'listarQuestao')))
menu.items.append(Subgroup('Alternativas', View('Cadastro de Alternativas', 'cadastroAlternativa'), View('Listar Alternativas', 'listarAlternativa')))
menu.items.append(Subgroup('Avaliacoes', View('Cadastro de Avaliacoes', 'cadastroAvaliacao'), View('Listar Avaliacoes', 'listarAvaliacao')))
menu.items.append(View('Sair','sair'))
else:
menu.items.append(View('Login', 'autenticar'))
menu.items.append(View('Registrar','cadastro'))
menu.items.append(Link('Ajuda','https://www.google.com'))
return menu
@app.route('/registro', methods=['GET', 'POST'])
def cadastro():
form = CadastroForm()
if form.validate_on_submit():
usuarioLogin = form.username.data
usuarioPassword = form.password.data
if Usuario.query.filter_by(login=form.username.data).first() != None:
flash("O username {} já existe, digite outro".format(usuarioLogin), 'error')
else:
novo_usuario = Usuario(login=usuarioLogin, senha=usuarioPassword)
db.session.add(novo_usuario)
db.session.commit()
flash('Usuário {} criado com sucesso'.format(usuarioLogin))
return render_template('index.html', title="Usuário registrado")
else:
return render_template('registro.html', title='Cadastro de usuário', form=form)
@app.route('/login', methods=['GET', 'POST'])
def autenticar():
form = LoginForm()
if form.validate_on_submit():
# Veja mais em: http://flask-sqlalchemy.pocoo.org/2.3/queries/#querying-records
usuario = Usuario.query.filter_by(login=form.username.data).first_or_404()
if (usuario.check_password(form.password.data)):
session['logged_in'] = True
session['idUsuario'] = usuario.get_idUsuario()
flash('Bem vindo {}'.format(usuario.login))
return render_template('autenticado.html', title="Usuário autenticado",usuario=usuario.get_idUsuario())
else:
flash('Usuário ou senha inválidos')
return render_template('login.html', title='Autenticação de usuários', form=form)
else:
return render_template('login.html', title='Autenticação de usuários', form=form)
#<EMAIL>('/disciplina')
#def cadastrarDisciplina():
@app.route('/cadastroDisciplina',methods=['GET','POST'])
def cadastroDisciplina():
form = CadastroDisciplinaForm()
if form.validate_on_submit():
nomeDisciplina = form.nomeDisciplina.data
if Disciplina.query.filter_by(nomeDisciplina=nomeDisciplina,idUsuario=session.get('idUsuario'),statusDisc='ativo').first() != None:
flash('A disciplina {} ja existe, digite outra'.format(nomeDisciplina),'error')
return render_template('registro.html',title='Cadastro Disciplina',form=form)
else:
nova_disciplina = Disciplina(nomeDisciplina=nomeDisciplina)
db.session.add(nova_disciplina)
db.session.commit()
flash('Disciplina {} criada com sucesso'.format(nomeDisciplina))
return render_template('registro.html',title='Cadastro Disciplina',form=form)
return render_template('registro.html', title='Cadastro de disciplina', form=form)
@app.route('/listarDisciplina',methods=['GET','POST'])
def listarDisciplina():
listaD = Disciplina.query.filter_by(idUsuario=session.get('idUsuario'), statusDisc='ativo').all()
listadF = [(Disciplina.idDisciplina, Disciplina.nomeDisciplina) for Disciplina in listaD]
form = ListarDisciplinasForm()
form.disciplinas.choices = listadF
if form.disciplinas.data != None:
if form.submitExcluir.data:
idDisciplina = form.disciplinas.data
disciplina = Disciplina.query.filter_by(idDisciplina=idDisciplina, statusDisc='ativo').first()
disciplina.desativarDisciplina()
db.session.commit()
flash('Disciplina excluida com sucesso')
return render_template('listarDisciplina.html', title='Listar Disciplinas', form=form)
if form.submitEditar.data:
idDisciplina = form.disciplinas.data
return redirect(url_for('editarDisciplina', idDisciplina=idDisciplina))
return render_template('listarDisciplina.html', title='Listar Disciplinas', form=form)
@app.route('/editarDisciplina', methods=['GET', 'POST'])
def editarDisciplina():
if session.get('logged_in') is False:
return inicio()
idDisciplina = str(request.args.get('idDisciplina'))
disciplina = Disciplina.query.filter_by(idDisciplina=idDisciplina).first()
if disciplina is None:
flash('Selecione uma disciplina')
return redirect(url_for('listarDisciplina'))
form = EditarDisciplinaForm(nomeDisciplina=disciplina.get_nomeDisciplina())
if request.method == 'GET':
# pegar o id da pessoa via GET (parâmetro id na URL)
if int(disciplina.get_idUsuario()) != session['idUsuario']:
return inicio()
if disciplina is None:
return redirect(url_for('listarDisciplinas'))
return render_template('editar.html', title='Editar disciplina', form=form, disciplina=disciplina)
else:
novaDisciplina = form.novaDisciplina.data
if novaDisciplina == disciplina.get_nomeDisciplina():
flash("Digite um nome diferente pra disciplina", 'error')
return render_template('editar.html', title='Editar disciplina', form=form, disciplina=disciplina)
else:
if Disciplina.query.filter_by(nomeDisciplina=novaDisciplina,statusDisc='ativo',
idUsuario=session.get('idUsuario')).first() != None:
flash("A disciplina {} já existe".format(novaDisciplina), 'error')
return render_template('editar.html', title='Editar disciplina', form=form, disciplina=disciplina)
disciplina.set_nomeDisciplina(novaDisciplina)
db.session.commit()
flash("Disciplina alterada com sucesso!")
return render_template('editar.html', title='Editar disciplina', form=form, disciplina=disciplina)
@app.route('/cadastroAssunto',methods=['GET', 'POST'])
def cadastroAssunto():
listaD = Disciplina.query.filter_by(idUsuario=session.get('idUsuario'), statusDisc='ativo').all()
listadF = [(Disciplina.idDisciplina , Disciplina.nomeDisciplina) for Disciplina in listaD]
form = CadastroAssuntoForm()
form.disciplinas.choices = listadF
if form.validate_on_submit():
nomeAssunto = form.nomeAssunto.data
idDisciplina = form.disciplinas.data
if Assunto.query.filter_by(nomeAssunto=nomeAssunto,statusAss='ativo',idDisciplina=idDisciplina).first()!=None:
flash('O assunto {} para a disciplina selecionada ja existe, digite outro'.format(nomeAssunto), 'error')
return render_template('cadastroAssunto.html',title='Cadastro de Assunto',disciplinas=listaD,form=form)
else:
novo_assunto = Assunto(nomeAssunto=nomeAssunto,idDisciplina=idDisciplina)
db.session.add(novo_assunto)
db.session.commit()
flash('Assunto {} criado com sucesso'.format(form.nomeAssunto.data))
return render_template('cadastroAssunto.html', title='Cadastro de Assunto', disciplinas=listaD, form=form)
return render_template('cadastroAssunto.html', title='Cadastro de Assunto', disciplinas=listaD,form=form)
@app.route('/listarAssunto',methods=['GET','POST'])
def listarAssunto():
listaD = Disciplina.query.filter_by(idUsuario=session.get('idUsuario'), statusDisc='ativo').all()
listadF = [(Disciplina.idDisciplina, Disciplina.nomeDisciplina) for Disciplina in listaD]
form = ListarAssuntoForm()
form.disciplinas.choices = listadF
idDisciplina = form.disciplinas.data
listaA = Assunto.query.filter_by(idDisciplina=idDisciplina, statusAss='ativo').all()
listaAf = [(Assunto.idAssunto, Assunto.nomeAssunto) for Assunto in listaA]
form.assuntos.choices = listaAf
if form.validate_on_submit():
if form.submit2.data and form.assuntos.choices!=None:
idAssunto = form.assuntos.data
assunto = Assunto.query.filter_by(idAssunto=idAssunto,statusAss='ativo').first()
assunto.desativarAssunto()
db.session.commit()
flash("Assunto excluído com sucesso!")
return redirect(url_for('listarAssunto'))
if form.submit3.data and form.assuntos.choices!=None:
idAssunto = form.assuntos.data
return redirect(url_for('editarAssunto',idAssunto=idAssunto))
return render_template('listarAssunto.html',nomeColuna= 'Assuntos',title='Listar Assuntos',form=form)
@app.route('/editarAssunto',methods=['GET','POST'])
def editarAssunto():
if session.get('logged_in') is False:
return inicio()
idAssunto = str(request.args.get('idAssunto'))
assunto = Assunto.query.filter_by(idAssunto=idAssunto).first()
form = EditarAssuntoForm(nomeAssunto=assunto.get_nomeAssunto())
if request.method == 'GET':
# pegar o id da pessoa via GET (parâmetro id na URL)
if assunto is None:
return redirect(url_for('listarAssuntos'))
return render_template('editarAssunto.html', title='Editar assunto', form=form)
else:
novoAssunto = form.novoAssunto.data
if novoAssunto == assunto.get_nomeAssunto():
flash("Digite um nome diferente pro Assunto", 'error')
return render_template('editarAssunto.html',title='Editar Assunto',form=form)
else:
if Assunto.query.filter_by(nomeAssunto=novoAssunto,statusAss='ativo',idDisciplina=assunto.idDisciplina).first() != None:
flash("O assunto {} já existe".format(novoAssunto), 'error')
return render_template('editarAssunto.html', title='Editar Assunto', form=form)
assunto.set_nomeAssunto(novoAssunto)
db.session.commit()
flash("Assunto alterado com sucesso!")
return render_template('editarAssunto.html', title='Editar Assunto', form=form)
@app.route('/cadastroQuestao',methods=['GET','POST'])
def cadastroQuestao():
listaD = Disciplina.query.filter_by(idUsuario=session.get('idUsuario'), statusDisc='ativo').all()
listadF = [(Disciplina.idDisciplina, Disciplina.nomeDisciplina) for Disciplina in listaD]
form = CadastroQuestaoForm()
form.disciplinas.choices = listadF
idDisciplina = form.disciplinas.data
listaA = Assunto.query.filter_by(idDisciplina=idDisciplina, statusAss='ativo').all()
listaAf = [(Assunto.idAssunto, Assunto.nomeAssunto) for Assunto in listaA]
form.assuntos.choices = listaAf
idAssunto = form.assuntos.data
if form.submitCadastro.data:
if form.pergunta.data!='' and form.resposta.data!='' and idAssunto!=None:
pergunta = form.pergunta.data
resposta = form.resposta.data
tipo = form.tipo.data
if Questao.query.filter_by(idAssunto=idAssunto,pergunta=pergunta,resposta=resposta,tipo=tipo,statusQ='ativo').first()!=None:
flash('A questao {} ja existe'.format(pergunta))
return render_template('cadastroQuestao.html',title='Cadastro de Questao',form=form)
else:
nova_questao = Questao(idAssunto=idAssunto,pergunta=pergunta,resposta=resposta,tipo=tipo,vezesUsada=0,statusQ='ativo')
db.session.add(nova_questao)
db.session.commit()
flash('Questao " {} " cadastrada com sucesso'.format(nova_questao.get_pergunta()))
return render_template('cadastroQuestao.html',title='Cadastro de Questao',form=form)
else:
flash('Preencha todos os campos!')
return render_template('cadastroQuestao.html',title='Cadastro de Questao',form=form)
return render_template('cadastroQuestao.html',title='Cadastro de Questao',form=form)
@app.route('/listarQuestao',methods=['GET','POST'])
def listarQuestao():
listaD = Disciplina.query.filter_by(idUsuario=session.get('idUsuario'), statusDisc='ativo').all()
listadF = [(Disciplina.idDisciplina, Disciplina.nomeDisciplina) for Disciplina in listaD]
form = ListarQuestaoForm()
form.disciplinas.choices = listadF
idDisciplina = form.disciplinas.data
listaA = Assunto.query.filter_by(idDisciplina=idDisciplina, statusAss='ativo').all()
listaAf = [(Assunto.idAssunto, Assunto.nomeAssunto) for Assunto in listaA]
form.assuntos.choices = listaAf
idAssunto = form.assuntos.data
listaQ = Questao.query.filter_by(idAssunto=idAssunto,statusQ='ativo').all()
listaQf = [(Questao.idQuestao,Questao.pergunta) for Questao in listaQ]
form.questoes.choices = listaQf
if form.questoes.data!=None:
if form.submitExcluir.data:
idQuestao = form.questoes.data
questao = Questao.query.filter_by(idQuestao=idQuestao, statusQ='ativo').first()
questao.desativarQuestao()
db.session.commit()
flash('Questao excluida com sucesso')
return render_template('listarQuestao.html', title='Listar Questoes', form=form)
if form.submitEditar.data:
idQuestao = form.questoes.data
return redirect(url_for('editarQuestao', idQuestao=idQuestao))
return render_template('listarQuestao.html', title='Listar Questoes', form=form)
@app.route('/editarQuestao',methods=['GET','POST'])
def editarQuestao():
idQuestao = str(request.args.get('idQuestao'))
questao = Questao.query.filter_by(idQuestao=idQuestao).first()
form = EditarQuestaoForm(pergunta= questao.get_pergunta(),tipo=questao.get_tipo())
if request.method == 'GET':
if questao is None:
return redirect(url_for('listarQuestao'))
return render_template('editarQuestao.html', title='Editar Questao', form=form)
else:
novaPergunta = form.nova_pergunta.data
novaResposta = form.nova_resposta.data
tipo = form.novo_tipo.data
if novaPergunta == questao.get_pergunta() and novaResposta == questao.get_resposta():
flash("Digite um nome diferente para a Questao", 'error')
return render_template('editarQuestao.html', title='Editar Questao', form=form)
else:
if Questao.query.filter_by(pergunta=novaPergunta,resposta=novaResposta, statusQ='ativo',
idAssunto=questao.idAssunto).first() != None:
flash('A questao "{}" já existe'.format(novaPergunta), 'error')
return render_template('editarQuestao.html', title='Editar Questao', form=form)
questao.set_pergunta(novaPergunta)
questao.set_resposta(novaResposta)
questao.set_tipo(tipo)
db.session.commit()
flash("Questao alterada com sucesso!")
return render_template('editarQuestao.html',form=form)
@app.route('/cadastroAlternativa',methods=['GET','POST'])
def cadastroAlternativa():
listaD = Disciplina.query.filter_by(idUsuario=session.get('idUsuario'), statusDisc='ativo').all()
listadF = [(Disciplina.idDisciplina, Disciplina.nomeDisciplina) for Disciplina in listaD]
form = CadastroAlternativaForm()
form.disciplinas.choices = listadF
idDisciplina = form.disciplinas.data
listaA = Assunto.query.filter_by(idDisciplina=idDisciplina, statusAss='ativo').all()
listaAf = [(Assunto.idAssunto, Assunto.nomeAssunto) for Assunto in listaA]
form.assuntos.choices = listaAf
idAssunto = form.assuntos.data
listaQ = Questao.query.filter_by(idAssunto=idAssunto,tipo='Multipla Escolha', statusQ='ativo').all()
listaQf = [(Questao.idQuestao, Questao.pergunta) for Questao in listaQ]
form.questoes.choices = listaQf
idQuestao = form.questoes.data
if form.submitCadastro.data:
if form.disciplinas.data!= None and form.questoes.data != None:
alternativa = form.alternativa.data
if Alternativas.query.filter_by(idAssunto=idAssunto,idQuestao=idQuestao, alternativa=alternativa,
statusAl='ativo').first() != None:
flash('A alternativa {} ja existe'.format(alternativa))
return render_template('cadastroAlternativa.html', title='Cadastro de Alternativas', form=form)
else:
nova_alternativa = Alternativas(idAssunto=idAssunto,idQuestao=idQuestao,alternativa=alternativa, statusAl='ativo')
db.session.add(nova_alternativa)
db.session.commit()
flash('Alternativa " {} " cadastrada com sucesso'.format(nova_alternativa.get_alternativa()))
return render_template('cadastroAlternativa.html', title='Cadastro de Alternativas', form=form)
else:
flash('Preencha todos os campos!')
return render_template('cadastroAlternativa.html', title='Cadastro de Alternativas', form=form)
return render_template('cadastroAlternativa.html',title='Cadastro de Alternativas',form=form)
@app.route('/listarAlternativa', methods=['GET','POST'])
def listarAlternativa():
listaD = Disciplina.query.filter_by(idUsuario=session.get('idUsuario'), statusDisc='ativo').all()
listadF = [(Disciplina.idDisciplina, Disciplina.nomeDisciplina) for Disciplina in listaD]
form = ListarAlternativaForm()
form.disciplinas.choices = listadF
idDisciplina = form.disciplinas.data
listaA = Assunto.query.filter_by(idDisciplina=idDisciplina, statusAss='ativo').all()
listaAf = [(Assunto.idAssunto, Assunto.nomeAssunto) for Assunto in listaA]
form.assuntos.choices = listaAf
idAssunto = form.assuntos.data
listaQ = Questao.query.filter_by(idAssunto=idAssunto, tipo='Multipla Escolha', statusQ='ativo').all()
listaQf = [(Questao.idQuestao, Questao.pergunta) for Questao in listaQ]
form.questoes.choices = listaQf
idQuestao = form.questoes.data
listaAl = Alternativas.query.filter_by(idAssunto=idAssunto,idQuestao=idQuestao,statusAl='ativo').all()
listaAlf = [(Alternativas.idAlternativas, Alternativas.alternativa) for Alternativas in listaAl]
form.alternativas.choices = listaAlf
if form.alternativas.data != None:
if form.submitExcluir.data:
idAlternativas = form.alternativas.data
alternativa = Alternativas.query.filter_by(idAlternativas=idAlternativas, statusAl='ativo').first()
alternativa.desativarAlternativa()
db.session.commit()
flash('Alternativa excluida com sucesso')
return render_template('listarAlternativa.html', title='Listar Alternativas', form=form)
if form.submitEditar.data:
idAlternativas = form.alternativas.data
return redirect(url_for('editarAlternativa', idAlternativas=idAlternativas))
return render_template('listarAlternativa.html', title='Listar Alternativa', form=form)
@app.route('/editarAlternativa',methods=['GET','POST'])
def editarAlternativa():
idAlternativas = str(request.args.get('idAlternativas'))
alternativa = Alternativas.query.filter_by(idAlternativas=idAlternativas,statusAl='ativo').first()
form = EditarAlternativaForm(alternativa=alternativa.get_alternativa())
if request.method == 'GET':
if alternativa is None:
return redirect(url_for('listarAlternativa'))
return render_template('editarAlternativa.html', title='Editar Alternativa', form=form)
else:
novaAlternativa = form.nova_alternativa.data
if novaAlternativa== alternativa.get_alternativa():
flash("Digite um nome diferente pra Alternativa", 'error')
return render_template('editarAlternativa.html', title='Editar Alternativa', form=form)
else:
if Alternativas.query.filter_by(alternativa=novaAlternativa, idQuestao=str(alternativa.get_idQuestao), idAssunto=str(alternativa.get_idAssunto), statusAl='ativo').first() != None:
flash('A alternativa "{}" já existe'.format(novaAlternativa), 'error')
return render_template('editarAlternativa.html', title='Editar Alternativa', form=form)
alternativa.set_alternativa(novaAlternativa)
db.session.commit()
flash("Alternativa alterada com sucesso!")
return redirect(url_for('listarAlternativa'))
@app.route('/cadastroAvaliacao',methods=['GET','POST'])
def cadastroAvaliacao():
listaD = Disciplina.query.filter_by(idUsuario=session.get('idUsuario'), statusDisc='ativo').all()
listadF = [(Disciplina.idDisciplina, Disciplina.nomeDisciplina) for Disciplina in listaD]
form = CadastroAvaliacaoForm()
form.disciplinas.choices = listadF
idDisciplina = form.disciplinas.data
listaA = Assunto.query.filter_by(idDisciplina=idDisciplina,statusAss='ativo').all()
listaAf = [(Assunto.idAssunto) for Assunto in listaA]
if form.is_submitted():
if form.nomeAvaliacao.data!='' and form.semestre.data!='' and form.ano.data!='' and form.numerodeQuestoes!='' and form.vezesUsadas.data != '' and form.disciplinas.data!=None and len(listaAf)!=0:
semestre = form.semestre.data
ano = form.ano.data
numerodeQuestoes = form.numerodeQuestoes.data
vezesUsadas = form.vezesUsadas.data
nova_avaliacao = form.nomeAvaliacao.data
if Avaliacao.query.filter_by(idDisciplina=idDisciplina, nomeAvaliacao=nova_avaliacao,statusAv='ativo',semestre=semestre,ano=ano).first() != None:
flash('A avaliacao "{}" ja existe.'.format(nova_avaliacao),'error')
return render_template('cadastroAvaliacao.html', title='Cadastro de Avaliacoes', form=form)
else:
vetorL = list()
for idAssunto in listaAf:
listaQ = Questao.query.filter_by(idAssunto=idAssunto,vezesUsada=int(vezesUsadas),statusQ='ativo').all()
listaQf = [(Questao.idQuestao) for Questao in listaQ]
for idQuestao in listaQf:
vetorL.append(idQuestao)
if(len(vetorL)!=0):
new_av = Avaliacao(nomeAvaliacao=nova_avaliacao,statusAv='ativo',idDisciplina=idDisciplina,semestre=semestre,ano=ano,numerodeQuestoes=numerodeQuestoes)
db.session.add(new_av)
db.session.commit()
if int(numerodeQuestoes)>len(vetorL) or int(numerodeQuestoes)==len(vetorL):
for idQuestao in vetorL:
q_add_vezes = Questao.query.filter_by(idQuestao=idQuestao,statusQ='ativo').first()
q_add_vezes.plusvezesUsada()
nova_av_q = AvaliacoesQuestao(idAvaliacao=new_av.idAvaliacao,idQuestao=idQuestao)
db.session.add(nova_av_q)
db.session.commit()
flash('Foram adicionadas {} Questoes que respeitam os requesitos a Avaliacao'.format(len(vetorL)))
return render_template('cadastroAvaliacao.html', title='Cadastro de Avaliacoes', form=form)
if int(numerodeQuestoes)<len(vetorL):
i=0
naoRepetir = list()
while(i<int(numerodeQuestoes)):
idQuestao = random.choice(vetorL)
if idQuestao not in naoRepetir:
naoRepetir.append(idQuestao)
q_add_vezes = Questao.query.filter_by(idQuestao=idQuestao, statusQ='ativo').first()
q_add_vezes.plusvezesUsada()
nova_av_q = AvaliacoesQuestao(idAvaliacao=new_av.idAvaliacao,idQuestao=idQuestao)
db.session.add(nova_av_q)
db.session.commit()
i+=1
flash('Foram adicionadas {} Questoes a Avaliacao'.format(numerodeQuestoes))
return render_template('cadastroAvaliacao.html', title='Cadastro de Avaliacoes', form=form)
else:
flash('Nao há questoes cadastradas ou nao saciam os requisitos para adicionar em uma avaliacao')
return render_template('cadastroAvaliacao.html', title='Cadastro de Avaliacoes', form=form)
else:
flash('É necessario preencher todos os campos')
return render_template('cadastroAvaliacao.html', title='Cadastro de Avaliacoes', form=form)
return render_template('cadastroAvaliacao.html',title = 'Cadastro de Avaliacoes',form=form)
@app.route('/listarAvaliacao',methods=['GET','POST'])
def listarAvaliacao():
form = ListarAvaliacaoForm()
listaD = Disciplina.query.filter_by(idUsuario=session.get('idUsuario'), statusDisc='ativo').all()
listadF = [(Disciplina.idDisciplina , Disciplina.nomeDisciplina) for Disciplina in listaD]
form.disciplinas.choices = listadF
idDisciplina = form.disciplinas.data
semestre = form.semestre.data
ano = form.ano.data
listaAv = Avaliacao.query.filter_by(idDisciplina=idDisciplina,semestre=semestre,ano=ano,statusAv='ativo')
listaAvf = [(Avaliacao.idAvaliacao, Avaliacao.nomeAvaliacao) for Avaliacao in listaAv]
form.avaliacoes.choices = listaAvf
print('idAvaliacao = {}'.format(form.avaliacoes.data))
if form.avaliacoes.data != None:
if form.submitExcluir.data:
idAvaliacao = form.avaliacoes.data
avaliacao = Avaliacao.query.filter_by(idAvaliacao=idAvaliacao, statusAv='ativo').first()
avaliacao.desativarAvaliacao()
db.session.commit()
flash('Avaliacao excluida com sucesso')
return render_template('listarAvaliacao.html', title='Listar Avaliacoes', form=form)
if form.submitEditar.data:
idAvaliacao = form.avaliacoes.data
return redirect(url_for('editarAvaliacao', idAvaliacao=idAvaliacao))
else:
flash('Nao há avaliacao selecionada')
return render_template('listarAvaliacao.html', title='Listar Avaliacoes', form=form)
return render_template('listarAvaliacao.html', title='Listar Avaliacoes', form=form)
@app.route('/editarAvaliacao',methods=['GET','POST'])
def editarAvaliacao():
idAvaliacao = str(request.args.get('idAvaliacao'))
avaliacao = Avaliacao.query.filter_by(idAvaliacao=idAvaliacao,statusAv='ativo').first()
if avaliacao is None:
flash('Selecione uma avaliacao')
return redirect(url_for('listarAvaliacao'))
form = EditarAvaliacaoForm(avaliacao=avaliacao.get_nomeAvaliacao(),semestre=avaliacao.get_semestre(),ano=avaliacao.get_ano())
if request.method == 'GET':
if avaliacao is None:
return redirect(url_for('listarAvaliacao'))
return render_template('editarAlternativa.html', title='Editar Alternativa', form=form)
else:
nomeAvaliacao = form.novaAvaliacao.data
novoSemestre = form.novoSemestre.data
novoAno = form.novoAno.data
if nomeAvaliacao == avaliacao.get_nomeAvaliacao() and novoSemestre == avaliacao.get_semestre() and novoAno == avaliacao.get_ano() :
flash("Digite valores diferentes pra Avaliacao", 'error')
return render_template('editarAvaliacao.html', title='Editar Avaliacao', form=form)
else:
if Avaliacao.query.filter_by(nomeAvaliacao=nomeAvaliacao, idDisciplina=avaliacao.idDisciplina,
semestre=novoSemestre,ano=novoAno, statusAv='ativo').first() != None:
flash('A avaliacao "{}" já existe'.format(nomeAvaliacao), 'error')
return render_template('editarAvaliacao.html', title='Editar Avaliacao', form=form)
avaliacao.set_nomeAvaliacao(nomeAvaliacao)
avaliacao.set_ano(novoAno)
avaliacao.set_semestre(novoSemestre)
db.session.commit()
flash("Avaliacao alterada com sucesso!")
return render_template('editarAvaliacao.html', title='Editar Avaliacao', form=form)
@app.route('/')
def inicio():
return render_template('index.html')
@app.route('/aluno')
def aluno():
'''
Ilustra um exemplo de como exibir tabelas. Também mostrado um exemplo do flask-bootstrap-table
As estuturas de dados 'data'e 'columns' estão no script dadostabela.py
:return:
'''
return render_template('alunos.html',data=data,columns=columns)
@app.errorhandler(404)
def page_not_found(e):
'''
Para tratar erros de páginas não encontradas - HTTP 404
:param e:
:return:
'''
return render_template('404.html'), 404
@app.route('/logout')
def sair():
session['logged_in'] = False
return redirect(url_for('inicio'))
if __name__ == '__main__':
app.run(host='0.0.0.0', debug=True)
| [
1,
529,
276,
1112,
420,
29958,
29894,
919,
272,
778,
29883,
29914,
29879,
28474,
29899,
914,
3136,
29899,
7712,
423,
1111,
267,
13,
5215,
4036,
13,
13,
3166,
29784,
1053,
4050,
29918,
6886,
29892,
11013,
29892,
2009,
13,
3166,
29784,
29918,
8704,
1053,
25746,
13,
3166,
29784,
29918,
6654,
1053,
13132,
13,
3166,
29784,
29918,
6654,
29889,
17664,
1053,
13132,
1646,
29892,
4533,
29892,
3323,
2972,
29892,
6645,
13,
3166,
23085,
13289,
29889,
13239,
1053,
6684,
13,
13,
3166,
7190,
1053,
334,
13,
3166,
4733,
1053,
334,
13,
13,
17079,
2390,
353,
25746,
29898,
932,
29897,
396,
338,
578,
2299,
309,
2028,
288,
4472,
16087,
29914,
3188,
29889,
1420,
13,
6654,
353,
13132,
580,
13,
6654,
29889,
2344,
29918,
932,
29898,
932,
29897,
396,
338,
578,
2299,
309,
2028,
263,
274,
2849,
2340,
316,
1757,
375,
316,
21102,
3249,
2340,
437,
22906,
866,
2379,
1278,
29899,
22107,
13,
13,
13,
29992,
6654,
29889,
15466,
580,
13,
1753,
592,
348,
485,
1646,
7295,
13,
1678,
6143,
353,
13132,
1646,
877,
8140,
2350,
20760,
8298,
1495,
13,
1678,
6143,
29889,
7076,
353,
518,
1043,
877,
11184,
742,
525,
262,
11088,
1495,
29962,
13,
13,
1678,
565,
4867,
29889,
657,
877,
1188,
3192,
29918,
262,
1495,
338,
5852,
29901,
13,
4706,
6143,
29889,
7076,
29889,
4397,
29898,
4035,
2972,
877,
4205,
13326,
1099,
742,
4533,
877,
29907,
328,
23364,
316,
3295,
13326,
1099,
742,
525,
29883,
328,
23364,
4205,
13326,
1099,
5477,
4533,
877,
1293,
279,
3295,
13326,
1099,
742,
525,
1761,
279,
4205,
13326,
1099,
29915,
4961,
13,
4706,
6143,
29889,
7076,
29889,
4397,
29898,
4035,
2972,
877,
7900,
12578,
742,
4533,
877,
29907,
328,
23364,
316,
4007,
1657,
359,
742,
525,
29883,
328,
23364,
7900,
12578,
5477,
4533,
877,
1293,
279,
4007,
1657,
359,
742,
525,
1761,
279,
7900,
12578,
29915,
4961,
13,
4706,
6143,
29889,
7076,
29889,
4397,
29898,
4035,
2972,
877,
2182,
4778,
267,
742,
4533,
877,
29907,
328,
23364,
316,
751,
4778,
267,
742,
525,
29883,
328,
23364,
2182,
4405,
29877,
5477,
4533,
877,
1293,
279,
751,
4778,
267,
742,
525,
1761,
279,
2182,
4405,
29877,
29915,
4961,
13,
4706,
6143,
29889,
7076,
29889,
4397,
29898,
4035,
2972,
877,
2499,
725,
26126,
742,
4533,
877,
29907,
328,
23364,
316,
12440,
26126,
742,
525,
29883,
328,
23364,
2499,
725,
8657,
5477,
4533,
877,
1293,
279,
12440,
26126,
742,
525,
1761,
279,
2499,
725,
8657,
29915,
4961,
13,
4706,
6143,
29889,
7076,
29889,
4397,
29898,
4035,
2972,
877,
29909,
791,
423,
1111,
267,
742,
4533,
877,
29907,
328,
23364,
316,
319,
791,
423,
1111,
267,
742,
525,
29883,
328,
23364,
29909,
791,
423,
1113,
29877,
5477,
4533,
877,
1293,
279,
319,
791,
423,
1111,
267,
742,
525,
1761,
279,
29909,
791,
423,
1113,
29877,
29915,
4961,
13,
13,
13,
4706,
6143,
29889,
7076,
29889,
4397,
29898,
1043,
877,
29903,
1466,
3788,
29879,
1466,
8785,
13,
1678,
1683,
29901,
13,
4706,
6143,
29889,
7076,
29889,
4397,
29898,
1043,
877,
11049,
742,
525,
1300,
4173,
279,
8785,
13,
4706,
6143,
29889,
7076,
29889,
4397,
29898,
1043,
877,
4597,
2132,
279,
3788,
29883,
328,
23364,
8785,
13,
4706,
6143,
29889,
7076,
29889,
4397,
29898,
6595,
877,
29909,
29926,
6191,
3788,
991,
597,
1636,
29889,
3608,
29889,
510,
8785,
13,
1678,
736,
6143,
13,
13,
13,
29992,
932,
29889,
13134,
11219,
1727,
19150,
742,
3519,
29922,
1839,
7194,
742,
525,
5438,
11287,
13,
1753,
13840,
23364,
7295,
13,
1678,
883,
353,
21542,
23364,
2500,
580,
13,
1678,
565,
883,
29889,
15480,
29918,
265,
29918,
7892,
7295,
13,
4706,
502,
22223,
11049,
353,
883,
29889,
6786,
29889,
1272,
13,
4706,
502,
22223,
10048,
353,
883,
29889,
5630,
29889,
1272,
13,
13,
13,
13,
4706,
565,
501,
2146,
2628,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
7507,
29922,
689,
29889,
6786,
29889,
1272,
467,
4102,
580,
2804,
6213,
29901,
13,
9651,
11013,
703,
29949,
8952,
6571,
17333,
19947,
29892,
4697,
568,
714,
307,
1642,
4830,
29898,
375,
22223,
11049,
511,
525,
2704,
1495,
13,
4706,
1683,
29901,
13,
9651,
2420,
29877,
29918,
375,
22223,
353,
501,
2146,
2628,
29898,
7507,
29922,
375,
22223,
11049,
29892,
6940,
2350,
29922,
375,
22223,
10048,
29897,
13,
9651,
4833,
29889,
7924,
29889,
1202,
29898,
29876,
6962,
29918,
375,
22223,
29897,
13,
9651,
4833,
29889,
7924,
29889,
15060,
580,
13,
9651,
11013,
877,
29965,
2146,
12288,
6571,
14783,
912,
419,
480,
985,
29877,
4286,
4830,
29898,
375,
22223,
11049,
876,
13,
4706,
736,
4050,
29918,
6886,
877,
2248,
29889,
1420,
742,
3611,
543,
29965,
2146,
12288,
21557,
912,
1159,
13,
1678,
1683,
29901,
13,
4706,
736,
4050,
29918,
6886,
877,
1727,
19150,
29889,
1420,
742,
3611,
2433,
29907,
328,
23364,
316,
502,
29884,
12288,
742,
883,
29922,
689,
29897,
13,
13,
13,
29992,
932,
29889,
13134,
11219,
7507,
742,
3519,
29922,
1839,
7194,
742,
525,
5438,
11287,
13,
1753,
1120,
4173,
279,
7295,
13,
1678,
883,
353,
19130,
2500,
580,
13,
13,
1678,
565,
883,
29889,
15480,
29918,
265,
29918,
7892,
7295,
13,
13,
4706,
396,
8980,
1764,
3503,
953,
29901,
1732,
597,
1579,
1278,
29899,
2850,
284,
305,
6764,
29889,
29886,
542,
3634,
29889,
990,
29914,
29906,
29889,
29941,
29914,
339,
6358,
8484,
1972,
292,
29899,
3757,
4339,
13,
4706,
502,
22223,
353,
501,
2146,
2628,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
7507,
29922,
689,
29889,
6786,
29889,
1272,
467,
4102,
29918,
272,
29918,
29946,
29900,
29946,
580,
13,
13,
4706,
565,
313,
375,
22223,
29889,
3198,
29918,
5630,
29898,
689,
29889,
5630,
29889,
1272,
22164,
13,
9651,
4867,
1839,
1188,
3192,
29918,
262,
2033,
353,
5852,
13,
9651,
4867,
1839,
333,
29965,
2146,
2628,
2033,
353,
502,
22223,
29889,
657,
29918,
333,
29965,
2146,
2628,
580,
13,
9651,
11013,
877,
29933,
331,
325,
15036,
6571,
4286,
4830,
29898,
375,
22223,
29889,
7507,
876,
13,
9651,
736,
4050,
29918,
6886,
877,
1300,
4173,
912,
29889,
1420,
742,
3611,
543,
29965,
2146,
12288,
1120,
4173,
912,
613,
375,
22223,
29922,
375,
22223,
29889,
657,
29918,
333,
29965,
2146,
2628,
3101,
13,
4706,
1683,
29901,
13,
9651,
11013,
877,
29965,
2146,
12288,
2123,
6940,
2350,
2437,
2464,
4396,
1495,
13,
9651,
736,
4050,
29918,
6886,
877,
7507,
29889,
1420,
742,
3611,
2433,
6147,
296,
983,
2340,
316,
502,
29884,
26047,
742,
883,
29922,
689,
29897,
13,
13,
1678,
1683,
29901,
13,
4706,
736,
4050,
29918,
6886,
877,
7507,
29889,
1420,
742,
3611,
2433,
6147,
296,
983,
2340,
316,
502,
29884,
26047,
742,
883,
29922,
689,
29897,
13,
13,
13,
29937,
29966,
26862,
6227,
29958,
11219,
2218,
13326,
1099,
1495,
13,
29937,
1753,
274,
3922,
509,
279,
4205,
13326,
1099,
7295,
13,
13,
13,
13,
13,
13,
13,
13,
29992,
932,
29889,
13134,
11219,
29883,
328,
23364,
4205,
13326,
1099,
742,
23515,
29922,
1839,
7194,
3788,
5438,
11287,
13,
1753,
13840,
23364,
4205,
13326,
1099,
7295,
13,
13,
1678,
883,
353,
21542,
23364,
4205,
13326,
1099,
2500,
580,
13,
13,
1678,
565,
883,
29889,
15480,
29918,
265,
29918,
7892,
7295,
13,
13,
4706,
9235,
4205,
13326,
1099,
353,
883,
29889,
25155,
4205,
13326,
1099,
29889,
1272,
13,
13,
4706,
565,
3295,
13326,
1099,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
25155,
4205,
13326,
1099,
29922,
25155,
4205,
13326,
1099,
29892,
333,
29965,
2146,
2628,
29922,
7924,
29889,
657,
877,
333,
29965,
2146,
2628,
5477,
4882,
4205,
29883,
2433,
11692,
2824,
4102,
580,
2804,
6213,
29901,
13,
9651,
11013,
877,
29909,
17119,
1099,
6571,
12337,
19947,
29892,
4697,
568,
714,
336,
4286,
4830,
29898,
25155,
4205,
13326,
1099,
511,
29915,
2704,
1495,
13,
9651,
736,
4050,
29918,
6886,
877,
1727,
19150,
29889,
1420,
742,
3257,
2433,
29907,
328,
23364,
3295,
13326,
1099,
742,
689,
29922,
689,
29897,
13,
4706,
1683,
29901,
13,
9651,
26121,
29918,
2218,
13326,
1099,
353,
3295,
13326,
1099,
29898,
25155,
4205,
13326,
1099,
29922,
25155,
4205,
13326,
1099,
29897,
13,
9651,
4833,
29889,
7924,
29889,
1202,
29898,
29876,
4273,
29918,
2218,
13326,
1099,
29897,
13,
9651,
4833,
29889,
7924,
29889,
15060,
580,
13,
9651,
11013,
877,
4205,
13326,
1099,
6571,
14783,
1114,
419,
480,
985,
29877,
4286,
4830,
29898,
25155,
4205,
13326,
1099,
876,
13,
9651,
736,
4050,
29918,
6886,
877,
1727,
19150,
29889,
1420,
742,
3257,
2433,
29907,
328,
23364,
3295,
13326,
1099,
742,
689,
29922,
689,
29897,
13,
13,
1678,
736,
4050,
29918,
6886,
877,
1727,
19150,
29889,
1420,
742,
3611,
2433,
29907,
328,
23364,
316,
17119,
1099,
742,
883,
29922,
689,
29897,
13,
13,
13,
13,
29992,
932,
29889,
13134,
11219,
1761,
279,
4205,
13326,
1099,
742,
23515,
29922,
1839,
7194,
3788,
5438,
11287,
13,
1753,
1051,
279,
4205,
13326,
1099,
7295,
13,
1678,
15023,
29928,
353,
3295,
13326,
1099,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
333,
29965,
2146,
2628,
29922,
7924,
29889,
657,
877,
333,
29965,
2146,
2628,
5477,
4660,
4205,
29883,
2433,
11692,
2824,
497,
580,
13,
1678,
1051,
328,
29943,
353,
17288,
4205,
13326,
1099,
29889,
333,
4205,
13326,
1099,
29892,
3295,
13326,
1099,
29889,
25155,
4205,
13326,
1099,
29897,
363,
3295,
13326,
1099,
297,
15023,
29928,
29962,
13,
1678,
883,
353,
2391,
279,
4205,
13326,
10189,
2500,
580,
13,
1678,
883,
29889,
2218,
13326,
10189,
29889,
1859,
1575,
353,
1051,
328,
29943,
13,
13,
1678,
565,
883,
29889,
2218,
13326,
10189,
29889,
1272,
2804,
6213,
29901,
13,
4706,
565,
883,
29889,
7892,
1252,
695,
29884,
381,
29889,
1272,
29901,
13,
13,
9651,
1178,
4205,
13326,
1099,
353,
883,
29889,
2218,
13326,
10189,
29889,
1272,
13,
9651,
17119,
1099,
353,
3295,
13326,
1099,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
333,
4205,
13326,
1099,
29922,
333,
4205,
13326,
1099,
29892,
4660,
4205,
29883,
2433,
11692,
2824,
4102,
580,
13,
13,
9651,
17119,
1099,
29889,
2783,
1926,
279,
4205,
13326,
1099,
580,
13,
9651,
4833,
29889,
7924,
29889,
15060,
580,
13,
9651,
11013,
877,
4205,
13326,
1099,
429,
695,
29884,
1458,
419,
480,
985,
29877,
1495,
13,
9651,
736,
4050,
29918,
6886,
877,
1761,
279,
4205,
13326,
1099,
29889,
1420,
742,
3611,
2433,
1293,
279,
3295,
13326,
10189,
742,
883,
29922,
689,
29897,
13,
13,
4706,
565,
883,
29889,
7892,
3853,
3673,
29889,
1272,
29901,
13,
9651,
1178,
4205,
13326,
1099,
353,
883,
29889,
2218,
13326,
10189,
29889,
1272,
13,
9651,
736,
6684,
29898,
2271,
29918,
1454,
877,
287,
3673,
4205,
13326,
1099,
742,
1178,
4205,
13326,
1099,
29922,
333,
4205,
13326,
1099,
876,
13,
13,
13,
1678,
736,
4050,
29918,
6886,
877,
1761,
279,
4205,
13326,
1099,
29889,
1420,
742,
3611,
2433,
1293,
279,
3295,
13326,
10189,
742,
883,
29922,
689,
29897,
13,
13,
13,
13,
29992,
932,
29889,
13134,
11219,
287,
3673,
4205,
13326,
1099,
742,
3519,
29922,
1839,
7194,
742,
525,
5438,
11287,
13,
1753,
1226,
3673,
4205,
13326,
1099,
7295,
13,
1678,
565,
4867,
29889,
657,
877,
1188,
3192,
29918,
262,
1495,
338,
7700,
29901,
13,
4706,
736,
297,
11088,
580,
13,
13,
1678,
1178,
4205,
13326,
1099,
353,
851,
29898,
3827,
29889,
5085,
29889,
657,
877,
333,
4205,
13326,
1099,
8785,
13,
13,
1678,
17119,
1099,
353,
3295,
13326,
1099,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
333,
4205,
13326,
1099,
29922,
333,
4205,
13326,
1099,
467,
4102,
580,
13,
13,
1678,
565,
17119,
1099,
338,
6213,
29901,
13,
4706,
11013,
877,
2008,
280,
29883,
1421,
3672,
17119,
1099,
1495,
13,
4706,
736,
6684,
29898,
2271,
29918,
1454,
877,
1761,
279,
4205,
13326,
1099,
8785,
13,
1678,
883,
353,
2155,
3673,
4205,
13326,
1099,
2500,
29898,
25155,
4205,
13326,
1099,
29922,
2218,
13326,
1099,
29889,
657,
29918,
25155,
4205,
13326,
1099,
3101,
13,
13,
1678,
565,
2009,
29889,
5696,
1275,
525,
7194,
2396,
13,
4706,
396,
282,
387,
279,
288,
1178,
1146,
23109,
29874,
3025,
12354,
313,
862,
30057,
27995,
1178,
1055,
3988,
29897,
13,
4706,
565,
938,
29898,
2218,
13326,
1099,
29889,
657,
29918,
333,
29965,
2146,
2628,
3101,
2804,
4867,
1839,
333,
29965,
2146,
2628,
2033,
29901,
13,
9651,
736,
297,
11088,
580,
13,
13,
4706,
565,
17119,
1099,
338,
6213,
29901,
13,
9651,
736,
6684,
29898,
2271,
29918,
1454,
877,
1761,
279,
4205,
13326,
10189,
8785,
13,
4706,
736,
4050,
29918,
6886,
877,
287,
3673,
29889,
1420,
742,
3611,
2433,
3853,
3673,
17119,
1099,
742,
883,
29922,
689,
29892,
17119,
1099,
29922,
2218,
13326,
1099,
29897,
13,
1678,
1683,
29901,
13,
4706,
26121,
4205,
13326,
1099,
353,
883,
29889,
29876,
4273,
4205,
13326,
1099,
29889,
1272,
13,
4706,
565,
26121,
4205,
13326,
1099,
1275,
17119,
1099,
29889,
657,
29918,
25155,
4205,
13326,
1099,
7295,
13,
9651,
11013,
703,
14991,
568,
1922,
9235,
12186,
2016,
7213,
17119,
1099,
613,
525,
2704,
1495,
13,
13,
9651,
736,
4050,
29918,
6886,
877,
287,
3673,
29889,
1420,
742,
3611,
2433,
3853,
3673,
17119,
1099,
742,
883,
29922,
689,
29892,
17119,
1099,
29922,
2218,
13326,
1099,
29897,
13,
4706,
1683,
29901,
13,
9651,
565,
3295,
13326,
1099,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
25155,
4205,
13326,
1099,
29922,
29876,
4273,
4205,
13326,
1099,
29892,
4882,
4205,
29883,
2433,
11692,
742,
13,
462,
462,
3986,
1178,
29965,
2146,
2628,
29922,
7924,
29889,
657,
877,
333,
29965,
2146,
2628,
1495,
467,
4102,
580,
2804,
6213,
29901,
13,
18884,
11013,
703,
29909,
17119,
1099,
6571,
17333,
19947,
1642,
4830,
29898,
29876,
4273,
4205,
13326,
1099,
511,
525,
2704,
1495,
13,
18884,
736,
4050,
29918,
6886,
877,
287,
3673,
29889,
1420,
742,
3611,
2433,
3853,
3673,
17119,
1099,
742,
883,
29922,
689,
29892,
17119,
1099,
29922,
2218,
13326,
1099,
29897,
13,
13,
4706,
17119,
1099,
29889,
842,
29918,
25155,
4205,
13326,
1099,
29898,
29876,
4273,
4205,
13326,
1099,
29897,
13,
4706,
4833,
29889,
7924,
29889,
15060,
580,
13,
13,
4706,
11013,
703,
4205,
13326,
1099,
10551,
1114,
419,
480,
985,
29877,
29991,
1159,
13,
1678,
736,
4050,
29918,
6886,
877,
287,
3673,
29889,
1420,
742,
3611,
2433,
3853,
3673,
17119,
1099,
742,
883,
29922,
689,
29892,
17119,
1099,
29922,
2218,
13326,
1099,
29897,
13,
13,
13,
13,
13,
13,
13,
29992,
932,
29889,
13134,
11219,
29883,
328,
23364,
7900,
12578,
742,
23515,
29922,
1839,
7194,
742,
525,
5438,
11287,
13,
1753,
13840,
23364,
7900,
12578,
7295,
13,
13,
1678,
15023,
29928,
353,
3295,
13326,
1099,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
333,
29965,
2146,
2628,
29922,
7924,
29889,
657,
877,
333,
29965,
2146,
2628,
5477,
4660,
4205,
29883,
2433,
11692,
2824,
497,
580,
13,
1678,
1051,
328,
29943,
353,
17288,
4205,
13326,
1099,
29889,
333,
4205,
13326,
1099,
1919,
3295,
13326,
1099,
29889,
25155,
4205,
13326,
1099,
29897,
363,
3295,
13326,
1099,
297,
15023,
29928,
29962,
13,
1678,
883,
353,
21542,
23364,
7900,
12578,
2500,
580,
13,
1678,
883,
29889,
2218,
13326,
10189,
29889,
1859,
1575,
353,
1051,
328,
29943,
13,
13,
13,
1678,
565,
883,
29889,
15480,
29918,
265,
29918,
7892,
7295,
13,
13,
4706,
9235,
7900,
12578,
353,
883,
29889,
25155,
7900,
12578,
29889,
1272,
13,
4706,
1178,
4205,
13326,
1099,
353,
883,
29889,
2218,
13326,
10189,
29889,
1272,
13,
13,
4706,
565,
4007,
12578,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
25155,
7900,
12578,
29922,
25155,
7900,
12578,
29892,
4882,
7900,
2433,
11692,
742,
333,
4205,
13326,
1099,
29922,
333,
4205,
13326,
1099,
467,
4102,
580,
19216,
8516,
29901,
13,
9651,
11013,
877,
29949,
1223,
12578,
6571,
1702,
263,
17119,
1099,
16954,
12401,
1114,
12337,
19947,
29892,
4697,
568,
714,
307,
4286,
4830,
29898,
25155,
7900,
12578,
511,
525,
2704,
1495,
13,
9651,
736,
4050,
29918,
6886,
877,
29883,
328,
23364,
7900,
12578,
29889,
1420,
742,
3257,
2433,
29907,
328,
23364,
316,
4007,
12578,
742,
2218,
13326,
10189,
29922,
19641,
29928,
29892,
689,
29922,
689,
29897,
13,
4706,
1683,
29901,
13,
9651,
2420,
29877,
29918,
465,
12578,
353,
4007,
12578,
29898,
25155,
7900,
12578,
29922,
25155,
7900,
12578,
29892,
333,
4205,
13326,
1099,
29922,
333,
4205,
13326,
1099,
29897,
13,
9651,
4833,
29889,
7924,
29889,
1202,
29898,
29876,
6962,
29918,
465,
12578,
29897,
13,
9651,
4833,
29889,
7924,
29889,
15060,
580,
13,
9651,
11013,
877,
7900,
12578,
6571,
14783,
912,
419,
480,
985,
29877,
4286,
4830,
29898,
689,
29889,
25155,
7900,
12578,
29889,
1272,
876,
13,
9651,
736,
4050,
29918,
6886,
877,
29883,
328,
23364,
7900,
12578,
29889,
1420,
742,
3611,
2433,
29907,
328,
23364,
316,
4007,
12578,
742,
17119,
10189,
29922,
19641,
29928,
29892,
883,
29922,
689,
29897,
13,
13,
1678,
736,
4050,
29918,
6886,
877,
29883,
328,
23364,
7900,
12578,
29889,
1420,
742,
3611,
2433,
29907,
328,
23364,
316,
4007,
12578,
742,
17119,
10189,
29922,
19641,
29928,
29892,
689,
29922,
689,
29897,
13,
13,
13,
29992,
932,
29889,
13134,
11219,
1761,
279,
7900,
12578,
742,
23515,
29922,
1839,
7194,
3788,
5438,
11287,
13,
1753,
1051,
279,
7900,
12578,
7295,
13,
1678,
15023,
29928,
353,
3295,
13326,
1099,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
333,
29965,
2146,
2628,
29922,
7924,
29889,
657,
877,
333,
29965,
2146,
2628,
5477,
4660,
4205,
29883,
2433,
11692,
2824,
497,
580,
13,
1678,
1051,
328,
29943,
353,
17288,
4205,
13326,
1099,
29889,
333,
4205,
13326,
1099,
29892,
3295,
13326,
1099,
29889,
25155,
4205,
13326,
1099,
29897,
363,
3295,
13326,
1099,
297,
15023,
29928,
29962,
13,
1678,
883,
353,
2391,
279,
7900,
12578,
2500,
580,
13,
1678,
883,
29889,
2218,
13326,
10189,
29889,
1859,
1575,
353,
1051,
328,
29943,
13,
13,
1678,
1178,
4205,
13326,
1099,
353,
883,
29889,
2218,
13326,
10189,
29889,
1272,
13,
1678,
15023,
29909,
353,
4007,
12578,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
333,
4205,
13326,
1099,
29922,
333,
4205,
13326,
1099,
29892,
4660,
7900,
2433,
11692,
2824,
497,
580,
13,
1678,
15023,
29909,
29888,
353,
17288,
7900,
12578,
29889,
333,
7900,
12578,
29892,
4007,
12578,
29889,
25155,
7900,
12578,
29897,
363,
4007,
12578,
297,
15023,
29909,
29962,
13,
1678,
883,
29889,
465,
1657,
359,
29889,
1859,
1575,
353,
15023,
29909,
29888,
13,
13,
13,
13,
1678,
565,
883,
29889,
15480,
29918,
265,
29918,
7892,
7295,
13,
9651,
565,
883,
29889,
7892,
29906,
29889,
1272,
322,
883,
29889,
465,
1657,
359,
29889,
1859,
1575,
19216,
8516,
29901,
13,
18884,
1178,
7900,
12578,
353,
883,
29889,
465,
1657,
359,
29889,
1272,
13,
18884,
1223,
12578,
353,
4007,
12578,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
333,
7900,
12578,
29922,
333,
7900,
12578,
29892,
4882,
7900,
2433,
11692,
2824,
4102,
580,
13,
13,
18884,
1223,
12578,
29889,
2783,
1926,
279,
7900,
12578,
580,
13,
13,
18884,
4833,
29889,
7924,
29889,
15060,
580,
13,
18884,
11013,
703,
7900,
12578,
429,
695,
29884,
27806,
419,
480,
985,
29877,
29991,
1159,
13,
18884,
736,
6684,
29898,
2271,
29918,
1454,
877,
1761,
279,
7900,
12578,
8785,
13,
13,
9651,
565,
883,
29889,
7892,
29941,
29889,
1272,
322,
883,
29889,
465,
1657,
359,
29889,
1859,
1575,
19216,
8516,
29901,
13,
18884,
1178,
7900,
12578,
353,
883,
29889,
465,
1657,
359,
29889,
1272,
13,
18884,
736,
6684,
29898,
2271,
29918,
1454,
877,
287,
3673,
7900,
12578,
742,
333,
7900,
12578,
29922,
333,
7900,
12578,
876,
13,
13,
13,
13,
1678,
736,
4050,
29918,
6886,
877,
1761,
279,
7900,
12578,
29889,
1420,
742,
25155,
1625,
4347,
29922,
525,
7900,
1657,
359,
742,
3257,
2433,
1293,
279,
4007,
1657,
359,
742,
689,
29922,
689,
29897,
13,
13,
13,
13,
29992,
932,
29889,
13134,
11219,
287,
3673,
7900,
12578,
742,
23515,
29922,
1839,
7194,
3788,
5438,
11287,
13,
1753,
1226,
3673,
7900,
12578,
7295,
13,
1678,
565,
4867,
29889,
657,
877,
1188,
3192,
29918,
262,
1495,
338,
7700,
29901,
13,
4706,
736,
297,
11088,
580,
13,
13,
1678,
1178,
7900,
12578,
353,
851,
29898,
3827,
29889,
5085,
29889,
657,
877,
333,
7900,
12578,
8785,
13,
1678,
1223,
12578,
353,
4007,
12578,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
333,
7900,
12578,
29922,
333,
7900,
12578,
467,
4102,
580,
13,
1678,
883,
353,
2155,
3673,
7900,
12578,
2500,
29898,
25155,
7900,
12578,
29922,
465,
12578,
29889,
657,
29918,
25155,
7900,
12578,
3101,
13,
13,
13,
13,
1678,
565,
2009,
29889,
5696,
1275,
525,
7194,
2396,
13,
4706,
396,
282,
387,
279,
288,
1178,
1146,
23109,
29874,
3025,
12354,
313,
862,
30057,
27995,
1178,
1055,
3988,
29897,
13,
13,
13,
4706,
565,
1223,
12578,
338,
6213,
29901,
13,
9651,
736,
6684,
29898,
2271,
29918,
1454,
877,
1761,
279,
7900,
1657,
359,
8785,
13,
4706,
736,
4050,
29918,
6886,
877,
287,
3673,
7900,
12578,
29889,
1420,
742,
3611,
2433,
3853,
3673,
1223,
12578,
742,
883,
29922,
689,
29897,
13,
1678,
1683,
29901,
13,
4706,
2420,
29877,
7900,
12578,
353,
883,
29889,
29876,
6962,
7900,
12578,
29889,
1272,
13,
4706,
565,
2420,
29877,
7900,
12578,
1275,
1223,
12578,
29889,
657,
29918,
25155,
7900,
12578,
7295,
13,
9651,
11013,
703,
14991,
568,
1922,
9235,
12186,
2016,
410,
4007,
12578,
613,
525,
2704,
1495,
13,
9651,
736,
4050,
29918,
6886,
877,
287,
3673,
7900,
12578,
29889,
1420,
742,
3257,
2433,
3853,
3673,
4007,
12578,
742,
689,
29922,
689,
29897,
13,
4706,
1683,
29901,
13,
9651,
565,
4007,
12578,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
25155,
7900,
12578,
29922,
29876,
6962,
7900,
12578,
29892,
4882,
7900,
2433,
11692,
742,
333,
4205,
13326,
1099,
29922,
465,
12578,
29889,
333,
4205,
13326,
1099,
467,
4102,
580,
2804,
6213,
29901,
13,
18884,
11013,
703,
29949,
1223,
12578,
6571,
17333,
19947,
1642,
4830,
29898,
29876,
6962,
7900,
12578,
511,
525,
2704,
1495,
13,
18884,
736,
4050,
29918,
6886,
877,
287,
3673,
7900,
12578,
29889,
1420,
742,
3611,
2433,
3853,
3673,
4007,
12578,
742,
883,
29922,
689,
29897,
13,
13,
13,
4706,
1223,
12578,
29889,
842,
29918,
25155,
7900,
12578,
29898,
29876,
6962,
7900,
12578,
29897,
13,
4706,
4833,
29889,
7924,
29889,
15060,
580,
13,
13,
4706,
11013,
703,
7900,
12578,
10551,
912,
419,
480,
985,
29877,
29991,
1159,
13,
1678,
736,
4050,
29918,
6886,
877,
287,
3673,
7900,
12578,
29889,
1420,
742,
3611,
2433,
3853,
3673,
4007,
12578,
742,
883,
29922,
689,
29897,
13,
13,
13,
13,
29992,
932,
29889,
13134,
11219,
29883,
328,
23364,
2182,
4405,
29877,
742,
23515,
29922,
1839,
7194,
3788,
5438,
11287,
13,
1753,
13840,
23364,
2182,
4405,
29877,
7295,
13,
13,
13,
1678,
15023,
29928,
353,
3295,
13326,
1099,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
333,
29965,
2146,
2628,
29922,
7924,
29889,
657,
877,
333,
29965,
2146,
2628,
5477,
4660,
4205,
29883,
2433,
11692,
2824,
497,
580,
13,
1678,
1051,
328,
29943,
353,
17288,
4205,
13326,
1099,
29889,
333,
4205,
13326,
1099,
29892,
3295,
13326,
1099,
29889,
25155,
4205,
13326,
1099,
29897,
363,
3295,
13326,
1099,
297,
15023,
29928,
29962,
13,
1678,
883,
353,
21542,
23364,
2182,
4405,
29877,
2500,
580,
13,
1678,
883,
29889,
2218,
13326,
10189,
29889,
1859,
1575,
353,
1051,
328,
29943,
13,
13,
1678,
1178,
4205,
13326,
1099,
353,
883,
29889,
2218,
13326,
10189,
29889,
1272,
13,
13,
1678,
15023,
29909,
353,
4007,
12578,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
333,
4205,
13326,
1099,
29922,
333,
4205,
13326,
1099,
29892,
4660,
7900,
2433,
11692,
2824,
497,
580,
13,
1678,
15023,
29909,
29888,
353,
17288,
7900,
12578,
29889,
333,
7900,
12578,
29892,
4007,
12578,
29889,
25155,
7900,
12578,
29897,
363,
4007,
12578,
297,
15023,
29909,
29962,
13,
1678,
883,
29889,
465,
1657,
359,
29889,
1859,
1575,
353,
15023,
29909,
29888,
13,
13,
1678,
1178,
7900,
12578,
353,
883,
29889,
465,
1657,
359,
29889,
1272,
13,
13,
13,
1678,
565,
883,
29889,
7892,
29907,
328,
23364,
29889,
1272,
29901,
13,
4706,
565,
883,
29889,
546,
29887,
16138,
29889,
1272,
29991,
2433,
29915,
322,
883,
29889,
690,
27363,
29889,
1272,
29991,
2433,
29915,
322,
1178,
7900,
12578,
19216,
8516,
29901,
13,
9651,
639,
29887,
16138,
353,
883,
29889,
546,
29887,
16138,
29889,
1272,
13,
9651,
620,
27363,
353,
883,
29889,
690,
27363,
29889,
1272,
13,
9651,
13306,
353,
883,
29889,
12632,
29877,
29889,
1272,
13,
9651,
565,
751,
4405,
29877,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
333,
7900,
12578,
29922,
333,
7900,
12578,
29892,
546,
29887,
16138,
29922,
546,
29887,
16138,
29892,
690,
27363,
29922,
690,
27363,
29892,
12632,
29877,
29922,
12632,
29877,
29892,
4882,
29984,
2433,
11692,
2824,
4102,
580,
19216,
8516,
29901,
13,
18884,
11013,
877,
29909,
15430,
29877,
6571,
12337,
19947,
4286,
4830,
29898,
546,
29887,
16138,
876,
13,
18884,
736,
4050,
29918,
6886,
877,
29883,
328,
23364,
2182,
4405,
29877,
29889,
1420,
742,
3257,
2433,
29907,
328,
23364,
316,
751,
4405,
29877,
742,
689,
29922,
689,
29897,
13,
9651,
1683,
29901,
13,
18884,
26121,
29918,
1119,
6241,
353,
751,
4405,
29877,
29898,
333,
7900,
12578,
29922,
333,
7900,
12578,
29892,
546,
29887,
16138,
29922,
546,
29887,
16138,
29892,
690,
27363,
29922,
690,
27363,
29892,
12632,
29877,
29922,
12632,
29877,
29892,
345,
10947,
15922,
1114,
29922,
29900,
29892,
4882,
29984,
2433,
11692,
1495,
13,
18884,
4833,
29889,
7924,
29889,
1202,
29898,
29876,
4273,
29918,
1119,
6241,
29897,
13,
18884,
4833,
29889,
7924,
29889,
15060,
580,
13,
18884,
11013,
877,
2182,
4405,
29877,
376,
6571,
376,
274,
3922,
509,
1114,
419,
480,
985,
29877,
4286,
4830,
29898,
29876,
4273,
29918,
1119,
6241,
29889,
657,
29918,
546,
29887,
16138,
22130,
13,
18884,
736,
4050,
29918,
6886,
877,
29883,
328,
23364,
2182,
4405,
29877,
29889,
1420,
742,
3257,
2433,
29907,
328,
23364,
316,
751,
4405,
29877,
742,
689,
29922,
689,
29897,
13,
4706,
1683,
29901,
13,
9651,
11013,
877,
29925,
2733,
5815,
10843,
2897,
3949,
1066,
29991,
1495,
13,
9651,
736,
4050,
29918,
6886,
877,
29883,
328,
23364,
2182,
4405,
29877,
29889,
1420,
742,
3257,
2433,
29907,
328,
23364,
316,
751,
4405,
29877,
742,
689,
29922,
689,
29897,
13,
1678,
736,
4050,
29918,
6886,
877,
29883,
328,
23364,
2182,
4405,
29877,
29889,
1420,
742,
3257,
2433,
29907,
328,
23364,
316,
751,
4405,
29877,
742,
689,
29922,
689,
29897,
13,
13,
13,
13,
29992,
932,
29889,
13134,
11219,
1761,
279,
2182,
4405,
29877,
742,
23515,
29922,
1839,
7194,
3788,
5438,
11287,
13,
1753,
1051,
279,
2182,
4405,
29877,
7295,
13,
13,
1678,
15023,
29928,
353,
3295,
13326,
1099,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
333,
29965,
2146,
2628,
29922,
7924,
29889,
657,
877,
333,
29965,
2146,
2628,
5477,
4660,
4205,
29883,
2433,
11692,
2824,
497,
580,
13,
1678,
1051,
328,
29943,
353,
17288,
4205,
13326,
1099,
29889,
333,
4205,
13326,
1099,
29892,
3295,
13326,
1099,
29889,
25155,
4205,
13326,
1099,
29897,
363,
3295,
13326,
1099,
297,
15023,
29928,
29962,
13,
1678,
883,
353,
2391,
279,
2182,
4405,
29877,
2500,
580,
13,
13,
1678,
883,
29889,
2218,
13326,
10189,
29889,
1859,
1575,
353,
1051,
328,
29943,
13,
13,
1678,
1178,
4205,
13326,
1099,
353,
883,
29889,
2218,
13326,
10189,
29889,
1272,
13,
13,
1678,
15023,
29909,
353,
4007,
12578,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
333,
4205,
13326,
1099,
29922,
333,
4205,
13326,
1099,
29892,
4660,
7900,
2433,
11692,
2824,
497,
580,
13,
1678,
15023,
29909,
29888,
353,
17288,
7900,
12578,
29889,
333,
7900,
12578,
29892,
4007,
12578,
29889,
25155,
7900,
12578,
29897,
363,
4007,
12578,
297,
15023,
29909,
29962,
13,
13,
1678,
883,
29889,
465,
1657,
359,
29889,
1859,
1575,
353,
15023,
29909,
29888,
13,
13,
1678,
1178,
7900,
12578,
353,
883,
29889,
465,
1657,
359,
29889,
1272,
13,
13,
1678,
15023,
29984,
353,
751,
4405,
29877,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
333,
7900,
12578,
29922,
333,
7900,
12578,
29892,
4882,
29984,
2433,
11692,
2824,
497,
580,
13,
1678,
15023,
29984,
29888,
353,
17288,
2182,
4405,
29877,
29889,
333,
2182,
4405,
29877,
29892,
2182,
4405,
29877,
29889,
546,
29887,
16138,
29897,
363,
751,
4405,
29877,
297,
15023,
29984,
29962,
13,
1678,
883,
29889,
1119,
29877,
267,
29889,
1859,
1575,
353,
15023,
29984,
29888,
13,
13,
13,
13,
13,
13,
1678,
565,
883,
29889,
1119,
29877,
267,
29889,
1272,
19216,
8516,
29901,
13,
4706,
565,
883,
29889,
7892,
1252,
695,
29884,
381,
29889,
1272,
29901,
13,
9651,
1178,
2182,
4405,
29877,
353,
883,
29889,
1119,
29877,
267,
29889,
1272,
13,
9651,
15430,
29877,
353,
751,
4405,
29877,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
333,
2182,
4405,
29877,
29922,
333,
2182,
4405,
29877,
29892,
4660,
29984,
2433,
11692,
2824,
4102,
580,
13,
13,
9651,
15430,
29877,
29889,
2783,
1926,
279,
2182,
4405,
29877,
580,
13,
13,
9651,
4833,
29889,
7924,
29889,
15060,
580,
13,
9651,
11013,
877,
2182,
4405,
29877,
429,
695,
29884,
1458,
419,
480,
985,
29877,
1495,
13,
9651,
736,
4050,
29918,
6886,
877,
1761,
279,
2182,
4405,
29877,
29889,
1420,
742,
3611,
2433,
1293,
279,
751,
4778,
267,
742,
883,
29922,
689,
29897,
13,
13,
4706,
565,
883,
29889,
7892,
3853,
3673,
29889,
1272,
29901,
13,
9651,
1178,
2182,
4405,
29877,
353,
883,
29889,
1119,
29877,
267,
29889,
1272,
13,
9651,
736,
6684,
29898,
2271,
29918,
1454,
877,
287,
3673,
2182,
4405,
29877,
742,
1178,
2182,
4405,
29877,
29922,
333,
2182,
4405,
29877,
876,
13,
13,
13,
1678,
736,
4050,
29918,
6886,
877,
1761,
279,
2182,
4405,
29877,
29889,
1420,
742,
3611,
2433,
1293,
279,
751,
4778,
267,
742,
883,
29922,
689,
29897,
13,
13,
13,
29992,
932,
29889,
13134,
11219,
287,
3673,
2182,
4405,
29877,
742,
23515,
29922,
1839,
7194,
3788,
5438,
11287,
13,
1753,
1226,
3673,
2182,
4405,
29877,
7295,
13,
13,
1678,
1178,
2182,
4405,
29877,
353,
851,
29898,
3827,
29889,
5085,
29889,
657,
877,
333,
2182,
4405,
29877,
8785,
13,
1678,
15430,
29877,
353,
751,
4405,
29877,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
333,
2182,
4405,
29877,
29922,
333,
2182,
4405,
29877,
467,
4102,
580,
13,
1678,
883,
353,
2155,
3673,
2182,
4405,
29877,
2500,
29898,
546,
29887,
16138,
29922,
15430,
29877,
29889,
657,
29918,
546,
29887,
16138,
3285,
12632,
29877,
29922,
1119,
6241,
29889,
657,
29918,
12632,
29877,
3101,
13,
13,
1678,
565,
2009,
29889,
5696,
1275,
525,
7194,
2396,
13,
13,
4706,
565,
15430,
29877,
338,
6213,
29901,
13,
9651,
736,
6684,
29898,
2271,
29918,
1454,
877,
1761,
279,
2182,
4405,
29877,
8785,
13,
4706,
736,
4050,
29918,
6886,
877,
287,
3673,
2182,
4405,
29877,
29889,
1420,
742,
3611,
2433,
3853,
3673,
751,
4405,
29877,
742,
883,
29922,
689,
29897,
13,
1678,
1683,
29901,
13,
4706,
26121,
5894,
29887,
16138,
353,
883,
29889,
29876,
4273,
29918,
546,
29887,
16138,
29889,
1272,
13,
4706,
26121,
1666,
27363,
353,
883,
29889,
29876,
4273,
29918,
690,
27363,
29889,
1272,
13,
4706,
13306,
353,
883,
29889,
29876,
6962,
29918,
12632,
29877,
29889,
1272,
13,
4706,
565,
26121,
5894,
29887,
16138,
1275,
15430,
29877,
29889,
657,
29918,
546,
29887,
16138,
580,
322,
26121,
1666,
27363,
1275,
15430,
29877,
29889,
657,
29918,
690,
27363,
7295,
13,
9651,
11013,
703,
14991,
568,
1922,
9235,
12186,
2016,
1702,
263,
751,
4405,
29877,
613,
525,
2704,
1495,
13,
9651,
736,
4050,
29918,
6886,
877,
287,
3673,
2182,
4405,
29877,
29889,
1420,
742,
3611,
2433,
3853,
3673,
751,
4405,
29877,
742,
883,
29922,
689,
29897,
13,
4706,
1683,
29901,
13,
9651,
565,
751,
4405,
29877,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
546,
29887,
16138,
29922,
29876,
4273,
5894,
29887,
16138,
29892,
690,
27363,
29922,
29876,
4273,
1666,
27363,
29892,
4660,
29984,
2433,
11692,
742,
13,
462,
462,
259,
1178,
7900,
12578,
29922,
1119,
6241,
29889,
333,
7900,
12578,
467,
4102,
580,
2804,
6213,
29901,
13,
18884,
11013,
877,
29909,
15430,
29877,
29850,
5038,
17333,
19947,
4286,
4830,
29898,
29876,
4273,
5894,
29887,
16138,
511,
525,
2704,
1495,
13,
18884,
736,
4050,
29918,
6886,
877,
287,
3673,
2182,
4405,
29877,
29889,
1420,
742,
3611,
2433,
3853,
3673,
751,
4405,
29877,
742,
883,
29922,
689,
29897,
13,
4706,
15430,
29877,
29889,
842,
29918,
546,
29887,
16138,
29898,
29876,
4273,
5894,
29887,
16138,
29897,
13,
4706,
15430,
29877,
29889,
842,
29918,
690,
27363,
29898,
29876,
4273,
1666,
27363,
29897,
13,
4706,
15430,
29877,
29889,
842,
29918,
12632,
29877,
29898,
12632,
29877,
29897,
13,
4706,
4833,
29889,
7924,
29889,
15060,
580,
13,
4706,
11013,
703,
2182,
4405,
29877,
10551,
1114,
419,
480,
985,
29877,
29991,
1159,
13,
13,
1678,
736,
4050,
29918,
6886,
877,
287,
3673,
2182,
4405,
29877,
29889,
1420,
742,
689,
29922,
689,
29897,
13,
13,
29992,
932,
29889,
13134,
11219,
29883,
328,
23364,
2499,
725,
8657,
742,
23515,
29922,
1839,
7194,
3788,
5438,
11287,
13,
1753,
13840,
23364,
2499,
725,
8657,
7295,
13,
1678,
15023,
29928,
353,
3295,
13326,
1099,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
333,
29965,
2146,
2628,
29922,
7924,
29889,
657,
877,
333,
29965,
2146,
2628,
5477,
4660,
4205,
29883,
2433,
11692,
2824,
497,
580,
13,
1678,
1051,
328,
29943,
353,
17288,
4205,
13326,
1099,
29889,
333,
4205,
13326,
1099,
29892,
3295,
13326,
1099,
29889,
25155,
4205,
13326,
1099,
29897,
363,
3295,
13326,
1099,
297,
15023,
29928,
29962,
13,
1678,
883,
353,
21542,
23364,
2499,
725,
8657,
2500,
580,
13,
13,
1678,
883,
29889,
2218,
13326,
10189,
29889,
1859,
1575,
353,
1051,
328,
29943,
13,
13,
1678,
1178,
4205,
13326,
1099,
353,
883,
29889,
2218,
13326,
10189,
29889,
1272,
13,
13,
1678,
15023,
29909,
353,
4007,
12578,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
333,
4205,
13326,
1099,
29922,
333,
4205,
13326,
1099,
29892,
4660,
7900,
2433,
11692,
2824,
497,
580,
13,
1678,
15023,
29909,
29888,
353,
17288,
7900,
12578,
29889,
333,
7900,
12578,
29892,
4007,
12578,
29889,
25155,
7900,
12578,
29897,
363,
4007,
12578,
297,
15023,
29909,
29962,
13,
13,
1678,
883,
29889,
465,
1657,
359,
29889,
1859,
1575,
353,
15023,
29909,
29888,
13,
13,
1678,
1178,
7900,
12578,
353,
883,
29889,
465,
1657,
359,
29889,
1272,
13,
13,
1678,
15023,
29984,
353,
751,
4405,
29877,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
333,
7900,
12578,
29922,
333,
7900,
12578,
29892,
12632,
29877,
2433,
6857,
666,
433,
3423,
1054,
2350,
742,
4660,
29984,
2433,
11692,
2824,
497,
580,
13,
1678,
15023,
29984,
29888,
353,
17288,
2182,
4405,
29877,
29889,
333,
2182,
4405,
29877,
29892,
751,
4405,
29877,
29889,
546,
29887,
16138,
29897,
363,
751,
4405,
29877,
297,
15023,
29984,
29962,
13,
1678,
883,
29889,
1119,
29877,
267,
29889,
1859,
1575,
353,
15023,
29984,
29888,
13,
1678,
1178,
2182,
4405,
29877,
353,
883,
29889,
1119,
29877,
267,
29889,
1272,
13,
13,
13,
1678,
565,
883,
29889,
7892,
29907,
328,
23364,
29889,
1272,
29901,
13,
9651,
565,
883,
29889,
2218,
13326,
10189,
29889,
1272,
19216,
6213,
322,
883,
29889,
1119,
29877,
267,
29889,
1272,
2804,
6213,
29901,
13,
18884,
5136,
8657,
353,
883,
29889,
26123,
8657,
29889,
1272,
13,
18884,
565,
12440,
26126,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
333,
7900,
12578,
29922,
333,
7900,
12578,
29892,
333,
2182,
4405,
29877,
29922,
333,
2182,
4405,
29877,
29892,
5136,
8657,
29922,
26123,
8657,
29892,
13,
462,
462,
965,
4660,
2499,
2433,
11692,
2824,
4102,
580,
2804,
6213,
29901,
13,
462,
1678,
11013,
877,
29909,
5136,
8657,
6571,
12337,
19947,
4286,
4830,
29898,
26123,
8657,
876,
13,
462,
1678,
736,
4050,
29918,
6886,
877,
29883,
328,
23364,
2499,
725,
8657,
29889,
1420,
742,
3611,
2433,
29907,
328,
23364,
316,
12440,
26126,
742,
883,
29922,
689,
29897,
13,
18884,
1683,
29901,
13,
462,
1678,
26121,
29918,
26123,
8657,
353,
12440,
26126,
29898,
333,
7900,
12578,
29922,
333,
7900,
12578,
29892,
333,
2182,
4405,
29877,
29922,
333,
2182,
4405,
29877,
29892,
26123,
8657,
29922,
26123,
8657,
29892,
4660,
2499,
2433,
11692,
1495,
13,
462,
1678,
4833,
29889,
7924,
29889,
1202,
29898,
29876,
4273,
29918,
26123,
8657,
29897,
13,
462,
1678,
4833,
29889,
7924,
29889,
15060,
580,
13,
462,
1678,
11013,
877,
2499,
725,
8657,
376,
6571,
376,
274,
3922,
509,
1114,
419,
480,
985,
29877,
4286,
4830,
29898,
29876,
4273,
29918,
26123,
8657,
29889,
657,
29918,
26123,
8657,
22130,
13,
462,
1678,
736,
4050,
29918,
6886,
877,
29883,
328,
23364,
2499,
725,
8657,
29889,
1420,
742,
3611,
2433,
29907,
328,
23364,
316,
12440,
26126,
742,
883,
29922,
689,
29897,
13,
9651,
1683,
29901,
13,
18884,
11013,
877,
29925,
2733,
5815,
10843,
2897,
3949,
1066,
29991,
1495,
13,
18884,
736,
4050,
29918,
6886,
877,
29883,
328,
23364,
2499,
725,
8657,
29889,
1420,
742,
3611,
2433,
29907,
328,
23364,
316,
12440,
26126,
742,
883,
29922,
689,
29897,
13,
1678,
736,
4050,
29918,
6886,
877,
29883,
328,
23364,
2499,
725,
8657,
29889,
1420,
742,
3257,
2433,
29907,
328,
23364,
316,
12440,
26126,
742,
689,
29922,
689,
29897,
13,
13,
13,
13,
13,
13,
29992,
932,
29889,
13134,
11219,
1761,
279,
2499,
725,
8657,
742,
3519,
29922,
1839,
7194,
3788,
5438,
11287,
13,
1753,
1051,
279,
2499,
725,
8657,
7295,
13,
1678,
15023,
29928,
353,
3295,
13326,
1099,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
333,
29965,
2146,
2628,
29922,
7924,
29889,
657,
877,
333,
29965,
2146,
2628,
5477,
4660,
4205,
29883,
2433,
11692,
2824,
497,
580,
13,
1678,
1051,
328,
29943,
353,
17288,
4205,
13326,
1099,
29889,
333,
4205,
13326,
1099,
29892,
3295,
13326,
1099,
29889,
25155,
4205,
13326,
1099,
29897,
363,
3295,
13326,
1099,
297,
15023,
29928,
29962,
13,
1678,
883,
353,
2391,
279,
2499,
725,
8657,
2500,
580,
13,
13,
1678,
883,
29889,
2218,
13326,
10189,
29889,
1859,
1575,
353,
1051,
328,
29943,
13,
13,
1678,
1178,
4205,
13326,
1099,
353,
883,
29889,
2218,
13326,
10189,
29889,
1272,
13,
13,
1678,
15023,
29909,
353,
4007,
12578,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
333,
4205,
13326,
1099,
29922,
333,
4205,
13326,
1099,
29892,
4660,
7900,
2433,
11692,
2824,
497,
580,
13,
1678,
15023,
29909,
29888,
353,
17288,
7900,
12578,
29889,
333,
7900,
12578,
29892,
4007,
12578,
29889,
25155,
7900,
12578,
29897,
363,
4007,
12578,
297,
15023,
29909,
29962,
13,
13,
1678,
883,
29889,
465,
1657,
359,
29889,
1859,
1575,
353,
15023,
29909,
29888,
13,
13,
1678,
1178,
7900,
12578,
353,
883,
29889,
465,
1657,
359,
29889,
1272,
13,
13,
1678,
15023,
29984,
353,
751,
4405,
29877,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
333,
7900,
12578,
29922,
333,
7900,
12578,
29892,
13306,
2433,
6857,
666,
433,
3423,
1054,
2350,
742,
4660,
29984,
2433,
11692,
2824,
497,
580,
13,
1678,
15023,
29984,
29888,
353,
17288,
2182,
4405,
29877,
29889,
333,
2182,
4405,
29877,
29892,
751,
4405,
29877,
29889,
546,
29887,
16138,
29897,
363,
751,
4405,
29877,
297,
15023,
29984,
29962,
13,
1678,
883,
29889,
1119,
29877,
267,
29889,
1859,
1575,
353,
15023,
29984,
29888,
13,
1678,
1178,
2182,
4405,
29877,
353,
883,
29889,
1119,
29877,
267,
29889,
1272,
13,
13,
1678,
15023,
2499,
353,
12440,
26126,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
333,
7900,
12578,
29922,
333,
7900,
12578,
29892,
333,
2182,
4405,
29877,
29922,
333,
2182,
4405,
29877,
29892,
4882,
2499,
2433,
11692,
2824,
497,
580,
13,
1678,
15023,
2499,
29888,
353,
17288,
2499,
725,
26126,
29889,
333,
2499,
725,
26126,
29892,
12440,
26126,
29889,
26123,
8657,
29897,
363,
12440,
26126,
297,
15023,
2499,
29962,
13,
1678,
883,
29889,
26123,
26126,
29889,
1859,
1575,
353,
15023,
2499,
29888,
13,
13,
13,
1678,
565,
883,
29889,
26123,
26126,
29889,
1272,
2804,
6213,
29901,
13,
4706,
565,
883,
29889,
7892,
1252,
695,
29884,
381,
29889,
1272,
29901,
13,
9651,
1178,
2499,
725,
26126,
353,
883,
29889,
26123,
26126,
29889,
1272,
13,
9651,
5136,
8657,
353,
12440,
26126,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
333,
2499,
725,
26126,
29922,
333,
2499,
725,
26126,
29892,
4660,
2499,
2433,
11692,
2824,
4102,
580,
13,
9651,
5136,
8657,
29889,
2783,
1926,
279,
2499,
725,
8657,
580,
13,
9651,
4833,
29889,
7924,
29889,
15060,
580,
13,
9651,
11013,
877,
2499,
725,
8657,
429,
695,
29884,
1458,
419,
480,
985,
29877,
1495,
13,
9651,
736,
4050,
29918,
6886,
877,
1761,
279,
2499,
725,
8657,
29889,
1420,
742,
3611,
2433,
1293,
279,
12440,
26126,
742,
883,
29922,
689,
29897,
13,
13,
4706,
565,
883,
29889,
7892,
3853,
3673,
29889,
1272,
29901,
13,
9651,
1178,
2499,
725,
26126,
353,
883,
29889,
26123,
26126,
29889,
1272,
13,
9651,
736,
6684,
29898,
2271,
29918,
1454,
877,
287,
3673,
2499,
725,
8657,
742,
1178,
2499,
725,
26126,
29922,
333,
2499,
725,
26126,
876,
13,
13,
1678,
736,
4050,
29918,
6886,
877,
1761,
279,
2499,
725,
8657,
29889,
1420,
742,
3611,
2433,
1293,
279,
12440,
8657,
742,
883,
29922,
689,
29897,
13,
13,
13,
13,
13,
13,
13,
13,
29992,
932,
29889,
13134,
11219,
287,
3673,
2499,
725,
8657,
742,
23515,
29922,
1839,
7194,
3788,
5438,
11287,
13,
1753,
1226,
3673,
2499,
725,
8657,
7295,
13,
13,
1678,
1178,
2499,
725,
26126,
353,
851,
29898,
3827,
29889,
5085,
29889,
657,
877,
333,
2499,
725,
26126,
8785,
13,
1678,
5136,
8657,
353,
12440,
26126,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
333,
2499,
725,
26126,
29922,
333,
2499,
725,
26126,
29892,
4882,
2499,
2433,
11692,
2824,
4102,
580,
13,
13,
1678,
883,
353,
2155,
3673,
2499,
725,
8657,
2500,
29898,
26123,
8657,
29922,
26123,
8657,
29889,
657,
29918,
26123,
8657,
3101,
13,
13,
1678,
565,
2009,
29889,
5696,
1275,
525,
7194,
2396,
13,
13,
4706,
565,
5136,
8657,
338,
6213,
29901,
13,
9651,
736,
6684,
29898,
2271,
29918,
1454,
877,
1761,
279,
2499,
725,
8657,
8785,
13,
4706,
736,
4050,
29918,
6886,
877,
287,
3673,
2499,
725,
8657,
29889,
1420,
742,
3611,
2433,
3853,
3673,
12440,
8657,
742,
883,
29922,
689,
29897,
13,
1678,
1683,
29901,
13,
4706,
26121,
2499,
725,
8657,
353,
883,
29889,
29876,
4273,
29918,
26123,
8657,
29889,
1272,
13,
4706,
565,
26121,
2499,
725,
8657,
1360,
5136,
8657,
29889,
657,
29918,
26123,
8657,
7295,
13,
9651,
11013,
703,
14991,
568,
1922,
9235,
12186,
2016,
7213,
12440,
8657,
613,
525,
2704,
1495,
13,
9651,
736,
4050,
29918,
6886,
877,
287,
3673,
2499,
725,
8657,
29889,
1420,
742,
3611,
2433,
3853,
3673,
12440,
8657,
742,
883,
29922,
689,
29897,
13,
4706,
1683,
29901,
13,
9651,
565,
12440,
26126,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
26123,
8657,
29922,
29876,
4273,
2499,
725,
8657,
29892,
1178,
2182,
4405,
29877,
29922,
710,
29898,
26123,
8657,
29889,
657,
29918,
333,
2182,
4405,
29877,
511,
1178,
7900,
12578,
29922,
710,
29898,
26123,
8657,
29889,
657,
29918,
333,
7900,
12578,
511,
4660,
2499,
2433,
11692,
2824,
4102,
580,
2804,
6213,
29901,
13,
18884,
11013,
877,
29909,
5136,
8657,
29850,
5038,
17333,
19947,
4286,
4830,
29898,
29876,
4273,
2499,
725,
8657,
511,
525,
2704,
1495,
13,
18884,
736,
4050,
29918,
6886,
877,
287,
3673,
2499,
725,
8657,
29889,
1420,
742,
3611,
2433,
3853,
3673,
12440,
8657,
742,
883,
29922,
689,
29897,
13,
4706,
5136,
8657,
29889,
842,
29918,
26123,
8657,
29898,
29876,
4273,
2499,
725,
8657,
29897,
13,
4706,
4833,
29889,
7924,
29889,
15060,
580,
13,
4706,
11013,
703,
2499,
725,
8657,
10551,
1114,
419,
480,
985,
29877,
29991,
1159,
13,
13,
13,
13,
13,
1678,
736,
6684,
29898,
2271,
29918,
1454,
877,
1761,
279,
2499,
725,
8657,
8785,
13,
13,
13,
13,
13,
29992,
932,
29889,
13134,
11219,
29883,
328,
23364,
29909,
791,
423,
1113,
29877,
742,
23515,
29922,
1839,
7194,
3788,
5438,
11287,
13,
1753,
13840,
23364,
29909,
791,
423,
1113,
29877,
7295,
13,
1678,
15023,
29928,
353,
3295,
13326,
1099,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
333,
29965,
2146,
2628,
29922,
7924,
29889,
657,
877,
333,
29965,
2146,
2628,
5477,
4660,
4205,
29883,
2433,
11692,
2824,
497,
580,
13,
1678,
1051,
328,
29943,
353,
17288,
4205,
13326,
1099,
29889,
333,
4205,
13326,
1099,
29892,
3295,
13326,
1099,
29889,
25155,
4205,
13326,
1099,
29897,
363,
3295,
13326,
1099,
297,
15023,
29928,
29962,
13,
1678,
883,
353,
21542,
23364,
29909,
791,
423,
1113,
29877,
2500,
580,
13,
1678,
883,
29889,
2218,
13326,
10189,
29889,
1859,
1575,
353,
1051,
328,
29943,
13,
13,
1678,
1178,
4205,
13326,
1099,
353,
883,
29889,
2218,
13326,
10189,
29889,
1272,
13,
13,
1678,
15023,
29909,
353,
4007,
12578,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
333,
4205,
13326,
1099,
29922,
333,
4205,
13326,
1099,
29892,
4882,
7900,
2433,
11692,
2824,
497,
580,
13,
1678,
15023,
29909,
29888,
353,
17288,
7900,
12578,
29889,
333,
7900,
12578,
29897,
363,
4007,
12578,
297,
15023,
29909,
29962,
13,
13,
1678,
565,
883,
29889,
275,
29918,
1491,
29885,
4430,
7295,
13,
4706,
565,
883,
29889,
25155,
29909,
791,
423,
1113,
29877,
29889,
1272,
29991,
2433,
29915,
322,
883,
29889,
12846,
15679,
29889,
1272,
29991,
2433,
29915,
322,
883,
29889,
1562,
29889,
1272,
29991,
2433,
29915,
322,
883,
29889,
8058,
356,
2182,
4778,
267,
29991,
2433,
29915,
322,
883,
29889,
345,
10947,
15922,
3922,
29889,
1272,
2804,
6629,
322,
883,
29889,
2218,
13326,
10189,
29889,
1272,
19216,
8516,
322,
7431,
29898,
19641,
29909,
29888,
29897,
19216,
29900,
29901,
13,
9651,
3031,
15679,
353,
883,
29889,
12846,
15679,
29889,
1272,
13,
9651,
19410,
353,
883,
29889,
1562,
29889,
1272,
13,
9651,
4825,
356,
2182,
4778,
267,
353,
883,
29889,
8058,
356,
2182,
4778,
267,
29889,
1272,
13,
9651,
7763,
267,
15922,
3922,
353,
883,
29889,
345,
10947,
15922,
3922,
29889,
1272,
13,
13,
9651,
26121,
29918,
7712,
423,
1113,
29877,
353,
883,
29889,
25155,
29909,
791,
423,
1113,
29877,
29889,
1272,
13,
9651,
565,
319,
791,
423,
1113,
29877,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
333,
4205,
13326,
1099,
29922,
333,
4205,
13326,
1099,
29892,
9235,
29909,
791,
423,
1113,
29877,
29922,
29876,
4273,
29918,
7712,
423,
1113,
29877,
29892,
4882,
12810,
2433,
11692,
742,
12846,
15679,
29922,
12846,
15679,
29892,
1562,
29922,
1562,
467,
4102,
580,
2804,
6213,
29901,
13,
18884,
11013,
877,
29909,
263,
791,
423,
1113,
29877,
29850,
5038,
12337,
19947,
29889,
4286,
4830,
29898,
29876,
4273,
29918,
7712,
423,
1113,
29877,
511,
29915,
2704,
1495,
13,
18884,
736,
4050,
29918,
6886,
877,
29883,
328,
23364,
29909,
791,
423,
1113,
29877,
29889,
1420,
742,
3611,
2433,
29907,
328,
23364,
316,
319,
791,
423,
1111,
267,
742,
883,
29922,
689,
29897,
13,
9651,
1683,
29901,
13,
18884,
325,
300,
272,
29931,
353,
1051,
580,
13,
18884,
363,
1178,
7900,
12578,
297,
15023,
29909,
29888,
29901,
13,
462,
1678,
15023,
29984,
353,
751,
4405,
29877,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
333,
7900,
12578,
29922,
333,
7900,
12578,
29892,
345,
10947,
15922,
1114,
29922,
524,
29898,
345,
10947,
15922,
3922,
511,
4882,
29984,
2433,
11692,
2824,
497,
580,
13,
462,
1678,
15023,
29984,
29888,
353,
17288,
2182,
4405,
29877,
29889,
333,
2182,
4405,
29877,
29897,
363,
751,
4405,
29877,
297,
15023,
29984,
29962,
13,
462,
1678,
363,
1178,
2182,
4405,
29877,
297,
15023,
29984,
29888,
29901,
13,
462,
4706,
325,
300,
272,
29931,
29889,
4397,
29898,
333,
2182,
4405,
29877,
29897,
13,
13,
18884,
565,
29898,
2435,
29898,
5990,
272,
29931,
29897,
19216,
29900,
1125,
13,
13,
462,
1678,
716,
29918,
485,
353,
319,
791,
423,
1113,
29877,
29898,
25155,
29909,
791,
423,
1113,
29877,
29922,
29876,
4273,
29918,
7712,
423,
1113,
29877,
29892,
4882,
12810,
2433,
11692,
742,
333,
4205,
13326,
1099,
29922,
333,
4205,
13326,
1099,
29892,
12846,
15679,
29922,
12846,
15679,
29892,
1562,
29922,
1562,
29892,
8058,
356,
2182,
4778,
267,
29922,
8058,
356,
2182,
4778,
267,
29897,
13,
462,
1678,
4833,
29889,
7924,
29889,
1202,
29898,
1482,
29918,
485,
29897,
13,
462,
1678,
4833,
29889,
7924,
29889,
15060,
580,
13,
462,
1678,
565,
938,
29898,
8058,
356,
2182,
4778,
267,
15410,
2435,
29898,
5990,
272,
29931,
29897,
470,
938,
29898,
8058,
356,
2182,
4778,
267,
29897,
1360,
2435,
29898,
5990,
272,
29931,
1125,
13,
13,
462,
4706,
363,
1178,
2182,
4405,
29877,
297,
325,
300,
272,
29931,
29901,
13,
462,
9651,
3855,
29918,
1202,
29918,
345,
10947,
353,
751,
4405,
29877,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
333,
2182,
4405,
29877,
29922,
333,
2182,
4405,
29877,
29892,
4882,
29984,
2433,
11692,
2824,
4102,
580,
13,
462,
9651,
3855,
29918,
1202,
29918,
345,
10947,
29889,
11242,
345,
10947,
15922,
1114,
580,
13,
462,
9651,
26121,
29918,
485,
29918,
29939,
353,
319,
791,
423,
1111,
267,
2182,
4405,
29877,
29898,
333,
29909,
791,
423,
1113,
29877,
29922,
1482,
29918,
485,
29889,
333,
29909,
791,
423,
1113,
29877,
29892,
333,
2182,
4405,
29877,
29922,
333,
2182,
4405,
29877,
29897,
13,
462,
9651,
4833,
29889,
7924,
29889,
1202,
29898,
29876,
4273,
29918,
485,
29918,
29939,
29897,
13,
462,
9651,
4833,
29889,
7924,
29889,
15060,
580,
13,
462,
4706,
11013,
877,
2831,
314,
594,
15353,
3922,
6571,
751,
4778,
267,
712,
620,
412,
277,
314,
2897,
337,
1912,
12870,
263,
319,
791,
423,
1113,
29877,
4286,
4830,
29898,
2435,
29898,
5990,
272,
29931,
4961,
13,
13,
462,
4706,
736,
4050,
29918,
6886,
877,
29883,
328,
23364,
29909,
791,
423,
1113,
29877,
29889,
1420,
742,
3611,
2433,
29907,
328,
23364,
316,
319,
791,
423,
1111,
267,
742,
883,
29922,
689,
29897,
13,
13,
462,
1678,
565,
938,
29898,
8058,
356,
2182,
4778,
267,
29897,
29966,
2435,
29898,
5990,
272,
29931,
1125,
13,
462,
4706,
474,
29922,
29900,
13,
462,
4706,
1055,
29877,
5612,
300,
381,
353,
1051,
580,
13,
462,
4706,
1550,
29898,
29875,
29966,
524,
29898,
8058,
356,
2182,
4778,
267,
22164,
13,
462,
9651,
1178,
2182,
4405,
29877,
353,
4036,
29889,
16957,
29898,
5990,
272,
29931,
29897,
13,
462,
9651,
565,
1178,
2182,
4405,
29877,
451,
297,
1055,
29877,
5612,
300,
381,
29901,
13,
462,
18884,
1055,
29877,
5612,
300,
381,
29889,
4397,
29898,
333,
2182,
4405,
29877,
29897,
13,
462,
18884,
3855,
29918,
1202,
29918,
345,
10947,
353,
751,
4405,
29877,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
333,
2182,
4405,
29877,
29922,
333,
2182,
4405,
29877,
29892,
4660,
29984,
2433,
11692,
2824,
4102,
580,
13,
462,
18884,
3855,
29918,
1202,
29918,
345,
10947,
29889,
11242,
345,
10947,
15922,
1114,
580,
13,
462,
18884,
26121,
29918,
485,
29918,
29939,
353,
319,
791,
423,
1111,
267,
2182,
4405,
29877,
29898,
333,
29909,
791,
423,
1113,
29877,
29922,
1482,
29918,
485,
29889,
333,
29909,
791,
423,
1113,
29877,
29892,
333,
2182,
4405,
29877,
29922,
333,
2182,
4405,
29877,
29897,
13,
462,
18884,
4833,
29889,
7924,
29889,
1202,
29898,
29876,
4273,
29918,
485,
29918,
29939,
29897,
13,
462,
18884,
4833,
29889,
7924,
29889,
15060,
580,
13,
462,
9651,
474,
23661,
29896,
13,
462,
4706,
11013,
877,
2831,
314,
594,
15353,
3922,
6571,
751,
4778,
267,
263,
319,
791,
423,
1113,
29877,
4286,
4830,
29898,
8058,
356,
2182,
4778,
267,
876,
13,
13,
462,
4706,
736,
4050,
29918,
6886,
877,
29883,
328,
23364,
29909,
791,
423,
1113,
29877,
29889,
1420,
742,
3611,
2433,
29907,
328,
23364,
316,
319,
791,
423,
1111,
267,
742,
883,
29922,
689,
29897,
13,
18884,
1683,
29901,
13,
462,
1678,
11013,
877,
29940,
6241,
14859,
11352,
267,
274,
3922,
509,
3922,
2123,
1055,
29877,
872,
455,
314,
2897,
5054,
275,
12870,
1702,
594,
15353,
279,
953,
3672,
263,
791,
423,
1113,
29877,
1495,
13,
462,
1678,
736,
4050,
29918,
6886,
877,
29883,
328,
23364,
29909,
791,
423,
1113,
29877,
29889,
1420,
742,
3611,
2433,
29907,
328,
23364,
316,
319,
791,
423,
1111,
267,
742,
883,
29922,
689,
29897,
13,
4706,
1683,
29901,
13,
9651,
11013,
877,
30062,
3520,
2628,
758,
264,
4630,
10843,
2897,
3949,
1066,
1495,
13,
9651,
736,
4050,
29918,
6886,
877,
29883,
328,
23364,
29909,
791,
423,
1113,
29877,
29889,
1420,
742,
3611,
2433,
29907,
328,
23364,
316,
319,
791,
423,
1111,
267,
742,
883,
29922,
689,
29897,
13,
13,
1678,
736,
4050,
29918,
6886,
877,
29883,
328,
23364,
29909,
791,
423,
1113,
29877,
29889,
1420,
742,
3257,
353,
525,
29907,
328,
23364,
316,
319,
791,
423,
1111,
267,
742,
689,
29922,
689,
29897,
13,
13,
29992,
932,
29889,
13134,
11219,
1761,
279,
29909,
791,
423,
1113,
29877,
742,
23515,
29922,
1839,
7194,
3788,
5438,
11287,
13,
1753,
1051,
279,
29909,
791,
423,
1113,
29877,
7295,
13,
13,
1678,
883,
353,
2391,
279,
29909,
791,
423,
1113,
29877,
2500,
580,
13,
13,
1678,
15023,
29928,
353,
3295,
13326,
1099,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
333,
29965,
2146,
2628,
29922,
7924,
29889,
657,
877,
333,
29965,
2146,
2628,
5477,
4660,
4205,
29883,
2433,
11692,
2824,
497,
580,
13,
1678,
1051,
328,
29943,
353,
17288,
4205,
13326,
1099,
29889,
333,
4205,
13326,
1099,
1919,
3295,
13326,
1099,
29889,
25155,
4205,
13326,
1099,
29897,
363,
3295,
13326,
1099,
297,
15023,
29928,
29962,
13,
1678,
883,
29889,
2218,
13326,
10189,
29889,
1859,
1575,
353,
1051,
328,
29943,
13,
1678,
1178,
4205,
13326,
1099,
353,
883,
29889,
2218,
13326,
10189,
29889,
1272,
13,
1678,
3031,
15679,
353,
883,
29889,
12846,
15679,
29889,
1272,
13,
1678,
19410,
353,
883,
29889,
1562,
29889,
1272,
13,
13,
13,
1678,
15023,
12810,
353,
319,
791,
423,
1113,
29877,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
333,
4205,
13326,
1099,
29922,
333,
4205,
13326,
1099,
29892,
12846,
15679,
29922,
12846,
15679,
29892,
1562,
29922,
1562,
29892,
4882,
12810,
2433,
11692,
1495,
13,
1678,
15023,
12810,
29888,
353,
17288,
29909,
791,
423,
1113,
29877,
29889,
333,
29909,
791,
423,
1113,
29877,
29892,
319,
791,
423,
1113,
29877,
29889,
25155,
29909,
791,
423,
1113,
29877,
29897,
363,
319,
791,
423,
1113,
29877,
297,
15023,
12810,
29962,
13,
13,
1678,
883,
29889,
7712,
423,
1111,
267,
29889,
1859,
1575,
353,
15023,
12810,
29888,
13,
13,
1678,
1596,
877,
333,
29909,
791,
423,
1113,
29877,
353,
6571,
4286,
4830,
29898,
689,
29889,
7712,
423,
1111,
267,
29889,
1272,
876,
13,
13,
1678,
565,
883,
29889,
7712,
423,
1111,
267,
29889,
1272,
2804,
6213,
29901,
13,
13,
4706,
565,
883,
29889,
7892,
1252,
695,
29884,
381,
29889,
1272,
29901,
13,
9651,
1178,
29909,
791,
423,
1113,
29877,
353,
883,
29889,
7712,
423,
1111,
267,
29889,
1272,
13,
9651,
263,
791,
423,
1113,
29877,
353,
319,
791,
423,
1113,
29877,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
333,
29909,
791,
423,
1113,
29877,
29922,
333,
29909,
791,
423,
1113,
29877,
29892,
4660,
12810,
2433,
11692,
2824,
4102,
580,
13,
9651,
263,
791,
423,
1113,
29877,
29889,
2783,
1926,
279,
29909,
791,
423,
1113,
29877,
580,
13,
9651,
4833,
29889,
7924,
29889,
15060,
580,
13,
9651,
11013,
877,
29909,
791,
423,
1113,
29877,
429,
695,
29884,
1458,
419,
480,
985,
29877,
1495,
13,
9651,
736,
4050,
29918,
6886,
877,
1761,
279,
29909,
791,
423,
1113,
29877,
29889,
1420,
742,
3611,
2433,
1293,
279,
319,
791,
423,
1111,
267,
742,
883,
29922,
689,
29897,
13,
13,
4706,
565,
883,
29889,
7892,
3853,
3673,
29889,
1272,
29901,
13,
9651,
1178,
29909,
791,
423,
1113,
29877,
353,
883,
29889,
7712,
423,
1111,
267,
29889,
1272,
13,
9651,
736,
6684,
29898,
2271,
29918,
1454,
877,
287,
3673,
29909,
791,
423,
1113,
29877,
742,
1178,
29909,
791,
423,
1113,
29877,
29922,
333,
29909,
791,
423,
1113,
29877,
876,
13,
1678,
1683,
29901,
13,
4706,
11013,
877,
29940,
6241,
14859,
263,
791,
423,
1113,
29877,
16954,
12401,
1114,
1495,
13,
4706,
736,
4050,
29918,
6886,
877,
1761,
279,
29909,
791,
423,
1113,
29877,
29889,
1420,
742,
3611,
2433,
1293,
279,
319,
791,
423,
1111,
267,
742,
883,
29922,
689,
29897,
13,
13,
1678,
736,
4050,
29918,
6886,
877,
1761,
279,
29909,
791,
423,
1113,
29877,
29889,
1420,
742,
3611,
2433,
1293,
279,
319,
791,
423,
1111,
267,
742,
883,
29922,
689,
29897,
13,
13,
13,
13,
13,
29992,
932,
29889,
13134,
11219,
287,
3673,
29909,
791,
423,
1113,
29877,
742,
23515,
29922,
1839,
7194,
3788,
5438,
11287,
13,
1753,
1226,
3673,
29909,
791,
423,
1113,
29877,
7295,
13,
1678,
1178,
29909,
791,
423,
1113,
29877,
353,
851,
29898,
3827,
29889,
5085,
29889,
657,
877,
333,
29909,
791,
423,
1113,
29877,
8785,
13,
1678,
263,
791,
423,
1113,
29877,
353,
319,
791,
423,
1113,
29877,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
333,
29909,
791,
423,
1113,
29877,
29922,
333,
29909,
791,
423,
1113,
29877,
29892,
4882,
12810,
2433,
11692,
2824,
4102,
580,
13,
13,
1678,
565,
263,
791,
423,
1113,
29877,
338,
6213,
29901,
13,
4706,
11013,
877,
2008,
280,
29883,
1421,
3672,
263,
791,
423,
1113,
29877,
1495,
13,
4706,
736,
6684,
29898,
2271,
29918,
1454,
877,
1761,
279,
29909,
791,
423,
1113,
29877,
8785,
13,
13,
1678,
883,
353,
2155,
3673,
29909,
791,
423,
1113,
29877,
2500,
29898,
7712,
423,
1113,
29877,
29922,
7712,
423,
1113,
29877,
29889,
657,
29918,
25155,
29909,
791,
423,
1113,
29877,
3285,
12846,
15679,
29922,
7712,
423,
1113,
29877,
29889,
657,
29918,
12846,
15679,
3285,
1562,
29922,
7712,
423,
1113,
29877,
29889,
657,
29918,
1562,
3101,
13,
13,
1678,
565,
2009,
29889,
5696,
1275,
525,
7194,
2396,
13,
13,
4706,
565,
263,
791,
423,
1113,
29877,
338,
6213,
29901,
13,
9651,
736,
6684,
29898,
2271,
29918,
1454,
877,
1761,
279,
29909,
791,
423,
1113,
29877,
8785,
13,
4706,
736,
4050,
29918,
6886,
877,
287,
3673,
2499,
725,
8657,
29889,
1420,
742,
3611,
2433,
3853,
3673,
12440,
8657,
742,
883,
29922,
689,
29897,
13,
1678,
1683,
29901,
13,
4706,
9235,
29909,
791,
423,
1113,
29877,
353,
883,
29889,
29876,
4273,
29909,
791,
423,
1113,
29877,
29889,
1272,
13,
4706,
2420,
29877,
28516,
15679,
353,
883,
29889,
29876,
6962,
28516,
15679,
29889,
1272,
13,
4706,
2420,
29877,
29909,
1217,
353,
883,
29889,
29876,
6962,
29909,
1217,
29889,
1272,
13,
4706,
565,
9235,
29909,
791,
423,
1113,
29877,
1275,
263,
791,
423,
1113,
29877,
29889,
657,
29918,
25155,
29909,
791,
423,
1113,
29877,
580,
322,
2420,
29877,
28516,
15679,
1275,
263,
791,
423,
1113,
29877,
29889,
657,
29918,
12846,
15679,
580,
322,
2420,
29877,
29909,
1217,
1275,
263,
791,
423,
1113,
29877,
29889,
657,
29918,
1562,
580,
584,
13,
9651,
11013,
703,
14991,
568,
659,
2361,
20506,
7213,
319,
791,
423,
1113,
29877,
613,
525,
2704,
1495,
13,
9651,
736,
4050,
29918,
6886,
877,
287,
3673,
29909,
791,
423,
1113,
29877,
29889,
1420,
742,
3611,
2433,
3853,
3673,
319,
791,
423,
1113,
29877,
742,
883,
29922,
689,
29897,
13,
4706,
1683,
29901,
13,
9651,
565,
319,
791,
423,
1113,
29877,
29889,
1972,
29889,
4572,
29918,
1609,
29898,
25155,
29909,
791,
423,
1113,
29877,
29922,
25155,
29909,
791,
423,
1113,
29877,
29892,
1178,
4205,
13326,
1099,
29922,
7712,
423,
1113,
29877,
29889,
333,
4205,
13326,
1099,
29892,
13,
462,
462,
9651,
3031,
15679,
29922,
29876,
6962,
28516,
15679,
29892,
1562,
29922,
29876,
6962,
29909,
1217,
29892,
4660,
12810,
2433,
11692,
2824,
4102,
580,
2804,
6213,
29901,
13,
18884,
11013,
877,
29909,
263,
791,
423,
1113,
29877,
29850,
5038,
17333,
19947,
4286,
4830,
29898,
25155,
29909,
791,
423,
1113,
29877,
511,
525,
2704,
1495,
13,
18884,
736,
4050,
29918,
6886,
877,
287,
3673,
29909,
791,
423,
1113,
29877,
29889,
1420,
742,
3611,
2433,
3853,
3673,
319,
791,
423,
1113,
29877,
742,
883,
29922,
689,
29897,
13,
4706,
263,
791,
423,
1113,
29877,
29889,
842,
29918,
25155,
29909,
791,
423,
1113,
29877,
29898,
25155,
29909,
791,
423,
1113,
29877,
29897,
13,
4706,
263,
791,
423,
1113,
29877,
29889,
842,
29918,
1562,
29898,
29876,
6962,
29909,
1217,
29897,
13,
4706,
263,
791,
423,
1113,
29877,
29889,
842,
29918,
12846,
15679,
29898,
29876,
6962,
28516,
15679,
29897,
13,
4706,
4833,
29889,
7924,
29889,
15060,
580,
13,
4706,
11013,
703,
29909,
791,
423,
1113,
29877,
10551,
1114,
419,
480,
985,
29877,
29991,
1159,
13,
13,
1678,
736,
4050,
29918,
6886,
877,
287,
3673,
29909,
791,
423,
1113,
29877,
29889,
1420,
742,
3611,
2433,
3853,
3673,
319,
791,
423,
1113,
29877,
742,
883,
29922,
689,
29897,
13,
13,
13,
29992,
932,
29889,
13134,
11219,
1495,
13,
1753,
297,
11088,
7295,
13,
1678,
736,
4050,
29918,
6886,
877,
2248,
29889,
1420,
1495,
13,
13,
13,
29992,
932,
29889,
13134,
11219,
284,
9447,
1495,
13,
1753,
394,
9447,
7295,
13,
1678,
14550,
13,
1678,
1720,
504,
336,
1922,
429,
13141,
316,
1986,
429,
747,
381,
260,
1107,
294,
29889,
11893,
2249,
1556,
26881,
1922,
429,
13141,
437,
29784,
29899,
8704,
29899,
2371,
13,
1678,
1094,
707,
329,
10939,
316,
270,
2255,
525,
1272,
29915,
29872,
525,
13099,
29915,
707,
1368,
694,
2471,
270,
328,
520,
1107,
29874,
29889,
2272,
13,
1678,
584,
2457,
29901,
13,
1678,
14550,
13,
1678,
736,
4050,
29918,
6886,
877,
284,
12609,
29889,
1420,
742,
1272,
29922,
1272,
29892,
13099,
29922,
13099,
29897,
13,
13,
13,
13,
29992,
932,
29889,
2704,
13789,
29898,
29946,
29900,
29946,
29897,
13,
1753,
1813,
29918,
1333,
29918,
11940,
29898,
29872,
1125,
13,
1678,
14550,
13,
1678,
12994,
9248,
279,
604,
1883,
316,
282,
4064,
10189,
8145,
14567,
3922,
448,
7331,
29871,
29946,
29900,
29946,
13,
1678,
584,
3207,
321,
29901,
13,
1678,
584,
2457,
29901,
13,
1678,
14550,
13,
1678,
736,
4050,
29918,
6886,
877,
29946,
29900,
29946,
29889,
1420,
5477,
29871,
29946,
29900,
29946,
13,
13,
13,
29992,
932,
29889,
13134,
11219,
1188,
449,
1495,
13,
1753,
872,
381,
7295,
13,
1678,
4867,
1839,
1188,
3192,
29918,
262,
2033,
353,
7700,
13,
1678,
736,
6684,
29898,
2271,
29918,
1454,
877,
262,
11088,
8785,
13,
13,
13,
361,
4770,
978,
1649,
1275,
525,
1649,
3396,
1649,
2396,
13,
1678,
623,
29889,
3389,
29898,
3069,
2433,
29900,
29889,
29900,
29889,
29900,
29889,
29900,
742,
4744,
29922,
5574,
29897,
13,
13,
2
] |
backend/app/utils.py | dashdashforce/int20h-test-photo-viewer | 0 | 23276 |
from functools import reduce
from itertools import groupby
from operator import add, itemgetter
def merge_records_by(key, combine):
return lambda first, second: {
k: first[k] if k == key else combine(first[k], second[k])
for k in first
}
def merge_list_of_records_by(key, combine):
keyprop = itemgetter(key)
return lambda lst: [
reduce(merge_records_by(key, combine), records)
for _, records in groupby(sorted(lst, key=keyprop), keyprop)
]
| [
1,
29871,
13,
3166,
2090,
312,
8789,
1053,
10032,
13,
3166,
4256,
8504,
1053,
2318,
1609,
13,
3166,
5455,
1053,
788,
29892,
2944,
657,
357,
13,
13,
13,
1753,
10366,
29918,
3757,
4339,
29918,
1609,
29898,
1989,
29892,
14405,
1125,
13,
1678,
736,
14013,
937,
29892,
1473,
29901,
426,
13,
4706,
413,
29901,
937,
29961,
29895,
29962,
565,
413,
1275,
1820,
1683,
14405,
29898,
4102,
29961,
29895,
1402,
1473,
29961,
29895,
2314,
13,
4706,
363,
413,
297,
937,
13,
1678,
500,
13,
13,
13,
1753,
10366,
29918,
1761,
29918,
974,
29918,
3757,
4339,
29918,
1609,
29898,
1989,
29892,
14405,
1125,
13,
1678,
1820,
7728,
353,
2944,
657,
357,
29898,
1989,
29897,
13,
1678,
736,
14013,
24471,
29901,
518,
13,
4706,
10032,
29898,
14634,
29918,
3757,
4339,
29918,
1609,
29898,
1989,
29892,
14405,
511,
6475,
29897,
13,
4706,
363,
17117,
6475,
297,
2318,
1609,
29898,
24582,
29898,
20155,
29892,
1820,
29922,
1989,
7728,
511,
1820,
7728,
29897,
13,
1678,
4514,
13,
2
] |
arviz/plots/backends/matplotlib/separationplot.py | sudojarvis/arviz | 1,159 | 31540 | <reponame>sudojarvis/arviz
"""Matplotlib separation plot."""
import matplotlib.pyplot as plt
import numpy as np
from ...plot_utils import _scale_fig_size
from . import backend_kwarg_defaults, backend_show, create_axes_grid
def plot_separation(
y,
y_hat,
y_hat_line,
label_y_hat,
expected_events,
figsize,
textsize,
color,
legend,
locs,
width,
ax,
plot_kwargs,
y_hat_line_kwargs,
exp_events_kwargs,
backend_kwargs,
show,
):
"""Matplotlib separation plot."""
if backend_kwargs is None:
backend_kwargs = {}
if plot_kwargs is None:
plot_kwargs = {}
# plot_kwargs.setdefault("color", "C0")
# if color:
plot_kwargs["color"] = color
if y_hat_line_kwargs is None:
y_hat_line_kwargs = {}
y_hat_line_kwargs.setdefault("color", "k")
if exp_events_kwargs is None:
exp_events_kwargs = {}
exp_events_kwargs.setdefault("color", "k")
exp_events_kwargs.setdefault("marker", "^")
exp_events_kwargs.setdefault("s", 100)
exp_events_kwargs.setdefault("zorder", 2)
backend_kwargs = {
**backend_kwarg_defaults(),
**backend_kwargs,
}
(figsize, *_) = _scale_fig_size(figsize, textsize, 1, 1)
backend_kwargs.setdefault("figsize", figsize)
backend_kwargs["squeeze"] = True
if ax is None:
_, ax = create_axes_grid(1, backend_kwargs=backend_kwargs)
idx = np.argsort(y_hat)
for i, loc in enumerate(locs):
positive = not y[idx][i] == 0
alpha = 1 if positive else 0.3
ax.bar(loc, 1, width=width, alpha=alpha, **plot_kwargs)
if y_hat_line:
ax.plot(np.linspace(0, 1, len(y_hat)), y_hat[idx], label=label_y_hat, **y_hat_line_kwargs)
if expected_events:
expected_events = int(np.round(np.sum(y_hat)))
ax.scatter(
y_hat[idx][len(y_hat) - expected_events - 1],
0,
label="Expected events",
**exp_events_kwargs
)
if legend and (expected_events or y_hat_line):
handles, labels = ax.get_legend_handles_labels()
labels_dict = dict(zip(labels, handles))
ax.legend(labels_dict.values(), labels_dict.keys())
ax.set_xticks([])
ax.set_yticks([])
ax.set_xlim(0, 1)
ax.set_ylim(0, 1)
if backend_show(show):
plt.show()
return ax
| [
1,
529,
276,
1112,
420,
29958,
29879,
566,
3848,
279,
1730,
29914,
279,
29894,
466,
13,
15945,
29908,
9782,
17357,
23683,
6492,
1213,
15945,
13,
5215,
22889,
29889,
2272,
5317,
408,
14770,
13,
5215,
12655,
408,
7442,
13,
13,
3166,
2023,
5317,
29918,
13239,
1053,
903,
7052,
29918,
1003,
29918,
2311,
13,
3166,
869,
1053,
14998,
29918,
11022,
1191,
29918,
4381,
29879,
29892,
14998,
29918,
4294,
29892,
1653,
29918,
1165,
267,
29918,
7720,
13,
13,
13,
1753,
6492,
29918,
25048,
362,
29898,
13,
1678,
343,
29892,
13,
1678,
343,
29918,
2455,
29892,
13,
1678,
343,
29918,
2455,
29918,
1220,
29892,
13,
1678,
3858,
29918,
29891,
29918,
2455,
29892,
13,
1678,
3806,
29918,
13604,
29892,
13,
1678,
2537,
2311,
29892,
13,
1678,
1426,
2311,
29892,
13,
1678,
2927,
29892,
13,
1678,
15983,
29892,
13,
1678,
1180,
29879,
29892,
13,
1678,
2920,
29892,
13,
1678,
4853,
29892,
13,
1678,
6492,
29918,
19290,
29892,
13,
1678,
343,
29918,
2455,
29918,
1220,
29918,
19290,
29892,
13,
1678,
1518,
29918,
13604,
29918,
19290,
29892,
13,
1678,
14998,
29918,
19290,
29892,
13,
1678,
1510,
29892,
13,
1125,
13,
1678,
9995,
9782,
17357,
23683,
6492,
1213,
15945,
13,
1678,
565,
14998,
29918,
19290,
338,
6213,
29901,
13,
4706,
14998,
29918,
19290,
353,
6571,
13,
13,
1678,
565,
6492,
29918,
19290,
338,
6213,
29901,
13,
4706,
6492,
29918,
19290,
353,
6571,
13,
13,
1678,
396,
6492,
29918,
19290,
29889,
842,
4381,
703,
2780,
613,
376,
29907,
29900,
1159,
13,
1678,
396,
565,
2927,
29901,
13,
1678,
6492,
29918,
19290,
3366,
2780,
3108,
353,
2927,
13,
13,
1678,
565,
343,
29918,
2455,
29918,
1220,
29918,
19290,
338,
6213,
29901,
13,
4706,
343,
29918,
2455,
29918,
1220,
29918,
19290,
353,
6571,
13,
13,
1678,
343,
29918,
2455,
29918,
1220,
29918,
19290,
29889,
842,
4381,
703,
2780,
613,
376,
29895,
1159,
13,
13,
1678,
565,
1518,
29918,
13604,
29918,
19290,
338,
6213,
29901,
13,
4706,
1518,
29918,
13604,
29918,
19290,
353,
6571,
13,
13,
1678,
1518,
29918,
13604,
29918,
19290,
29889,
842,
4381,
703,
2780,
613,
376,
29895,
1159,
13,
1678,
1518,
29918,
13604,
29918,
19290,
29889,
842,
4381,
703,
22976,
613,
13898,
1159,
13,
1678,
1518,
29918,
13604,
29918,
19290,
29889,
842,
4381,
703,
29879,
613,
29871,
29896,
29900,
29900,
29897,
13,
1678,
1518,
29918,
13604,
29918,
19290,
29889,
842,
4381,
703,
29920,
2098,
613,
29871,
29906,
29897,
13,
13,
1678,
14998,
29918,
19290,
353,
426,
13,
4706,
3579,
27852,
29918,
11022,
1191,
29918,
4381,
29879,
3285,
13,
4706,
3579,
27852,
29918,
19290,
29892,
13,
1678,
500,
13,
13,
1678,
313,
1003,
2311,
29892,
334,
19925,
353,
903,
7052,
29918,
1003,
29918,
2311,
29898,
1003,
2311,
29892,
1426,
2311,
29892,
29871,
29896,
29892,
29871,
29896,
29897,
13,
1678,
14998,
29918,
19290,
29889,
842,
4381,
703,
1003,
2311,
613,
2537,
2311,
29897,
13,
1678,
14998,
29918,
19290,
3366,
29879,
802,
29872,
911,
3108,
353,
5852,
13,
13,
1678,
565,
4853,
338,
6213,
29901,
13,
4706,
17117,
4853,
353,
1653,
29918,
1165,
267,
29918,
7720,
29898,
29896,
29892,
14998,
29918,
19290,
29922,
27852,
29918,
19290,
29897,
13,
13,
1678,
22645,
353,
7442,
29889,
5085,
441,
29898,
29891,
29918,
2455,
29897,
13,
13,
1678,
363,
474,
29892,
1180,
297,
26985,
29898,
2029,
29879,
1125,
13,
4706,
6374,
353,
451,
343,
29961,
13140,
3816,
29875,
29962,
1275,
29871,
29900,
13,
4706,
15595,
353,
29871,
29896,
565,
6374,
1683,
29871,
29900,
29889,
29941,
13,
4706,
4853,
29889,
1646,
29898,
2029,
29892,
29871,
29896,
29892,
2920,
29922,
2103,
29892,
15595,
29922,
2312,
29892,
3579,
5317,
29918,
19290,
29897,
13,
13,
1678,
565,
343,
29918,
2455,
29918,
1220,
29901,
13,
4706,
4853,
29889,
5317,
29898,
9302,
29889,
1915,
3493,
29898,
29900,
29892,
29871,
29896,
29892,
7431,
29898,
29891,
29918,
2455,
8243,
343,
29918,
2455,
29961,
13140,
1402,
3858,
29922,
1643,
29918,
29891,
29918,
2455,
29892,
3579,
29891,
29918,
2455,
29918,
1220,
29918,
19290,
29897,
13,
13,
1678,
565,
3806,
29918,
13604,
29901,
13,
4706,
3806,
29918,
13604,
353,
938,
29898,
9302,
29889,
14486,
29898,
9302,
29889,
2083,
29898,
29891,
29918,
2455,
4961,
13,
4706,
4853,
29889,
1557,
2620,
29898,
13,
9651,
343,
29918,
2455,
29961,
13140,
3816,
2435,
29898,
29891,
29918,
2455,
29897,
448,
3806,
29918,
13604,
448,
29871,
29896,
1402,
13,
632,
29900,
29892,
13,
9651,
3858,
543,
1252,
6021,
4959,
613,
13,
9651,
3579,
4548,
29918,
13604,
29918,
19290,
13,
4706,
1723,
13,
13,
1678,
565,
15983,
322,
313,
9684,
29918,
13604,
470,
343,
29918,
2455,
29918,
1220,
1125,
13,
4706,
17766,
29892,
11073,
353,
4853,
29889,
657,
29918,
26172,
29918,
3179,
793,
29918,
21134,
580,
13,
4706,
11073,
29918,
8977,
353,
9657,
29898,
7554,
29898,
21134,
29892,
17766,
876,
13,
4706,
4853,
29889,
26172,
29898,
21134,
29918,
8977,
29889,
5975,
3285,
11073,
29918,
8977,
29889,
8149,
3101,
13,
13,
1678,
4853,
29889,
842,
29918,
486,
7358,
4197,
2314,
13,
1678,
4853,
29889,
842,
29918,
3637,
7358,
4197,
2314,
13,
1678,
4853,
29889,
842,
29918,
29916,
2576,
29898,
29900,
29892,
29871,
29896,
29897,
13,
1678,
4853,
29889,
842,
29918,
29891,
2576,
29898,
29900,
29892,
29871,
29896,
29897,
13,
13,
1678,
565,
14998,
29918,
4294,
29898,
4294,
1125,
13,
4706,
14770,
29889,
4294,
580,
13,
13,
1678,
736,
4853,
13,
2
] |
src/python/turicreate/toolkits/object_detector/_tf_image_augmenter.py | cookingcodewithme/turicreate | 11,356 | 194278 | # -*- coding: utf-8 -*-
# Copyright © 2019 Apple Inc. All rights reserved.
#
# Use of this source code is governed by a BSD-3-clause license that can
# be found in the LICENSE.txt file or at https://opensource.org/licenses/BSD-3-Clause
from __future__ import print_function as _
from __future__ import division as _
from __future__ import absolute_import as _
import numpy as np
from PIL import Image
import turicreate.toolkits._tf_utils as _utils
import turicreate as tc
from turicreate._deps.minimal_package import _minimal_package_import_check
# in conjunction with minimal package
def _lazy_import_tensorflow():
from turicreate._deps.minimal_package import _minimal_package_import_check
_tf = _minimal_package_import_check("tensorflow.compat.v1")
return _tf
_DEFAULT_AUG_PARAMS = {
"max_hue_adjust": 0.05,
"max_brightness": 0.05,
"max_contrast": 1.25,
"max_saturation": 1.25,
"skip_probability_flip": 0.5,
"min_aspect_ratio": 0.8,
"max_aspect_ratio": 1.25,
"min_area_fraction_crop": 0.15,
"max_area_fraction_crop": 1.0,
"min_area_fraction_pad": 1.0,
"max_area_fraction_pad": 2.0,
"max_attempts": 50,
"skip_probability_pad": 0.1,
"skip_probability_crop": 0.1,
"min_object_covered": 0.0,
"min_eject_coverage": 0.5,
"resize_method": "turicreate",
}
def interpolate(alpha_tf, x, y):
tf = _lazy_import_tensorflow()
x = tf.constant(x, dtype=tf.float32)
y = tf.constant(y, dtype=tf.float32)
range = tf.math.subtract(y, x)
delta = tf.math.multiply(alpha_tf, range)
return tf.math.add(x, delta)
def hue_augmenter(
image,
annotation,
random_alpha_tf,
max_hue_adjust=_DEFAULT_AUG_PARAMS["max_hue_adjust"],
):
tf = _lazy_import_tensorflow()
# Apply the random rotation around the color wheel.
hue_delta = interpolate(random_alpha_tf[0], -max_hue_adjust, max_hue_adjust)
image = tf.image.adjust_hue(image, hue_delta)
image = tf.clip_by_value(image, 0, 1)
# No geometry changes, so just copy the annotations.
return image, annotation
def color_augmenter(
image,
annotation,
random_alpha_tf,
max_brightness=_DEFAULT_AUG_PARAMS["max_brightness"],
max_contrast=_DEFAULT_AUG_PARAMS["max_contrast"],
max_saturation=_DEFAULT_AUG_PARAMS["max_saturation"],
):
tf = _lazy_import_tensorflow()
# Apply the random adjustment to brightness.
brightness_delta = interpolate(random_alpha_tf[0], -max_brightness, max_brightness)
image = tf.image.adjust_brightness(image, brightness_delta)
# Apply the random adjustment to contrast.
saturation_delta = interpolate(random_alpha_tf[1], 1/max_saturation, max_saturation)
image = tf.image.adjust_saturation(image, saturation_delta)
# Apply random adjustment to saturation.
contrast_delta = interpolate(random_alpha_tf[2], 1/max_contrast, max_contrast)
image = tf.image.adjust_contrast(image, contrast_delta)
image = tf.clip_by_value(image, 0, 1)
# No geometry changes, so just copy the annotations.
return image, annotation
def resize_augmenter(image, annotation, output_shape):
resize_method = _DEFAULT_AUG_PARAMS["resize_method"]
def resize_PIL_image(image, output_shape):
image *= 255.0
image = image.astype("uint8")
pil_img = Image.fromarray(image)
resize_img = pil_img.resize(
(output_shape[1], output_shape[0]), resample=Image.BILINEAR
)
np_img = np.array(resize_img)
np_img = np_img.astype(np.float32)
np_img /= 255.0
return np_img
def resize_turicreate_image(image, output_shape):
image *= 255.0
image = image.astype("uint8")
FORMAT_RAW = 2
tc_image = tc.Image(
_image_data=image.tobytes(),
_width=image.shape[1],
_height=image.shape[0],
_channels=image.shape[2],
_format_enum=FORMAT_RAW,
_image_data_size=image.size,
)
tc_image = tc.image_analysis.resize(
tc_image, output_shape[1], output_shape[0], resample="bilinear"
)
image = tc_image.pixel_data
image = image.astype(np.float32)
image /= 255.0
return image
if resize_method == "tensorflow":
tf = _lazy_import_tensorflow()
new_height = tf.cast(output_shape[0], dtype=tf.int32)
new_width = tf.cast(output_shape[1], dtype=tf.int32)
# Determine the affine transform to apply and apply to the image itself.
image_scaled = tf.squeeze(
tf.image.resize_bilinear(tf.expand_dims(image, 0), [new_height, new_width]),
[0],
)
elif resize_method == "PIL":
image_scaled = tf.numpy_function(
func=resize_PIL_image, inp=[image, output_shape], Tout=[tf.float32]
)
elif resize_method == "turicreate":
tf = _lazy_import_tensorflow()
image_scaled = tf.numpy_function(
func=resize_turicreate_image, inp=[image, output_shape], Tout=[tf.float32]
)
else:
raise Exception("Non-supported resize method.")
image_clipped = tf.clip_by_value(image_scaled, 0.0, 1.0)
# No geometry changes (because of relative co-ordinate system)
return image_clipped, annotation
def horizontal_flip_augmenter(
image,
annotation,
random,
skip_probability=_DEFAULT_AUG_PARAMS["skip_probability_flip"],
):
if random.uniform(0.0, 1.0) < skip_probability:
return image, annotation
image_height, image_width, _ = image.shape
flipped_image = np.flip(image, 1)
# One image can have more than one annotation. so loop through annotations and flip across the horizontal axis
for i in range(len(annotation)):
# Only flip if the annotation is not an empty annotation.
if np.any(annotation[i][1:5]):
annotation[i][1] = 1 - annotation[i][1] - annotation[i][3]
return flipped_image, annotation
def padding_augmenter(
image,
annotation,
random,
skip_probability=_DEFAULT_AUG_PARAMS["skip_probability_pad"],
min_aspect_ratio=_DEFAULT_AUG_PARAMS["min_aspect_ratio"],
max_aspect_ratio=_DEFAULT_AUG_PARAMS["max_aspect_ratio"],
min_area_fraction=_DEFAULT_AUG_PARAMS["min_area_fraction_pad"],
max_area_fraction=_DEFAULT_AUG_PARAMS["max_area_fraction_pad"],
max_attempts=_DEFAULT_AUG_PARAMS["max_attempts"],
):
if random.uniform(0.0, 1.0) < skip_probability:
return np.array(image), annotation
image_height, image_width, _ = image.shape
# Randomly sample aspect ratios until one derives a non-empty range of
# compatible heights, or until reaching the upper limit on attempts.
for i in range(max_attempts):
# Randomly sample an aspect ratio.
aspect_ratio = random.uniform(min_aspect_ratio, max_aspect_ratio)
# The padded height must be at least as large as the original height.
# h' >= h
min_height = float(image_height)
# The padded width must be at least as large as the original width.
# w' >= w IMPLIES ah' >= w IMPLIES h' >= w / a
min_height_from_width = float(image_width) / aspect_ratio
if min_height < min_height_from_width:
min_height = min_height_from_width
# The padded area must attain the minimum area fraction.
# w'h' >= fhw IMPLIES ah'h' >= fhw IMPLIES h' >= sqrt(fhw/a)
min_height_from_area = np.sqrt(
image_height * image_width * min_area_fraction / aspect_ratio
)
if min_height < min_height_from_area:
min_height = min_height_from_area
# The padded area must not exceed the maximum area fraction.
max_height = np.sqrt(
image_height * image_width * max_area_fraction / aspect_ratio
)
if min_height >= max_height:
break
# We did not find a compatible aspect ratio. Just return the original data.
if min_height > max_height:
return np.array(image), annotation
# Sample a final size, given the sampled aspect ratio and range of heights.
padded_height = random.uniform(min_height, max_height)
padded_width = padded_height * aspect_ratio
# Sample the offset of the source image inside the padded image.
x_offset = random.uniform(0.0, (padded_width - image_width))
y_offset = random.uniform(0.0, (padded_height - image_height))
# Compute padding needed on the image
after_padding_width = padded_width - image_width - x_offset
after_padding_height = padded_height - image_height - y_offset
# Pad the image
npad = (
(int(y_offset), int(after_padding_height)),
(int(x_offset), int(after_padding_width)),
(0, 0),
)
padded_image = np.pad(image, pad_width=npad, mode="constant", constant_values=0.5)
ty = float(y_offset)
tx = float(x_offset)
# Transformation matrix for the annotations
transformation_matrix = np.array([[1.0, 0.0, ty], [0.0, 1.0, tx], [0.0, 0.0, 1.0]])
# Use transformation matrix to augment annotations
formatted_annotation = []
for aug in annotation:
identifier = aug[0:1]
bounds = aug[1:5]
confidence = aug[5:6]
if not np.any(bounds):
formatted_annotation.append(
np.concatenate([identifier, np.array([0, 0, 0, 0]), confidence])
)
continue
width = bounds[2]
height = bounds[3]
x1 = bounds[0] * image_width
y1 = bounds[1] * image_height
x2 = (bounds[0] + width) * image_width
y2 = (bounds[1] + height) * image_height
augmentation_coordinates = np.array([y1, x1, y2, x2], dtype=np.float32)
v = np.concatenate(
[
augmentation_coordinates.reshape((2, 2)),
np.ones((2, 1), dtype=np.float32),
],
axis=1,
)
transposed_v = np.dot(v, np.transpose(transformation_matrix))
t_intersection = np.squeeze(transposed_v[:, :2].reshape(-1, 4))
# Sort the points top, left, bottom, right
if t_intersection[0] > t_intersection[2]:
t_intersection[0], t_intersection[2] = t_intersection[2], t_intersection[0]
if t_intersection[1] > t_intersection[3]:
t_intersection[1], t_intersection[3] = t_intersection[3], t_intersection[1]
# Normalize the elements to the cropped width and height
ele_1 = t_intersection[1] / padded_width
ele_2 = t_intersection[0] / padded_height
ele_3 = (t_intersection[3] - t_intersection[1]) / padded_width
ele_4 = (t_intersection[2] - t_intersection[0]) / padded_height
formatted_annotation.append(
np.concatenate(
[identifier, np.array([ele_1, ele_2, ele_3, ele_4]), confidence]
)
)
return np.array(padded_image), np.array(formatted_annotation, dtype=np.float32)
def crop_augmenter(
image,
annotation,
random,
skip_probability=_DEFAULT_AUG_PARAMS["skip_probability_crop"],
min_aspect_ratio=_DEFAULT_AUG_PARAMS["min_aspect_ratio"],
max_aspect_ratio=_DEFAULT_AUG_PARAMS["max_aspect_ratio"],
min_area_fraction=_DEFAULT_AUG_PARAMS["min_area_fraction_crop"],
max_area_fraction=_DEFAULT_AUG_PARAMS["max_area_fraction_crop"],
min_object_covered=_DEFAULT_AUG_PARAMS["min_object_covered"],
max_attempts=_DEFAULT_AUG_PARAMS["max_attempts"],
min_eject_coverage=_DEFAULT_AUG_PARAMS["min_eject_coverage"],
):
if random.uniform(0.0, 1.0) < skip_probability:
return np.array(image), annotation
image_height, image_width, _ = image.shape
# Sample crop rects until one satisfies our constraints (by yielding a valid
# list of cropped annotations), or reaching the limit on attempts.
for i in range(max_attempts):
# Randomly sample an aspect ratio.
aspect_ratio = random.uniform(min_aspect_ratio, max_aspect_ratio)
# Next we'll sample a height (which combined with the now known aspect
# ratio, determines the size and area). But first we must compute the range
# of valid heights. The crop cannot be taller than the original image,
# cannot be wider than the original image, and must have an area in the
# specified range.
# The cropped height must be no larger the original height.
# h' <= h
max_height = float(image_height)
# The cropped width must be no larger than the original width.
# w' <= w IMPLIES ah' <= w IMPLIES h' <= w / a
max_height_from_width = float(image_width) / aspect_ratio
if max_height > max_height_from_width:
max_height = max_height_from_width
# The cropped area must not exceed the maximum area fraction.
max_height_from_area = np.sqrt(
image_height * image_width * max_area_fraction / aspect_ratio
)
if max_height > max_height_from_area:
max_height = max_height_from_area
# The padded area must attain the minimum area fraction.
min_height = np.sqrt(
image_height * image_width * min_area_fraction / aspect_ratio
)
# If the range is empty, then crops with the sampled aspect ratio cannot
# satisfy the area constraint.
if min_height > max_height:
continue
# Sample a position for the crop, constrained to lie within the image.
cropped_height = random.uniform(min_height, max_height)
cropped_width = cropped_height * aspect_ratio
x_offset = random.uniform(0.0, (image_width - cropped_width))
y_offset = random.uniform(0.0, (image_height - cropped_height))
crop_bounds_x1 = x_offset
crop_bounds_y1 = y_offset
crop_bounds_x2 = x_offset + cropped_width
crop_bounds_y2 = y_offset + cropped_height
formatted_annotation = []
is_min_object_covered = True
for aug in annotation:
identifier = aug[0:1]
bounds = aug[1:5]
confidence = aug[5:6]
width = bounds[2]
height = bounds[3]
x1 = bounds[0] * image_width
y1 = bounds[1] * image_height
x2 = (bounds[0] + width) * image_width
y2 = (bounds[1] + height) * image_height
# This tests whether the crop bounds are out of the annotated bounds, if not it returns an empty annotation
if (
crop_bounds_x1 < x2
and crop_bounds_y1 < y2
and x1 < crop_bounds_x2
and y1 < crop_bounds_y2
):
x_bounds = [x1, x2, x_offset, x_offset + cropped_width]
y_bounds = [y1, y2, y_offset, y_offset + cropped_height]
x_bounds.sort()
y_bounds.sort()
x_pairs = x_bounds[1:3]
y_pairs = y_bounds[1:3]
intersection = np.array(
[y_pairs[0], x_pairs[0], y_pairs[1], x_pairs[1]]
)
intersection_area = (intersection[3] - intersection[1]) * (
intersection[2] - intersection[0]
)
annotation_area = (y2 - y1) * (x2 - x1)
area_coverage = intersection_area / annotation_area
# Invalidate the crop if it did not sufficiently overlap each annotation and try again.
if area_coverage < min_object_covered:
is_min_object_covered = False
break
# If the area coverage is greater the min_eject_coverage, then actually keep the annotation
if area_coverage >= min_eject_coverage:
# Transformation matrix for the annotations
transformation_matrix = np.array(
[[1.0, 0.0, -y_offset], [0.0, 1.0, -x_offset], [0.0, 0.0, 1.0]]
)
v = np.concatenate(
[
intersection.reshape((2, 2)),
np.ones((2, 1), dtype=np.float32),
],
axis=1,
)
transposed_v = np.dot(v, np.transpose(transformation_matrix))
t_intersection = np.squeeze(transposed_v[:, :2].reshape(-1, 4))
# Sort the points top, left, bottom, right
if t_intersection[0] > t_intersection[2]:
t_intersection[0], t_intersection[2] = (
t_intersection[2],
t_intersection[0],
)
if t_intersection[1] > t_intersection[3]:
t_intersection[1], t_intersection[3] = (
t_intersection[3],
t_intersection[1],
)
# Normalize the elements to the cropped width and height
ele_1 = t_intersection[1] / cropped_width
ele_2 = t_intersection[0] / cropped_height
ele_3 = (t_intersection[3] - t_intersection[1]) / cropped_width
ele_4 = (t_intersection[2] - t_intersection[0]) / cropped_height
formatted_annotation.append(
np.concatenate(
[
identifier,
np.array([ele_1, ele_2, ele_3, ele_4]),
confidence,
]
)
)
else:
formatted_annotation.append(
np.concatenate(
[identifier, np.array([0.0, 0.0, 0.0, 0.0]), confidence]
)
)
else:
formatted_annotation.append(
np.concatenate(
[identifier, np.array([0.0, 0.0, 0.0, 0.0]), confidence]
)
)
if not is_min_object_covered:
continue
y_offset = int(y_offset)
x_offset = int(x_offset)
end_y = int(cropped_height + y_offset)
end_x = int(cropped_width + x_offset)
image_cropped = image[y_offset:end_y, x_offset:end_x]
return np.array(image_cropped), np.array(formatted_annotation, dtype=np.float32)
return np.array(image), annotation
def numpy_augmenter(img, ann, seed):
random = np.random.RandomState(seed=seed)
img, ann = crop_augmenter(img, ann, random)
img, ann = padding_augmenter(img, ann, random)
img, ann = horizontal_flip_augmenter(img, ann, random)
return img, ann
def complete_augmenter(img_tf, ann_tf, seed_tf, alpha_tf, output_height, output_width):
tf = _lazy_import_tensorflow()
img_tf, ann_tf = tf.numpy_function(
func=numpy_augmenter,
inp=[img_tf, ann_tf, seed_tf],
Tout=[tf.float32, tf.float32],
)
img_tf, ann_tf = color_augmenter(img_tf, ann_tf, alpha_tf[0:3])
img_tf, ann_tf = hue_augmenter(img_tf, ann_tf, alpha_tf[3:4])
img_tf, ann_tf = resize_augmenter(img_tf, ann_tf, (output_height, output_width))
return img_tf, ann_tf
class DataAugmenter(object):
def __init__(self, output_height, output_width, batch_size, resize_only):
tf = _lazy_import_tensorflow()
self.batch_size = batch_size
self.graph = tf.Graph()
self.resize_only = resize_only
with self.graph.as_default():
self.img_tf = [
tf.placeholder(tf.float32, [None, None, 3])
for x in range(0, self.batch_size)
]
self.ann_tf = [
tf.placeholder(tf.float32, [None, 6]) for x in range(0, self.batch_size)
]
self.alpha_tf = tf.placeholder(tf.float32, [self.batch_size, 4])
self.random_seed_tf = tf.placeholder(tf.uint32)
self.resize_op_batch = []
for i in range(0, self.batch_size):
if resize_only:
aug_img_tf, aug_ann_tf = resize_augmenter(
self.img_tf[i], self.ann_tf[i], (output_height, output_width)
)
self.resize_op_batch.append([aug_img_tf, aug_ann_tf])
else:
aug_img_tf, aug_ann_tf = complete_augmenter(
self.img_tf[i],
self.ann_tf[i],
self.random_seed_tf[i],
self.alpha_tf[i],
output_height,
output_width,
)
self.resize_op_batch.append([aug_img_tf, aug_ann_tf])
def get_augmented_data(self, images, annotations, random_seed):
tf = _lazy_import_tensorflow()
with tf.Session(graph=self.graph) as session:
feed_dict = dict()
# Populate feed_dict with images and annotations
graph_op = self.resize_op_batch[0 : len(images)]
for i in range(len(images)):
feed_dict[self.img_tf[i]] = _utils.convert_shared_float_array_to_numpy(
images[i]
)
feed_dict[self.ann_tf[i]] = _utils.convert_shared_float_array_to_numpy(
annotations[i]
)
# Populate feed_dict with random seed and random alpha values, used
# to sample image perturbations. We don't use TensorFlow's built-in
# support for random number generation, since we want to effectively
# reset the seed for each session (batch).
random = np.random.RandomState(seed=random_seed)
feed_dict[self.alpha_tf] = random.rand(*self.alpha_tf.shape)
feed_dict[self.random_seed_tf] = random.randint(
0, 2 ** 32, size=self.batch_size
)
aug_output = session.run(graph_op, feed_dict=feed_dict)
processed_images = []
processed_annotations = []
for o in aug_output:
processed_images.append(o[0])
processed_annotations.append(
np.ascontiguousarray(o[1], dtype=np.float32)
)
processed_images = np.array(processed_images, dtype=np.float32)
processed_images = np.ascontiguousarray(processed_images, dtype=np.float32)
return (processed_images, processed_annotations)
| [
1,
396,
448,
29930,
29899,
14137,
29901,
23616,
29899,
29947,
448,
29930,
29899,
13,
29937,
14187,
1266,
29871,
30211,
29871,
29906,
29900,
29896,
29929,
12113,
9266,
29889,
2178,
10462,
21676,
29889,
13,
29937,
13,
29937,
4803,
310,
445,
2752,
775,
338,
4095,
287,
491,
263,
350,
7230,
29899,
29941,
29899,
16398,
1509,
19405,
393,
508,
13,
29937,
367,
1476,
297,
278,
365,
2965,
1430,
1660,
29889,
3945,
934,
470,
472,
2045,
597,
22156,
1167,
29889,
990,
29914,
506,
11259,
29914,
29933,
7230,
29899,
29941,
29899,
20216,
1509,
13,
3166,
4770,
29888,
9130,
1649,
1053,
1596,
29918,
2220,
408,
903,
13,
3166,
4770,
29888,
9130,
1649,
1053,
8542,
408,
903,
13,
3166,
4770,
29888,
9130,
1649,
1053,
8380,
29918,
5215,
408,
903,
13,
13,
5215,
12655,
408,
7442,
13,
3166,
349,
6227,
1053,
7084,
13,
5215,
7013,
293,
3015,
29889,
10154,
29895,
1169,
3032,
13264,
29918,
13239,
408,
903,
13239,
13,
5215,
7013,
293,
3015,
408,
260,
29883,
13,
13,
13,
3166,
7013,
293,
3015,
3032,
311,
567,
29889,
1195,
3039,
29918,
5113,
1053,
903,
1195,
3039,
29918,
5113,
29918,
5215,
29918,
3198,
13,
13,
29937,
297,
9589,
651,
411,
13114,
3577,
13,
1753,
903,
433,
1537,
29918,
5215,
29918,
29056,
7295,
13,
1678,
515,
7013,
293,
3015,
3032,
311,
567,
29889,
1195,
3039,
29918,
5113,
1053,
903,
1195,
3039,
29918,
5113,
29918,
5215,
29918,
3198,
13,
13,
1678,
903,
13264,
353,
903,
1195,
3039,
29918,
5113,
29918,
5215,
29918,
3198,
703,
29056,
29889,
12667,
29889,
29894,
29896,
1159,
13,
1678,
736,
903,
13264,
13,
13,
13,
29918,
23397,
29918,
29909,
23338,
29918,
16320,
29909,
4345,
353,
426,
13,
1678,
376,
3317,
29918,
29882,
434,
29918,
328,
5143,
1115,
29871,
29900,
29889,
29900,
29945,
29892,
13,
1678,
376,
3317,
29918,
1182,
523,
2264,
1115,
29871,
29900,
29889,
29900,
29945,
29892,
13,
1678,
376,
3317,
29918,
9996,
579,
1115,
29871,
29896,
29889,
29906,
29945,
29892,
13,
1678,
376,
3317,
29918,
29879,
1337,
362,
1115,
29871,
29896,
29889,
29906,
29945,
29892,
13,
1678,
376,
11014,
29918,
22795,
3097,
29918,
29888,
3466,
1115,
29871,
29900,
29889,
29945,
29892,
13,
1678,
376,
1195,
29918,
294,
1103,
29918,
3605,
601,
1115,
29871,
29900,
29889,
29947,
29892,
13,
1678,
376,
3317,
29918,
294,
1103,
29918,
3605,
601,
1115,
29871,
29896,
29889,
29906,
29945,
29892,
13,
1678,
376,
1195,
29918,
6203,
29918,
29888,
13857,
29918,
29883,
1336,
1115,
29871,
29900,
29889,
29896,
29945,
29892,
13,
1678,
376,
3317,
29918,
6203,
29918,
29888,
13857,
29918,
29883,
1336,
1115,
29871,
29896,
29889,
29900,
29892,
13,
1678,
376,
1195,
29918,
6203,
29918,
29888,
13857,
29918,
8305,
1115,
29871,
29896,
29889,
29900,
29892,
13,
1678,
376,
3317,
29918,
6203,
29918,
29888,
13857,
29918,
8305,
1115,
29871,
29906,
29889,
29900,
29892,
13,
1678,
376,
3317,
29918,
1131,
3456,
29879,
1115,
29871,
29945,
29900,
29892,
13,
1678,
376,
11014,
29918,
22795,
3097,
29918,
8305,
1115,
29871,
29900,
29889,
29896,
29892,
13,
1678,
376,
11014,
29918,
22795,
3097,
29918,
29883,
1336,
1115,
29871,
29900,
29889,
29896,
29892,
13,
1678,
376,
1195,
29918,
3318,
29918,
11911,
287,
1115,
29871,
29900,
29889,
29900,
29892,
13,
1678,
376,
1195,
29918,
29872,
622,
29918,
11911,
482,
1115,
29871,
29900,
29889,
29945,
29892,
13,
1678,
376,
21476,
29918,
5696,
1115,
376,
29873,
332,
293,
3015,
613,
13,
29913,
13,
13,
13,
1753,
20064,
403,
29898,
2312,
29918,
13264,
29892,
921,
29892,
343,
1125,
13,
1678,
15886,
353,
903,
433,
1537,
29918,
5215,
29918,
29056,
580,
13,
1678,
921,
353,
15886,
29889,
23362,
29898,
29916,
29892,
26688,
29922,
13264,
29889,
7411,
29941,
29906,
29897,
13,
1678,
343,
353,
15886,
29889,
23362,
29898,
29891,
29892,
26688,
29922,
13264,
29889,
7411,
29941,
29906,
29897,
13,
1678,
3464,
353,
15886,
29889,
755,
29889,
1491,
29873,
1461,
29898,
29891,
29892,
921,
29897,
13,
1678,
19471,
353,
15886,
29889,
755,
29889,
18056,
368,
29898,
2312,
29918,
13264,
29892,
3464,
29897,
13,
1678,
736,
15886,
29889,
755,
29889,
1202,
29898,
29916,
29892,
19471,
29897,
13,
13,
13,
1753,
298,
434,
29918,
2987,
358,
261,
29898,
13,
1678,
1967,
29892,
13,
1678,
17195,
29892,
13,
1678,
4036,
29918,
2312,
29918,
13264,
29892,
13,
1678,
4236,
29918,
29882,
434,
29918,
328,
5143,
29922,
29918,
23397,
29918,
29909,
23338,
29918,
16320,
29909,
4345,
3366,
3317,
29918,
29882,
434,
29918,
328,
5143,
12436,
13,
1125,
13,
13,
1678,
15886,
353,
903,
433,
1537,
29918,
5215,
29918,
29056,
580,
13,
1678,
396,
2401,
368,
278,
4036,
13733,
2820,
278,
2927,
18875,
29889,
13,
1678,
298,
434,
29918,
4181,
353,
20064,
403,
29898,
8172,
29918,
2312,
29918,
13264,
29961,
29900,
1402,
448,
3317,
29918,
29882,
434,
29918,
328,
5143,
29892,
4236,
29918,
29882,
434,
29918,
328,
5143,
29897,
13,
1678,
1967,
353,
15886,
29889,
3027,
29889,
328,
5143,
29918,
29882,
434,
29898,
3027,
29892,
298,
434,
29918,
4181,
29897,
13,
1678,
1967,
353,
15886,
29889,
24049,
29918,
1609,
29918,
1767,
29898,
3027,
29892,
29871,
29900,
29892,
29871,
29896,
29897,
13,
13,
1678,
396,
1939,
16303,
3620,
29892,
577,
925,
3509,
278,
25495,
29889,
13,
1678,
736,
1967,
29892,
17195,
13,
13,
13,
1753,
2927,
29918,
2987,
358,
261,
29898,
13,
1678,
1967,
29892,
13,
1678,
17195,
29892,
13,
1678,
4036,
29918,
2312,
29918,
13264,
29892,
13,
1678,
4236,
29918,
1182,
523,
2264,
29922,
29918,
23397,
29918,
29909,
23338,
29918,
16320,
29909,
4345,
3366,
3317,
29918,
1182,
523,
2264,
12436,
13,
1678,
4236,
29918,
9996,
579,
29922,
29918,
23397,
29918,
29909,
23338,
29918,
16320,
29909,
4345,
3366,
3317,
29918,
9996,
579,
12436,
13,
1678,
4236,
29918,
29879,
1337,
362,
29922,
29918,
23397,
29918,
29909,
23338,
29918,
16320,
29909,
4345,
3366,
3317,
29918,
29879,
1337,
362,
12436,
13,
1125,
13,
13,
1678,
15886,
353,
903,
433,
1537,
29918,
5215,
29918,
29056,
580,
13,
1678,
396,
2401,
368,
278,
4036,
10365,
358,
304,
11785,
2264,
29889,
13,
1678,
11785,
2264,
29918,
4181,
353,
20064,
403,
29898,
8172,
29918,
2312,
29918,
13264,
29961,
29900,
1402,
448,
3317,
29918,
1182,
523,
2264,
29892,
4236,
29918,
1182,
523,
2264,
29897,
13,
1678,
1967,
353,
15886,
29889,
3027,
29889,
328,
5143,
29918,
1182,
523,
2264,
29898,
3027,
29892,
11785,
2264,
29918,
4181,
29897,
13,
13,
1678,
396,
2401,
368,
278,
4036,
10365,
358,
304,
12814,
29889,
13,
1678,
269,
1337,
362,
29918,
4181,
353,
20064,
403,
29898,
8172,
29918,
2312,
29918,
13264,
29961,
29896,
1402,
29871,
29896,
29914,
3317,
29918,
29879,
1337,
362,
29892,
4236,
29918,
29879,
1337,
362,
29897,
13,
1678,
1967,
353,
15886,
29889,
3027,
29889,
328,
5143,
29918,
29879,
1337,
362,
29898,
3027,
29892,
269,
1337,
362,
29918,
4181,
29897,
13,
13,
1678,
396,
2401,
368,
4036,
10365,
358,
304,
269,
1337,
362,
29889,
13,
1678,
12814,
29918,
4181,
353,
20064,
403,
29898,
8172,
29918,
2312,
29918,
13264,
29961,
29906,
1402,
29871,
29896,
29914,
3317,
29918,
9996,
579,
29892,
4236,
29918,
9996,
579,
29897,
13,
1678,
1967,
353,
15886,
29889,
3027,
29889,
328,
5143,
29918,
9996,
579,
29898,
3027,
29892,
12814,
29918,
4181,
29897,
13,
13,
1678,
1967,
353,
15886,
29889,
24049,
29918,
1609,
29918,
1767,
29898,
3027,
29892,
29871,
29900,
29892,
29871,
29896,
29897,
13,
13,
1678,
396,
1939,
16303,
3620,
29892,
577,
925,
3509,
278,
25495,
29889,
13,
1678,
736,
1967,
29892,
17195,
13,
13,
13,
1753,
19490,
29918,
2987,
358,
261,
29898,
3027,
29892,
17195,
29892,
1962,
29918,
12181,
1125,
13,
13,
1678,
19490,
29918,
5696,
353,
903,
23397,
29918,
29909,
23338,
29918,
16320,
29909,
4345,
3366,
21476,
29918,
5696,
3108,
13,
13,
1678,
822,
19490,
29918,
2227,
29931,
29918,
3027,
29898,
3027,
29892,
1962,
29918,
12181,
1125,
13,
4706,
1967,
334,
29922,
29871,
29906,
29945,
29945,
29889,
29900,
13,
4706,
1967,
353,
1967,
29889,
579,
668,
703,
13470,
29947,
1159,
13,
4706,
8230,
29918,
2492,
353,
7084,
29889,
3166,
2378,
29898,
3027,
29897,
13,
4706,
19490,
29918,
2492,
353,
8230,
29918,
2492,
29889,
21476,
29898,
13,
9651,
313,
4905,
29918,
12181,
29961,
29896,
1402,
1962,
29918,
12181,
29961,
29900,
11724,
620,
981,
29922,
2940,
29889,
29933,
6227,
8895,
1718,
13,
4706,
1723,
13,
4706,
7442,
29918,
2492,
353,
7442,
29889,
2378,
29898,
21476,
29918,
2492,
29897,
13,
4706,
7442,
29918,
2492,
353,
7442,
29918,
2492,
29889,
579,
668,
29898,
9302,
29889,
7411,
29941,
29906,
29897,
13,
4706,
7442,
29918,
2492,
847,
29922,
29871,
29906,
29945,
29945,
29889,
29900,
13,
4706,
736,
7442,
29918,
2492,
13,
13,
1678,
822,
19490,
29918,
29873,
332,
293,
3015,
29918,
3027,
29898,
3027,
29892,
1962,
29918,
12181,
1125,
13,
4706,
1967,
334,
29922,
29871,
29906,
29945,
29945,
29889,
29900,
13,
4706,
1967,
353,
1967,
29889,
579,
668,
703,
13470,
29947,
1159,
13,
4706,
383,
12054,
1299,
29918,
4717,
29956,
353,
29871,
29906,
13,
4706,
260,
29883,
29918,
3027,
353,
260,
29883,
29889,
2940,
29898,
13,
9651,
903,
3027,
29918,
1272,
29922,
3027,
29889,
517,
13193,
3285,
13,
9651,
903,
2103,
29922,
3027,
29889,
12181,
29961,
29896,
1402,
13,
9651,
903,
3545,
29922,
3027,
29889,
12181,
29961,
29900,
1402,
13,
9651,
903,
305,
12629,
29922,
3027,
29889,
12181,
29961,
29906,
1402,
13,
9651,
903,
4830,
29918,
18605,
29922,
19094,
1299,
29918,
4717,
29956,
29892,
13,
9651,
903,
3027,
29918,
1272,
29918,
2311,
29922,
3027,
29889,
2311,
29892,
13,
4706,
1723,
13,
4706,
260,
29883,
29918,
3027,
353,
260,
29883,
29889,
3027,
29918,
15916,
29889,
21476,
29898,
13,
9651,
260,
29883,
29918,
3027,
29892,
1962,
29918,
12181,
29961,
29896,
1402,
1962,
29918,
12181,
29961,
29900,
1402,
620,
981,
543,
18152,
457,
279,
29908,
13,
4706,
1723,
13,
4706,
1967,
353,
260,
29883,
29918,
3027,
29889,
29886,
15711,
29918,
1272,
13,
4706,
1967,
353,
1967,
29889,
579,
668,
29898,
9302,
29889,
7411,
29941,
29906,
29897,
13,
4706,
1967,
847,
29922,
29871,
29906,
29945,
29945,
29889,
29900,
13,
4706,
736,
1967,
13,
13,
1678,
565,
19490,
29918,
5696,
1275,
376,
29056,
1115,
13,
4706,
15886,
353,
903,
433,
1537,
29918,
5215,
29918,
29056,
580,
13,
4706,
716,
29918,
3545,
353,
15886,
29889,
4384,
29898,
4905,
29918,
12181,
29961,
29900,
1402,
26688,
29922,
13264,
29889,
524,
29941,
29906,
29897,
13,
4706,
716,
29918,
2103,
353,
15886,
29889,
4384,
29898,
4905,
29918,
12181,
29961,
29896,
1402,
26688,
29922,
13264,
29889,
524,
29941,
29906,
29897,
13,
13,
4706,
396,
5953,
837,
457,
278,
2756,
457,
4327,
304,
3394,
322,
3394,
304,
278,
1967,
3528,
29889,
13,
4706,
1967,
29918,
7052,
29881,
353,
15886,
29889,
29879,
802,
29872,
911,
29898,
13,
9651,
15886,
29889,
3027,
29889,
21476,
29918,
18152,
457,
279,
29898,
13264,
29889,
18837,
29918,
6229,
29879,
29898,
3027,
29892,
29871,
29900,
511,
518,
1482,
29918,
3545,
29892,
716,
29918,
2103,
11724,
13,
9651,
518,
29900,
1402,
13,
4706,
1723,
13,
13,
1678,
25342,
19490,
29918,
5696,
1275,
376,
2227,
29931,
1115,
13,
4706,
1967,
29918,
7052,
29881,
353,
15886,
29889,
23749,
29918,
2220,
29898,
13,
9651,
3653,
29922,
21476,
29918,
2227,
29931,
29918,
3027,
29892,
297,
29886,
11759,
3027,
29892,
1962,
29918,
12181,
1402,
28079,
11759,
13264,
29889,
7411,
29941,
29906,
29962,
13,
4706,
1723,
13,
13,
1678,
25342,
19490,
29918,
5696,
1275,
376,
29873,
332,
293,
3015,
1115,
13,
4706,
15886,
353,
903,
433,
1537,
29918,
5215,
29918,
29056,
580,
13,
4706,
1967,
29918,
7052,
29881,
353,
15886,
29889,
23749,
29918,
2220,
29898,
13,
9651,
3653,
29922,
21476,
29918,
29873,
332,
293,
3015,
29918,
3027,
29892,
297,
29886,
11759,
3027,
29892,
1962,
29918,
12181,
1402,
28079,
11759,
13264,
29889,
7411,
29941,
29906,
29962,
13,
4706,
1723,
13,
13,
1678,
1683,
29901,
13,
4706,
12020,
8960,
703,
12283,
29899,
23765,
19490,
1158,
23157,
13,
13,
1678,
1967,
29918,
11303,
2986,
353,
15886,
29889,
24049,
29918,
1609,
29918,
1767,
29898,
3027,
29918,
7052,
29881,
29892,
29871,
29900,
29889,
29900,
29892,
29871,
29896,
29889,
29900,
29897,
13,
13,
1678,
396,
1939,
16303,
3620,
313,
18103,
310,
6198,
1302,
29899,
16065,
1788,
29897,
13,
1678,
736,
1967,
29918,
11303,
2986,
29892,
17195,
13,
13,
13,
1753,
14698,
29918,
29888,
3466,
29918,
2987,
358,
261,
29898,
13,
1678,
1967,
29892,
13,
1678,
17195,
29892,
13,
1678,
4036,
29892,
13,
1678,
14383,
29918,
22795,
3097,
29922,
29918,
23397,
29918,
29909,
23338,
29918,
16320,
29909,
4345,
3366,
11014,
29918,
22795,
3097,
29918,
29888,
3466,
12436,
13,
1125,
13,
13,
1678,
565,
4036,
29889,
29590,
29898,
29900,
29889,
29900,
29892,
29871,
29896,
29889,
29900,
29897,
529,
14383,
29918,
22795,
3097,
29901,
13,
4706,
736,
1967,
29892,
17195,
13,
13,
1678,
1967,
29918,
3545,
29892,
1967,
29918,
2103,
29892,
903,
353,
1967,
29889,
12181,
13,
1678,
285,
492,
2986,
29918,
3027,
353,
7442,
29889,
29888,
3466,
29898,
3027,
29892,
29871,
29896,
29897,
13,
13,
1678,
396,
3118,
1967,
508,
505,
901,
1135,
697,
17195,
29889,
577,
2425,
1549,
25495,
322,
285,
3466,
4822,
278,
14698,
9685,
13,
1678,
363,
474,
297,
3464,
29898,
2435,
29898,
18317,
22164,
13,
4706,
396,
9333,
285,
3466,
565,
278,
17195,
338,
451,
385,
4069,
17195,
29889,
13,
4706,
565,
7442,
29889,
1384,
29898,
18317,
29961,
29875,
3816,
29896,
29901,
29945,
29962,
1125,
13,
9651,
17195,
29961,
29875,
3816,
29896,
29962,
353,
29871,
29896,
448,
17195,
29961,
29875,
3816,
29896,
29962,
448,
17195,
29961,
29875,
3816,
29941,
29962,
13,
13,
1678,
736,
285,
492,
2986,
29918,
3027,
29892,
17195,
13,
13,
13,
1753,
7164,
29918,
2987,
358,
261,
29898,
13,
1678,
1967,
29892,
13,
1678,
17195,
29892,
13,
1678,
4036,
29892,
13,
1678,
14383,
29918,
22795,
3097,
29922,
29918,
23397,
29918,
29909,
23338,
29918,
16320,
29909,
4345,
3366,
11014,
29918,
22795,
3097,
29918,
8305,
12436,
13,
1678,
1375,
29918,
294,
1103,
29918,
3605,
601,
29922,
29918,
23397,
29918,
29909,
23338,
29918,
16320,
29909,
4345,
3366,
1195,
29918,
294,
1103,
29918,
3605,
601,
12436,
13,
1678,
4236,
29918,
294,
1103,
29918,
3605,
601,
29922,
29918,
23397,
29918,
29909,
23338,
29918,
16320,
29909,
4345,
3366,
3317,
29918,
294,
1103,
29918,
3605,
601,
12436,
13,
1678,
1375,
29918,
6203,
29918,
29888,
13857,
29922,
29918,
23397,
29918,
29909,
23338,
29918,
16320,
29909,
4345,
3366,
1195,
29918,
6203,
29918,
29888,
13857,
29918,
8305,
12436,
13,
1678,
4236,
29918,
6203,
29918,
29888,
13857,
29922,
29918,
23397,
29918,
29909,
23338,
29918,
16320,
29909,
4345,
3366,
3317,
29918,
6203,
29918,
29888,
13857,
29918,
8305,
12436,
13,
1678,
4236,
29918,
1131,
3456,
29879,
29922,
29918,
23397,
29918,
29909,
23338,
29918,
16320,
29909,
4345,
3366,
3317,
29918,
1131,
3456,
29879,
12436,
13,
1125,
13,
1678,
565,
4036,
29889,
29590,
29898,
29900,
29889,
29900,
29892,
29871,
29896,
29889,
29900,
29897,
529,
14383,
29918,
22795,
3097,
29901,
13,
4706,
736,
7442,
29889,
2378,
29898,
3027,
511,
17195,
13,
13,
1678,
1967,
29918,
3545,
29892,
1967,
29918,
2103,
29892,
903,
353,
1967,
29889,
12181,
13,
13,
1678,
396,
16968,
368,
4559,
9565,
364,
2219,
359,
2745,
697,
589,
3145,
263,
1661,
29899,
6310,
3464,
310,
13,
1678,
396,
15878,
3171,
29879,
29892,
470,
2745,
20888,
278,
7568,
4046,
373,
14734,
29889,
13,
1678,
363,
474,
297,
3464,
29898,
3317,
29918,
1131,
3456,
29879,
1125,
13,
4706,
396,
16968,
368,
4559,
385,
9565,
11959,
29889,
13,
4706,
9565,
29918,
3605,
601,
353,
4036,
29889,
29590,
29898,
1195,
29918,
294,
1103,
29918,
3605,
601,
29892,
4236,
29918,
294,
1103,
29918,
3605,
601,
29897,
13,
13,
4706,
396,
450,
282,
23959,
3171,
1818,
367,
472,
3203,
408,
2919,
408,
278,
2441,
3171,
29889,
13,
4706,
396,
298,
29915,
6736,
298,
13,
4706,
1375,
29918,
3545,
353,
5785,
29898,
3027,
29918,
3545,
29897,
13,
13,
4706,
396,
450,
282,
23959,
2920,
1818,
367,
472,
3203,
408,
2919,
408,
278,
2441,
2920,
29889,
13,
4706,
396,
281,
29915,
6736,
281,
306,
3580,
5265,
2890,
21023,
29915,
6736,
281,
306,
3580,
5265,
2890,
298,
29915,
6736,
281,
847,
263,
13,
4706,
1375,
29918,
3545,
29918,
3166,
29918,
2103,
353,
5785,
29898,
3027,
29918,
2103,
29897,
847,
9565,
29918,
3605,
601,
13,
4706,
565,
1375,
29918,
3545,
529,
1375,
29918,
3545,
29918,
3166,
29918,
2103,
29901,
13,
9651,
1375,
29918,
3545,
353,
1375,
29918,
3545,
29918,
3166,
29918,
2103,
13,
13,
4706,
396,
450,
282,
23959,
4038,
1818,
1098,
475,
278,
9212,
4038,
15958,
29889,
13,
4706,
396,
281,
29915,
29882,
29915,
6736,
285,
26828,
306,
3580,
5265,
2890,
21023,
29915,
29882,
29915,
6736,
285,
26828,
306,
3580,
5265,
2890,
298,
29915,
6736,
18074,
2273,
29898,
29888,
26828,
29914,
29874,
29897,
13,
4706,
1375,
29918,
3545,
29918,
3166,
29918,
6203,
353,
7442,
29889,
3676,
29898,
13,
9651,
1967,
29918,
3545,
334,
1967,
29918,
2103,
334,
1375,
29918,
6203,
29918,
29888,
13857,
847,
9565,
29918,
3605,
601,
13,
4706,
1723,
13,
4706,
565,
1375,
29918,
3545,
529,
1375,
29918,
3545,
29918,
3166,
29918,
6203,
29901,
13,
9651,
1375,
29918,
3545,
353,
1375,
29918,
3545,
29918,
3166,
29918,
6203,
13,
13,
4706,
396,
450,
282,
23959,
4038,
1818,
451,
13461,
278,
7472,
4038,
15958,
29889,
13,
4706,
4236,
29918,
3545,
353,
7442,
29889,
3676,
29898,
13,
9651,
1967,
29918,
3545,
334,
1967,
29918,
2103,
334,
4236,
29918,
6203,
29918,
29888,
13857,
847,
9565,
29918,
3605,
601,
13,
4706,
1723,
13,
13,
4706,
565,
1375,
29918,
3545,
6736,
4236,
29918,
3545,
29901,
13,
9651,
2867,
13,
13,
1678,
396,
1334,
1258,
451,
1284,
263,
15878,
9565,
11959,
29889,
3387,
736,
278,
2441,
848,
29889,
13,
1678,
565,
1375,
29918,
3545,
1405,
4236,
29918,
3545,
29901,
13,
4706,
736,
7442,
29889,
2378,
29898,
3027,
511,
17195,
13,
13,
1678,
396,
21029,
263,
2186,
2159,
29892,
2183,
278,
4559,
29881,
9565,
11959,
322,
3464,
310,
3171,
29879,
29889,
13,
1678,
282,
23959,
29918,
3545,
353,
4036,
29889,
29590,
29898,
1195,
29918,
3545,
29892,
4236,
29918,
3545,
29897,
13,
1678,
282,
23959,
29918,
2103,
353,
282,
23959,
29918,
3545,
334,
9565,
29918,
3605,
601,
13,
13,
1678,
396,
21029,
278,
9210,
310,
278,
2752,
1967,
2768,
278,
282,
23959,
1967,
29889,
13,
1678,
921,
29918,
10289,
353,
4036,
29889,
29590,
29898,
29900,
29889,
29900,
29892,
313,
29886,
23959,
29918,
2103,
448,
1967,
29918,
2103,
876,
13,
1678,
343,
29918,
10289,
353,
4036,
29889,
29590,
29898,
29900,
29889,
29900,
29892,
313,
29886,
23959,
29918,
3545,
448,
1967,
29918,
3545,
876,
13,
13,
1678,
396,
11796,
29872,
7164,
4312,
373,
278,
1967,
13,
1678,
1156,
29918,
12791,
29918,
2103,
353,
282,
23959,
29918,
2103,
448,
1967,
29918,
2103,
448,
921,
29918,
10289,
13,
1678,
1156,
29918,
12791,
29918,
3545,
353,
282,
23959,
29918,
3545,
448,
1967,
29918,
3545,
448,
343,
29918,
10289,
13,
13,
1678,
396,
18011,
278,
1967,
13,
1678,
7442,
328,
353,
313,
13,
4706,
313,
524,
29898,
29891,
29918,
10289,
511,
938,
29898,
7045,
29918,
12791,
29918,
3545,
8243,
13,
4706,
313,
524,
29898,
29916,
29918,
10289,
511,
938,
29898,
7045,
29918,
12791,
29918,
2103,
8243,
13,
4706,
313,
29900,
29892,
29871,
29900,
511,
13,
1678,
1723,
13,
1678,
282,
23959,
29918,
3027,
353,
7442,
29889,
8305,
29898,
3027,
29892,
17132,
29918,
2103,
29922,
29876,
8305,
29892,
4464,
543,
23362,
613,
4868,
29918,
5975,
29922,
29900,
29889,
29945,
29897,
13,
13,
1678,
7911,
353,
5785,
29898,
29891,
29918,
10289,
29897,
13,
1678,
25568,
353,
5785,
29898,
29916,
29918,
10289,
29897,
13,
13,
1678,
396,
4103,
5404,
4636,
363,
278,
25495,
13,
1678,
13852,
29918,
5344,
353,
7442,
29889,
2378,
4197,
29961,
29896,
29889,
29900,
29892,
29871,
29900,
29889,
29900,
29892,
7911,
1402,
518,
29900,
29889,
29900,
29892,
29871,
29896,
29889,
29900,
29892,
25568,
1402,
518,
29900,
29889,
29900,
29892,
29871,
29900,
29889,
29900,
29892,
29871,
29896,
29889,
29900,
24960,
13,
13,
1678,
396,
4803,
13852,
4636,
304,
18765,
25495,
13,
1678,
20917,
29918,
18317,
353,
5159,
13,
1678,
363,
11307,
297,
17195,
29901,
13,
4706,
15882,
353,
11307,
29961,
29900,
29901,
29896,
29962,
13,
4706,
13451,
353,
11307,
29961,
29896,
29901,
29945,
29962,
13,
4706,
16420,
353,
11307,
29961,
29945,
29901,
29953,
29962,
13,
13,
4706,
565,
451,
7442,
29889,
1384,
29898,
23687,
1125,
13,
9651,
20917,
29918,
18317,
29889,
4397,
29898,
13,
18884,
7442,
29889,
535,
29883,
2579,
403,
4197,
25378,
29892,
7442,
29889,
2378,
4197,
29900,
29892,
29871,
29900,
29892,
29871,
29900,
29892,
29871,
29900,
11724,
16420,
2314,
13,
9651,
1723,
13,
9651,
6773,
13,
13,
4706,
2920,
353,
13451,
29961,
29906,
29962,
13,
4706,
3171,
353,
13451,
29961,
29941,
29962,
13,
13,
4706,
921,
29896,
353,
13451,
29961,
29900,
29962,
334,
1967,
29918,
2103,
13,
4706,
343,
29896,
353,
13451,
29961,
29896,
29962,
334,
1967,
29918,
3545,
13,
4706,
921,
29906,
353,
313,
23687,
29961,
29900,
29962,
718,
2920,
29897,
334,
1967,
29918,
2103,
13,
4706,
343,
29906,
353,
313,
23687,
29961,
29896,
29962,
718,
3171,
29897,
334,
1967,
29918,
3545,
13,
13,
4706,
18765,
362,
29918,
1111,
24266,
353,
7442,
29889,
2378,
4197,
29891,
29896,
29892,
921,
29896,
29892,
343,
29906,
29892,
921,
29906,
1402,
26688,
29922,
9302,
29889,
7411,
29941,
29906,
29897,
13,
13,
4706,
325,
353,
7442,
29889,
535,
29883,
2579,
403,
29898,
13,
9651,
518,
13,
18884,
18765,
362,
29918,
1111,
24266,
29889,
690,
14443,
3552,
29906,
29892,
29871,
29906,
8243,
13,
18884,
7442,
29889,
2873,
3552,
29906,
29892,
29871,
29896,
511,
26688,
29922,
9302,
29889,
7411,
29941,
29906,
511,
13,
9651,
21251,
13,
9651,
9685,
29922,
29896,
29892,
13,
4706,
1723,
13,
4706,
1301,
4752,
29918,
29894,
353,
7442,
29889,
6333,
29898,
29894,
29892,
7442,
29889,
3286,
4220,
29898,
3286,
5404,
29918,
5344,
876,
13,
4706,
260,
29918,
1639,
2042,
353,
7442,
29889,
29879,
802,
29872,
911,
29898,
3286,
4752,
29918,
29894,
7503,
29892,
584,
29906,
1822,
690,
14443,
6278,
29896,
29892,
29871,
29946,
876,
13,
13,
4706,
396,
20025,
278,
3291,
2246,
29892,
2175,
29892,
5970,
29892,
1492,
13,
4706,
565,
260,
29918,
1639,
2042,
29961,
29900,
29962,
1405,
260,
29918,
1639,
2042,
29961,
29906,
5387,
13,
9651,
260,
29918,
1639,
2042,
29961,
29900,
1402,
260,
29918,
1639,
2042,
29961,
29906,
29962,
353,
260,
29918,
1639,
2042,
29961,
29906,
1402,
260,
29918,
1639,
2042,
29961,
29900,
29962,
13,
4706,
565,
260,
29918,
1639,
2042,
29961,
29896,
29962,
1405,
260,
29918,
1639,
2042,
29961,
29941,
5387,
13,
9651,
260,
29918,
1639,
2042,
29961,
29896,
1402,
260,
29918,
1639,
2042,
29961,
29941,
29962,
353,
260,
29918,
1639,
2042,
29961,
29941,
1402,
260,
29918,
1639,
2042,
29961,
29896,
29962,
13,
13,
4706,
396,
21981,
675,
278,
3161,
304,
278,
8182,
2986,
2920,
322,
3171,
13,
4706,
4552,
29918,
29896,
353,
260,
29918,
1639,
2042,
29961,
29896,
29962,
847,
282,
23959,
29918,
2103,
13,
4706,
4552,
29918,
29906,
353,
260,
29918,
1639,
2042,
29961,
29900,
29962,
847,
282,
23959,
29918,
3545,
13,
4706,
4552,
29918,
29941,
353,
313,
29873,
29918,
1639,
2042,
29961,
29941,
29962,
448,
260,
29918,
1639,
2042,
29961,
29896,
2314,
847,
282,
23959,
29918,
2103,
13,
4706,
4552,
29918,
29946,
353,
313,
29873,
29918,
1639,
2042,
29961,
29906,
29962,
448,
260,
29918,
1639,
2042,
29961,
29900,
2314,
847,
282,
23959,
29918,
3545,
13,
13,
4706,
20917,
29918,
18317,
29889,
4397,
29898,
13,
9651,
7442,
29889,
535,
29883,
2579,
403,
29898,
13,
18884,
518,
25378,
29892,
7442,
29889,
2378,
4197,
6146,
29918,
29896,
29892,
4552,
29918,
29906,
29892,
4552,
29918,
29941,
29892,
4552,
29918,
29946,
11724,
16420,
29962,
13,
9651,
1723,
13,
4706,
1723,
13,
13,
1678,
736,
7442,
29889,
2378,
29898,
29886,
23959,
29918,
3027,
511,
7442,
29889,
2378,
29898,
689,
19667,
29918,
18317,
29892,
26688,
29922,
9302,
29889,
7411,
29941,
29906,
29897,
13,
13,
13,
1753,
274,
1336,
29918,
2987,
358,
261,
29898,
13,
1678,
1967,
29892,
13,
1678,
17195,
29892,
13,
1678,
4036,
29892,
13,
1678,
14383,
29918,
22795,
3097,
29922,
29918,
23397,
29918,
29909,
23338,
29918,
16320,
29909,
4345,
3366,
11014,
29918,
22795,
3097,
29918,
29883,
1336,
12436,
13,
1678,
1375,
29918,
294,
1103,
29918,
3605,
601,
29922,
29918,
23397,
29918,
29909,
23338,
29918,
16320,
29909,
4345,
3366,
1195,
29918,
294,
1103,
29918,
3605,
601,
12436,
13,
1678,
4236,
29918,
294,
1103,
29918,
3605,
601,
29922,
29918,
23397,
29918,
29909,
23338,
29918,
16320,
29909,
4345,
3366,
3317,
29918,
294,
1103,
29918,
3605,
601,
12436,
13,
1678,
1375,
29918,
6203,
29918,
29888,
13857,
29922,
29918,
23397,
29918,
29909,
23338,
29918,
16320,
29909,
4345,
3366,
1195,
29918,
6203,
29918,
29888,
13857,
29918,
29883,
1336,
12436,
13,
1678,
4236,
29918,
6203,
29918,
29888,
13857,
29922,
29918,
23397,
29918,
29909,
23338,
29918,
16320,
29909,
4345,
3366,
3317,
29918,
6203,
29918,
29888,
13857,
29918,
29883,
1336,
12436,
13,
1678,
1375,
29918,
3318,
29918,
11911,
287,
29922,
29918,
23397,
29918,
29909,
23338,
29918,
16320,
29909,
4345,
3366,
1195,
29918,
3318,
29918,
11911,
287,
12436,
13,
1678,
4236,
29918,
1131,
3456,
29879,
29922,
29918,
23397,
29918,
29909,
23338,
29918,
16320,
29909,
4345,
3366,
3317,
29918,
1131,
3456,
29879,
12436,
13,
1678,
1375,
29918,
29872,
622,
29918,
11911,
482,
29922,
29918,
23397,
29918,
29909,
23338,
29918,
16320,
29909,
4345,
3366,
1195,
29918,
29872,
622,
29918,
11911,
482,
12436,
13,
1125,
13,
13,
1678,
565,
4036,
29889,
29590,
29898,
29900,
29889,
29900,
29892,
29871,
29896,
29889,
29900,
29897,
529,
14383,
29918,
22795,
3097,
29901,
13,
4706,
736,
7442,
29889,
2378,
29898,
3027,
511,
17195,
13,
13,
1678,
1967,
29918,
3545,
29892,
1967,
29918,
2103,
29892,
903,
353,
1967,
29889,
12181,
13,
13,
1678,
396,
21029,
274,
1336,
7705,
29879,
2745,
697,
17150,
1749,
11938,
313,
1609,
7709,
292,
263,
2854,
13,
1678,
396,
1051,
310,
8182,
2986,
25495,
511,
470,
20888,
278,
4046,
373,
14734,
29889,
13,
1678,
363,
474,
297,
3464,
29898,
3317,
29918,
1131,
3456,
29879,
1125,
13,
4706,
396,
16968,
368,
4559,
385,
9565,
11959,
29889,
13,
4706,
9565,
29918,
3605,
601,
353,
4036,
29889,
29590,
29898,
1195,
29918,
294,
1103,
29918,
3605,
601,
29892,
4236,
29918,
294,
1103,
29918,
3605,
601,
29897,
13,
13,
4706,
396,
8084,
591,
29915,
645,
4559,
263,
3171,
313,
4716,
12420,
411,
278,
1286,
2998,
9565,
13,
4706,
396,
11959,
29892,
3683,
1475,
278,
2159,
322,
4038,
467,
1205,
937,
591,
1818,
10272,
278,
3464,
13,
4706,
396,
310,
2854,
3171,
29879,
29889,
450,
274,
1336,
2609,
367,
260,
12572,
1135,
278,
2441,
1967,
29892,
13,
4706,
396,
2609,
367,
25734,
1135,
278,
2441,
1967,
29892,
322,
1818,
505,
385,
4038,
297,
278,
13,
4706,
396,
6790,
3464,
29889,
13,
13,
4706,
396,
450,
8182,
2986,
3171,
1818,
367,
694,
7200,
278,
2441,
3171,
29889,
13,
4706,
396,
298,
29915,
5277,
298,
13,
4706,
4236,
29918,
3545,
353,
5785,
29898,
3027,
29918,
3545,
29897,
13,
13,
4706,
396,
450,
8182,
2986,
2920,
1818,
367,
694,
7200,
1135,
278,
2441,
2920,
29889,
13,
4706,
396,
281,
29915,
5277,
281,
306,
3580,
5265,
2890,
21023,
29915,
5277,
281,
306,
3580,
5265,
2890,
298,
29915,
5277,
281,
847,
263,
13,
4706,
4236,
29918,
3545,
29918,
3166,
29918,
2103,
353,
5785,
29898,
3027,
29918,
2103,
29897,
847,
9565,
29918,
3605,
601,
13,
4706,
565,
4236,
29918,
3545,
1405,
4236,
29918,
3545,
29918,
3166,
29918,
2103,
29901,
13,
9651,
4236,
29918,
3545,
353,
4236,
29918,
3545,
29918,
3166,
29918,
2103,
13,
13,
4706,
396,
450,
8182,
2986,
4038,
1818,
451,
13461,
278,
7472,
4038,
15958,
29889,
13,
4706,
4236,
29918,
3545,
29918,
3166,
29918,
6203,
353,
7442,
29889,
3676,
29898,
13,
9651,
1967,
29918,
3545,
334,
1967,
29918,
2103,
334,
4236,
29918,
6203,
29918,
29888,
13857,
847,
9565,
29918,
3605,
601,
13,
4706,
1723,
13,
4706,
565,
4236,
29918,
3545,
1405,
4236,
29918,
3545,
29918,
3166,
29918,
6203,
29901,
13,
9651,
4236,
29918,
3545,
353,
4236,
29918,
3545,
29918,
3166,
29918,
6203,
13,
13,
4706,
396,
450,
282,
23959,
4038,
1818,
1098,
475,
278,
9212,
4038,
15958,
29889,
13,
4706,
1375,
29918,
3545,
353,
7442,
29889,
3676,
29898,
13,
9651,
1967,
29918,
3545,
334,
1967,
29918,
2103,
334,
1375,
29918,
6203,
29918,
29888,
13857,
847,
9565,
29918,
3605,
601,
13,
4706,
1723,
13,
13,
4706,
396,
960,
278,
3464,
338,
4069,
29892,
769,
8182,
567,
411,
278,
4559,
29881,
9565,
11959,
2609,
13,
4706,
396,
15523,
278,
4038,
7276,
29889,
13,
4706,
565,
1375,
29918,
3545,
1405,
4236,
29918,
3545,
29901,
13,
9651,
6773,
13,
13,
4706,
396,
21029,
263,
2602,
363,
278,
274,
1336,
29892,
1040,
22042,
304,
3804,
2629,
278,
1967,
29889,
13,
4706,
8182,
2986,
29918,
3545,
353,
4036,
29889,
29590,
29898,
1195,
29918,
3545,
29892,
4236,
29918,
3545,
29897,
13,
4706,
8182,
2986,
29918,
2103,
353,
8182,
2986,
29918,
3545,
334,
9565,
29918,
3605,
601,
13,
13,
4706,
921,
29918,
10289,
353,
4036,
29889,
29590,
29898,
29900,
29889,
29900,
29892,
313,
3027,
29918,
2103,
448,
8182,
2986,
29918,
2103,
876,
13,
4706,
343,
29918,
10289,
353,
4036,
29889,
29590,
29898,
29900,
29889,
29900,
29892,
313,
3027,
29918,
3545,
448,
8182,
2986,
29918,
3545,
876,
13,
13,
4706,
274,
1336,
29918,
23687,
29918,
29916,
29896,
353,
921,
29918,
10289,
13,
4706,
274,
1336,
29918,
23687,
29918,
29891,
29896,
353,
343,
29918,
10289,
13,
4706,
274,
1336,
29918,
23687,
29918,
29916,
29906,
353,
921,
29918,
10289,
718,
8182,
2986,
29918,
2103,
13,
4706,
274,
1336,
29918,
23687,
29918,
29891,
29906,
353,
343,
29918,
10289,
718,
8182,
2986,
29918,
3545,
13,
13,
4706,
20917,
29918,
18317,
353,
5159,
13,
4706,
338,
29918,
1195,
29918,
3318,
29918,
11911,
287,
353,
5852,
13,
4706,
363,
11307,
297,
17195,
29901,
13,
9651,
15882,
353,
11307,
29961,
29900,
29901,
29896,
29962,
13,
9651,
13451,
353,
11307,
29961,
29896,
29901,
29945,
29962,
13,
9651,
16420,
353,
11307,
29961,
29945,
29901,
29953,
29962,
13,
13,
9651,
2920,
353,
13451,
29961,
29906,
29962,
13,
9651,
3171,
353,
13451,
29961,
29941,
29962,
13,
13,
9651,
921,
29896,
353,
13451,
29961,
29900,
29962,
334,
1967,
29918,
2103,
13,
9651,
343,
29896,
353,
13451,
29961,
29896,
29962,
334,
1967,
29918,
3545,
13,
13,
9651,
921,
29906,
353,
313,
23687,
29961,
29900,
29962,
718,
2920,
29897,
334,
1967,
29918,
2103,
13,
9651,
343,
29906,
353,
313,
23687,
29961,
29896,
29962,
718,
3171,
29897,
334,
1967,
29918,
3545,
13,
13,
9651,
396,
910,
6987,
3692,
278,
274,
1336,
13451,
526,
714,
310,
278,
9732,
630,
13451,
29892,
565,
451,
372,
3639,
385,
4069,
17195,
13,
9651,
565,
313,
13,
18884,
274,
1336,
29918,
23687,
29918,
29916,
29896,
529,
921,
29906,
13,
18884,
322,
274,
1336,
29918,
23687,
29918,
29891,
29896,
529,
343,
29906,
13,
18884,
322,
921,
29896,
529,
274,
1336,
29918,
23687,
29918,
29916,
29906,
13,
18884,
322,
343,
29896,
529,
274,
1336,
29918,
23687,
29918,
29891,
29906,
13,
632,
1125,
13,
18884,
921,
29918,
23687,
353,
518,
29916,
29896,
29892,
921,
29906,
29892,
921,
29918,
10289,
29892,
921,
29918,
10289,
718,
8182,
2986,
29918,
2103,
29962,
13,
18884,
343,
29918,
23687,
353,
518,
29891,
29896,
29892,
343,
29906,
29892,
343,
29918,
10289,
29892,
343,
29918,
10289,
718,
8182,
2986,
29918,
3545,
29962,
13,
13,
18884,
921,
29918,
23687,
29889,
6605,
580,
13,
18884,
343,
29918,
23687,
29889,
6605,
580,
13,
13,
18884,
921,
29918,
29886,
7121,
353,
921,
29918,
23687,
29961,
29896,
29901,
29941,
29962,
13,
18884,
343,
29918,
29886,
7121,
353,
343,
29918,
23687,
29961,
29896,
29901,
29941,
29962,
13,
13,
18884,
17686,
353,
7442,
29889,
2378,
29898,
13,
462,
1678,
518,
29891,
29918,
29886,
7121,
29961,
29900,
1402,
921,
29918,
29886,
7121,
29961,
29900,
1402,
343,
29918,
29886,
7121,
29961,
29896,
1402,
921,
29918,
29886,
7121,
29961,
29896,
5262,
13,
18884,
1723,
13,
13,
18884,
17686,
29918,
6203,
353,
313,
1639,
2042,
29961,
29941,
29962,
448,
17686,
29961,
29896,
2314,
334,
313,
13,
462,
1678,
17686,
29961,
29906,
29962,
448,
17686,
29961,
29900,
29962,
13,
18884,
1723,
13,
18884,
17195,
29918,
6203,
353,
313,
29891,
29906,
448,
343,
29896,
29897,
334,
313,
29916,
29906,
448,
921,
29896,
29897,
13,
13,
18884,
4038,
29918,
11911,
482,
353,
17686,
29918,
6203,
847,
17195,
29918,
6203,
13,
13,
18884,
396,
512,
15480,
278,
274,
1336,
565,
372,
1258,
451,
18430,
25457,
1269,
17195,
322,
1018,
1449,
29889,
13,
18884,
565,
4038,
29918,
11911,
482,
529,
1375,
29918,
3318,
29918,
11911,
287,
29901,
13,
462,
1678,
338,
29918,
1195,
29918,
3318,
29918,
11911,
287,
353,
7700,
13,
462,
1678,
2867,
13,
13,
18884,
396,
960,
278,
4038,
23746,
338,
7621,
278,
1375,
29918,
29872,
622,
29918,
11911,
482,
29892,
769,
2869,
3013,
278,
17195,
13,
18884,
565,
4038,
29918,
11911,
482,
6736,
1375,
29918,
29872,
622,
29918,
11911,
482,
29901,
13,
462,
1678,
396,
4103,
5404,
4636,
363,
278,
25495,
13,
462,
1678,
13852,
29918,
5344,
353,
7442,
29889,
2378,
29898,
13,
462,
4706,
5519,
29896,
29889,
29900,
29892,
29871,
29900,
29889,
29900,
29892,
448,
29891,
29918,
10289,
1402,
518,
29900,
29889,
29900,
29892,
29871,
29896,
29889,
29900,
29892,
448,
29916,
29918,
10289,
1402,
518,
29900,
29889,
29900,
29892,
29871,
29900,
29889,
29900,
29892,
29871,
29896,
29889,
29900,
5262,
13,
462,
1678,
1723,
13,
13,
462,
1678,
325,
353,
7442,
29889,
535,
29883,
2579,
403,
29898,
13,
462,
4706,
518,
13,
462,
9651,
17686,
29889,
690,
14443,
3552,
29906,
29892,
29871,
29906,
8243,
13,
462,
9651,
7442,
29889,
2873,
3552,
29906,
29892,
29871,
29896,
511,
26688,
29922,
9302,
29889,
7411,
29941,
29906,
511,
13,
462,
4706,
21251,
13,
462,
4706,
9685,
29922,
29896,
29892,
13,
462,
1678,
1723,
13,
462,
1678,
1301,
4752,
29918,
29894,
353,
7442,
29889,
6333,
29898,
29894,
29892,
7442,
29889,
3286,
4220,
29898,
3286,
5404,
29918,
5344,
876,
13,
462,
1678,
260,
29918,
1639,
2042,
353,
7442,
29889,
29879,
802,
29872,
911,
29898,
3286,
4752,
29918,
29894,
7503,
29892,
584,
29906,
1822,
690,
14443,
6278,
29896,
29892,
29871,
29946,
876,
13,
13,
462,
1678,
396,
20025,
278,
3291,
2246,
29892,
2175,
29892,
5970,
29892,
1492,
13,
462,
1678,
565,
260,
29918,
1639,
2042,
29961,
29900,
29962,
1405,
260,
29918,
1639,
2042,
29961,
29906,
5387,
13,
462,
4706,
260,
29918,
1639,
2042,
29961,
29900,
1402,
260,
29918,
1639,
2042,
29961,
29906,
29962,
353,
313,
13,
462,
9651,
260,
29918,
1639,
2042,
29961,
29906,
1402,
13,
462,
9651,
260,
29918,
1639,
2042,
29961,
29900,
1402,
13,
462,
4706,
1723,
13,
462,
1678,
565,
260,
29918,
1639,
2042,
29961,
29896,
29962,
1405,
260,
29918,
1639,
2042,
29961,
29941,
5387,
13,
462,
4706,
260,
29918,
1639,
2042,
29961,
29896,
1402,
260,
29918,
1639,
2042,
29961,
29941,
29962,
353,
313,
13,
462,
9651,
260,
29918,
1639,
2042,
29961,
29941,
1402,
13,
462,
9651,
260,
29918,
1639,
2042,
29961,
29896,
1402,
13,
462,
4706,
1723,
13,
13,
462,
1678,
396,
21981,
675,
278,
3161,
304,
278,
8182,
2986,
2920,
322,
3171,
13,
462,
1678,
4552,
29918,
29896,
353,
260,
29918,
1639,
2042,
29961,
29896,
29962,
847,
8182,
2986,
29918,
2103,
13,
462,
1678,
4552,
29918,
29906,
353,
260,
29918,
1639,
2042,
29961,
29900,
29962,
847,
8182,
2986,
29918,
3545,
13,
462,
1678,
4552,
29918,
29941,
353,
313,
29873,
29918,
1639,
2042,
29961,
29941,
29962,
448,
260,
29918,
1639,
2042,
29961,
29896,
2314,
847,
8182,
2986,
29918,
2103,
13,
462,
1678,
4552,
29918,
29946,
353,
313,
29873,
29918,
1639,
2042,
29961,
29906,
29962,
448,
260,
29918,
1639,
2042,
29961,
29900,
2314,
847,
8182,
2986,
29918,
3545,
13,
13,
462,
1678,
20917,
29918,
18317,
29889,
4397,
29898,
13,
462,
4706,
7442,
29889,
535,
29883,
2579,
403,
29898,
13,
462,
9651,
518,
13,
462,
18884,
15882,
29892,
13,
462,
18884,
7442,
29889,
2378,
4197,
6146,
29918,
29896,
29892,
4552,
29918,
29906,
29892,
4552,
29918,
29941,
29892,
4552,
29918,
29946,
11724,
13,
462,
18884,
16420,
29892,
13,
462,
9651,
4514,
13,
462,
4706,
1723,
13,
462,
1678,
1723,
13,
18884,
1683,
29901,
13,
462,
1678,
20917,
29918,
18317,
29889,
4397,
29898,
13,
462,
4706,
7442,
29889,
535,
29883,
2579,
403,
29898,
13,
462,
9651,
518,
25378,
29892,
7442,
29889,
2378,
4197,
29900,
29889,
29900,
29892,
29871,
29900,
29889,
29900,
29892,
29871,
29900,
29889,
29900,
29892,
29871,
29900,
29889,
29900,
11724,
16420,
29962,
13,
462,
4706,
1723,
13,
462,
1678,
1723,
13,
9651,
1683,
29901,
13,
18884,
20917,
29918,
18317,
29889,
4397,
29898,
13,
462,
1678,
7442,
29889,
535,
29883,
2579,
403,
29898,
13,
462,
4706,
518,
25378,
29892,
7442,
29889,
2378,
4197,
29900,
29889,
29900,
29892,
29871,
29900,
29889,
29900,
29892,
29871,
29900,
29889,
29900,
29892,
29871,
29900,
29889,
29900,
11724,
16420,
29962,
13,
462,
1678,
1723,
13,
18884,
1723,
13,
13,
4706,
565,
451,
338,
29918,
1195,
29918,
3318,
29918,
11911,
287,
29901,
13,
9651,
6773,
13,
13,
4706,
343,
29918,
10289,
353,
938,
29898,
29891,
29918,
10289,
29897,
13,
4706,
921,
29918,
10289,
353,
938,
29898,
29916,
29918,
10289,
29897,
13,
4706,
1095,
29918,
29891,
353,
938,
29898,
24077,
2986,
29918,
3545,
718,
343,
29918,
10289,
29897,
13,
4706,
1095,
29918,
29916,
353,
938,
29898,
24077,
2986,
29918,
2103,
718,
921,
29918,
10289,
29897,
13,
13,
4706,
1967,
29918,
24077,
2986,
353,
1967,
29961,
29891,
29918,
10289,
29901,
355,
29918,
29891,
29892,
921,
29918,
10289,
29901,
355,
29918,
29916,
29962,
13,
13,
4706,
736,
7442,
29889,
2378,
29898,
3027,
29918,
24077,
2986,
511,
7442,
29889,
2378,
29898,
689,
19667,
29918,
18317,
29892,
26688,
29922,
9302,
29889,
7411,
29941,
29906,
29897,
13,
13,
1678,
736,
7442,
29889,
2378,
29898,
3027,
511,
17195,
13,
13,
13,
1753,
12655,
29918,
2987,
358,
261,
29898,
2492,
29892,
2889,
29892,
16717,
1125,
13,
1678,
4036,
353,
7442,
29889,
8172,
29889,
17875,
2792,
29898,
26776,
29922,
26776,
29897,
13,
1678,
10153,
29892,
2889,
353,
274,
1336,
29918,
2987,
358,
261,
29898,
2492,
29892,
2889,
29892,
4036,
29897,
13,
1678,
10153,
29892,
2889,
353,
7164,
29918,
2987,
358,
261,
29898,
2492,
29892,
2889,
29892,
4036,
29897,
13,
1678,
10153,
29892,
2889,
353,
14698,
29918,
29888,
3466,
29918,
2987,
358,
261,
29898,
2492,
29892,
2889,
29892,
4036,
29897,
13,
1678,
736,
10153,
29892,
2889,
13,
13,
13,
1753,
4866,
29918,
2987,
358,
261,
29898,
2492,
29918,
13264,
29892,
2889,
29918,
13264,
29892,
16717,
29918,
13264,
29892,
15595,
29918,
13264,
29892,
1962,
29918,
3545,
29892,
1962,
29918,
2103,
1125,
13,
1678,
15886,
353,
903,
433,
1537,
29918,
5215,
29918,
29056,
580,
13,
1678,
10153,
29918,
13264,
29892,
2889,
29918,
13264,
353,
15886,
29889,
23749,
29918,
2220,
29898,
13,
4706,
3653,
29922,
23749,
29918,
2987,
358,
261,
29892,
13,
4706,
297,
29886,
11759,
2492,
29918,
13264,
29892,
2889,
29918,
13264,
29892,
16717,
29918,
13264,
1402,
13,
4706,
28079,
11759,
13264,
29889,
7411,
29941,
29906,
29892,
15886,
29889,
7411,
29941,
29906,
1402,
13,
1678,
1723,
13,
1678,
10153,
29918,
13264,
29892,
2889,
29918,
13264,
353,
2927,
29918,
2987,
358,
261,
29898,
2492,
29918,
13264,
29892,
2889,
29918,
13264,
29892,
15595,
29918,
13264,
29961,
29900,
29901,
29941,
2314,
13,
1678,
10153,
29918,
13264,
29892,
2889,
29918,
13264,
353,
298,
434,
29918,
2987,
358,
261,
29898,
2492,
29918,
13264,
29892,
2889,
29918,
13264,
29892,
15595,
29918,
13264,
29961,
29941,
29901,
29946,
2314,
13,
1678,
10153,
29918,
13264,
29892,
2889,
29918,
13264,
353,
19490,
29918,
2987,
358,
261,
29898,
2492,
29918,
13264,
29892,
2889,
29918,
13264,
29892,
313,
4905,
29918,
3545,
29892,
1962,
29918,
2103,
876,
13,
1678,
736,
10153,
29918,
13264,
29892,
2889,
29918,
13264,
13,
13,
13,
1990,
3630,
29909,
688,
358,
261,
29898,
3318,
1125,
13,
1678,
822,
4770,
2344,
12035,
1311,
29892,
1962,
29918,
3545,
29892,
1962,
29918,
2103,
29892,
9853,
29918,
2311,
29892,
19490,
29918,
6194,
1125,
13,
4706,
15886,
353,
903,
433,
1537,
29918,
5215,
29918,
29056,
580,
13,
4706,
1583,
29889,
16175,
29918,
2311,
353,
9853,
29918,
2311,
13,
4706,
1583,
29889,
4262,
353,
15886,
29889,
9527,
580,
13,
4706,
1583,
29889,
21476,
29918,
6194,
353,
19490,
29918,
6194,
13,
4706,
411,
1583,
29889,
4262,
29889,
294,
29918,
4381,
7295,
13,
9651,
1583,
29889,
2492,
29918,
13264,
353,
518,
13,
18884,
15886,
29889,
27074,
29898,
13264,
29889,
7411,
29941,
29906,
29892,
518,
8516,
29892,
6213,
29892,
29871,
29941,
2314,
13,
18884,
363,
921,
297,
3464,
29898,
29900,
29892,
1583,
29889,
16175,
29918,
2311,
29897,
13,
9651,
4514,
13,
9651,
1583,
29889,
812,
29918,
13264,
353,
518,
13,
18884,
15886,
29889,
27074,
29898,
13264,
29889,
7411,
29941,
29906,
29892,
518,
8516,
29892,
29871,
29953,
2314,
363,
921,
297,
3464,
29898,
29900,
29892,
1583,
29889,
16175,
29918,
2311,
29897,
13,
9651,
4514,
13,
9651,
1583,
29889,
2312,
29918,
13264,
353,
15886,
29889,
27074,
29898,
13264,
29889,
7411,
29941,
29906,
29892,
518,
1311,
29889,
16175,
29918,
2311,
29892,
29871,
29946,
2314,
13,
9651,
1583,
29889,
8172,
29918,
26776,
29918,
13264,
353,
15886,
29889,
27074,
29898,
13264,
29889,
13470,
29941,
29906,
29897,
13,
9651,
1583,
29889,
21476,
29918,
459,
29918,
16175,
353,
5159,
13,
9651,
363,
474,
297,
3464,
29898,
29900,
29892,
1583,
29889,
16175,
29918,
2311,
1125,
13,
18884,
565,
19490,
29918,
6194,
29901,
13,
462,
1678,
11307,
29918,
2492,
29918,
13264,
29892,
11307,
29918,
812,
29918,
13264,
353,
19490,
29918,
2987,
358,
261,
29898,
13,
462,
4706,
1583,
29889,
2492,
29918,
13264,
29961,
29875,
1402,
1583,
29889,
812,
29918,
13264,
29961,
29875,
1402,
313,
4905,
29918,
3545,
29892,
1962,
29918,
2103,
29897,
13,
462,
1678,
1723,
13,
462,
1678,
1583,
29889,
21476,
29918,
459,
29918,
16175,
29889,
4397,
4197,
2987,
29918,
2492,
29918,
13264,
29892,
11307,
29918,
812,
29918,
13264,
2314,
13,
18884,
1683,
29901,
13,
462,
1678,
11307,
29918,
2492,
29918,
13264,
29892,
11307,
29918,
812,
29918,
13264,
353,
4866,
29918,
2987,
358,
261,
29898,
13,
462,
4706,
1583,
29889,
2492,
29918,
13264,
29961,
29875,
1402,
13,
462,
4706,
1583,
29889,
812,
29918,
13264,
29961,
29875,
1402,
13,
462,
4706,
1583,
29889,
8172,
29918,
26776,
29918,
13264,
29961,
29875,
1402,
13,
462,
4706,
1583,
29889,
2312,
29918,
13264,
29961,
29875,
1402,
13,
462,
4706,
1962,
29918,
3545,
29892,
13,
462,
4706,
1962,
29918,
2103,
29892,
13,
462,
1678,
1723,
13,
462,
1678,
1583,
29889,
21476,
29918,
459,
29918,
16175,
29889,
4397,
4197,
2987,
29918,
2492,
29918,
13264,
29892,
11307,
29918,
812,
29918,
13264,
2314,
13,
13,
1678,
822,
679,
29918,
2987,
358,
287,
29918,
1272,
29898,
1311,
29892,
4558,
29892,
25495,
29892,
4036,
29918,
26776,
1125,
13,
4706,
15886,
353,
903,
433,
1537,
29918,
5215,
29918,
29056,
580,
13,
4706,
411,
15886,
29889,
7317,
29898,
4262,
29922,
1311,
29889,
4262,
29897,
408,
4867,
29901,
13,
9651,
8343,
29918,
8977,
353,
9657,
580,
13,
13,
9651,
396,
6977,
5987,
8343,
29918,
8977,
411,
4558,
322,
25495,
13,
9651,
3983,
29918,
459,
353,
1583,
29889,
21476,
29918,
459,
29918,
16175,
29961,
29900,
584,
7431,
29898,
8346,
4638,
13,
9651,
363,
474,
297,
3464,
29898,
2435,
29898,
8346,
22164,
13,
18884,
8343,
29918,
8977,
29961,
1311,
29889,
2492,
29918,
13264,
29961,
29875,
5262,
353,
903,
13239,
29889,
13441,
29918,
12366,
29918,
7411,
29918,
2378,
29918,
517,
29918,
23749,
29898,
13,
462,
1678,
4558,
29961,
29875,
29962,
13,
18884,
1723,
13,
18884,
8343,
29918,
8977,
29961,
1311,
29889,
812,
29918,
13264,
29961,
29875,
5262,
353,
903,
13239,
29889,
13441,
29918,
12366,
29918,
7411,
29918,
2378,
29918,
517,
29918,
23749,
29898,
13,
462,
1678,
25495,
29961,
29875,
29962,
13,
18884,
1723,
13,
13,
9651,
396,
6977,
5987,
8343,
29918,
8977,
411,
4036,
16717,
322,
4036,
15595,
1819,
29892,
1304,
13,
9651,
396,
304,
4559,
1967,
22786,
800,
29889,
1334,
1016,
29915,
29873,
671,
323,
6073,
17907,
29915,
29879,
4240,
29899,
262,
13,
9651,
396,
2304,
363,
4036,
1353,
12623,
29892,
1951,
591,
864,
304,
17583,
13,
9651,
396,
10092,
278,
16717,
363,
1269,
4867,
313,
16175,
467,
13,
9651,
4036,
353,
7442,
29889,
8172,
29889,
17875,
2792,
29898,
26776,
29922,
8172,
29918,
26776,
29897,
13,
9651,
8343,
29918,
8977,
29961,
1311,
29889,
2312,
29918,
13264,
29962,
353,
4036,
29889,
9502,
10456,
1311,
29889,
2312,
29918,
13264,
29889,
12181,
29897,
13,
9651,
8343,
29918,
8977,
29961,
1311,
29889,
8172,
29918,
26776,
29918,
13264,
29962,
353,
4036,
29889,
9502,
524,
29898,
13,
462,
29900,
29892,
29871,
29906,
3579,
29871,
29941,
29906,
29892,
2159,
29922,
1311,
29889,
16175,
29918,
2311,
13,
9651,
1723,
13,
9651,
11307,
29918,
4905,
353,
4867,
29889,
3389,
29898,
4262,
29918,
459,
29892,
8343,
29918,
8977,
29922,
18798,
29918,
8977,
29897,
13,
9651,
19356,
29918,
8346,
353,
5159,
13,
9651,
19356,
29918,
6735,
800,
353,
5159,
13,
9651,
363,
288,
297,
11307,
29918,
4905,
29901,
13,
18884,
19356,
29918,
8346,
29889,
4397,
29898,
29877,
29961,
29900,
2314,
13,
18884,
19356,
29918,
6735,
800,
29889,
4397,
29898,
13,
462,
1678,
7442,
29889,
294,
1285,
5526,
681,
2378,
29898,
29877,
29961,
29896,
1402,
26688,
29922,
9302,
29889,
7411,
29941,
29906,
29897,
13,
18884,
1723,
13,
9651,
19356,
29918,
8346,
353,
7442,
29889,
2378,
29898,
5014,
287,
29918,
8346,
29892,
26688,
29922,
9302,
29889,
7411,
29941,
29906,
29897,
13,
9651,
19356,
29918,
8346,
353,
7442,
29889,
294,
1285,
5526,
681,
2378,
29898,
5014,
287,
29918,
8346,
29892,
26688,
29922,
9302,
29889,
7411,
29941,
29906,
29897,
13,
9651,
736,
313,
5014,
287,
29918,
8346,
29892,
19356,
29918,
6735,
800,
29897,
13,
2
] |
tests/__init__.py | zhangyiming07/QT4C | 53 | 6345 | # -*- coding: utf-8 -*-
#
# Tencent is pleased to support the open source community by making QT4C available.
# Copyright (C) 2020 THL A29 Limited, a Tencent company. All rights reserved.
# QT4C is licensed under the BSD 3-Clause License, except for the third-party components listed below.
# A copy of the BSD 3-Clause License is included in this file.
#
'''单元测试
'''
import unittest
import os
import sys
test_dir = os.path.dirname(os.path.abspath(__file__))
sys.path.insert(0, os.path.dirname(test_dir))
def main():
runner = unittest.TextTestRunner(verbosity=10 + sys.argv.count('-v'))
suite = unittest.TestLoader().discover(test_dir, pattern='test_*.py')
raise SystemExit(not runner.run(suite).wasSuccessful())
if __name__ == '__main__':
main()
| [
1,
396,
448,
29930,
29899,
14137,
29901,
23616,
29899,
29947,
448,
29930,
29899,
13,
29937,
13,
29937,
12444,
1760,
338,
22301,
304,
2304,
278,
1722,
2752,
7881,
491,
3907,
660,
29911,
29946,
29907,
3625,
29889,
259,
13,
29937,
14187,
1266,
313,
29907,
29897,
29871,
29906,
29900,
29906,
29900,
3446,
29931,
319,
29906,
29929,
28873,
29892,
263,
12444,
1760,
5001,
29889,
29871,
2178,
10462,
21676,
29889,
13,
29937,
660,
29911,
29946,
29907,
338,
7794,
21144,
1090,
278,
350,
7230,
29871,
29941,
29899,
20216,
1509,
19245,
29892,
5174,
363,
278,
4654,
29899,
22633,
7117,
9904,
2400,
29889,
29871,
13,
29937,
319,
3509,
310,
278,
350,
7230,
29871,
29941,
29899,
20216,
1509,
19245,
338,
5134,
297,
445,
934,
29889,
13,
29937,
13,
13,
12008,
31166,
30824,
31851,
31787,
13,
12008,
13,
13,
5215,
443,
27958,
13,
5215,
2897,
13,
5215,
10876,
13,
13,
1688,
29918,
3972,
353,
2897,
29889,
2084,
29889,
25721,
29898,
359,
29889,
2084,
29889,
370,
1028,
493,
22168,
1445,
1649,
876,
13,
9675,
29889,
2084,
29889,
7851,
29898,
29900,
29892,
2897,
29889,
2084,
29889,
25721,
29898,
1688,
29918,
3972,
876,
13,
13,
1753,
1667,
7295,
13,
1678,
28877,
353,
443,
27958,
29889,
1626,
3057,
16802,
29898,
18248,
359,
537,
29922,
29896,
29900,
718,
10876,
29889,
19218,
29889,
2798,
877,
29899,
29894,
8785,
13,
1678,
9460,
353,
443,
27958,
29889,
3057,
10036,
2141,
2218,
11911,
29898,
1688,
29918,
3972,
29892,
29871,
4766,
2433,
1688,
29918,
10521,
2272,
1495,
13,
1678,
12020,
2184,
24365,
29898,
1333,
28877,
29889,
3389,
29898,
13495,
467,
11102,
14191,
1319,
3101,
13,
13,
13,
361,
4770,
978,
1649,
1275,
525,
1649,
3396,
1649,
2396,
13,
1678,
1667,
580,
13,
2
] |
ver_colores.py | maltenzo/surrendeador | 0 | 34878 | <gh_stars>0
import mouse
import keyboard
from PIL import Image
import pyscreenshot
from time import sleep
import os
def ver():
while True:
img = pyscreenshot.grab()
width, height = img.size
pixel_values = list(img.getdata())
print (pixel_values[width*mouse.get_position()[1]+mouse.get_position()[0]])
def dame_colores():
img = pyscreenshot.grab()
width, height = img.size
pixel_values = list(img.getdata())
return (pixel_values[width*mouse.get_position()[1]+mouse.get_position()[0]])
while True:
# print(mouse.get_position())
print( dame_colores())
| [
1,
529,
12443,
29918,
303,
1503,
29958,
29900,
13,
5215,
9495,
30004,
13,
5215,
12247,
30004,
13,
3166,
349,
6227,
1053,
7084,
30004,
13,
5215,
282,
952,
24546,
8711,
30004,
13,
3166,
931,
1053,
8709,
30004,
13,
5215,
2897,
30004,
13,
30004,
13,
1753,
1147,
7295,
30004,
13,
29871,
1550,
5852,
29901,
30004,
13,
1678,
10153,
353,
282,
952,
24546,
8711,
29889,
3874,
29890,
26471,
13,
1678,
2920,
29892,
3171,
353,
10153,
29889,
2311,
30004,
13,
1678,
15526,
29918,
5975,
353,
1051,
29898,
2492,
29889,
657,
1272,
3101,
30004,
13,
1678,
1596,
313,
29886,
15711,
29918,
5975,
29961,
2103,
29930,
15769,
29889,
657,
29918,
3283,
580,
29961,
29896,
10062,
15769,
29889,
657,
29918,
3283,
580,
29961,
29900,
24960,
30004,
13,
30004,
13,
1753,
270,
420,
29918,
1054,
2361,
7295,
30004,
13,
1678,
10153,
353,
282,
952,
24546,
8711,
29889,
3874,
29890,
26471,
13,
1678,
2920,
29892,
3171,
353,
10153,
29889,
2311,
30004,
13,
1678,
15526,
29918,
5975,
353,
1051,
29898,
2492,
29889,
657,
1272,
3101,
30004,
13,
1678,
736,
313,
29886,
15711,
29918,
5975,
29961,
2103,
29930,
15769,
29889,
657,
29918,
3283,
580,
29961,
29896,
10062,
15769,
29889,
657,
29918,
3283,
580,
29961,
29900,
24960,
30004,
13,
30004,
13,
8000,
5852,
29901,
30004,
13,
396,
29871,
1596,
29898,
15769,
29889,
657,
29918,
3283,
3101,
30004,
13,
259,
1596,
29898,
270,
420,
29918,
1054,
2361,
3101,
30004,
13,
2
] |
bounded_multi_processing.py | zinob/python_tutorials | 0 | 117953 | #!/usr/bin/python
## """
## How do i parallelize a retriever function and a sender/saver function when they
## 1: require mpthreads
## 2: The dataammount is significant enough that I don't want the receiver to get to far ahead of the sender.
## """
## This code uses a semaphore to bound the amount of in-flight data.
## The general rule of thumb is that you should use twice the number of threads that you have CPUs,
## so this one uses one pool for senders and one pool for receivers, each with equal workers as there are CPUs in the system.
## The semaphore size is set to the twice the number of possible in-flight sending requests in order to avoid thread starvation
## (if it is less than cpu*chunk it will stall, if its less than twice that performance might suffer)
import multiprocessing
from multiprocessing import Pool
import time
try:
from tqdm import tqdm
except:
tqdm=lambda x,*_,**__:x
import random
def ini(y):
global semaphore
semaphore=y
def receive(i):
semaphore.acquire()
time.sleep(1+random.randrange(-4,4)/10)
return i+1
def send(x):
time.sleep(2)
semaphore.release()
return(f"sent:{x}")
ITERS=99
CHUNK=4
CPUs=multiprocessing.cpu_count()
m = multiprocessing.Manager()
s = m.BoundedSemaphore(CHUNK*CPUs*2)
t=time.time()
with Pool(CPUs,initializer=ini, initargs=[s] ) as receiver_p:
with Pool(CPUs,initializer=ini, initargs=[s]) as sender_p:
indata = range(ITERS)
received=receiver_p.imap_unordered(receive, indata,chunksize=CHUNK)
sent=sender_p.imap_unordered(send, tqdm(received, desc="received", total=ITERS,miniters=1),chunksize=CHUNK)
for i in tqdm(sent,desc="sent",total=ITERS,miniters=1):
pass
time.sleep(1)
print()
print(time.time()-t)
print(time.time()-t)
| [
1,
18787,
4855,
29914,
2109,
29914,
4691,
13,
13,
2277,
9995,
13,
2277,
1128,
437,
474,
8943,
675,
263,
5663,
347,
369,
740,
322,
263,
10004,
29914,
4977,
369,
740,
746,
896,
13,
2277,
29871,
29896,
29901,
1996,
22326,
28993,
13,
2277,
29871,
29906,
29901,
450,
848,
4850,
792,
338,
7282,
3307,
393,
306,
1016,
29915,
29873,
864,
278,
19870,
304,
679,
304,
2215,
14432,
310,
278,
10004,
29889,
13,
2277,
9995,
13,
2277,
910,
775,
3913,
263,
3031,
12451,
487,
304,
3216,
278,
5253,
310,
297,
29899,
1579,
523,
848,
29889,
13,
2277,
450,
2498,
5751,
310,
28968,
338,
393,
366,
881,
671,
8951,
278,
1353,
310,
9717,
393,
366,
505,
10808,
29879,
29892,
13,
2277,
577,
445,
697,
3913,
697,
11565,
363,
3638,
414,
322,
697,
11565,
363,
2414,
1536,
29892,
1269,
411,
5186,
17162,
408,
727,
526,
10808,
29879,
297,
278,
1788,
29889,
13,
2277,
450,
3031,
12451,
487,
2159,
338,
731,
304,
278,
8951,
278,
1353,
310,
1950,
297,
29899,
1579,
523,
9348,
7274,
297,
1797,
304,
4772,
3244,
5810,
29894,
362,
13,
2277,
313,
361,
372,
338,
3109,
1135,
26403,
29930,
29812,
372,
674,
380,
497,
29892,
565,
967,
3109,
1135,
8951,
393,
4180,
1795,
8812,
29897,
13,
13,
5215,
6674,
307,
985,
292,
13,
3166,
6674,
307,
985,
292,
1053,
28625,
13,
5215,
931,
13,
2202,
29901,
13,
1678,
515,
260,
29939,
18933,
1053,
260,
29939,
18933,
13,
19499,
29901,
13,
1678,
260,
29939,
18933,
29922,
2892,
921,
29892,
29930,
3383,
1068,
1649,
29901,
29916,
13,
5215,
4036,
13,
13,
1753,
297,
29875,
29898,
29891,
1125,
13,
1678,
5534,
3031,
12451,
487,
13,
1678,
3031,
12451,
487,
29922,
29891,
13,
268,
13,
1753,
7150,
29898,
29875,
1125,
13,
1678,
3031,
12451,
487,
29889,
562,
1548,
580,
13,
1678,
931,
29889,
17059,
29898,
29896,
29974,
8172,
29889,
9502,
3881,
6278,
29946,
29892,
29946,
6802,
29896,
29900,
29897,
13,
1678,
736,
474,
29974,
29896,
13,
13,
1753,
3638,
29898,
29916,
1125,
13,
1678,
931,
29889,
17059,
29898,
29906,
29897,
13,
1678,
3031,
12451,
487,
29889,
14096,
580,
13,
1678,
736,
29898,
29888,
29908,
18616,
26254,
29916,
27195,
13,
13,
13,
1806,
23598,
29922,
29929,
29929,
13,
3210,
3904,
29968,
29922,
29946,
13,
6271,
15922,
29922,
18056,
307,
985,
292,
29889,
21970,
29918,
2798,
580,
13,
13,
29885,
353,
6674,
307,
985,
292,
29889,
3260,
580,
13,
29879,
353,
286,
29889,
29933,
7261,
28516,
12451,
487,
29898,
3210,
3904,
29968,
29930,
6271,
15922,
29930,
29906,
29897,
13,
29873,
29922,
2230,
29889,
2230,
580,
13,
2541,
28625,
29898,
6271,
15922,
29892,
11228,
3950,
29922,
2172,
29892,
2069,
5085,
11759,
29879,
29962,
1723,
408,
19870,
29918,
29886,
29901,
13,
1678,
411,
28625,
29898,
6271,
15922,
29892,
11228,
3950,
29922,
2172,
29892,
2069,
5085,
11759,
29879,
2314,
408,
10004,
29918,
29886,
29901,
13,
4706,
297,
1272,
353,
3464,
29898,
1806,
23598,
29897,
13,
4706,
4520,
29922,
13556,
2147,
29918,
29886,
29889,
326,
481,
29918,
348,
21693,
29898,
13556,
573,
29892,
297,
1272,
29892,
305,
18801,
675,
29922,
3210,
3904,
29968,
29897,
13,
4706,
2665,
29922,
15452,
29918,
29886,
29889,
326,
481,
29918,
348,
21693,
29898,
6717,
29892,
260,
29939,
18933,
29898,
13556,
2347,
29892,
5153,
543,
13556,
2347,
613,
3001,
29922,
1806,
23598,
29892,
1195,
277,
414,
29922,
29896,
511,
305,
18801,
675,
29922,
3210,
3904,
29968,
29897,
13,
4706,
363,
474,
297,
260,
29939,
18933,
29898,
18616,
29892,
14273,
543,
18616,
613,
7827,
29922,
1806,
23598,
29892,
1195,
277,
414,
29922,
29896,
1125,
13,
9651,
1209,
13,
13,
4706,
931,
29889,
17059,
29898,
29896,
29897,
13,
4706,
1596,
580,
13,
4706,
1596,
29898,
2230,
29889,
2230,
580,
29899,
29873,
29897,
13,
2158,
29898,
2230,
29889,
2230,
580,
29899,
29873,
29897,
13,
2
] |
__init__.py | dedalodaelus/hass-http_legacy_auth | 1 | 135155 | <reponame>dedalodaelus/hass-http_legacy_auth
import asyncio
from aiohttp.web import middleware
from aiohttp.frozenlist import FrozenList
import logging
from homeassistant.components.http import HomeAssistantHTTP
from homeassistant.components.http.const import KEY_AUTHENTICATED
# The domain of your component. Should be equal to the name of your component.
DOMAIN = "http_legacy_auth"
_LOGGER = logging.getLogger(__name__)
KEY_API_PASSWORD = '<PASSWORD>'
@asyncio.coroutine
def async_setup(hass, config):
api_password = config[DOMAIN][KEY_API_PASSWORD]
@middleware
async def auth_middleware(request, handler):
if KEY_API_PASSWORD in request.query and \
request.query[KEY_API_PASSWORD] == api_password:
auth_type = 'api_password'
_LOGGER.debug(
"Authenticated %s for %s using %s",
request,
request.path,
auth_type,
)
request[KEY_AUTHENTICATED] = True
return await handler(request)
# NOTE: This hack is an accident waiting to happen, however HASS
# doesn't seem to offer a way to add a middleware to the http
# component. aiohttp "freezes" app state after start so it's
# impossible to use public API to add a middleware there directly.
hass.http.app._middlewares = FrozenList([*hass.http.app.middlewares, auth_middleware])
hass.http.app._middlewares_handlers = tuple(hass.http.app._prepare_middleware())
return True
| [
1,
529,
276,
1112,
420,
29958,
7176,
284,
397,
4271,
375,
29914,
29882,
465,
29899,
1124,
29918,
1397,
4135,
29918,
5150,
13,
5215,
408,
948,
3934,
13,
3166,
263,
601,
1124,
29889,
2676,
1053,
7256,
2519,
13,
3166,
263,
601,
1124,
29889,
29888,
307,
2256,
1761,
1053,
25022,
2256,
1293,
13,
5215,
12183,
13,
13,
3166,
3271,
465,
22137,
29889,
14036,
29889,
1124,
1053,
8778,
7900,
22137,
10493,
13,
3166,
3271,
465,
22137,
29889,
14036,
29889,
1124,
29889,
3075,
1053,
14636,
29918,
20656,
29950,
3919,
2965,
3040,
29928,
13,
13,
29937,
450,
5354,
310,
596,
4163,
29889,
10575,
367,
5186,
304,
278,
1024,
310,
596,
4163,
29889,
13,
3970,
29032,
353,
376,
1124,
29918,
1397,
4135,
29918,
5150,
29908,
13,
29918,
14480,
17070,
353,
12183,
29889,
657,
16363,
22168,
978,
1649,
29897,
13,
13,
10818,
29918,
8787,
29918,
25711,
17013,
353,
12801,
25711,
17013,
16299,
13,
13,
29992,
294,
948,
3934,
29889,
2616,
449,
457,
13,
1753,
7465,
29918,
14669,
29898,
29882,
465,
29892,
2295,
1125,
13,
1678,
7882,
29918,
5630,
353,
2295,
29961,
3970,
29032,
3816,
10818,
29918,
8787,
29918,
25711,
17013,
29962,
13,
13,
1678,
732,
17662,
2519,
13,
1678,
7465,
822,
4817,
29918,
17662,
2519,
29898,
3827,
29892,
7834,
1125,
13,
4706,
565,
14636,
29918,
8787,
29918,
25711,
17013,
297,
2009,
29889,
1972,
322,
320,
13,
1669,
2009,
29889,
1972,
29961,
10818,
29918,
8787,
29918,
25711,
17013,
29962,
1275,
7882,
29918,
5630,
29901,
13,
13,
9651,
4817,
29918,
1853,
353,
525,
2754,
29918,
5630,
29915,
13,
9651,
903,
14480,
17070,
29889,
8382,
29898,
13,
18884,
376,
6444,
4173,
630,
1273,
29879,
363,
1273,
29879,
773,
1273,
29879,
613,
13,
18884,
2009,
29892,
13,
18884,
2009,
29889,
2084,
29892,
13,
18884,
4817,
29918,
1853,
29892,
13,
9651,
1723,
13,
13,
9651,
2009,
29961,
10818,
29918,
20656,
29950,
3919,
2965,
3040,
29928,
29962,
353,
5852,
13,
13,
4706,
736,
7272,
7834,
29898,
3827,
29897,
13,
13,
1678,
396,
6058,
29923,
29901,
910,
15833,
338,
385,
11423,
10534,
304,
3799,
29892,
3138,
379,
22933,
13,
1678,
396,
1838,
29915,
29873,
2833,
304,
5957,
263,
982,
304,
788,
263,
7256,
2519,
304,
278,
1732,
13,
1678,
396,
4163,
29889,
263,
601,
1124,
376,
9021,
10947,
29908,
623,
2106,
1156,
1369,
577,
372,
29915,
29879,
13,
1678,
396,
9301,
304,
671,
970,
3450,
304,
788,
263,
7256,
2519,
727,
4153,
29889,
13,
1678,
298,
465,
29889,
1124,
29889,
932,
3032,
17662,
4495,
267,
353,
25022,
2256,
1293,
4197,
29930,
29882,
465,
29889,
1124,
29889,
932,
29889,
17662,
4495,
267,
29892,
4817,
29918,
17662,
2519,
2314,
13,
1678,
298,
465,
29889,
1124,
29889,
932,
3032,
17662,
4495,
267,
29918,
3179,
9306,
353,
18761,
29898,
29882,
465,
29889,
1124,
29889,
932,
3032,
19125,
29918,
17662,
2519,
3101,
13,
1678,
736,
5852,
13,
2
] |
src/zojax/security/utils.py | Zojax/zojax.security | 0 | 43279 | ##############################################################################
#
# Copyright (c) 2007 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""
$Id$
"""
from zope.component import getUtility
from zope.security.proxy import removeSecurityProxy
from zope.security.management import queryInteraction
from zope.app.security.interfaces import IAuthentication, PrincipalLookupError
from zope.app.security.principalregistry import Principal
from interfaces import IZojaxSecurityPolicy, _
def getPrincipal(id=None):
""" get current interaction principal """
if id is None:
interaction = queryInteraction()
if interaction is not None:
for participation in interaction.participations:
if participation.principal is not None:
return participation.principal
else:
try:
return getUtility(IAuthentication).getPrincipal(id)
except PrincipalLookupError:
return Principal('unknown', _('Unknown'), _('Unknown'), 'unknown', 'unknown')
def getPrincipals(ids):
auth = getUtility(IAuthentication)
for pid in ids:
try:
principal = auth.getPrincipal(pid)
except PrincipalLookupError:
continue
yield principal
def checkPermissionForPrincipal(principal, permission, object):
interaction = queryInteraction()
if IZojaxSecurityPolicy.providedBy(interaction):
return interaction.cached_decision(
removeSecurityProxy(object), principal.id,
interaction._groupsFor(principal), permission)
return False
def invalidateSecurityCache():
queryInteraction().invalidate_cache() | [
1,
835,
13383,
13383,
13383,
13383,
7346,
2277,
29937,
13,
29937,
13,
29937,
14187,
1266,
313,
29883,
29897,
29871,
29906,
29900,
29900,
29955,
796,
2300,
15025,
322,
2866,
1091,
29560,
29889,
13,
29937,
2178,
26863,
2538,
9841,
29889,
13,
29937,
13,
29937,
910,
7047,
338,
4967,
304,
278,
1326,
12112,
310,
278,
796,
2300,
5236,
19245,
29892,
13,
29937,
10079,
29871,
29906,
29889,
29896,
313,
29999,
7390,
467,
29871,
319,
3509,
310,
278,
796,
7390,
881,
10259,
1384,
445,
4978,
29889,
13,
29937,
3446,
3235,
7791,
7818,
12982,
1525,
8519,
13756,
13044,
3352,
376,
3289,
8519,
29908,
5300,
13764,
29979,
5300,
15149,
8528,
15094,
1799,
6323,
306,
3580,
5265,
3352,
13,
29937,
399,
1718,
29934,
13566,
29059,
319,
1525,
28657,
13875,
8890,
29928,
29892,
2672,
6154,
15789,
4214,
29892,
350,
2692,
6058,
27848,
3352,
7495,
29892,
6093,
306,
3580,
5265,
3352,
13,
29937,
399,
1718,
29934,
13566,
29059,
8079,
323,
1806,
1307,
29892,
341,
1001,
3210,
13566,
2882,
6227,
11937,
29892,
319,
12739,
25580,
2672,
15860,
1177,
1692,
13780,
29892,
5300,
383,
1806,
8186,
1799,
13,
29937,
15842,
319,
349,
8322,
2965,
13309,
1718,
349,
4574,
13152,
1660,
29889,
13,
29937,
13,
13383,
13383,
13383,
13383,
7346,
4136,
2277,
13,
15945,
29908,
13,
13,
29938,
1204,
29938,
13,
15945,
29908,
13,
3166,
503,
2300,
29889,
9700,
1053,
679,
7270,
537,
13,
3166,
503,
2300,
29889,
8926,
29889,
14701,
1053,
3349,
13228,
14048,
13,
3166,
503,
2300,
29889,
8926,
29889,
21895,
1053,
2346,
4074,
2467,
13,
3166,
503,
2300,
29889,
932,
29889,
8926,
29889,
1639,
8726,
1053,
306,
16746,
29892,
14771,
7830,
14959,
786,
2392,
13,
3166,
503,
2300,
29889,
932,
29889,
8926,
29889,
558,
26706,
1727,
6020,
1053,
14771,
7830,
13,
13,
3166,
19510,
1053,
306,
29999,
3848,
1165,
13228,
15644,
29892,
903,
13,
13,
13,
1753,
679,
4040,
26706,
29898,
333,
29922,
8516,
1125,
13,
1678,
9995,
679,
1857,
14881,
5882,
9995,
13,
1678,
565,
1178,
338,
6213,
29901,
13,
4706,
14881,
353,
2346,
4074,
2467,
580,
13,
13,
4706,
565,
14881,
338,
451,
6213,
29901,
13,
9651,
363,
27577,
297,
14881,
29889,
1595,
12654,
800,
29901,
13,
18884,
565,
27577,
29889,
558,
26706,
338,
451,
6213,
29901,
13,
462,
1678,
736,
27577,
29889,
558,
26706,
13,
1678,
1683,
29901,
13,
4706,
1018,
29901,
13,
9651,
736,
679,
7270,
537,
29898,
29902,
16746,
467,
657,
4040,
26706,
29898,
333,
29897,
13,
4706,
5174,
14771,
7830,
14959,
786,
2392,
29901,
13,
9651,
736,
14771,
7830,
877,
26690,
742,
903,
877,
14148,
5477,
903,
877,
14148,
5477,
525,
26690,
742,
525,
26690,
1495,
13,
13,
13,
13,
1753,
679,
4040,
2173,
29886,
1338,
29898,
4841,
1125,
13,
1678,
4817,
353,
679,
7270,
537,
29898,
29902,
16746,
29897,
13,
13,
1678,
363,
23107,
297,
18999,
29901,
13,
4706,
1018,
29901,
13,
9651,
5882,
353,
4817,
29889,
657,
4040,
26706,
29898,
5935,
29897,
13,
4706,
5174,
14771,
7830,
14959,
786,
2392,
29901,
13,
9651,
6773,
13,
13,
4706,
7709,
5882,
13,
13,
13,
1753,
1423,
27293,
2831,
4040,
26706,
29898,
558,
26706,
29892,
10751,
29892,
1203,
1125,
13,
1678,
14881,
353,
2346,
4074,
2467,
580,
13,
13,
1678,
565,
306,
29999,
3848,
1165,
13228,
15644,
29889,
16123,
2618,
2059,
29898,
1639,
2467,
1125,
13,
4706,
736,
14881,
29889,
29883,
3791,
29918,
7099,
2459,
29898,
13,
9651,
3349,
13228,
14048,
29898,
3318,
511,
5882,
29889,
333,
29892,
13,
9651,
14881,
3032,
13155,
2831,
29898,
558,
26706,
511,
10751,
29897,
13,
13,
1678,
736,
7700,
13,
13,
13,
1753,
8340,
403,
13228,
10408,
7295,
13,
1678,
2346,
4074,
2467,
2141,
262,
15480,
29918,
8173,
580,
2
] |
simulation_fluid.py | danielpm153/fluid2D | 1 | 82469 | <reponame>danielpm153/fluid2D
import numpy
import cv2
class MeshImage:
def __init__(self, image_path: str) -> None:
self.__image = cv2.imread(image_path)
self.__image_gray = cv2.cvtColor(self.__image, cv2.COLOR_RGB2GRAY)
self.__height = self.__image_gray.shape[0]
self.__width = self.__image_gray.shape[1]
self.gray_tone = 250
def shape(self) -> tuple:
'''
return: height and width of the image
'''
return self.__height, self.__width
def Mesh(self) -> numpy.ndarray:
'''
return: numpy array
'''
self.__meshObject = self.__gray_tone >= self.__image_gray
return self.__meshObject
@property
def gray_tone(self) -> int:
'''
return: int
'''
return self.__gray_tone
@gray_tone.setter
def gray_tone(self, value: int) -> None:
if 255 >= value >= 0:
self.__gray_tone = value
else:
raise ValueError("The value of is between 0 and 255")
class FluidSimulation2D:
def __init__(self, obj_mesh2D: MeshImage):
self.obj_mesh2D = obj_mesh2D
self.__height, self.__width = obj_mesh2D.shape()
self.obj = self.obj_mesh2D.Mesh()
self.__viscosity = 0.005
self.__u0 = 0.12 # speed in x direction
self.omega = 1 / (3*self.__viscosity + 0.5)
# lattice-Boltzmann weight factors
self.__w0 = 4/9
self.__w1_4 = 1/9
self.__w5_8 = 1/36
# referencia mais à cima-direita(padrao da tela)
self.x_ref, self.y_ref = 0, 0
self.count = 0
def reshape(self, add_up=0, add_down=0, add_right=0, add_left=0):
'''
:param add_up: concatenate layers of zero above the matrix
:param add_down: concatenate zero layers below the matrix
:param add_right: concatenate zero layers to the right of the matrix
:param add_left: concatenate zero layers to the left of the matrix
:return:
'''
if add_up > 0:
zeros_width_up = numpy.zeros(
(add_up, self.obj.shape[1]), dtype=bool)
self.obj = numpy.concatenate((zeros_width_up, self.obj), axis=0)
elif add_up < 0:
self.obj = self.obj[-add_up:]
if add_down > 0:
zeros_width_down = numpy.zeros(
(add_down, self.obj.shape[1]), dtype=bool)
self.obj = numpy.concatenate((self.obj, zeros_width_down), axis=0)
elif add_down < 0:
self.obj = self.obj[:add_down]
if add_right > 0:
zeros_height_right = numpy.zeros(
(self.obj.shape[0], add_right), dtype=bool)
self.obj = numpy.concatenate(
(self.obj, zeros_height_right), axis=1)
elif add_right < 0:
self.obj = self.obj[:, -add_right:]
if add_left > 0:
zeros_height_left = numpy.zeros(
(self.obj.shape[0], add_left), dtype=bool)
self.obj = numpy.concatenate((zeros_height_left, self.obj), axis=1)
elif add_left < 0:
self.obj = self.obj[:, :add_left]
self.__height, self.__width = self.obj.shape
if self.x_ref+add_left >= 0:
self.x_ref += add_left
if self.y_ref+add_up >= 0:
self.y_ref += add_up
def shape(self) -> tuple:
'''
return: height and width of the mesh
'''
return self.__height, self.__width
def initialize(self):
'''
Initialize all arrays to stabilize the flow to the right
particle densities over 9 directions
'''
self.Fx, self.Fy = 0, 0
self.n0 = self.__w0 * \
(numpy.ones((self.__height, self.__width)) - 1.5*self.__u0**2)
self.nN = self.__w1_4 * \
(numpy.ones((self.__height, self.__width)) - 1.5*self.__u0**2)
self.nS = self.__w1_4 * \
(numpy.ones((self.__height, self.__width)) - 1.5*self.__u0**2)
self.nE = self.__w1_4 * (numpy.ones((self.__height, self.__width)) +
3*self.__u0 + 4.5*self.__u0**2 - 1.5*self.__u0**2)
self.nW = self.__w1_4 * (numpy.ones((self.__height, self.__width)) -
3*self.__u0 + 4.5*self.__u0**2 - 1.5*self.__u0**2)
self.nNE = self.__w5_8 * (numpy.ones((self.__height, self.__width)) +
3*self.__u0 + 4.5*self.__u0**2 - 1.5*self.__u0**2)
self.nSE = self.__w5_8 * (numpy.ones((self.__height, self.__width)) +
3*self.__u0 + 4.5*self.__u0**2 - 1.5*self.__u0**2)
self.nNW = self.__w5_8 * (numpy.ones((self.__height, self.__width)) -
3*self.__u0 + 4.5*self.__u0**2 - 1.5*self.__u0**2)
self.nSW = self.__w5_8 * (numpy.ones((self.__height, self.__width)) -
3*self.__u0 + 4.5*self.__u0**2 - 1.5*self.__u0**2)
# macroscopic properties
self.rho = self.n0 + self.nN + self.nS + self.nE + \
self.nW + self.nNE + self.nSE + self.nNW + self.nSW
self.ux = (self.nE + self.nNE + self.nSE -
self.nW - self.nNW - self.nSW) / self.rho
self.uy = (self.nN + self.nNE + self.nNW -
self.nS - self.nSE - self.nSW) / self.rho
# object initialization, true where there is part of the object
#self.obj = self.obj_mesh2D.Mesh()
self.objN = numpy.roll(self.obj, 1, axis=0)
self.objS = numpy.roll(self.obj, -1, axis=0)
self.objE = numpy.roll(self.obj, 1, axis=1)
self.objW = numpy.roll(self.obj, -1, axis=1)
self.objNE = numpy.roll(self.objN, 1, axis=1)
self.objNW = numpy.roll(self.objN, -1, axis=1)
self.objSE = numpy.roll(self.objS, 1, axis=1)
self.objSW = numpy.roll(self.objS, -1, axis=1)
@property
def viscosity(self):
return self.__viscosity
@viscosity.setter
def viscosity(self, value: float):
if value > 0:
self.__viscosity = value
self.omega = 1 / (3*self.__viscosity + 0.5)
else:
raise ValueError
@property
def u0(self):
return self.__u0
@u0.setter
def u0(self, value: float):
self.__u0 = value
def stream(self):
# axis 0 is north-south; + direction is north
self.nN = numpy.roll(self.nN, 1, axis=0)
self.nNE = numpy.roll(self.nNE, 1, axis=0)
self.nNW = numpy.roll(self.nNW, 1, axis=0)
self.nS = numpy.roll(self.nS, -1, axis=0)
self.nSE = numpy.roll(self.nSE, -1, axis=0)
self.nSW = numpy.roll(self.nSW, -1, axis=0)
# axis 1 is east-west; + direction is east
self.nE = numpy.roll(self.nE, 1, axis=1)
self.nNE = numpy.roll(self.nNE, 1, axis=1)
self.nSE = numpy.roll(self.nSE, 1, axis=1)
self.nW = numpy.roll(self.nW, -1, axis=1)
self.nNW = numpy.roll(self.nNW, -1, axis=1)
self.nSW = numpy.roll(self.nSW, -1, axis=1)
# Use tricky boolean arrays to handle obj collisions (bounce-back):
self.nN[self.objN] = self.nS[self.obj]
self.nS[self.objS] = self.nN[self.obj]
self.nE[self.objE] = self.nW[self.obj]
self.nW[self.objW] = self.nE[self.obj]
self.nNE[self.objNE] = self.nSW[self.obj]
self.nNW[self.objNW] = self.nSE[self.obj]
self.nSE[self.objSE] = self.nNW[self.obj]
self.nSW[self.objSW] = self.nNE[self.obj]
#height_origin, width_origin = self.obj_mesh2D.Mesh
self.Fx = sum(sum((self.nE + self.nNE + self.nSE -
self.nW - self.nNW - self.nSW)*self.obj))
self.Fy = sum(sum((self.nN + self.nNE + self.nNW -
self.nS - self.nSE - self.nSW)*self.obj))
def collide(self):
self.rho = self.n0 + self.nN + self.nS + self.nE + \
self.nW + self.nNE + self.nSE + self.nNW + self.nSW
self.ux = (self.nE + self.nNE + self.nSE -
self.nW - self.nNW - self.nSW) / self.rho
self.uy = (self.nN + self.nNE + self.nNW -
self.nS - self.nSE - self.nSW) / self.rho
ux2 = self.ux**2
uy2 = self.uy**2
u2 = ux2 + uy2
omu215 = 1 - 1.5*u2
uxuy = self.ux * self.uy
self.n0 = (1-self.omega)*self.n0 + self.omega * \
self.__w0 * self.rho * omu215
self.nN = (1-self.omega)*self.nN + self.omega * \
self.__w1_4 * self.rho * (omu215 + 3*self.uy + 4.5*uy2)
self.nS = (1-self.omega)*self.nS + self.omega * \
self.__w1_4 * self.rho * (omu215 - 3*self.uy + 4.5*uy2)
self.nE = (1-self.omega)*self.nE + self.omega * \
self.__w1_4 * self.rho * (omu215 + 3*self.ux + 4.5*ux2)
self.nW = (1-self.omega)*self.nW + self.omega * \
self.__w1_4 * self.rho * (omu215 - 3*self.ux + 4.5*ux2)
self.nNE = (1-self.omega)*self.nNE + self.omega * self.__w5_8 * \
self.rho * (omu215 + 3*(self.ux+self.uy) + 4.5*(u2+2*uxuy))
self.nNW = (1-self.omega)*self.nNW + self.omega * self.__w5_8 * \
self.rho * (omu215 + 3*(-self.ux+self.uy) + 4.5*(u2-2*uxuy))
self.nSE = (1-self.omega)*self.nSE + self.omega * self.__w5_8 * \
self.rho * (omu215 + 3*(self.ux-self.uy) + 4.5*(u2-2*uxuy))
self.nSW = (1-self.omega)*self.nSW + self.omega * self.__w5_8 * \
self.rho * (omu215 + 3*(-self.ux-self.uy) + 4.5*(u2+2*uxuy))
# Force steady rightward flow at ends (no need to set 0, N, and S components):
self.nE[:, 0] = self.__w1_4 * \
(1 + 3*self.__u0 + 4.5*self.__u0**2 - 1.5*self.__u0**2)
self.nW[:, 0] = self.__w1_4 * \
(1 - 3*self.__u0 + 4.5*self.__u0**2 - 1.5*self.__u0**2)
self.nNE[:, 0] = self.__w5_8 * \
(1 + 3*self.__u0 + 4.5*self.__u0**2 - 1.5*self.__u0**2)
self.nSE[:, 0] = self.__w5_8 * \
(1 + 3*self.__u0 + 4.5*self.__u0**2 - 1.5*self.__u0**2)
self.nNW[:, 0] = self.__w5_8 * \
(1 - 3*self.__u0 + 4.5*self.__u0**2 - 1.5*self.__u0**2)
self.nSW[:, 0] = self.__w5_8 * \
(1 - 3*self.__u0 + 4.5*self.__u0**2 - 1.5*self.__u0**2)
def curl(self):
return numpy.roll(self.uy, -1, axis=1) - numpy.roll(self.uy, 1, axis=1) - numpy.roll(self.ux, -1, axis=0) + numpy.roll(self.ux, 1, axis=0)
if __name__ == "__main__":
obj = MeshImage(
'/image/circulo3.png')
print(type(obj.shape()))
simu = FluidSimulation2D(obj)
simu.initialize()
for i in range(50):
simu.stream()
simu.collide()
ux2 = simu.ux
uy2 = simu.uy
| [
1,
529,
276,
1112,
420,
29958,
18386,
709,
3358,
29896,
29945,
29941,
29914,
1579,
5416,
29906,
29928,
13,
5215,
12655,
13,
5215,
13850,
29906,
13,
13,
13,
1990,
341,
12094,
2940,
29901,
13,
1678,
822,
4770,
2344,
12035,
1311,
29892,
1967,
29918,
2084,
29901,
851,
29897,
1599,
6213,
29901,
13,
4706,
1583,
17255,
3027,
353,
13850,
29906,
29889,
326,
949,
29898,
3027,
29918,
2084,
29897,
13,
4706,
1583,
17255,
3027,
29918,
21012,
353,
13850,
29906,
29889,
11023,
29873,
3306,
29898,
1311,
17255,
3027,
29892,
13850,
29906,
29889,
15032,
1955,
29918,
28212,
29906,
29954,
22800,
29897,
13,
4706,
1583,
17255,
3545,
353,
1583,
17255,
3027,
29918,
21012,
29889,
12181,
29961,
29900,
29962,
13,
4706,
1583,
17255,
2103,
353,
1583,
17255,
3027,
29918,
21012,
29889,
12181,
29961,
29896,
29962,
13,
4706,
1583,
29889,
21012,
29918,
29873,
650,
353,
29871,
29906,
29945,
29900,
13,
13,
1678,
822,
8267,
29898,
1311,
29897,
1599,
18761,
29901,
13,
4706,
14550,
13,
4706,
736,
29901,
3171,
322,
2920,
310,
278,
1967,
13,
4706,
14550,
13,
4706,
736,
1583,
17255,
3545,
29892,
1583,
17255,
2103,
13,
13,
1678,
822,
341,
12094,
29898,
1311,
29897,
1599,
12655,
29889,
299,
2378,
29901,
13,
4706,
14550,
13,
4706,
736,
29901,
12655,
1409,
13,
4706,
14550,
13,
4706,
1583,
17255,
4467,
29882,
2061,
353,
1583,
17255,
21012,
29918,
29873,
650,
6736,
1583,
17255,
3027,
29918,
21012,
13,
4706,
736,
1583,
17255,
4467,
29882,
2061,
13,
13,
1678,
732,
6799,
13,
1678,
822,
16749,
29918,
29873,
650,
29898,
1311,
29897,
1599,
938,
29901,
13,
4706,
14550,
13,
4706,
736,
29901,
938,
13,
4706,
14550,
13,
4706,
736,
1583,
17255,
21012,
29918,
29873,
650,
13,
13,
1678,
732,
21012,
29918,
29873,
650,
29889,
842,
357,
13,
1678,
822,
16749,
29918,
29873,
650,
29898,
1311,
29892,
995,
29901,
938,
29897,
1599,
6213,
29901,
13,
4706,
565,
29871,
29906,
29945,
29945,
6736,
995,
6736,
29871,
29900,
29901,
13,
9651,
1583,
17255,
21012,
29918,
29873,
650,
353,
995,
13,
4706,
1683,
29901,
13,
9651,
12020,
7865,
2392,
703,
1576,
995,
310,
338,
1546,
29871,
29900,
322,
29871,
29906,
29945,
29945,
1159,
13,
13,
13,
1990,
2379,
5416,
8942,
2785,
29906,
29928,
29901,
13,
1678,
822,
4770,
2344,
12035,
1311,
29892,
5446,
29918,
4467,
29882,
29906,
29928,
29901,
341,
12094,
2940,
1125,
13,
4706,
1583,
29889,
5415,
29918,
4467,
29882,
29906,
29928,
353,
5446,
29918,
4467,
29882,
29906,
29928,
13,
4706,
1583,
17255,
3545,
29892,
1583,
17255,
2103,
353,
5446,
29918,
4467,
29882,
29906,
29928,
29889,
12181,
580,
13,
4706,
1583,
29889,
5415,
353,
1583,
29889,
5415,
29918,
4467,
29882,
29906,
29928,
29889,
29924,
12094,
580,
13,
13,
4706,
1583,
17255,
1730,
3944,
537,
353,
29871,
29900,
29889,
29900,
29900,
29945,
13,
4706,
1583,
17255,
29884,
29900,
353,
29871,
29900,
29889,
29896,
29906,
29871,
396,
6210,
297,
921,
5305,
13,
4706,
1583,
29889,
4787,
353,
29871,
29896,
847,
313,
29941,
29930,
1311,
17255,
1730,
3944,
537,
718,
29871,
29900,
29889,
29945,
29897,
13,
13,
4706,
396,
24094,
29899,
29933,
14339,
29920,
4403,
7688,
13879,
13,
4706,
1583,
17255,
29893,
29900,
353,
29871,
29946,
29914,
29929,
13,
4706,
1583,
17255,
29893,
29896,
29918,
29946,
353,
29871,
29896,
29914,
29929,
13,
4706,
1583,
17255,
29893,
29945,
29918,
29947,
353,
29871,
29896,
29914,
29941,
29953,
13,
13,
4706,
396,
2737,
5760,
3503,
818,
274,
2946,
29899,
20146,
2028,
29898,
8305,
336,
29877,
1146,
260,
3100,
29897,
13,
4706,
1583,
29889,
29916,
29918,
999,
29892,
1583,
29889,
29891,
29918,
999,
353,
29871,
29900,
29892,
29871,
29900,
13,
308,
13,
4706,
1583,
29889,
2798,
353,
29871,
29900,
13,
13,
1678,
822,
620,
14443,
29898,
1311,
29892,
788,
29918,
786,
29922,
29900,
29892,
788,
29918,
3204,
29922,
29900,
29892,
788,
29918,
1266,
29922,
29900,
29892,
788,
29918,
1563,
29922,
29900,
1125,
13,
4706,
14550,
13,
4706,
584,
3207,
788,
29918,
786,
29901,
16125,
403,
15359,
310,
5225,
2038,
278,
4636,
13,
4706,
584,
3207,
788,
29918,
3204,
29901,
16125,
403,
5225,
15359,
2400,
278,
4636,
13,
4706,
584,
3207,
788,
29918,
1266,
29901,
16125,
403,
5225,
15359,
304,
278,
1492,
310,
278,
4636,
13,
4706,
584,
3207,
788,
29918,
1563,
29901,
16125,
403,
5225,
15359,
304,
278,
2175,
310,
278,
4636,
13,
4706,
584,
2457,
29901,
13,
4706,
14550,
13,
4706,
565,
788,
29918,
786,
1405,
29871,
29900,
29901,
13,
9651,
24786,
29918,
2103,
29918,
786,
353,
12655,
29889,
3298,
359,
29898,
13,
18884,
313,
1202,
29918,
786,
29892,
1583,
29889,
5415,
29889,
12181,
29961,
29896,
11724,
26688,
29922,
11227,
29897,
13,
9651,
1583,
29889,
5415,
353,
12655,
29889,
535,
29883,
2579,
403,
3552,
3298,
359,
29918,
2103,
29918,
786,
29892,
1583,
29889,
5415,
511,
9685,
29922,
29900,
29897,
13,
4706,
25342,
788,
29918,
786,
529,
29871,
29900,
29901,
13,
9651,
1583,
29889,
5415,
353,
1583,
29889,
5415,
14352,
1202,
29918,
786,
17531,
13,
13,
4706,
565,
788,
29918,
3204,
1405,
29871,
29900,
29901,
13,
9651,
24786,
29918,
2103,
29918,
3204,
353,
12655,
29889,
3298,
359,
29898,
13,
18884,
313,
1202,
29918,
3204,
29892,
1583,
29889,
5415,
29889,
12181,
29961,
29896,
11724,
26688,
29922,
11227,
29897,
13,
9651,
1583,
29889,
5415,
353,
12655,
29889,
535,
29883,
2579,
403,
3552,
1311,
29889,
5415,
29892,
24786,
29918,
2103,
29918,
3204,
511,
9685,
29922,
29900,
29897,
13,
4706,
25342,
788,
29918,
3204,
529,
29871,
29900,
29901,
13,
9651,
1583,
29889,
5415,
353,
1583,
29889,
5415,
7503,
1202,
29918,
3204,
29962,
13,
13,
4706,
565,
788,
29918,
1266,
1405,
29871,
29900,
29901,
13,
9651,
24786,
29918,
3545,
29918,
1266,
353,
12655,
29889,
3298,
359,
29898,
13,
18884,
313,
1311,
29889,
5415,
29889,
12181,
29961,
29900,
1402,
788,
29918,
1266,
511,
26688,
29922,
11227,
29897,
13,
9651,
1583,
29889,
5415,
353,
12655,
29889,
535,
29883,
2579,
403,
29898,
13,
18884,
313,
1311,
29889,
5415,
29892,
24786,
29918,
3545,
29918,
1266,
511,
9685,
29922,
29896,
29897,
13,
4706,
25342,
788,
29918,
1266,
529,
29871,
29900,
29901,
13,
9651,
1583,
29889,
5415,
353,
1583,
29889,
5415,
7503,
29892,
448,
1202,
29918,
1266,
17531,
13,
13,
4706,
565,
788,
29918,
1563,
1405,
29871,
29900,
29901,
13,
9651,
24786,
29918,
3545,
29918,
1563,
353,
12655,
29889,
3298,
359,
29898,
13,
18884,
313,
1311,
29889,
5415,
29889,
12181,
29961,
29900,
1402,
788,
29918,
1563,
511,
26688,
29922,
11227,
29897,
13,
9651,
1583,
29889,
5415,
353,
12655,
29889,
535,
29883,
2579,
403,
3552,
3298,
359,
29918,
3545,
29918,
1563,
29892,
1583,
29889,
5415,
511,
9685,
29922,
29896,
29897,
13,
4706,
25342,
788,
29918,
1563,
529,
29871,
29900,
29901,
13,
9651,
1583,
29889,
5415,
353,
1583,
29889,
5415,
7503,
29892,
584,
1202,
29918,
1563,
29962,
13,
13,
4706,
1583,
17255,
3545,
29892,
1583,
17255,
2103,
353,
1583,
29889,
5415,
29889,
12181,
13,
13,
4706,
565,
1583,
29889,
29916,
29918,
999,
29974,
1202,
29918,
1563,
6736,
29871,
29900,
29901,
13,
9651,
1583,
29889,
29916,
29918,
999,
4619,
788,
29918,
1563,
13,
4706,
565,
1583,
29889,
29891,
29918,
999,
29974,
1202,
29918,
786,
6736,
29871,
29900,
29901,
13,
9651,
1583,
29889,
29891,
29918,
999,
4619,
788,
29918,
786,
13,
13,
1678,
822,
8267,
29898,
1311,
29897,
1599,
18761,
29901,
13,
4706,
14550,
13,
4706,
736,
29901,
3171,
322,
2920,
310,
278,
27716,
13,
4706,
14550,
13,
4706,
736,
1583,
17255,
3545,
29892,
1583,
17255,
2103,
13,
13,
1678,
822,
11905,
29898,
1311,
1125,
13,
4706,
14550,
13,
4706,
25455,
599,
7049,
304,
16160,
675,
278,
4972,
304,
278,
1492,
13,
4706,
16445,
6245,
1907,
975,
29871,
29929,
18112,
13,
4706,
14550,
13,
4706,
1583,
29889,
29943,
29916,
29892,
1583,
29889,
29943,
29891,
353,
29871,
29900,
29892,
29871,
29900,
13,
308,
13,
4706,
1583,
29889,
29876,
29900,
353,
1583,
17255,
29893,
29900,
334,
320,
13,
9651,
313,
23749,
29889,
2873,
3552,
1311,
17255,
3545,
29892,
1583,
17255,
2103,
876,
448,
29871,
29896,
29889,
29945,
29930,
1311,
17255,
29884,
29900,
1068,
29906,
29897,
13,
4706,
1583,
29889,
29876,
29940,
353,
1583,
17255,
29893,
29896,
29918,
29946,
334,
320,
13,
9651,
313,
23749,
29889,
2873,
3552,
1311,
17255,
3545,
29892,
1583,
17255,
2103,
876,
448,
29871,
29896,
29889,
29945,
29930,
1311,
17255,
29884,
29900,
1068,
29906,
29897,
13,
4706,
1583,
29889,
29876,
29903,
353,
1583,
17255,
29893,
29896,
29918,
29946,
334,
320,
13,
9651,
313,
23749,
29889,
2873,
3552,
1311,
17255,
3545,
29892,
1583,
17255,
2103,
876,
448,
29871,
29896,
29889,
29945,
29930,
1311,
17255,
29884,
29900,
1068,
29906,
29897,
13,
4706,
1583,
29889,
29876,
29923,
353,
1583,
17255,
29893,
29896,
29918,
29946,
334,
313,
23749,
29889,
2873,
3552,
1311,
17255,
3545,
29892,
1583,
17255,
2103,
876,
718,
13,
462,
462,
29871,
29941,
29930,
1311,
17255,
29884,
29900,
718,
29871,
29946,
29889,
29945,
29930,
1311,
17255,
29884,
29900,
1068,
29906,
448,
29871,
29896,
29889,
29945,
29930,
1311,
17255,
29884,
29900,
1068,
29906,
29897,
13,
4706,
1583,
29889,
29876,
29956,
353,
1583,
17255,
29893,
29896,
29918,
29946,
334,
313,
23749,
29889,
2873,
3552,
1311,
17255,
3545,
29892,
1583,
17255,
2103,
876,
448,
13,
462,
462,
29871,
29941,
29930,
1311,
17255,
29884,
29900,
718,
29871,
29946,
29889,
29945,
29930,
1311,
17255,
29884,
29900,
1068,
29906,
448,
29871,
29896,
29889,
29945,
29930,
1311,
17255,
29884,
29900,
1068,
29906,
29897,
13,
4706,
1583,
29889,
29876,
8186,
353,
1583,
17255,
29893,
29945,
29918,
29947,
334,
313,
23749,
29889,
2873,
3552,
1311,
17255,
3545,
29892,
1583,
17255,
2103,
876,
718,
13,
462,
462,
259,
29941,
29930,
1311,
17255,
29884,
29900,
718,
29871,
29946,
29889,
29945,
29930,
1311,
17255,
29884,
29900,
1068,
29906,
448,
29871,
29896,
29889,
29945,
29930,
1311,
17255,
29884,
29900,
1068,
29906,
29897,
13,
4706,
1583,
29889,
29876,
1660,
353,
1583,
17255,
29893,
29945,
29918,
29947,
334,
313,
23749,
29889,
2873,
3552,
1311,
17255,
3545,
29892,
1583,
17255,
2103,
876,
718,
13,
462,
462,
259,
29941,
29930,
1311,
17255,
29884,
29900,
718,
29871,
29946,
29889,
29945,
29930,
1311,
17255,
29884,
29900,
1068,
29906,
448,
29871,
29896,
29889,
29945,
29930,
1311,
17255,
29884,
29900,
1068,
29906,
29897,
13,
4706,
1583,
29889,
29876,
29940,
29956,
353,
1583,
17255,
29893,
29945,
29918,
29947,
334,
313,
23749,
29889,
2873,
3552,
1311,
17255,
3545,
29892,
1583,
17255,
2103,
876,
448,
13,
462,
462,
259,
29941,
29930,
1311,
17255,
29884,
29900,
718,
29871,
29946,
29889,
29945,
29930,
1311,
17255,
29884,
29900,
1068,
29906,
448,
29871,
29896,
29889,
29945,
29930,
1311,
17255,
29884,
29900,
1068,
29906,
29897,
13,
4706,
1583,
29889,
29876,
23066,
353,
1583,
17255,
29893,
29945,
29918,
29947,
334,
313,
23749,
29889,
2873,
3552,
1311,
17255,
3545,
29892,
1583,
17255,
2103,
876,
448,
13,
462,
462,
259,
29941,
29930,
1311,
17255,
29884,
29900,
718,
29871,
29946,
29889,
29945,
29930,
1311,
17255,
29884,
29900,
1068,
29906,
448,
29871,
29896,
29889,
29945,
29930,
1311,
17255,
29884,
29900,
1068,
29906,
29897,
13,
4706,
396,
11758,
21785,
293,
4426,
13,
4706,
1583,
29889,
4650,
353,
1583,
29889,
29876,
29900,
718,
1583,
29889,
29876,
29940,
718,
1583,
29889,
29876,
29903,
718,
1583,
29889,
29876,
29923,
718,
320,
13,
9651,
1583,
29889,
29876,
29956,
718,
1583,
29889,
29876,
8186,
718,
1583,
29889,
29876,
1660,
718,
1583,
29889,
29876,
29940,
29956,
718,
1583,
29889,
29876,
23066,
13,
4706,
1583,
29889,
1314,
353,
313,
1311,
29889,
29876,
29923,
718,
1583,
29889,
29876,
8186,
718,
1583,
29889,
29876,
1660,
448,
13,
462,
259,
1583,
29889,
29876,
29956,
448,
1583,
29889,
29876,
29940,
29956,
448,
1583,
29889,
29876,
23066,
29897,
847,
1583,
29889,
4650,
13,
4706,
1583,
29889,
8631,
353,
313,
1311,
29889,
29876,
29940,
718,
1583,
29889,
29876,
8186,
718,
1583,
29889,
29876,
29940,
29956,
448,
13,
462,
259,
1583,
29889,
29876,
29903,
448,
1583,
29889,
29876,
1660,
448,
1583,
29889,
29876,
23066,
29897,
847,
1583,
29889,
4650,
13,
13,
4706,
396,
1203,
17865,
29892,
1565,
988,
727,
338,
760,
310,
278,
1203,
13,
4706,
396,
1311,
29889,
5415,
353,
1583,
29889,
5415,
29918,
4467,
29882,
29906,
29928,
29889,
29924,
12094,
580,
13,
4706,
1583,
29889,
5415,
29940,
353,
12655,
29889,
1245,
29898,
1311,
29889,
5415,
29892,
259,
29896,
29892,
9685,
29922,
29900,
29897,
13,
4706,
1583,
29889,
5415,
29903,
353,
12655,
29889,
1245,
29898,
1311,
29889,
5415,
29892,
448,
29896,
29892,
9685,
29922,
29900,
29897,
13,
4706,
1583,
29889,
5415,
29923,
353,
12655,
29889,
1245,
29898,
1311,
29889,
5415,
29892,
259,
29896,
29892,
9685,
29922,
29896,
29897,
13,
4706,
1583,
29889,
5415,
29956,
353,
12655,
29889,
1245,
29898,
1311,
29889,
5415,
29892,
448,
29896,
29892,
9685,
29922,
29896,
29897,
13,
4706,
1583,
29889,
5415,
8186,
353,
12655,
29889,
1245,
29898,
1311,
29889,
5415,
29940,
29892,
259,
29896,
29892,
9685,
29922,
29896,
29897,
13,
4706,
1583,
29889,
5415,
29940,
29956,
353,
12655,
29889,
1245,
29898,
1311,
29889,
5415,
29940,
29892,
448,
29896,
29892,
9685,
29922,
29896,
29897,
13,
4706,
1583,
29889,
5415,
1660,
353,
12655,
29889,
1245,
29898,
1311,
29889,
5415,
29903,
29892,
259,
29896,
29892,
9685,
29922,
29896,
29897,
13,
4706,
1583,
29889,
5415,
23066,
353,
12655,
29889,
1245,
29898,
1311,
29889,
5415,
29903,
29892,
448,
29896,
29892,
9685,
29922,
29896,
29897,
13,
13,
1678,
732,
6799,
13,
1678,
822,
1998,
3944,
537,
29898,
1311,
1125,
13,
4706,
736,
1583,
17255,
1730,
3944,
537,
13,
13,
1678,
732,
1730,
3944,
537,
29889,
842,
357,
13,
1678,
822,
1998,
3944,
537,
29898,
1311,
29892,
995,
29901,
5785,
1125,
13,
4706,
565,
995,
1405,
29871,
29900,
29901,
13,
9651,
1583,
17255,
1730,
3944,
537,
353,
995,
13,
9651,
1583,
29889,
4787,
353,
29871,
29896,
847,
313,
29941,
29930,
1311,
17255,
1730,
3944,
537,
718,
29871,
29900,
29889,
29945,
29897,
13,
4706,
1683,
29901,
13,
9651,
12020,
7865,
2392,
13,
13,
1678,
732,
6799,
13,
1678,
822,
318,
29900,
29898,
1311,
1125,
13,
4706,
736,
1583,
17255,
29884,
29900,
13,
13,
1678,
732,
29884,
29900,
29889,
842,
357,
13,
1678,
822,
318,
29900,
29898,
1311,
29892,
995,
29901,
5785,
1125,
13,
4706,
1583,
17255,
29884,
29900,
353,
995,
13,
13,
1678,
822,
4840,
29898,
1311,
1125,
13,
4706,
396,
9685,
29871,
29900,
338,
6641,
29899,
29879,
2438,
29936,
718,
5305,
338,
6641,
13,
4706,
1583,
29889,
29876,
29940,
353,
12655,
29889,
1245,
29898,
1311,
29889,
29876,
29940,
29892,
1678,
29896,
29892,
9685,
29922,
29900,
29897,
13,
4706,
1583,
29889,
29876,
8186,
353,
12655,
29889,
1245,
29898,
1311,
29889,
29876,
8186,
29892,
259,
29896,
29892,
9685,
29922,
29900,
29897,
13,
4706,
1583,
29889,
29876,
29940,
29956,
353,
12655,
29889,
1245,
29898,
1311,
29889,
29876,
29940,
29956,
29892,
259,
29896,
29892,
9685,
29922,
29900,
29897,
13,
4706,
1583,
29889,
29876,
29903,
353,
12655,
29889,
1245,
29898,
1311,
29889,
29876,
29903,
29892,
29871,
448,
29896,
29892,
9685,
29922,
29900,
29897,
13,
4706,
1583,
29889,
29876,
1660,
353,
12655,
29889,
1245,
29898,
1311,
29889,
29876,
1660,
29892,
448,
29896,
29892,
9685,
29922,
29900,
29897,
13,
4706,
1583,
29889,
29876,
23066,
353,
12655,
29889,
1245,
29898,
1311,
29889,
29876,
23066,
29892,
448,
29896,
29892,
9685,
29922,
29900,
29897,
13,
4706,
396,
9685,
29871,
29896,
338,
9755,
29899,
5933,
29936,
718,
5305,
338,
9755,
13,
4706,
1583,
29889,
29876,
29923,
353,
12655,
29889,
1245,
29898,
1311,
29889,
29876,
29923,
29892,
1678,
29896,
29892,
9685,
29922,
29896,
29897,
13,
4706,
1583,
29889,
29876,
8186,
353,
12655,
29889,
1245,
29898,
1311,
29889,
29876,
8186,
29892,
259,
29896,
29892,
9685,
29922,
29896,
29897,
13,
4706,
1583,
29889,
29876,
1660,
353,
12655,
29889,
1245,
29898,
1311,
29889,
29876,
1660,
29892,
259,
29896,
29892,
9685,
29922,
29896,
29897,
13,
4706,
1583,
29889,
29876,
29956,
353,
12655,
29889,
1245,
29898,
1311,
29889,
29876,
29956,
29892,
29871,
448,
29896,
29892,
9685,
29922,
29896,
29897,
13,
4706,
1583,
29889,
29876,
29940,
29956,
353,
12655,
29889,
1245,
29898,
1311,
29889,
29876,
29940,
29956,
29892,
448,
29896,
29892,
9685,
29922,
29896,
29897,
13,
4706,
1583,
29889,
29876,
23066,
353,
12655,
29889,
1245,
29898,
1311,
29889,
29876,
23066,
29892,
448,
29896,
29892,
9685,
29922,
29896,
29897,
13,
4706,
396,
4803,
28722,
7223,
7049,
304,
4386,
5446,
5321,
12112,
313,
29890,
21543,
29899,
1627,
1125,
13,
4706,
1583,
29889,
29876,
29940,
29961,
1311,
29889,
5415,
29940,
29962,
353,
1583,
29889,
29876,
29903,
29961,
1311,
29889,
5415,
29962,
13,
4706,
1583,
29889,
29876,
29903,
29961,
1311,
29889,
5415,
29903,
29962,
353,
1583,
29889,
29876,
29940,
29961,
1311,
29889,
5415,
29962,
13,
4706,
1583,
29889,
29876,
29923,
29961,
1311,
29889,
5415,
29923,
29962,
353,
1583,
29889,
29876,
29956,
29961,
1311,
29889,
5415,
29962,
13,
4706,
1583,
29889,
29876,
29956,
29961,
1311,
29889,
5415,
29956,
29962,
353,
1583,
29889,
29876,
29923,
29961,
1311,
29889,
5415,
29962,
13,
4706,
1583,
29889,
29876,
8186,
29961,
1311,
29889,
5415,
8186,
29962,
353,
1583,
29889,
29876,
23066,
29961,
1311,
29889,
5415,
29962,
13,
4706,
1583,
29889,
29876,
29940,
29956,
29961,
1311,
29889,
5415,
29940,
29956,
29962,
353,
1583,
29889,
29876,
1660,
29961,
1311,
29889,
5415,
29962,
13,
4706,
1583,
29889,
29876,
1660,
29961,
1311,
29889,
5415,
1660,
29962,
353,
1583,
29889,
29876,
29940,
29956,
29961,
1311,
29889,
5415,
29962,
13,
4706,
1583,
29889,
29876,
23066,
29961,
1311,
29889,
5415,
23066,
29962,
353,
1583,
29889,
29876,
8186,
29961,
1311,
29889,
5415,
29962,
13,
13,
4706,
396,
3545,
29918,
12574,
29892,
2920,
29918,
12574,
353,
1583,
29889,
5415,
29918,
4467,
29882,
29906,
29928,
29889,
29924,
12094,
13,
308,
13,
4706,
1583,
29889,
29943,
29916,
353,
2533,
29898,
2083,
3552,
1311,
29889,
29876,
29923,
718,
1583,
29889,
29876,
8186,
718,
1583,
29889,
29876,
1660,
448,
13,
462,
965,
1583,
29889,
29876,
29956,
448,
1583,
29889,
29876,
29940,
29956,
448,
1583,
29889,
29876,
23066,
11877,
1311,
29889,
5415,
876,
13,
4706,
1583,
29889,
29943,
29891,
353,
2533,
29898,
2083,
3552,
1311,
29889,
29876,
29940,
718,
1583,
29889,
29876,
8186,
718,
1583,
29889,
29876,
29940,
29956,
448,
13,
462,
965,
1583,
29889,
29876,
29903,
448,
1583,
29889,
29876,
1660,
448,
1583,
29889,
29876,
23066,
11877,
1311,
29889,
5415,
876,
13,
308,
13,
308,
13,
13,
1678,
822,
784,
7459,
29898,
1311,
1125,
13,
4706,
1583,
29889,
4650,
353,
1583,
29889,
29876,
29900,
718,
1583,
29889,
29876,
29940,
718,
1583,
29889,
29876,
29903,
718,
1583,
29889,
29876,
29923,
718,
320,
13,
9651,
1583,
29889,
29876,
29956,
718,
1583,
29889,
29876,
8186,
718,
1583,
29889,
29876,
1660,
718,
1583,
29889,
29876,
29940,
29956,
718,
1583,
29889,
29876,
23066,
13,
4706,
1583,
29889,
1314,
353,
313,
1311,
29889,
29876,
29923,
718,
1583,
29889,
29876,
8186,
718,
1583,
29889,
29876,
1660,
448,
13,
462,
259,
1583,
29889,
29876,
29956,
448,
1583,
29889,
29876,
29940,
29956,
448,
1583,
29889,
29876,
23066,
29897,
847,
1583,
29889,
4650,
13,
4706,
1583,
29889,
8631,
353,
313,
1311,
29889,
29876,
29940,
718,
1583,
29889,
29876,
8186,
718,
1583,
29889,
29876,
29940,
29956,
448,
13,
462,
259,
1583,
29889,
29876,
29903,
448,
1583,
29889,
29876,
1660,
448,
1583,
29889,
29876,
23066,
29897,
847,
1583,
29889,
4650,
13,
4706,
318,
29916,
29906,
353,
1583,
29889,
1314,
1068,
29906,
13,
4706,
318,
29891,
29906,
353,
1583,
29889,
8631,
1068,
29906,
13,
4706,
318,
29906,
353,
318,
29916,
29906,
718,
318,
29891,
29906,
13,
4706,
288,
2589,
29906,
29896,
29945,
353,
29871,
29896,
448,
29871,
29896,
29889,
29945,
29930,
29884,
29906,
13,
4706,
318,
29916,
8631,
353,
1583,
29889,
1314,
334,
1583,
29889,
8631,
13,
13,
4706,
1583,
29889,
29876,
29900,
353,
313,
29896,
29899,
1311,
29889,
4787,
11877,
1311,
29889,
29876,
29900,
718,
1583,
29889,
4787,
334,
320,
13,
9651,
1583,
17255,
29893,
29900,
334,
1583,
29889,
4650,
334,
288,
2589,
29906,
29896,
29945,
13,
4706,
1583,
29889,
29876,
29940,
353,
313,
29896,
29899,
1311,
29889,
4787,
11877,
1311,
29889,
29876,
29940,
718,
1583,
29889,
4787,
334,
320,
13,
9651,
1583,
17255,
29893,
29896,
29918,
29946,
334,
1583,
29889,
4650,
334,
313,
290,
29884,
29906,
29896,
29945,
718,
29871,
29941,
29930,
1311,
29889,
8631,
718,
29871,
29946,
29889,
29945,
29930,
8631,
29906,
29897,
13,
4706,
1583,
29889,
29876,
29903,
353,
313,
29896,
29899,
1311,
29889,
4787,
11877,
1311,
29889,
29876,
29903,
718,
1583,
29889,
4787,
334,
320,
13,
9651,
1583,
17255,
29893,
29896,
29918,
29946,
334,
1583,
29889,
4650,
334,
313,
290,
29884,
29906,
29896,
29945,
448,
29871,
29941,
29930,
1311,
29889,
8631,
718,
29871,
29946,
29889,
29945,
29930,
8631,
29906,
29897,
13,
4706,
1583,
29889,
29876,
29923,
353,
313,
29896,
29899,
1311,
29889,
4787,
11877,
1311,
29889,
29876,
29923,
718,
1583,
29889,
4787,
334,
320,
13,
9651,
1583,
17255,
29893,
29896,
29918,
29946,
334,
1583,
29889,
4650,
334,
313,
290,
29884,
29906,
29896,
29945,
718,
29871,
29941,
29930,
1311,
29889,
1314,
718,
29871,
29946,
29889,
29945,
29930,
1314,
29906,
29897,
13,
4706,
1583,
29889,
29876,
29956,
353,
313,
29896,
29899,
1311,
29889,
4787,
11877,
1311,
29889,
29876,
29956,
718,
1583,
29889,
4787,
334,
320,
13,
9651,
1583,
17255,
29893,
29896,
29918,
29946,
334,
1583,
29889,
4650,
334,
313,
290,
29884,
29906,
29896,
29945,
448,
29871,
29941,
29930,
1311,
29889,
1314,
718,
29871,
29946,
29889,
29945,
29930,
1314,
29906,
29897,
13,
13,
4706,
1583,
29889,
29876,
8186,
353,
313,
29896,
29899,
1311,
29889,
4787,
11877,
1311,
29889,
29876,
8186,
718,
1583,
29889,
4787,
334,
1583,
17255,
29893,
29945,
29918,
29947,
334,
320,
13,
9651,
1583,
29889,
4650,
334,
313,
290,
29884,
29906,
29896,
29945,
718,
29871,
29941,
16395,
1311,
29889,
1314,
29974,
1311,
29889,
8631,
29897,
718,
29871,
29946,
29889,
29945,
16395,
29884,
29906,
29974,
29906,
29930,
1314,
8631,
876,
13,
4706,
1583,
29889,
29876,
29940,
29956,
353,
313,
29896,
29899,
1311,
29889,
4787,
11877,
1311,
29889,
29876,
29940,
29956,
718,
1583,
29889,
4787,
334,
1583,
17255,
29893,
29945,
29918,
29947,
334,
320,
13,
9651,
1583,
29889,
4650,
334,
313,
290,
29884,
29906,
29896,
29945,
718,
29871,
29941,
29930,
6278,
1311,
29889,
1314,
29974,
1311,
29889,
8631,
29897,
718,
29871,
29946,
29889,
29945,
16395,
29884,
29906,
29899,
29906,
29930,
1314,
8631,
876,
13,
4706,
1583,
29889,
29876,
1660,
353,
313,
29896,
29899,
1311,
29889,
4787,
11877,
1311,
29889,
29876,
1660,
718,
1583,
29889,
4787,
334,
1583,
17255,
29893,
29945,
29918,
29947,
334,
320,
13,
9651,
1583,
29889,
4650,
334,
313,
290,
29884,
29906,
29896,
29945,
718,
29871,
29941,
16395,
1311,
29889,
1314,
29899,
1311,
29889,
8631,
29897,
718,
29871,
29946,
29889,
29945,
16395,
29884,
29906,
29899,
29906,
29930,
1314,
8631,
876,
13,
4706,
1583,
29889,
29876,
23066,
353,
313,
29896,
29899,
1311,
29889,
4787,
11877,
1311,
29889,
29876,
23066,
718,
1583,
29889,
4787,
334,
1583,
17255,
29893,
29945,
29918,
29947,
334,
320,
13,
9651,
1583,
29889,
4650,
334,
313,
290,
29884,
29906,
29896,
29945,
718,
29871,
29941,
29930,
6278,
1311,
29889,
1314,
29899,
1311,
29889,
8631,
29897,
718,
29871,
29946,
29889,
29945,
16395,
29884,
29906,
29974,
29906,
29930,
1314,
8631,
876,
13,
13,
4706,
396,
11004,
27357,
1492,
1328,
4972,
472,
10614,
313,
1217,
817,
304,
731,
29871,
29900,
29892,
405,
29892,
322,
317,
7117,
1125,
13,
4706,
1583,
29889,
29876,
29923,
7503,
29892,
29871,
29900,
29962,
353,
1583,
17255,
29893,
29896,
29918,
29946,
334,
320,
13,
9651,
313,
29896,
718,
29871,
29941,
29930,
1311,
17255,
29884,
29900,
718,
29871,
29946,
29889,
29945,
29930,
1311,
17255,
29884,
29900,
1068,
29906,
448,
29871,
29896,
29889,
29945,
29930,
1311,
17255,
29884,
29900,
1068,
29906,
29897,
13,
4706,
1583,
29889,
29876,
29956,
7503,
29892,
29871,
29900,
29962,
353,
1583,
17255,
29893,
29896,
29918,
29946,
334,
320,
13,
9651,
313,
29896,
448,
29871,
29941,
29930,
1311,
17255,
29884,
29900,
718,
29871,
29946,
29889,
29945,
29930,
1311,
17255,
29884,
29900,
1068,
29906,
448,
29871,
29896,
29889,
29945,
29930,
1311,
17255,
29884,
29900,
1068,
29906,
29897,
13,
4706,
1583,
29889,
29876,
8186,
7503,
29892,
29871,
29900,
29962,
353,
1583,
17255,
29893,
29945,
29918,
29947,
334,
320,
13,
9651,
313,
29896,
718,
29871,
29941,
29930,
1311,
17255,
29884,
29900,
718,
29871,
29946,
29889,
29945,
29930,
1311,
17255,
29884,
29900,
1068,
29906,
448,
29871,
29896,
29889,
29945,
29930,
1311,
17255,
29884,
29900,
1068,
29906,
29897,
13,
4706,
1583,
29889,
29876,
1660,
7503,
29892,
29871,
29900,
29962,
353,
1583,
17255,
29893,
29945,
29918,
29947,
334,
320,
13,
9651,
313,
29896,
718,
29871,
29941,
29930,
1311,
17255,
29884,
29900,
718,
29871,
29946,
29889,
29945,
29930,
1311,
17255,
29884,
29900,
1068,
29906,
448,
29871,
29896,
29889,
29945,
29930,
1311,
17255,
29884,
29900,
1068,
29906,
29897,
13,
4706,
1583,
29889,
29876,
29940,
29956,
7503,
29892,
29871,
29900,
29962,
353,
1583,
17255,
29893,
29945,
29918,
29947,
334,
320,
13,
9651,
313,
29896,
448,
29871,
29941,
29930,
1311,
17255,
29884,
29900,
718,
29871,
29946,
29889,
29945,
29930,
1311,
17255,
29884,
29900,
1068,
29906,
448,
29871,
29896,
29889,
29945,
29930,
1311,
17255,
29884,
29900,
1068,
29906,
29897,
13,
4706,
1583,
29889,
29876,
23066,
7503,
29892,
29871,
29900,
29962,
353,
1583,
17255,
29893,
29945,
29918,
29947,
334,
320,
13,
9651,
313,
29896,
448,
29871,
29941,
29930,
1311,
17255,
29884,
29900,
718,
29871,
29946,
29889,
29945,
29930,
1311,
17255,
29884,
29900,
1068,
29906,
448,
29871,
29896,
29889,
29945,
29930,
1311,
17255,
29884,
29900,
1068,
29906,
29897,
13,
13,
1678,
822,
11051,
29898,
1311,
1125,
13,
4706,
736,
12655,
29889,
1245,
29898,
1311,
29889,
8631,
29892,
448,
29896,
29892,
9685,
29922,
29896,
29897,
448,
12655,
29889,
1245,
29898,
1311,
29889,
8631,
29892,
29871,
29896,
29892,
9685,
29922,
29896,
29897,
448,
12655,
29889,
1245,
29898,
1311,
29889,
1314,
29892,
448,
29896,
29892,
9685,
29922,
29900,
29897,
718,
12655,
29889,
1245,
29898,
1311,
29889,
1314,
29892,
29871,
29896,
29892,
9685,
29922,
29900,
29897,
13,
13,
13,
361,
4770,
978,
1649,
1275,
376,
1649,
3396,
1649,
1115,
13,
1678,
5446,
353,
341,
12094,
2940,
29898,
13,
4706,
8207,
3027,
29914,
19052,
17227,
29941,
29889,
2732,
1495,
13,
1678,
1596,
29898,
1853,
29898,
5415,
29889,
12181,
22130,
13,
1678,
1027,
29884,
353,
2379,
5416,
8942,
2785,
29906,
29928,
29898,
5415,
29897,
13,
1678,
1027,
29884,
29889,
24926,
580,
13,
1678,
363,
474,
297,
3464,
29898,
29945,
29900,
1125,
13,
4706,
1027,
29884,
29889,
5461,
580,
13,
4706,
1027,
29884,
29889,
1054,
7459,
580,
13,
1678,
318,
29916,
29906,
353,
1027,
29884,
29889,
1314,
13,
1678,
318,
29891,
29906,
353,
1027,
29884,
29889,
8631,
13,
2
] |
script/download_pretrained.py | cttsai1985/google-quest-qa-labeling-pipeline | 2 | 22816 | <filename>script/download_pretrained.py
"""
fork THIS excellent downloader
https://www.kaggle.com/maroberti/transformers-model-downloader-pytorch-tf2-0
"""
from typing import Union
from pathlib import Path
import os
import transformers
from transformers import AutoConfig, AutoTokenizer, TFAutoModel
def transformers_model_dowloader(pretrained_model_name: str, working_dir: Union[str, Path], is_tf: bool = True) -> bool:
model_class = None
if is_tf:
model_class = TFAutoModel
NEW_DIR = working_dir / pretrained_model_name
try:
os.mkdir(NEW_DIR)
print(f"Successfully created directory {NEW_DIR}")
except OSError:
print(f"Creation of directory {NEW_DIR} failed")
print(f"Download model and tokenizer {pretrained_model_name}")
transformer_model = model_class.from_pretrained(pretrained_model_name)
transformer_tokenizer = AutoTokenizer.from_pretrained(pretrained_model_name)
try:
transformer_model.save_pretrained(NEW_DIR)
transformer_tokenizer.save_pretrained(NEW_DIR)
print(f"Save model and tokenizer {pretrained_model_name} in directory {NEW_DIR}")
except:
print(f"Save model and tokenizer {pretrained_model_name} in directory {NEW_DIR}: Failed")
return False
return True
def main():
pretrained_model_name_list = [
'bert-base-uncased',
'bert-base-cased',
'bert-large-cased',
'distilbert-base-uncased',
'albert-xxlarge-v2',
'albert-xlarge-v2',
'albert-large-v2',
'roberta-base',
'roberta-large',
'roberta-large-mnli',
'distilroberta-base',
'distilbert-base-uncased',
]
print(f'Transformers version {transformers.__version__}') # Current version: 2.3.0
WORKING_DIR = Path("../input/hugging_face_pretrained")
try:
os.mkdir(WORKING_DIR)
except:
pass
for i, pretrained_model_name in enumerate(pretrained_model_name_list, start=1):
print(i, '/', len(pretrained_model_name_list))
transformers_model_dowloader(pretrained_model_name, WORKING_DIR, is_tf=True)
return
if "__main__" == __name__:
main()
| [
1,
529,
9507,
29958,
2154,
29914,
10382,
29918,
1457,
3018,
1312,
29889,
2272,
13,
15945,
29908,
13,
29888,
548,
3446,
3235,
15129,
5142,
261,
13,
991,
597,
1636,
29889,
29895,
351,
6234,
29889,
510,
29914,
3034,
4950,
2034,
29914,
9067,
414,
29899,
4299,
29899,
10382,
261,
29899,
2272,
7345,
305,
29899,
13264,
29906,
29899,
29900,
13,
15945,
29908,
13,
13,
3166,
19229,
1053,
7761,
13,
3166,
2224,
1982,
1053,
10802,
13,
5215,
2897,
13,
13,
5215,
4327,
414,
13,
3166,
4327,
414,
1053,
11133,
3991,
29892,
11133,
6066,
3950,
29892,
323,
4519,
3066,
3195,
13,
13,
13,
1753,
4327,
414,
29918,
4299,
29918,
29881,
340,
12657,
29898,
1457,
3018,
1312,
29918,
4299,
29918,
978,
29901,
851,
29892,
1985,
29918,
3972,
29901,
7761,
29961,
710,
29892,
10802,
1402,
338,
29918,
13264,
29901,
6120,
353,
5852,
29897,
1599,
6120,
29901,
13,
1678,
1904,
29918,
1990,
353,
6213,
13,
1678,
565,
338,
29918,
13264,
29901,
13,
4706,
1904,
29918,
1990,
353,
323,
4519,
3066,
3195,
13,
13,
1678,
29091,
29918,
9464,
353,
1985,
29918,
3972,
847,
758,
3018,
1312,
29918,
4299,
29918,
978,
13,
1678,
1018,
29901,
13,
4706,
2897,
29889,
11256,
3972,
29898,
28577,
29918,
9464,
29897,
13,
4706,
1596,
29898,
29888,
29908,
14191,
3730,
2825,
3884,
426,
28577,
29918,
9464,
27195,
13,
1678,
5174,
438,
29173,
29901,
13,
4706,
1596,
29898,
29888,
29908,
9832,
362,
310,
3884,
426,
28577,
29918,
9464,
29913,
5229,
1159,
13,
13,
1678,
1596,
29898,
29888,
29908,
22954,
1904,
322,
5993,
3950,
426,
1457,
3018,
1312,
29918,
4299,
29918,
978,
27195,
13,
1678,
4327,
261,
29918,
4299,
353,
1904,
29918,
1990,
29889,
3166,
29918,
1457,
3018,
1312,
29898,
1457,
3018,
1312,
29918,
4299,
29918,
978,
29897,
13,
1678,
4327,
261,
29918,
6979,
3950,
353,
11133,
6066,
3950,
29889,
3166,
29918,
1457,
3018,
1312,
29898,
1457,
3018,
1312,
29918,
4299,
29918,
978,
29897,
13,
1678,
1018,
29901,
13,
4706,
4327,
261,
29918,
4299,
29889,
7620,
29918,
1457,
3018,
1312,
29898,
28577,
29918,
9464,
29897,
13,
4706,
4327,
261,
29918,
6979,
3950,
29889,
7620,
29918,
1457,
3018,
1312,
29898,
28577,
29918,
9464,
29897,
13,
4706,
1596,
29898,
29888,
29908,
11371,
1904,
322,
5993,
3950,
426,
1457,
3018,
1312,
29918,
4299,
29918,
978,
29913,
297,
3884,
426,
28577,
29918,
9464,
27195,
13,
1678,
5174,
29901,
13,
4706,
1596,
29898,
29888,
29908,
11371,
1904,
322,
5993,
3950,
426,
1457,
3018,
1312,
29918,
4299,
29918,
978,
29913,
297,
3884,
426,
28577,
29918,
9464,
6177,
18390,
1159,
13,
4706,
736,
7700,
13,
13,
1678,
736,
5852,
13,
13,
13,
1753,
1667,
7295,
13,
1678,
758,
3018,
1312,
29918,
4299,
29918,
978,
29918,
1761,
353,
518,
13,
4706,
525,
2151,
29899,
3188,
29899,
4661,
1463,
742,
13,
4706,
525,
2151,
29899,
3188,
29899,
29883,
1463,
742,
13,
4706,
525,
2151,
29899,
16961,
29899,
29883,
1463,
742,
13,
13,
4706,
525,
5721,
309,
2151,
29899,
3188,
29899,
4661,
1463,
742,
13,
13,
4706,
525,
284,
2151,
29899,
4419,
16961,
29899,
29894,
29906,
742,
13,
4706,
525,
284,
2151,
29899,
29916,
16961,
29899,
29894,
29906,
742,
13,
4706,
525,
284,
2151,
29899,
16961,
29899,
29894,
29906,
742,
13,
13,
4706,
525,
307,
19954,
29899,
3188,
742,
13,
4706,
525,
307,
19954,
29899,
16961,
742,
13,
4706,
525,
307,
19954,
29899,
16961,
29899,
23521,
492,
742,
13,
4706,
525,
5721,
309,
307,
19954,
29899,
3188,
742,
13,
13,
4706,
525,
5721,
309,
2151,
29899,
3188,
29899,
4661,
1463,
742,
13,
1678,
4514,
13,
13,
1678,
1596,
29898,
29888,
29915,
13372,
414,
1873,
426,
9067,
414,
17255,
3259,
1649,
29913,
1495,
29871,
396,
9626,
1873,
29901,
29871,
29906,
29889,
29941,
29889,
29900,
13,
1678,
399,
1955,
29968,
4214,
29918,
9464,
353,
10802,
703,
6995,
2080,
29914,
29882,
688,
3460,
29918,
2161,
29918,
1457,
3018,
1312,
1159,
13,
1678,
1018,
29901,
13,
4706,
2897,
29889,
11256,
3972,
29898,
11686,
29968,
4214,
29918,
9464,
29897,
13,
1678,
5174,
29901,
13,
4706,
1209,
13,
13,
1678,
363,
474,
29892,
758,
3018,
1312,
29918,
4299,
29918,
978,
297,
26985,
29898,
1457,
3018,
1312,
29918,
4299,
29918,
978,
29918,
1761,
29892,
1369,
29922,
29896,
1125,
13,
4706,
1596,
29898,
29875,
29892,
8207,
742,
7431,
29898,
1457,
3018,
1312,
29918,
4299,
29918,
978,
29918,
1761,
876,
13,
4706,
4327,
414,
29918,
4299,
29918,
29881,
340,
12657,
29898,
1457,
3018,
1312,
29918,
4299,
29918,
978,
29892,
399,
1955,
29968,
4214,
29918,
9464,
29892,
338,
29918,
13264,
29922,
5574,
29897,
13,
13,
1678,
736,
13,
13,
13,
361,
376,
1649,
3396,
1649,
29908,
1275,
4770,
978,
1649,
29901,
13,
1678,
1667,
580,
13,
2
] |
drf_signed_auth/compat.py | marcgibbons/drf_signed_auth | 11 | 125249 | # pylint: disable=W0611
try:
from django.urls import reverse
except ImportError:
from django.core.urlresolvers import reverse
try:
from unittest import mock
except ImportError:
import mock
try:
from importlib import reload
except ImportError:
reload = reload
| [
1,
396,
282,
2904,
524,
29901,
11262,
29922,
29956,
29900,
29953,
29896,
29896,
13,
2202,
29901,
13,
1678,
515,
9557,
29889,
26045,
1053,
11837,
13,
19499,
16032,
2392,
29901,
13,
1678,
515,
9557,
29889,
3221,
29889,
2271,
9778,
874,
1053,
11837,
13,
13,
13,
2202,
29901,
13,
1678,
515,
443,
27958,
1053,
11187,
13,
19499,
16032,
2392,
29901,
13,
1678,
1053,
11187,
13,
13,
13,
2202,
29901,
13,
1678,
515,
1053,
1982,
1053,
19763,
13,
19499,
16032,
2392,
29901,
13,
1678,
19763,
353,
19763,
13,
2
] |
codewars/range-extraction.py | austinmccalley/challenge-sites | 0 | 104252 | <reponame>austinmccalley/challenge-sites
def check_next_num(inp, j):
for i in range(j, len(inp)):
elm = inp[i]
if len(inp) > i+1:
if inp[i+1] == (elm+1):
check_next_num(inp, i+1)
else:
if j == 0:
return i
return i
else:
return len(inp)-1
def solution(inp):
"""
1. Sort inp
2. Check to see if next in inp slist is the next value
"""
inp.sort()
ranges = []
res = []
for i in range(len(inp)):
l = check_next_num(inp, i)
ranges.append([i, l])
print([i, l])
seen = []
for r in ranges:
si = r[0]
ei = r[1]
sv = inp[si]
ev = inp[ei]
if ei not in seen:
if ev == sv:
res.append(str(ev))
seen.append(ei)
if (ev - sv) >= 2:
s = str(sv)+'-'+str(ev)
res.append(s)
seen.append(ei)
elif (ev-sv) == 1:
res.append(str(sv))
return (",".join(res))
print(ranges)
#Indexs 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
solution([-6,-3,-2,-1,0,1,3,4,5,7,8, 9, 10,11,14,15,17,18,19,20])
"""
[0,0], [1,5], [6,13], [14,15], [17, 19]
[[0, 0], [1, 5], [2, 5], [3, 5], [4, 5], [5, 5], [6, 8], [7, 8], [8, 8], [9, 13], [10, 13], [11, 13], [12, 13], [13, 13], [14, 15], [15, 15], [16, 19]
-6,-3-1,3-5,7-11,14,15,17-20
-6,-3-1,3-5,7-11,14,15,17-20
-6,-3-1,3-5,7-11,14,15,17-20
"""
#Indexes 0 1 2 3 4 5 6 7 8 9
# solution([-3,-2,-1,2,10,15,16,18,19,20])
"""
[0, 2], [3, 3], [4, 4], [5, 5], [6, 6], [7, 9]
[[0, 2], [3, 3], [4, 4], [5, 6], [6, 6], [7, 9]]
[[0, 0], [1, 2], [2, 2], [3, 3], [4, 4], [5, 6], [6, 6], [7, 9], [8, 9], [9, 9]]
-3--1,2,10,15,16,18-20
-3--1,2,10,15,16,18-20
-3,-2,-1,2,10,15,16,18-20
""" | [
1,
529,
276,
1112,
420,
29958,
29874,
504,
262,
29885,
617,
284,
2330,
29914,
305,
11768,
29899,
16315,
13,
1753,
1423,
29918,
4622,
29918,
1949,
29898,
262,
29886,
29892,
432,
1125,
13,
1678,
363,
474,
297,
3464,
29898,
29926,
29892,
7431,
29898,
262,
29886,
22164,
13,
4706,
560,
29885,
353,
297,
29886,
29961,
29875,
29962,
13,
4706,
565,
7431,
29898,
262,
29886,
29897,
1405,
474,
29974,
29896,
29901,
13,
9651,
565,
297,
29886,
29961,
29875,
29974,
29896,
29962,
1275,
313,
16422,
29974,
29896,
1125,
13,
18884,
1423,
29918,
4622,
29918,
1949,
29898,
262,
29886,
29892,
474,
29974,
29896,
29897,
13,
9651,
1683,
29901,
13,
18884,
565,
432,
1275,
29871,
29900,
29901,
13,
462,
1678,
736,
474,
13,
18884,
736,
474,
13,
4706,
1683,
29901,
13,
9651,
736,
7431,
29898,
262,
29886,
6817,
29896,
13,
13,
1753,
1650,
29898,
262,
29886,
1125,
13,
1678,
9995,
13,
268,
29896,
29889,
20025,
297,
29886,
13,
268,
29906,
29889,
5399,
304,
1074,
565,
2446,
297,
297,
29886,
269,
1761,
338,
278,
2446,
995,
13,
1678,
9995,
13,
13,
1678,
297,
29886,
29889,
6605,
580,
13,
13,
13,
1678,
20238,
353,
5159,
13,
1678,
620,
353,
5159,
13,
13,
13,
1678,
363,
474,
297,
3464,
29898,
2435,
29898,
262,
29886,
22164,
13,
308,
13,
4706,
301,
353,
1423,
29918,
4622,
29918,
1949,
29898,
262,
29886,
29892,
474,
29897,
13,
4706,
20238,
29889,
4397,
4197,
29875,
29892,
301,
2314,
13,
4706,
1596,
4197,
29875,
29892,
301,
2314,
13,
13,
13,
1678,
3595,
353,
5159,
13,
1678,
363,
364,
297,
20238,
29901,
13,
4706,
1354,
353,
364,
29961,
29900,
29962,
13,
4706,
321,
29875,
353,
364,
29961,
29896,
29962,
13,
13,
4706,
3731,
353,
297,
29886,
29961,
1039,
29962,
13,
4706,
3415,
353,
297,
29886,
29961,
10096,
29962,
13,
4706,
565,
321,
29875,
451,
297,
3595,
29901,
13,
9651,
565,
3415,
1275,
3731,
29901,
13,
18884,
620,
29889,
4397,
29898,
710,
29898,
5750,
876,
13,
18884,
3595,
29889,
4397,
29898,
10096,
29897,
13,
13,
9651,
565,
313,
5750,
448,
3731,
29897,
6736,
29871,
29906,
29901,
13,
462,
4706,
269,
353,
851,
29898,
4501,
7240,
28560,
18717,
710,
29898,
5750,
29897,
13,
462,
4706,
620,
29889,
4397,
29898,
29879,
29897,
13,
462,
4706,
3595,
29889,
4397,
29898,
10096,
29897,
13,
9651,
25342,
313,
5750,
29899,
4501,
29897,
1275,
29871,
29896,
29901,
13,
18884,
620,
29889,
4397,
29898,
710,
29898,
4501,
876,
13,
13,
1678,
736,
313,
613,
1642,
7122,
29898,
690,
876,
13,
1678,
1596,
29898,
29878,
6916,
29897,
13,
13,
13,
29937,
3220,
29879,
268,
29900,
259,
29896,
259,
29906,
259,
29941,
29871,
29946,
29871,
29945,
29871,
29953,
29871,
29955,
29871,
29947,
29871,
29929,
29871,
29896,
29900,
29871,
29896,
29896,
29871,
29896,
29906,
29871,
29896,
29941,
29871,
29896,
29946,
29871,
29896,
29945,
29871,
29896,
29953,
29871,
29896,
29955,
29871,
29896,
29947,
29871,
29896,
29929,
29871,
13,
2929,
918,
4197,
29899,
29953,
6653,
29941,
6653,
29906,
6653,
29896,
29892,
29900,
29892,
29896,
29892,
29941,
29892,
29946,
29892,
29945,
29892,
29955,
29892,
29947,
29892,
29871,
29929,
29892,
29871,
29896,
29900,
29892,
29896,
29896,
29892,
29896,
29946,
29892,
29896,
29945,
29892,
29896,
29955,
29892,
29896,
29947,
29892,
29896,
29929,
29892,
29906,
29900,
2314,
13,
13,
15945,
29908,
13,
13,
29961,
29900,
29892,
29900,
1402,
518,
29896,
29892,
29945,
1402,
518,
29953,
29892,
29896,
29941,
1402,
518,
29896,
29946,
29892,
29896,
29945,
1402,
518,
29896,
29955,
29892,
29871,
29896,
29929,
29962,
13,
13,
8999,
29900,
29892,
29871,
29900,
1402,
518,
29896,
29892,
29871,
29945,
1402,
518,
29906,
29892,
29871,
29945,
1402,
518,
29941,
29892,
29871,
29945,
1402,
518,
29946,
29892,
29871,
29945,
1402,
518,
29945,
29892,
29871,
29945,
1402,
518,
29953,
29892,
29871,
29947,
1402,
518,
29955,
29892,
29871,
29947,
1402,
518,
29947,
29892,
29871,
29947,
1402,
518,
29929,
29892,
29871,
29896,
29941,
1402,
518,
29896,
29900,
29892,
29871,
29896,
29941,
1402,
518,
29896,
29896,
29892,
29871,
29896,
29941,
1402,
518,
29896,
29906,
29892,
29871,
29896,
29941,
1402,
518,
29896,
29941,
29892,
29871,
29896,
29941,
1402,
518,
29896,
29946,
29892,
29871,
29896,
29945,
1402,
518,
29896,
29945,
29892,
29871,
29896,
29945,
1402,
518,
29896,
29953,
29892,
29871,
29896,
29929,
29962,
13,
13,
29899,
29953,
6653,
29941,
29899,
29896,
29892,
29941,
29899,
29945,
29892,
29955,
29899,
29896,
29896,
29892,
29896,
29946,
29892,
29896,
29945,
29892,
29896,
29955,
29899,
29906,
29900,
13,
29899,
29953,
6653,
29941,
29899,
29896,
29892,
29941,
29899,
29945,
29892,
29955,
29899,
29896,
29896,
29892,
29896,
29946,
29892,
29896,
29945,
29892,
29896,
29955,
29899,
29906,
29900,
13,
29899,
29953,
6653,
29941,
29899,
29896,
29892,
29941,
29899,
29945,
29892,
29955,
29899,
29896,
29896,
29892,
29896,
29946,
29892,
29896,
29945,
29892,
29896,
29955,
29899,
29906,
29900,
13,
15945,
29908,
13,
13,
29937,
3220,
267,
1678,
29900,
259,
29896,
259,
29906,
29871,
29941,
29871,
29946,
259,
29945,
259,
29953,
259,
29955,
259,
29947,
259,
29929,
13,
29937,
1650,
4197,
29899,
29941,
6653,
29906,
6653,
29896,
29892,
29906,
29892,
29896,
29900,
29892,
29896,
29945,
29892,
29896,
29953,
29892,
29896,
29947,
29892,
29896,
29929,
29892,
29906,
29900,
2314,
13,
13,
15945,
29908,
13,
13,
13,
518,
29900,
29892,
29871,
29906,
1402,
518,
29941,
29892,
29871,
29941,
1402,
518,
29946,
29892,
29871,
29946,
1402,
518,
29945,
29892,
29871,
29945,
1402,
518,
29953,
29892,
29871,
29953,
1402,
518,
29955,
29892,
29871,
29929,
29962,
259,
13,
8999,
29900,
29892,
29871,
29906,
1402,
518,
29941,
29892,
29871,
29941,
1402,
518,
29946,
29892,
29871,
29946,
1402,
518,
29945,
29892,
29871,
29953,
1402,
518,
29953,
29892,
29871,
29953,
1402,
518,
29955,
29892,
29871,
29929,
5262,
13,
8999,
29900,
29892,
29871,
29900,
1402,
518,
29896,
29892,
29871,
29906,
1402,
518,
29906,
29892,
29871,
29906,
1402,
518,
29941,
29892,
29871,
29941,
1402,
518,
29946,
29892,
29871,
29946,
1402,
518,
29945,
29892,
29871,
29953,
1402,
518,
29953,
29892,
29871,
29953,
1402,
518,
29955,
29892,
29871,
29929,
1402,
518,
29947,
29892,
29871,
29929,
1402,
518,
29929,
29892,
29871,
29929,
5262,
13,
13,
29899,
29941,
489,
29896,
29892,
29906,
29892,
29896,
29900,
29892,
29896,
29945,
29892,
29896,
29953,
29892,
29896,
29947,
29899,
29906,
29900,
13,
13,
29899,
29941,
489,
29896,
29892,
29906,
29892,
29896,
29900,
29892,
29896,
29945,
29892,
29896,
29953,
29892,
29896,
29947,
29899,
29906,
29900,
13,
29899,
29941,
6653,
29906,
6653,
29896,
29892,
29906,
29892,
29896,
29900,
29892,
29896,
29945,
29892,
29896,
29953,
29892,
29896,
29947,
29899,
29906,
29900,
13,
13,
15945,
29908,
2
] |
src/core/schemas/base.py | nefarius/portfolio-backend | 6 | 1617046 | <filename>src/core/schemas/base.py
import json
import logging
from marshmallow import Schema, post_load
from django.utils.translation import get_language
from ..skosmos import get_preflabel
logger = logging.getLogger(__name__)
class GenericModel:
def __init__(self, schema, **kwargs):
self.__schema__ = schema
self.metadata = {}
for attr in schema.declared_fields:
self.metadata[attr] = schema.declared_fields[attr].metadata
if hasattr(schema.declared_fields[attr], 'many'):
setattr(self, attr, [])
else:
setattr(self, attr, None)
for k, v in kwargs.items():
if k in schema.declared_fields:
setattr(self, k, v)
def __repr__(self):
return self.to_json()
def to_dict(self):
out = {}
for key in self.__schema__.declared_fields:
v = getattr(self, key)
if isinstance(v, GenericModel):
out[key] = v.to_dict()
elif isinstance(v, list):
out[key] = [x.to_dict() for x in v] if v and isinstance(v[0], GenericModel) else v
elif isinstance(v, (int, float)) or v is None:
out[key] = v
else:
out[key] = str(v)
return out
def to_json(self):
return json.dumps(self.to_dict())
def to_display(self):
out = []
for key in self.__schema__.declared_fields:
v = getattr(self, key)
if v:
metadata = getattr(self, 'metadata').get(key)
label = metadata.get('title')
if isinstance(v, GenericModel):
value = v.to_display()
elif isinstance(v, list):
kwargs = {'roles': True} if key == 'contributors' else {}
value = [x.to_display(**kwargs) for x in v] if v and isinstance(v[0], GenericModel) else v
elif isinstance(v, (int, float)):
value = v
else:
value = str(v)
if value:
out.append({'label': label, 'value': value})
return out
class BaseSchema(Schema):
__model__ = GenericModel
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.contributors_fields = []
self.date_fields = []
self.locations_fields = []
for fld in self.declared_fields:
if (
fld == 'contributors'
or self.declared_fields[fld].metadata.get('x-attrs', {}).get('equivalent') == 'contributors'
):
self.contributors_fields.append(fld)
else:
if 'location' in fld:
self.locations_fields.append(fld)
if 'date' in fld:
self.date_fields.append(fld)
@post_load
def create_object(self, data):
return self.__model__(self, **data)
def get_model(self, data):
return self.load(data).data
def data_display(self, data):
m = self.get_model(data)
return m.to_display()
def role_display(self, data, user_source):
lang = get_language() or 'en'
roles = []
for fld in self.contributors_fields:
if data.get(fld):
for c in data[fld]:
if c.get('source') == user_source and c.get('roles'):
for r in c['roles']:
try:
roles.append(r.get('label').get(lang))
except AttributeError:
logger.warning(f'Missing label for role {r}')
label = get_preflabel(r.get('source').split('/')[-1])
if label:
roles.append(label)
if roles:
return ', '.join(sorted(set(roles)))
def location_display(self, data):
locations = []
for fld in self.locations_fields:
if data.get(fld):
if fld == 'location':
for loc in data[fld]:
if loc.get('label'):
locations.append(loc['label'])
else:
for o in data[fld]:
if o.get('location'):
for loc in o['location']:
if loc.get('label'):
locations.append(loc['label'])
if locations:
return ', '.join(sorted(set(locations)))
def year_display(self, data):
return None
| [
1,
529,
9507,
29958,
4351,
29914,
3221,
29914,
11993,
29914,
3188,
29889,
2272,
13,
5215,
4390,
13,
5215,
12183,
13,
13,
3166,
1766,
845,
29885,
9536,
1053,
1102,
2603,
29892,
1400,
29918,
1359,
13,
13,
3166,
9557,
29889,
13239,
29889,
3286,
18411,
1053,
679,
29918,
11675,
13,
13,
3166,
6317,
808,
359,
7681,
1053,
679,
29918,
29886,
999,
1643,
13,
13,
21707,
353,
12183,
29889,
657,
16363,
22168,
978,
1649,
29897,
13,
13,
13,
1990,
3251,
293,
3195,
29901,
13,
1678,
822,
4770,
2344,
12035,
1311,
29892,
10938,
29892,
3579,
19290,
1125,
13,
4706,
1583,
17255,
11010,
1649,
353,
10938,
13,
4706,
1583,
29889,
19635,
353,
6571,
13,
4706,
363,
12421,
297,
10938,
29889,
7099,
433,
1127,
29918,
9621,
29901,
13,
9651,
1583,
29889,
19635,
29961,
5552,
29962,
353,
10938,
29889,
7099,
433,
1127,
29918,
9621,
29961,
5552,
1822,
19635,
13,
9651,
565,
756,
5552,
29898,
11010,
29889,
7099,
433,
1127,
29918,
9621,
29961,
5552,
1402,
525,
13011,
29374,
13,
18884,
731,
5552,
29898,
1311,
29892,
12421,
29892,
518,
2314,
13,
9651,
1683,
29901,
13,
18884,
731,
5552,
29898,
1311,
29892,
12421,
29892,
6213,
29897,
13,
4706,
363,
413,
29892,
325,
297,
9049,
5085,
29889,
7076,
7295,
13,
9651,
565,
413,
297,
10938,
29889,
7099,
433,
1127,
29918,
9621,
29901,
13,
18884,
731,
5552,
29898,
1311,
29892,
413,
29892,
325,
29897,
13,
13,
1678,
822,
4770,
276,
558,
12035,
1311,
1125,
13,
4706,
736,
1583,
29889,
517,
29918,
3126,
580,
13,
13,
1678,
822,
304,
29918,
8977,
29898,
1311,
1125,
13,
4706,
714,
353,
6571,
13,
4706,
363,
1820,
297,
1583,
17255,
11010,
26914,
7099,
433,
1127,
29918,
9621,
29901,
13,
9651,
325,
353,
679,
5552,
29898,
1311,
29892,
1820,
29897,
13,
9651,
565,
338,
8758,
29898,
29894,
29892,
3251,
293,
3195,
1125,
13,
18884,
714,
29961,
1989,
29962,
353,
325,
29889,
517,
29918,
8977,
580,
13,
9651,
25342,
338,
8758,
29898,
29894,
29892,
1051,
1125,
13,
18884,
714,
29961,
1989,
29962,
353,
518,
29916,
29889,
517,
29918,
8977,
580,
363,
921,
297,
325,
29962,
565,
325,
322,
338,
8758,
29898,
29894,
29961,
29900,
1402,
3251,
293,
3195,
29897,
1683,
325,
13,
9651,
25342,
338,
8758,
29898,
29894,
29892,
313,
524,
29892,
5785,
876,
470,
325,
338,
6213,
29901,
13,
18884,
714,
29961,
1989,
29962,
353,
325,
13,
9651,
1683,
29901,
13,
18884,
714,
29961,
1989,
29962,
353,
851,
29898,
29894,
29897,
13,
4706,
736,
714,
13,
13,
1678,
822,
304,
29918,
3126,
29898,
1311,
1125,
13,
4706,
736,
4390,
29889,
29881,
17204,
29898,
1311,
29889,
517,
29918,
8977,
3101,
13,
13,
1678,
822,
304,
29918,
4990,
29898,
1311,
1125,
13,
4706,
714,
353,
5159,
13,
4706,
363,
1820,
297,
1583,
17255,
11010,
26914,
7099,
433,
1127,
29918,
9621,
29901,
13,
9651,
325,
353,
679,
5552,
29898,
1311,
29892,
1820,
29897,
13,
9651,
565,
325,
29901,
13,
18884,
15562,
353,
679,
5552,
29898,
1311,
29892,
525,
19635,
2824,
657,
29898,
1989,
29897,
13,
18884,
3858,
353,
15562,
29889,
657,
877,
3257,
1495,
13,
18884,
565,
338,
8758,
29898,
29894,
29892,
3251,
293,
3195,
1125,
13,
462,
1678,
995,
353,
325,
29889,
517,
29918,
4990,
580,
13,
18884,
25342,
338,
8758,
29898,
29894,
29892,
1051,
1125,
13,
462,
1678,
9049,
5085,
353,
11117,
307,
793,
2396,
5852,
29913,
565,
1820,
1275,
525,
21570,
29560,
29915,
1683,
6571,
13,
462,
1678,
995,
353,
518,
29916,
29889,
517,
29918,
4990,
29898,
1068,
19290,
29897,
363,
921,
297,
325,
29962,
565,
325,
322,
338,
8758,
29898,
29894,
29961,
29900,
1402,
3251,
293,
3195,
29897,
1683,
325,
13,
18884,
25342,
338,
8758,
29898,
29894,
29892,
313,
524,
29892,
5785,
22164,
13,
462,
1678,
995,
353,
325,
13,
18884,
1683,
29901,
13,
462,
1678,
995,
353,
851,
29898,
29894,
29897,
13,
18884,
565,
995,
29901,
13,
462,
1678,
714,
29889,
4397,
3319,
29915,
1643,
2396,
3858,
29892,
525,
1767,
2396,
995,
1800,
13,
4706,
736,
714,
13,
13,
13,
1990,
7399,
12763,
29898,
12763,
1125,
13,
1678,
4770,
4299,
1649,
353,
3251,
293,
3195,
13,
13,
1678,
822,
4770,
2344,
12035,
1311,
29892,
334,
5085,
29892,
3579,
19290,
1125,
13,
4706,
2428,
2141,
1649,
2344,
1649,
10456,
5085,
29892,
3579,
19290,
29897,
13,
4706,
1583,
29889,
21570,
29560,
29918,
9621,
353,
5159,
13,
4706,
1583,
29889,
1256,
29918,
9621,
353,
5159,
13,
4706,
1583,
29889,
2029,
800,
29918,
9621,
353,
5159,
13,
4706,
363,
285,
430,
297,
1583,
29889,
7099,
433,
1127,
29918,
9621,
29901,
13,
9651,
565,
313,
13,
18884,
285,
430,
1275,
525,
21570,
29560,
29915,
13,
18884,
470,
1583,
29889,
7099,
433,
1127,
29918,
9621,
29961,
29888,
430,
1822,
19635,
29889,
657,
877,
29916,
29899,
5552,
29879,
742,
6571,
467,
657,
877,
1686,
27445,
1495,
1275,
525,
21570,
29560,
29915,
13,
632,
1125,
13,
18884,
1583,
29889,
21570,
29560,
29918,
9621,
29889,
4397,
29898,
29888,
430,
29897,
13,
9651,
1683,
29901,
13,
18884,
565,
525,
5479,
29915,
297,
285,
430,
29901,
13,
462,
1678,
1583,
29889,
2029,
800,
29918,
9621,
29889,
4397,
29898,
29888,
430,
29897,
13,
18884,
565,
525,
1256,
29915,
297,
285,
430,
29901,
13,
462,
1678,
1583,
29889,
1256,
29918,
9621,
29889,
4397,
29898,
29888,
430,
29897,
13,
13,
1678,
732,
2490,
29918,
1359,
13,
1678,
822,
1653,
29918,
3318,
29898,
1311,
29892,
848,
1125,
13,
4706,
736,
1583,
17255,
4299,
12035,
1311,
29892,
3579,
1272,
29897,
13,
13,
1678,
822,
679,
29918,
4299,
29898,
1311,
29892,
848,
1125,
13,
4706,
736,
1583,
29889,
1359,
29898,
1272,
467,
1272,
13,
13,
1678,
822,
848,
29918,
4990,
29898,
1311,
29892,
848,
1125,
13,
4706,
286,
353,
1583,
29889,
657,
29918,
4299,
29898,
1272,
29897,
13,
4706,
736,
286,
29889,
517,
29918,
4990,
580,
13,
13,
1678,
822,
6297,
29918,
4990,
29898,
1311,
29892,
848,
29892,
1404,
29918,
4993,
1125,
13,
4706,
6361,
353,
679,
29918,
11675,
580,
470,
525,
264,
29915,
13,
4706,
16178,
353,
5159,
13,
4706,
363,
285,
430,
297,
1583,
29889,
21570,
29560,
29918,
9621,
29901,
13,
9651,
565,
848,
29889,
657,
29898,
29888,
430,
1125,
13,
18884,
363,
274,
297,
848,
29961,
29888,
430,
5387,
13,
462,
1678,
565,
274,
29889,
657,
877,
4993,
1495,
1275,
1404,
29918,
4993,
322,
274,
29889,
657,
877,
307,
793,
29374,
13,
462,
4706,
363,
364,
297,
274,
1839,
307,
793,
2033,
29901,
13,
462,
9651,
1018,
29901,
13,
462,
18884,
16178,
29889,
4397,
29898,
29878,
29889,
657,
877,
1643,
2824,
657,
29898,
3893,
876,
13,
462,
9651,
5174,
23833,
2392,
29901,
13,
462,
18884,
17927,
29889,
27392,
29898,
29888,
29915,
18552,
292,
3858,
363,
6297,
426,
29878,
29913,
1495,
13,
462,
18884,
3858,
353,
679,
29918,
29886,
999,
1643,
29898,
29878,
29889,
657,
877,
4993,
2824,
5451,
11219,
1495,
14352,
29896,
2314,
13,
462,
18884,
565,
3858,
29901,
13,
462,
462,
1678,
16178,
29889,
4397,
29898,
1643,
29897,
13,
4706,
565,
16178,
29901,
13,
9651,
736,
13420,
15300,
7122,
29898,
24582,
29898,
842,
29898,
307,
793,
4961,
13,
13,
1678,
822,
4423,
29918,
4990,
29898,
1311,
29892,
848,
1125,
13,
4706,
14354,
353,
5159,
13,
4706,
363,
285,
430,
297,
1583,
29889,
2029,
800,
29918,
9621,
29901,
13,
9651,
565,
848,
29889,
657,
29898,
29888,
430,
1125,
13,
18884,
565,
285,
430,
1275,
525,
5479,
2396,
13,
462,
1678,
363,
1180,
297,
848,
29961,
29888,
430,
5387,
13,
462,
4706,
565,
1180,
29889,
657,
877,
1643,
29374,
13,
462,
9651,
14354,
29889,
4397,
29898,
2029,
1839,
1643,
11287,
13,
18884,
1683,
29901,
13,
462,
1678,
363,
288,
297,
848,
29961,
29888,
430,
5387,
13,
462,
4706,
565,
288,
29889,
657,
877,
5479,
29374,
13,
462,
9651,
363,
1180,
297,
288,
1839,
5479,
2033,
29901,
13,
462,
18884,
565,
1180,
29889,
657,
877,
1643,
29374,
13,
462,
462,
1678,
14354,
29889,
4397,
29898,
2029,
1839,
1643,
11287,
13,
4706,
565,
14354,
29901,
13,
9651,
736,
13420,
15300,
7122,
29898,
24582,
29898,
842,
29898,
2029,
800,
4961,
13,
13,
1678,
822,
1629,
29918,
4990,
29898,
1311,
29892,
848,
1125,
13,
4706,
736,
6213,
13,
2
] |
manage.py | sergiosuarez/MapTweets | 0 | 165924 | #!/usr/bin/env python
import os
import sys
from twit.wsgi import application
WSGI_APPLICATION = 'twit.wsgi.application'
if __name__ == "__main__":
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "twit.settings")
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv)
| [
1,
18787,
4855,
29914,
2109,
29914,
6272,
3017,
13,
5215,
2897,
13,
5215,
10876,
13,
13,
3166,
3252,
277,
29889,
5652,
3146,
1053,
2280,
13,
13,
7811,
29954,
29902,
29918,
3301,
7390,
28541,
353,
525,
7516,
277,
29889,
5652,
3146,
29889,
6214,
29915,
13,
13,
13,
361,
4770,
978,
1649,
1275,
376,
1649,
3396,
1649,
1115,
13,
1678,
2897,
29889,
21813,
29889,
842,
4381,
703,
29928,
29967,
2190,
17080,
29918,
10490,
29911,
4214,
29903,
29918,
6720,
14849,
1307,
613,
376,
7516,
277,
29889,
11027,
1159,
13,
13,
1678,
515,
9557,
29889,
3221,
29889,
21895,
1053,
6222,
29918,
3166,
29918,
6519,
29918,
1220,
13,
13,
1678,
6222,
29918,
3166,
29918,
6519,
29918,
1220,
29898,
9675,
29889,
19218,
29897,
13,
2
] |
namePlotter.py | partofthething/nameAnalysis | 0 | 54742 | <reponame>partofthething/nameAnalysis
"""
Scans text for first names and prints out most common ones as document goes on
Useful for analyzing journals or whatever.
"""
# controls
NUM_FILE_SEGMENTS = 25
NUM_TOP_NAMES = 8
# consts
FEMALE = 0
MALE = 1
EITHER = 2
def read_names(filename):
"""
read potential first names from data library
Get names from, for example, http://www.outpost9.com/files/WordLists.html
See http://stackoverflow.com/questions/1803628/raw-list-of-person-names for other options.
"""
names = []
with open(filename) as f:
for name in f:
name = name.strip().lower()
if len(name) > 2:
names.append(name)
return names
def scan_for_names(data_file_name, names):
"""
look through text file for names
"""
with open(data_file_name) as f:
num_words = 0
names_found = []
for line in f:
for word in line.split():
num_words += 1
word = process(word)
if word in names:
names_found.append((word, num_words))
# print word
# hack to prevent ann from "ann arbor" from showing up
if word == 'arbor' and names_found[-1][0] == 'ann':
names_found.pop()
return names_found
def process(word):
"""
Mangle a word and gets rid of contractions so "John's" shows up as "john"
"""
word = word.lower()
if "'" in word and word not in ["don't", "haven't"]:
word = word.split("'")[0]
return word
def rank(name_results):
"""
process the names found and print out the top few.
"""
for names in chunk(name_results, NUM_FILE_SEGMENTS):
names_here, _word_num_here = zip(*names)
counts = []
for name in uniquify(names_here):
counts.append((names_here.count(name), name))
counts.sort()
counts.reverse()
print ''.join(['{0:10s}'.format(name) for _count, name in counts[:NUM_TOP_NAMES]])
def uniquify(iterable):
"""
Make unique list while preserving order.
"""
unique = []
for entry in iterable:
if entry not in unique:
unique.append(entry)
return unique
def chunk(iterable, num_chunks, fillvalue=(None, None)):
"""break list into num_chunks chunks. Ugly.
Stolen from the web somewhere.
"""
num = float(len(iterable)) / num_chunks
chunks = [iterable[i:i + int(num)] for i in range(0, (num_chunks - 1) * int(num), int(num))]
chunks.append(iterable[(num_chunks - 1) * int(num):])
return chunks
def make_name_data(chicks, dudes):
"""
make convenient data structure about names.
It separates out men and women in case future development wants to plot them in
different colors or something.
"""
names = {}
for name in chicks:
names[name] = FEMALE
for name in dudes:
if name in names:
names[name] = EITHER
else:
names[name] = MALE
return names
if __name__ == '__main__':
chicks = read_names('female-names')
dudes = read_names('male-names')
name_lib = make_name_data(chicks, dudes)
results = scan_for_names('data.txt', name_lib)
rank(results)
| [
1,
529,
276,
1112,
420,
29958,
1595,
974,
386,
1408,
29914,
978,
21067,
4848,
13,
15945,
29908,
13,
4421,
550,
1426,
363,
937,
2983,
322,
14677,
714,
1556,
3619,
6743,
408,
1842,
5771,
373,
13,
13,
11403,
1319,
363,
29537,
292,
21824,
1338,
470,
6514,
29889,
13,
13,
15945,
29908,
13,
13,
29937,
11761,
13,
13967,
29918,
7724,
29918,
1660,
29954,
13780,
29903,
353,
29871,
29906,
29945,
13,
13967,
29918,
29911,
4590,
29918,
5813,
29903,
353,
29871,
29947,
13,
13,
29937,
1040,
29879,
13,
16359,
1529,
1307,
353,
29871,
29900,
13,
1529,
1307,
353,
29871,
29896,
13,
29923,
1806,
4448,
353,
29871,
29906,
13,
13,
1753,
1303,
29918,
7039,
29898,
9507,
1125,
13,
1678,
9995,
13,
1678,
1303,
7037,
937,
2983,
515,
848,
3489,
13,
13,
1678,
3617,
2983,
515,
29892,
363,
1342,
29892,
1732,
597,
1636,
29889,
449,
2490,
29929,
29889,
510,
29914,
5325,
29914,
14463,
1293,
29879,
29889,
1420,
13,
1678,
2823,
1732,
597,
2417,
29889,
510,
29914,
2619,
29914,
29896,
29947,
29900,
29941,
29953,
29906,
29947,
29914,
1610,
29899,
1761,
29899,
974,
29899,
10532,
29899,
7039,
363,
916,
3987,
29889,
13,
1678,
9995,
13,
1678,
2983,
353,
5159,
13,
1678,
411,
1722,
29898,
9507,
29897,
408,
285,
29901,
13,
4706,
363,
1024,
297,
285,
29901,
13,
9651,
1024,
353,
1024,
29889,
17010,
2141,
13609,
580,
13,
9651,
565,
7431,
29898,
978,
29897,
1405,
29871,
29906,
29901,
13,
18884,
2983,
29889,
4397,
29898,
978,
29897,
13,
1678,
736,
2983,
13,
13,
13,
1753,
12812,
29918,
1454,
29918,
7039,
29898,
1272,
29918,
1445,
29918,
978,
29892,
2983,
1125,
13,
1678,
9995,
13,
1678,
1106,
1549,
1426,
934,
363,
2983,
13,
1678,
9995,
13,
1678,
411,
1722,
29898,
1272,
29918,
1445,
29918,
978,
29897,
408,
285,
29901,
13,
4706,
954,
29918,
9303,
353,
29871,
29900,
13,
4706,
2983,
29918,
11940,
353,
5159,
13,
4706,
363,
1196,
297,
285,
29901,
13,
9651,
363,
1734,
297,
1196,
29889,
5451,
7295,
13,
18884,
954,
29918,
9303,
4619,
29871,
29896,
13,
18884,
1734,
353,
1889,
29898,
1742,
29897,
13,
18884,
565,
1734,
297,
2983,
29901,
13,
462,
1678,
2983,
29918,
11940,
29889,
4397,
3552,
1742,
29892,
954,
29918,
9303,
876,
13,
462,
1678,
396,
1596,
1734,
13,
18884,
396,
15833,
304,
5557,
2889,
515,
376,
812,
564,
4089,
29908,
515,
6445,
701,
13,
18884,
565,
1734,
1275,
525,
279,
4089,
29915,
322,
2983,
29918,
11940,
14352,
29896,
3816,
29900,
29962,
1275,
525,
812,
2396,
13,
462,
1678,
2983,
29918,
11940,
29889,
7323,
580,
13,
1678,
736,
2983,
29918,
11940,
13,
13,
1753,
1889,
29898,
1742,
1125,
13,
1678,
9995,
13,
1678,
341,
2521,
263,
1734,
322,
4947,
8177,
310,
6761,
1953,
577,
376,
11639,
29915,
29879,
29908,
3697,
701,
408,
376,
29926,
6547,
29908,
13,
1678,
9995,
13,
1678,
1734,
353,
1734,
29889,
13609,
580,
13,
1678,
565,
376,
11838,
297,
1734,
322,
1734,
451,
297,
6796,
9176,
29915,
29873,
613,
376,
29882,
3496,
29915,
29873,
3108,
29901,
13,
4706,
1734,
353,
1734,
29889,
5451,
703,
29915,
1159,
29961,
29900,
29962,
13,
1678,
736,
1734,
13,
13,
1753,
7115,
29898,
978,
29918,
9902,
1125,
13,
1678,
9995,
13,
1678,
1889,
278,
2983,
1476,
322,
1596,
714,
278,
2246,
2846,
29889,
13,
1678,
9995,
13,
1678,
363,
2983,
297,
19875,
29898,
978,
29918,
9902,
29892,
28019,
29918,
7724,
29918,
1660,
29954,
13780,
29903,
1125,
13,
4706,
2983,
29918,
4150,
29892,
903,
1742,
29918,
1949,
29918,
4150,
353,
14319,
10456,
7039,
29897,
13,
4706,
18139,
353,
5159,
13,
4706,
363,
1024,
297,
20498,
1598,
29898,
7039,
29918,
4150,
1125,
13,
9651,
18139,
29889,
4397,
3552,
7039,
29918,
4150,
29889,
2798,
29898,
978,
511,
1024,
876,
13,
4706,
18139,
29889,
6605,
580,
13,
4706,
18139,
29889,
24244,
580,
13,
4706,
1596,
525,
4286,
7122,
18959,
29912,
29900,
29901,
29896,
29900,
29879,
29913,
4286,
4830,
29898,
978,
29897,
363,
903,
2798,
29892,
1024,
297,
18139,
7503,
13967,
29918,
29911,
4590,
29918,
5813,
29903,
24960,
13,
13,
13,
1753,
20498,
1598,
29898,
1524,
519,
1125,
13,
1678,
9995,
13,
1678,
8561,
5412,
1051,
1550,
2225,
29530,
1797,
29889,
13,
1678,
9995,
13,
1678,
5412,
353,
5159,
13,
1678,
363,
6251,
297,
4256,
519,
29901,
13,
4706,
565,
6251,
451,
297,
5412,
29901,
13,
9651,
5412,
29889,
4397,
29898,
8269,
29897,
13,
1678,
736,
5412,
13,
13,
1753,
19875,
29898,
1524,
519,
29892,
954,
29918,
305,
18801,
29892,
5445,
1767,
7607,
8516,
29892,
6213,
22164,
13,
1678,
9995,
8690,
1051,
964,
954,
29918,
305,
18801,
521,
18801,
29889,
501,
16808,
29889,
13,
13,
1678,
624,
18975,
515,
278,
1856,
9051,
29889,
13,
1678,
9995,
13,
1678,
954,
353,
5785,
29898,
2435,
29898,
1524,
519,
876,
847,
954,
29918,
305,
18801,
13,
1678,
521,
18801,
353,
518,
1524,
519,
29961,
29875,
29901,
29875,
718,
938,
29898,
1949,
4638,
363,
474,
297,
3464,
29898,
29900,
29892,
313,
1949,
29918,
305,
18801,
448,
29871,
29896,
29897,
334,
938,
29898,
1949,
511,
938,
29898,
1949,
28166,
13,
1678,
521,
18801,
29889,
4397,
29898,
1524,
519,
15625,
1949,
29918,
305,
18801,
448,
29871,
29896,
29897,
334,
938,
29898,
1949,
1125,
2314,
13,
1678,
736,
521,
18801,
13,
13,
1753,
1207,
29918,
978,
29918,
1272,
29898,
305,
7358,
29892,
270,
8192,
1125,
13,
1678,
9995,
13,
1678,
1207,
19192,
848,
3829,
1048,
2983,
29889,
13,
13,
1678,
739,
2903,
1078,
714,
1757,
322,
5866,
297,
1206,
5434,
5849,
10753,
304,
6492,
963,
297,
13,
1678,
1422,
11955,
470,
1554,
29889,
13,
1678,
9995,
13,
1678,
2983,
353,
6571,
13,
1678,
363,
1024,
297,
521,
7358,
29901,
13,
4706,
2983,
29961,
978,
29962,
353,
383,
26862,
1307,
13,
13,
1678,
363,
1024,
297,
270,
8192,
29901,
13,
4706,
565,
1024,
297,
2983,
29901,
13,
9651,
2983,
29961,
978,
29962,
353,
382,
1806,
4448,
13,
4706,
1683,
29901,
13,
9651,
2983,
29961,
978,
29962,
353,
14861,
1307,
13,
13,
1678,
736,
2983,
13,
13,
361,
4770,
978,
1649,
1275,
525,
1649,
3396,
1649,
2396,
13,
1678,
521,
7358,
353,
1303,
29918,
7039,
877,
29888,
331,
744,
29899,
7039,
1495,
13,
1678,
270,
8192,
353,
1303,
29918,
7039,
877,
19202,
29899,
7039,
1495,
13,
1678,
1024,
29918,
1982,
353,
1207,
29918,
978,
29918,
1272,
29898,
305,
7358,
29892,
270,
8192,
29897,
13,
1678,
2582,
353,
12812,
29918,
1454,
29918,
7039,
877,
1272,
29889,
3945,
742,
1024,
29918,
1982,
29897,
13,
1678,
7115,
29898,
9902,
29897,
13,
13,
2
] |
sagas/tests/test_trans_2.py | samlet/stack | 3 | 199146 | #! /usr/bin/env python
# -*- coding:utf-8 -*-
import urllib.request
import urllib.parse
import json
import execjs
import re
import time
import random
from sagas.nlu.translator import display_translations
class GoogleTrans(object):
def __init__(self):
self.url = 'https://translate.google.cn/translate_a/single'
self.TKK = "434674.96463358" # 随时都有可能需要更新的TKK值
self.header = {
"accept": "*/*",
"accept-language": "zh-CN,zh;q=0.9",
"cookie": "NID=188=<KEY>",
"referer": "https://translate.google.cn/",
"user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36",
"x-client-data": "CJK2yQEIpLbJAQjEtskBCKmdygEIqKPKAQi5pcoBCLGnygEI4qjKAQjxqcoBCJetygEIza3KAQ==",
}
self.data = {
"client": "webapp", # 基于网页访问服务器
"sl": "auto", # 源语言,auto表示由谷歌自动识别
"tl": "en", # 翻译的目标语言
"hl": "zh-CN", # 界面语言选中文,毕竟URL都是cn后缀了,就不装美国人了
"dt": ["at", "bd", "ex", "ld", "md", "qca", "rw", "rm", "ss", "t"], # dt表示要求服务器返回的数据类型
"otf": "2",
"ssel": "0",
"tsel": "0",
"kc": "1",
"tk": "", # 谷歌服务器会核对的token
"q": "" # 待翻译的字符串
}
with open('token.js', 'r', encoding='utf-8') as f:
self.js_fun = execjs.compile(f.read())
def update_TKK(self):
url = "https://translate.google.cn/"
req = urllib.request.Request(url=url, headers=self.header)
page_source = urllib.request.urlopen(req).read().decode("utf-8")
self.TKK = re.findall(r"tkk:'([0-9]+\.[0-9]+)'", page_source)[0]
def construct_url(self):
base = self.url + '?'
for key in self.data:
if isinstance(self.data[key], list):
base = base + "dt=" + "&dt=".join(self.data[key]) + "&"
else:
base = base + key + '=' + self.data[key] + '&'
base = base[:-1]
return base
def query(self, q, lang_from='', lang_to=''):
self.data['q'] = urllib.parse.quote(q)
self.data['tk'] = self.js_fun.call('wo', q, self.TKK)
if lang_from:
self.data['sl'] = lang_from
if lang_to:
self.data['tl'] = lang_to
url = self.construct_url()
req = urllib.request.Request(url=url, headers=self.header)
response = json.loads(urllib.request.urlopen(req).read().decode("utf-8"))
print(response[0][0][0])
if response[1] is not None:
print('.. translations for word')
# print(r[1])
display_translations(response[1])
class TransCli(object):
def tests(self):
"""
$ ./test_trans_2.py tests
:return:
"""
googletrans = GoogleTrans()
googletrans.update_TKK() # 构建完对象以后要同步更新一下TKK值
time.sleep(random.uniform(0.05, 0.20))
text = 'يىغلىمايۋاتىدۇ'
googletrans.query(text, 'ug', 'en') # 默认的目标语言是英语,如果要翻译到其他语言请自行修改相应参数
time.sleep(random.uniform(0.05, 0.20))
# googletrans = GoogleTrans()
googletrans.update_TKK()
time.sleep(random.uniform(0.05, 0.20))
googletrans.query('你好', 'zh', 'en')
def trans(self, sents, lang):
"""
$ ./test_trans_2.py trans 'Ontem nós fizemos almoço na minha padaria.' pt
$ ./test_trans_2.py trans 'يىغلىمايۋاتىدۇ' ug
:param sents:
:param lang:
:return:
"""
from urllib.error import URLError
for n in range(3):
try:
googletrans = GoogleTrans()
googletrans.update_TKK()
# time.sleep(random.uniform(0.05, 0.20))
googletrans.query(sents, lang, 'en')
break
except URLError:
print('.. wait to retry')
time.sleep(random.uniform(0.05, 0.20))
continue
if __name__ == '__main__':
import fire
fire.Fire(TransCli)
| [
1,
396,
29991,
847,
4855,
29914,
2109,
29914,
6272,
3017,
13,
29937,
448,
29930,
29899,
14137,
29901,
9420,
29899,
29947,
448,
29930,
29899,
13,
13,
5215,
3142,
1982,
29889,
3827,
13,
5215,
3142,
1982,
29889,
5510,
13,
5215,
4390,
13,
5215,
2279,
1315,
13,
5215,
337,
13,
5215,
931,
13,
5215,
4036,
13,
13,
3166,
17233,
294,
29889,
29876,
6092,
29889,
3286,
29880,
1061,
1053,
2479,
29918,
3286,
29880,
800,
13,
13,
13,
1990,
5087,
4300,
29898,
3318,
1125,
13,
1678,
822,
4770,
2344,
12035,
1311,
1125,
13,
4706,
1583,
29889,
2271,
353,
525,
991,
597,
21652,
29889,
3608,
29889,
18038,
29914,
21652,
29918,
29874,
29914,
14369,
29915,
13,
4706,
1583,
29889,
29911,
29968,
29968,
353,
376,
29946,
29941,
29946,
29953,
29955,
29946,
29889,
29929,
29953,
29946,
29953,
29941,
29941,
29945,
29947,
29908,
29871,
396,
29871,
236,
157,
146,
30594,
30769,
30417,
30682,
30815,
31383,
30698,
31100,
30374,
30210,
29911,
29968,
29968,
30959,
13,
13,
4706,
1583,
29889,
6672,
353,
426,
13,
9651,
376,
16044,
1115,
376,
3877,
29930,
613,
13,
9651,
376,
16044,
29899,
11675,
1115,
376,
17599,
29899,
13778,
29892,
17599,
29936,
29939,
29922,
29900,
29889,
29929,
613,
13,
9651,
376,
21509,
1115,
376,
29940,
1367,
29922,
29896,
29947,
29947,
29922,
29966,
10818,
28341,
13,
9651,
376,
20275,
261,
1115,
376,
991,
597,
21652,
29889,
3608,
29889,
18038,
29914,
613,
13,
9651,
376,
1792,
29899,
14748,
1115,
376,
29924,
2112,
2911,
29914,
29945,
29889,
29900,
313,
7685,
405,
29911,
29871,
29896,
29900,
29889,
29900,
29936,
8892,
29953,
29946,
29936,
921,
29953,
29946,
29897,
12113,
3609,
13117,
29914,
29945,
29941,
29955,
29889,
29941,
29953,
313,
29968,
7020,
29892,
763,
1879,
27604,
29897,
10228,
29914,
29955,
29945,
29889,
29900,
29889,
29941,
29955,
29955,
29900,
29889,
29896,
29946,
29906,
24544,
29914,
29945,
29941,
29955,
29889,
29941,
29953,
613,
13,
9651,
376,
29916,
29899,
4645,
29899,
1272,
1115,
376,
29907,
29967,
29968,
29906,
29891,
29984,
29923,
29902,
29886,
29931,
29890,
29967,
29909,
29984,
29926,
29923,
29873,
808,
5371,
29968,
3487,
4790,
29923,
29902,
29939,
29968,
21738,
29909,
29984,
29875,
29945,
29886,
1111,
5371,
29931,
29954,
1460,
29887,
29923,
29902,
29946,
29939,
29926,
29968,
29909,
29984,
29926,
29916,
29939,
1111,
5371,
29967,
3305,
29887,
29923,
29902,
1362,
29941,
29968,
29909,
29984,
26359,
29892,
13,
4706,
500,
13,
13,
4706,
1583,
29889,
1272,
353,
426,
13,
9651,
376,
4645,
1115,
376,
2676,
932,
613,
29871,
396,
29871,
31359,
30909,
31222,
31610,
235,
177,
194,
31658,
31520,
31358,
30943,
13,
9651,
376,
2536,
1115,
376,
6921,
613,
29871,
396,
29871,
31193,
31505,
31243,
29892,
6921,
30746,
30858,
31272,
31112,
31173,
30688,
30846,
235,
178,
137,
232,
139,
174,
13,
9651,
376,
15206,
1115,
376,
264,
613,
29871,
396,
29871,
234,
194,
190,
235,
178,
148,
30210,
30895,
31062,
31505,
31243,
13,
9651,
376,
4415,
1115,
376,
17599,
29899,
13778,
613,
29871,
396,
29871,
30967,
30806,
31505,
31243,
31333,
30275,
30333,
30214,
233,
178,
152,
234,
174,
162,
4219,
30769,
30392,
18038,
30822,
234,
191,
131,
30743,
30214,
31238,
30413,
31905,
30630,
30356,
30313,
30743,
13,
9651,
376,
6008,
1115,
6796,
271,
613,
376,
6448,
613,
376,
735,
613,
376,
430,
613,
376,
3487,
613,
376,
29939,
1113,
613,
376,
13975,
613,
376,
1758,
613,
376,
893,
613,
376,
29873,
12436,
29871,
396,
11636,
30746,
30858,
30698,
31376,
31520,
31358,
30943,
31086,
30742,
30210,
30354,
30763,
30832,
30883,
13,
9651,
376,
327,
29888,
1115,
376,
29906,
613,
13,
9651,
376,
893,
295,
1115,
376,
29900,
613,
13,
9651,
376,
1372,
295,
1115,
376,
29900,
613,
13,
9651,
376,
12192,
1115,
376,
29896,
613,
13,
9651,
376,
11178,
1115,
12633,
29871,
396,
29871,
31112,
31173,
31520,
31358,
30943,
30437,
233,
163,
187,
30783,
30210,
6979,
13,
9651,
376,
29939,
1115,
5124,
29871,
396,
29871,
232,
193,
136,
234,
194,
190,
235,
178,
148,
30210,
30578,
31277,
31767,
13,
4706,
500,
13,
13,
4706,
411,
1722,
877,
6979,
29889,
1315,
742,
525,
29878,
742,
8025,
2433,
9420,
29899,
29947,
1495,
408,
285,
29901,
13,
9651,
1583,
29889,
1315,
29918,
7692,
353,
2279,
1315,
29889,
12198,
29898,
29888,
29889,
949,
3101,
13,
13,
1678,
822,
2767,
29918,
29911,
29968,
29968,
29898,
1311,
1125,
13,
4706,
3142,
353,
376,
991,
597,
21652,
29889,
3608,
29889,
18038,
12975,
13,
13,
4706,
12428,
353,
3142,
1982,
29889,
3827,
29889,
3089,
29898,
2271,
29922,
2271,
29892,
9066,
29922,
1311,
29889,
6672,
29897,
13,
4706,
1813,
29918,
4993,
353,
3142,
1982,
29889,
3827,
29889,
332,
417,
2238,
29898,
7971,
467,
949,
2141,
13808,
703,
9420,
29899,
29947,
1159,
13,
13,
4706,
1583,
29889,
29911,
29968,
29968,
353,
337,
29889,
2886,
497,
29898,
29878,
29908,
29873,
6859,
11283,
4197,
29900,
29899,
29929,
29962,
3124,
7226,
29900,
29899,
29929,
10062,
16029,
613,
1813,
29918,
4993,
9601,
29900,
29962,
13,
13,
1678,
822,
3386,
29918,
2271,
29898,
1311,
1125,
13,
4706,
2967,
353,
1583,
29889,
2271,
718,
525,
17901,
13,
4706,
363,
1820,
297,
1583,
29889,
1272,
29901,
13,
9651,
565,
338,
8758,
29898,
1311,
29889,
1272,
29961,
1989,
1402,
1051,
1125,
13,
18884,
2967,
353,
2967,
718,
376,
6008,
543,
718,
376,
29987,
6008,
29569,
7122,
29898,
1311,
29889,
1272,
29961,
1989,
2314,
718,
376,
29987,
29908,
13,
9651,
1683,
29901,
13,
18884,
2967,
353,
2967,
718,
1820,
718,
525,
2433,
718,
1583,
29889,
1272,
29961,
1989,
29962,
718,
525,
29987,
29915,
13,
4706,
2967,
353,
2967,
7503,
29899,
29896,
29962,
13,
4706,
736,
2967,
13,
13,
1678,
822,
2346,
29898,
1311,
29892,
3855,
29892,
6361,
29918,
3166,
2433,
742,
6361,
29918,
517,
2433,
29374,
13,
4706,
1583,
29889,
1272,
1839,
29939,
2033,
353,
3142,
1982,
29889,
5510,
29889,
1396,
29898,
29939,
29897,
13,
4706,
1583,
29889,
1272,
1839,
11178,
2033,
353,
1583,
29889,
1315,
29918,
7692,
29889,
4804,
877,
827,
742,
3855,
29892,
1583,
29889,
29911,
29968,
29968,
29897,
13,
4706,
565,
6361,
29918,
3166,
29901,
13,
9651,
1583,
29889,
1272,
1839,
2536,
2033,
353,
6361,
29918,
3166,
13,
4706,
565,
6361,
29918,
517,
29901,
13,
9651,
1583,
29889,
1272,
1839,
15206,
2033,
353,
6361,
29918,
517,
13,
4706,
3142,
353,
1583,
29889,
11433,
29918,
2271,
580,
13,
4706,
12428,
353,
3142,
1982,
29889,
3827,
29889,
3089,
29898,
2271,
29922,
2271,
29892,
9066,
29922,
1311,
29889,
6672,
29897,
13,
4706,
2933,
353,
4390,
29889,
18132,
29898,
2271,
1982,
29889,
3827,
29889,
332,
417,
2238,
29898,
7971,
467,
949,
2141,
13808,
703,
9420,
29899,
29947,
5783,
13,
4706,
1596,
29898,
5327,
29961,
29900,
3816,
29900,
3816,
29900,
2314,
13,
4706,
565,
2933,
29961,
29896,
29962,
338,
451,
6213,
29901,
13,
9651,
1596,
877,
636,
5578,
800,
363,
1734,
1495,
13,
9651,
396,
1596,
29898,
29878,
29961,
29896,
2314,
13,
9651,
2479,
29918,
3286,
29880,
800,
29898,
5327,
29961,
29896,
2314,
13,
13,
1990,
4103,
29907,
492,
29898,
3318,
1125,
13,
1678,
822,
6987,
29898,
1311,
1125,
13,
4706,
9995,
13,
4706,
395,
11431,
1688,
29918,
3286,
29918,
29906,
29889,
2272,
6987,
13,
4706,
584,
2457,
29901,
13,
4706,
9995,
13,
4706,
5386,
3286,
353,
5087,
4300,
580,
13,
4706,
5386,
3286,
29889,
5504,
29918,
29911,
29968,
29968,
580,
29871,
396,
29871,
31901,
30886,
31366,
30783,
31133,
30651,
30822,
30698,
30980,
233,
176,
168,
31100,
30374,
30287,
30557,
29911,
29968,
29968,
30959,
13,
4706,
931,
29889,
17059,
29898,
8172,
29889,
29590,
29898,
29900,
29889,
29900,
29945,
29892,
29871,
29900,
29889,
29906,
29900,
876,
13,
4706,
1426,
353,
525,
30163,
30480,
30611,
30138,
30480,
30159,
30112,
30163,
222,
142,
30112,
30195,
30480,
30172,
222,
138,
29915,
13,
4706,
5386,
3286,
29889,
1972,
29898,
726,
29892,
525,
688,
742,
525,
264,
1495,
29871,
396,
29871,
31735,
31439,
30210,
30895,
31062,
31505,
31243,
30392,
31144,
31505,
30214,
30847,
30801,
30698,
234,
194,
190,
235,
178,
148,
30780,
31149,
31221,
31505,
31243,
31088,
30688,
30448,
31273,
31264,
30990,
31370,
31125,
30354,
13,
13,
4706,
931,
29889,
17059,
29898,
8172,
29889,
29590,
29898,
29900,
29889,
29900,
29945,
29892,
29871,
29900,
29889,
29906,
29900,
876,
13,
13,
4706,
396,
5386,
3286,
353,
5087,
4300,
580,
13,
4706,
5386,
3286,
29889,
5504,
29918,
29911,
29968,
29968,
580,
13,
4706,
931,
29889,
17059,
29898,
8172,
29889,
29590,
29898,
29900,
29889,
29900,
29945,
29892,
29871,
29900,
29889,
29906,
29900,
876,
13,
4706,
5386,
3286,
29889,
1972,
877,
30919,
31076,
742,
525,
17599,
742,
525,
264,
1495,
13,
13,
1678,
822,
1301,
29898,
1311,
29892,
269,
1237,
29892,
6361,
1125,
13,
4706,
9995,
13,
4706,
395,
11431,
1688,
29918,
3286,
29918,
29906,
29889,
2272,
1301,
525,
29949,
593,
331,
302,
7173,
285,
466,
29629,
394,
4346,
6102,
1055,
1375,
2350,
17132,
4568,
6169,
19592,
13,
4706,
395,
11431,
1688,
29918,
3286,
29918,
29906,
29889,
2272,
1301,
525,
30163,
30480,
30611,
30138,
30480,
30159,
30112,
30163,
222,
142,
30112,
30195,
30480,
30172,
222,
138,
29915,
318,
29887,
13,
13,
4706,
584,
3207,
269,
1237,
29901,
13,
4706,
584,
3207,
6361,
29901,
13,
4706,
584,
2457,
29901,
13,
4706,
9995,
13,
4706,
515,
3142,
1982,
29889,
2704,
1053,
501,
29934,
1307,
24616,
13,
4706,
363,
302,
297,
3464,
29898,
29941,
1125,
13,
9651,
1018,
29901,
13,
18884,
5386,
3286,
353,
5087,
4300,
580,
13,
18884,
5386,
3286,
29889,
5504,
29918,
29911,
29968,
29968,
580,
13,
18884,
396,
931,
29889,
17059,
29898,
8172,
29889,
29590,
29898,
29900,
29889,
29900,
29945,
29892,
29871,
29900,
29889,
29906,
29900,
876,
13,
18884,
5386,
3286,
29889,
1972,
29898,
29879,
1237,
29892,
6361,
29892,
525,
264,
1495,
13,
18884,
2867,
13,
9651,
5174,
501,
29934,
1307,
24616,
29901,
13,
18884,
1596,
877,
636,
4480,
304,
337,
2202,
1495,
13,
18884,
931,
29889,
17059,
29898,
8172,
29889,
29590,
29898,
29900,
29889,
29900,
29945,
29892,
29871,
29900,
29889,
29906,
29900,
876,
13,
18884,
6773,
13,
13,
361,
4770,
978,
1649,
1275,
525,
1649,
3396,
1649,
2396,
13,
1678,
1053,
3974,
13,
1678,
3974,
29889,
18654,
29898,
4300,
29907,
492,
29897,
13,
13,
2
] |
installer/plugins/apt.py | ssbanerje/dotfiles | 5 | 182808 | <gh_stars>1-10
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import subprocess
import dotbot
class Apt(dotbot.Plugin):
_updateDirective = 'aptupdate'
_aptDirective = 'apt'
def __init__(self, context):
super(Apt, self).__init__(context)
self._sup_stdout = False if context.options().verbose > 0 else True
self._sup_stderr = False
def can_handle(self, directive):
return directive in [self._aptDirective, self._updateDirective]
def handle(self, directive, data):
if directive == self._updateDirective:
return self._run_update()
elif directive == self._aptDirective:
return self._install_packages(data)
else:
raise ValueError('Cannot handle this directive %s' % directive)
def _run_update(self):
self._log.info('Updating list of packages')
return self._run_command('apt update', True, False) == 0
def _install(self, p):
self._log.info('Installing %s' % p)
res = self._run_command('apt install --yes ' + p,
self._sup_stdout, self._sup_stderr)
if res != 0:
self._log.warning('Could not install %s' % p)
return False
else:
return True
def _install_packages(self, data):
pre_commands = []
post_commands = []
packages = []
for p in data:
if isinstance(p, str):
packages.append(p)
elif isinstance(p, dict):
n, o = list(p.items())[0]
packages.append(n)
try:
for c in o['shell_before']:
pre_commands.append(c)
except KeyError:
pass
try:
for c in o['shell_after']:
post_commands.append(c)
except KeyError:
pass
pkgs = ' '.join(packages)
self._log.info('Running pre-installation commands')
res = True
for c in pre_commands:
self._log.debug('Running pre-installation command: ' + c)
res = res and (self._run_command(
c, self._sup_stdout, self._sup_stderr) == 0)
if not res:
self._log.error('Could not run command: ' + c)
return False
self._log.debug('Installing packages: ' + pkgs)
res = res and self._install(pkgs)
if not res:
self._log.error('Could not install packages: ' + pkgs)
return False
for c in post_commands:
self._log.debug('Running post-installation command: ' + c)
res = res and (self._run_command(
c, self._sup_stdout, self._sup_stderr) == 0)
if not res:
self._log.error('Could not run command: ' + c)
return False
return res
def _run_command(self, cmd, sup_stdout=True, sup_stderr=False):
cmd_prefix = 'sudo -E ' if os.geteuid() != 0 else ''
stdout = subprocess.DEVNULL if sup_stdout else None
stderr = subprocess.DEVNULL if sup_stderr else None
cwd = self._context.base_directory()
self._log.debug('Running command: ' + cmd)
return subprocess.call(cmd_prefix + cmd, stdout=stdout, stderr=stderr, shell=True, cwd=cwd)
| [
1,
529,
12443,
29918,
303,
1503,
29958,
29896,
29899,
29896,
29900,
13,
29937,
14708,
4855,
29914,
2109,
29914,
6272,
3017,
13,
29937,
448,
29930,
29899,
14137,
29901,
23616,
29899,
29947,
448,
29930,
29899,
13,
13,
5215,
2897,
13,
5215,
1014,
5014,
13,
13,
5215,
8329,
7451,
13,
13,
13,
1990,
319,
415,
29898,
6333,
7451,
29889,
16288,
1125,
13,
1678,
903,
5504,
17392,
573,
353,
525,
2156,
5504,
29915,
13,
1678,
903,
2156,
17392,
573,
353,
525,
2156,
29915,
13,
13,
1678,
822,
4770,
2344,
12035,
1311,
29892,
3030,
1125,
13,
4706,
2428,
29898,
29909,
415,
29892,
1583,
467,
1649,
2344,
12035,
4703,
29897,
13,
4706,
1583,
3032,
12587,
29918,
25393,
353,
7700,
565,
3030,
29889,
6768,
2141,
369,
15828,
1405,
29871,
29900,
1683,
5852,
13,
4706,
1583,
3032,
12587,
29918,
303,
20405,
353,
7700,
13,
13,
1678,
822,
508,
29918,
8411,
29898,
1311,
29892,
17041,
1125,
13,
4706,
736,
17041,
297,
518,
1311,
3032,
2156,
17392,
573,
29892,
1583,
3032,
5504,
17392,
573,
29962,
13,
13,
1678,
822,
4386,
29898,
1311,
29892,
17041,
29892,
848,
1125,
13,
4706,
565,
17041,
1275,
1583,
3032,
5504,
17392,
573,
29901,
13,
9651,
736,
1583,
3032,
3389,
29918,
5504,
580,
13,
4706,
25342,
17041,
1275,
1583,
3032,
2156,
17392,
573,
29901,
13,
9651,
736,
1583,
3032,
6252,
29918,
8318,
29898,
1272,
29897,
13,
4706,
1683,
29901,
13,
9651,
12020,
7865,
2392,
877,
29089,
4386,
445,
17041,
1273,
29879,
29915,
1273,
17041,
29897,
13,
13,
1678,
822,
903,
3389,
29918,
5504,
29898,
1311,
1125,
13,
4706,
1583,
3032,
1188,
29889,
3888,
877,
3373,
26747,
1051,
310,
9741,
1495,
13,
4706,
736,
1583,
3032,
3389,
29918,
6519,
877,
2156,
2767,
742,
5852,
29892,
7700,
29897,
1275,
29871,
29900,
13,
13,
1678,
822,
903,
6252,
29898,
1311,
29892,
282,
1125,
13,
4706,
1583,
3032,
1188,
29889,
3888,
877,
23271,
292,
1273,
29879,
29915,
1273,
282,
29897,
13,
4706,
620,
353,
1583,
3032,
3389,
29918,
6519,
877,
2156,
2601,
1192,
3582,
525,
718,
282,
29892,
13,
462,
18884,
1583,
3032,
12587,
29918,
25393,
29892,
1583,
3032,
12587,
29918,
303,
20405,
29897,
13,
4706,
565,
620,
2804,
29871,
29900,
29901,
13,
9651,
1583,
3032,
1188,
29889,
27392,
877,
23323,
451,
2601,
1273,
29879,
29915,
1273,
282,
29897,
13,
9651,
736,
7700,
13,
4706,
1683,
29901,
13,
9651,
736,
5852,
13,
13,
1678,
822,
903,
6252,
29918,
8318,
29898,
1311,
29892,
848,
1125,
13,
4706,
758,
29918,
26381,
353,
5159,
13,
4706,
1400,
29918,
26381,
353,
5159,
13,
4706,
9741,
353,
5159,
13,
4706,
363,
282,
297,
848,
29901,
13,
9651,
565,
338,
8758,
29898,
29886,
29892,
851,
1125,
13,
18884,
9741,
29889,
4397,
29898,
29886,
29897,
13,
9651,
25342,
338,
8758,
29898,
29886,
29892,
9657,
1125,
13,
18884,
302,
29892,
288,
353,
1051,
29898,
29886,
29889,
7076,
3101,
29961,
29900,
29962,
13,
18884,
9741,
29889,
4397,
29898,
29876,
29897,
13,
18884,
1018,
29901,
13,
462,
1678,
363,
274,
297,
288,
1839,
15903,
29918,
11083,
2033,
29901,
13,
462,
4706,
758,
29918,
26381,
29889,
4397,
29898,
29883,
29897,
13,
18884,
5174,
7670,
2392,
29901,
13,
462,
1678,
1209,
13,
18884,
1018,
29901,
13,
462,
1678,
363,
274,
297,
288,
1839,
15903,
29918,
7045,
2033,
29901,
13,
462,
4706,
1400,
29918,
26381,
29889,
4397,
29898,
29883,
29897,
13,
18884,
5174,
7670,
2392,
29901,
13,
462,
1678,
1209,
13,
4706,
282,
29895,
3174,
353,
525,
15300,
7122,
29898,
8318,
29897,
13,
13,
4706,
1583,
3032,
1188,
29889,
3888,
877,
27795,
758,
29899,
6252,
362,
8260,
1495,
13,
4706,
620,
353,
5852,
13,
4706,
363,
274,
297,
758,
29918,
26381,
29901,
13,
9651,
1583,
3032,
1188,
29889,
8382,
877,
27795,
758,
29899,
6252,
362,
1899,
29901,
525,
718,
274,
29897,
13,
9651,
620,
353,
620,
322,
313,
1311,
3032,
3389,
29918,
6519,
29898,
13,
18884,
274,
29892,
1583,
3032,
12587,
29918,
25393,
29892,
1583,
3032,
12587,
29918,
303,
20405,
29897,
1275,
29871,
29900,
29897,
13,
9651,
565,
451,
620,
29901,
13,
18884,
1583,
3032,
1188,
29889,
2704,
877,
23323,
451,
1065,
1899,
29901,
525,
718,
274,
29897,
13,
18884,
736,
7700,
13,
13,
4706,
1583,
3032,
1188,
29889,
8382,
877,
23271,
292,
9741,
29901,
525,
718,
282,
29895,
3174,
29897,
13,
4706,
620,
353,
620,
322,
1583,
3032,
6252,
29898,
20571,
3174,
29897,
13,
4706,
565,
451,
620,
29901,
13,
9651,
1583,
3032,
1188,
29889,
2704,
877,
23323,
451,
2601,
9741,
29901,
525,
718,
282,
29895,
3174,
29897,
13,
9651,
736,
7700,
13,
13,
4706,
363,
274,
297,
1400,
29918,
26381,
29901,
13,
9651,
1583,
3032,
1188,
29889,
8382,
877,
27795,
1400,
29899,
6252,
362,
1899,
29901,
525,
718,
274,
29897,
13,
9651,
620,
353,
620,
322,
313,
1311,
3032,
3389,
29918,
6519,
29898,
13,
18884,
274,
29892,
1583,
3032,
12587,
29918,
25393,
29892,
1583,
3032,
12587,
29918,
303,
20405,
29897,
1275,
29871,
29900,
29897,
13,
9651,
565,
451,
620,
29901,
13,
18884,
1583,
3032,
1188,
29889,
2704,
877,
23323,
451,
1065,
1899,
29901,
525,
718,
274,
29897,
13,
18884,
736,
7700,
13,
13,
4706,
736,
620,
13,
13,
1678,
822,
903,
3389,
29918,
6519,
29898,
1311,
29892,
9920,
29892,
13159,
29918,
25393,
29922,
5574,
29892,
13159,
29918,
303,
20405,
29922,
8824,
1125,
13,
4706,
9920,
29918,
13506,
353,
525,
15360,
448,
29923,
525,
565,
2897,
29889,
657,
29872,
5416,
580,
2804,
29871,
29900,
1683,
6629,
13,
4706,
27591,
353,
1014,
5014,
29889,
2287,
29963,
10074,
565,
13159,
29918,
25393,
1683,
6213,
13,
4706,
380,
20405,
353,
1014,
5014,
29889,
2287,
29963,
10074,
565,
13159,
29918,
303,
20405,
1683,
6213,
13,
4706,
274,
9970,
353,
1583,
3032,
4703,
29889,
3188,
29918,
12322,
580,
13,
4706,
1583,
3032,
1188,
29889,
8382,
877,
27795,
1899,
29901,
525,
718,
9920,
29897,
13,
4706,
736,
1014,
5014,
29889,
4804,
29898,
9006,
29918,
13506,
718,
9920,
29892,
27591,
29922,
25393,
29892,
380,
20405,
29922,
303,
20405,
29892,
6473,
29922,
5574,
29892,
274,
9970,
29922,
29883,
9970,
29897,
13,
2
] |
second_neural_network/generator_second_neural_network.py | ADCenterNetwork/discern-fmk | 0 | 137753 | import numpy
import os
import torch as torch
import torch.nn as nn
import torch.nn.functional as F
from utils.node_object_creator import *
from layers.coding_layer import Coding_layer
from layers.convolutional_layer import Convolutional_layer
from layers.pooling_layer import Pooling_layer
from layers.dynamic_pooling import Max_pooling_layer, Dynamic_pooling_layer
from layers.hidden_layer import Hidden_layer
from second_neural_network.second_neural_network import SecondNeuralNetwork
from utils.utils import writer, plot_confusion_matrix, conf_matrix, accuracy, bad_predicted_files
class Generator_second_neural_network(SecondNeuralNetwork):
def __init__(self, device, pattern, n = 20, m = 4, pooling = 'one-way pooling'):
super().__init__(device, n, m)
self.pooling = pooling
self.pattern = pattern
def matrices_and_layers_initialization(self):
# Initialize the layers
self.conv = Convolutional_layer(self.vector_size, self.device, features_size = self.feature_size)
self.hidden = Hidden_layer(self.feature_size)
if self.pooling == 'three-way pooling':
self.dynamic = Dynamic_pooling_layer()
self.max_pool = Max_pooling_layer()
else:
self.pooling = Pooling_layer()
# Initialize matrices and bias
self.w_t, self.w_l, self.w_r, self.b_conv = self.conv.initialize_matrices_and_bias()
if self.pooling == 'three-way pooling':
self.w_hidden, self.b_hidden = self.hidden.initialize_matrices_and_bias()
else:
self.w_hidden, self.b_hidden = self.hidden.initialize_matrices_and_bias()
params = [self.w_t, self.w_l, self.w_r, self.b_conv, self.w_hidden, self.b_hidden]
return params
def layers(self, vector_representation_params):
# Parameters of the first neural network
ls_nodes, w_l_code, w_r_code, b_code = vector_representation_params
del w_l_code
del w_r_code
del b_code
ls_nodes = self.conv.convolutional_layer(ls_nodes)
if self.pooling == 'three-way pooling':
dict_sibling = None
self.max_pool.max_pooling(ls_nodes)
vector = self.dynamic.three_way_pooling(ls_nodes, dict_sibling)
else:
vector = self.pooling.pooling_layer(ls_nodes)
del ls_nodes
output = self.hidden.hidden_layer(vector)
del vector
return output
def save(self):
'''Save all the trained parameters into a csv file'''
directory = os.path.join('params', self.pattern)
if not os.path.exists(directory):
os.mkdir(directory)
# save w_t into csv file
w_t = self.w_t.detach().numpy()
numpy.savetxt(os.path.join(directory, "w_t.csv"), w_t, delimiter = ",")
# save w_l into csv file
w_l = self.w_l.detach().numpy()
numpy.savetxt(os.path.join(directory, "w_l.csv"), w_l, delimiter = ",")
# save w_r into csv file
w_r = self.w_r.detach().numpy()
numpy.savetxt(os.path.join(directory, "w_r.csv"), w_r, delimiter = ",")
# save b_conv into csv file
b_conv = self.b_conv.detach().numpy()
numpy.savetxt(os.path.join(directory, "b_conv.csv"), b_conv, delimiter = ",")
# save w_hidden into csv file
w_hidden = self.w_hidden.detach().numpy()
numpy.savetxt(os.path.join(directory, "w_hidden.csv"), w_hidden, delimiter = ",")
# save b_conv into csv file
b_hidden = self.b_hidden.detach().numpy()
numpy.savetxt(os.path.join(directory, "b_hidden.csv"), b_hidden, delimiter = ",")
| [
1,
1053,
12655,
13,
5215,
2897,
13,
5215,
4842,
305,
408,
4842,
305,
13,
5215,
4842,
305,
29889,
15755,
408,
302,
29876,
13,
5215,
4842,
305,
29889,
15755,
29889,
2220,
284,
408,
383,
13,
13,
3166,
3667,
29879,
29889,
3177,
29918,
3318,
29918,
1037,
1061,
1053,
334,
13,
3166,
15359,
29889,
29883,
3689,
29918,
13148,
1053,
315,
3689,
29918,
13148,
13,
3166,
15359,
29889,
535,
4068,
284,
29918,
13148,
1053,
1281,
4068,
284,
29918,
13148,
13,
3166,
15359,
29889,
10109,
292,
29918,
13148,
1053,
28625,
292,
29918,
13148,
13,
3166,
15359,
29889,
16626,
29918,
10109,
292,
1053,
5918,
29918,
10109,
292,
29918,
13148,
29892,
27747,
29918,
10109,
292,
29918,
13148,
13,
3166,
15359,
29889,
10892,
29918,
13148,
1053,
379,
4215,
29918,
13148,
13,
3166,
1473,
29918,
484,
3631,
29918,
11618,
29889,
7496,
29918,
484,
3631,
29918,
11618,
1053,
6440,
8139,
3631,
13724,
13,
3166,
3667,
29879,
29889,
13239,
1053,
9227,
29892,
6492,
29918,
5527,
3958,
29918,
5344,
29892,
1970,
29918,
5344,
29892,
13600,
29892,
4319,
29918,
11965,
18186,
29918,
5325,
13,
13,
13,
1990,
3251,
1061,
29918,
7496,
29918,
484,
3631,
29918,
11618,
29898,
11863,
8139,
3631,
13724,
1125,
13,
13,
1678,
822,
4770,
2344,
12035,
1311,
29892,
4742,
29892,
4766,
29892,
302,
353,
29871,
29906,
29900,
29892,
286,
353,
29871,
29946,
29892,
11565,
292,
353,
525,
650,
29899,
1582,
11565,
292,
29374,
13,
4706,
2428,
2141,
1649,
2344,
12035,
10141,
29892,
302,
29892,
286,
29897,
13,
4706,
1583,
29889,
10109,
292,
353,
11565,
292,
13,
4706,
1583,
29889,
11037,
353,
4766,
13,
13,
268,
13,
1678,
822,
13516,
29918,
392,
29918,
29277,
29918,
11228,
2133,
29898,
1311,
1125,
13,
4706,
396,
25455,
278,
15359,
13,
4706,
1583,
29889,
20580,
353,
1281,
4068,
284,
29918,
13148,
29898,
1311,
29889,
8111,
29918,
2311,
29892,
1583,
29889,
10141,
29892,
5680,
29918,
2311,
353,
1583,
29889,
14394,
29918,
2311,
29897,
13,
4706,
1583,
29889,
10892,
353,
379,
4215,
29918,
13148,
29898,
1311,
29889,
14394,
29918,
2311,
29897,
13,
4706,
565,
1583,
29889,
10109,
292,
1275,
525,
17536,
29899,
1582,
11565,
292,
2396,
13,
9651,
1583,
29889,
16626,
353,
27747,
29918,
10109,
292,
29918,
13148,
580,
13,
9651,
1583,
29889,
3317,
29918,
10109,
353,
5918,
29918,
10109,
292,
29918,
13148,
580,
13,
4706,
1683,
29901,
13,
9651,
1583,
29889,
10109,
292,
353,
28625,
292,
29918,
13148,
580,
13,
13,
4706,
396,
25455,
13516,
322,
24003,
13,
4706,
1583,
29889,
29893,
29918,
29873,
29892,
1583,
29889,
29893,
29918,
29880,
29892,
1583,
29889,
29893,
29918,
29878,
29892,
1583,
29889,
29890,
29918,
20580,
353,
1583,
29889,
20580,
29889,
24926,
29918,
2922,
11669,
29918,
392,
29918,
29890,
3173,
580,
13,
4706,
565,
1583,
29889,
10109,
292,
1275,
525,
17536,
29899,
1582,
11565,
292,
2396,
13,
9651,
1583,
29889,
29893,
29918,
10892,
29892,
1583,
29889,
29890,
29918,
10892,
353,
1583,
29889,
10892,
29889,
24926,
29918,
2922,
11669,
29918,
392,
29918,
29890,
3173,
580,
13,
4706,
1683,
29901,
13,
9651,
1583,
29889,
29893,
29918,
10892,
29892,
1583,
29889,
29890,
29918,
10892,
353,
1583,
29889,
10892,
29889,
24926,
29918,
2922,
11669,
29918,
392,
29918,
29890,
3173,
580,
13,
13,
4706,
8636,
353,
518,
1311,
29889,
29893,
29918,
29873,
29892,
1583,
29889,
29893,
29918,
29880,
29892,
1583,
29889,
29893,
29918,
29878,
29892,
1583,
29889,
29890,
29918,
20580,
29892,
1583,
29889,
29893,
29918,
10892,
29892,
1583,
29889,
29890,
29918,
10892,
29962,
13,
13,
4706,
736,
8636,
13,
13,
13,
1678,
822,
15359,
29898,
1311,
29892,
4608,
29918,
276,
26081,
29918,
7529,
1125,
13,
4706,
396,
12662,
2699,
310,
278,
937,
19677,
3564,
13,
4706,
19375,
29918,
18010,
29892,
281,
29918,
29880,
29918,
401,
29892,
281,
29918,
29878,
29918,
401,
29892,
289,
29918,
401,
353,
4608,
29918,
276,
26081,
29918,
7529,
13,
4706,
628,
281,
29918,
29880,
29918,
401,
13,
4706,
628,
281,
29918,
29878,
29918,
401,
13,
4706,
628,
289,
29918,
401,
13,
4706,
19375,
29918,
18010,
353,
1583,
29889,
20580,
29889,
535,
4068,
284,
29918,
13148,
29898,
3137,
29918,
18010,
29897,
13,
4706,
565,
1583,
29889,
10109,
292,
1275,
525,
17536,
29899,
1582,
11565,
292,
2396,
13,
9651,
9657,
29918,
29879,
747,
1847,
353,
6213,
13,
9651,
1583,
29889,
3317,
29918,
10109,
29889,
3317,
29918,
10109,
292,
29898,
3137,
29918,
18010,
29897,
13,
9651,
4608,
353,
1583,
29889,
16626,
29889,
17536,
29918,
1582,
29918,
10109,
292,
29898,
3137,
29918,
18010,
29892,
9657,
29918,
29879,
747,
1847,
29897,
13,
4706,
1683,
29901,
13,
9651,
4608,
353,
1583,
29889,
10109,
292,
29889,
10109,
292,
29918,
13148,
29898,
3137,
29918,
18010,
29897,
13,
4706,
628,
19375,
29918,
18010,
13,
4706,
1962,
353,
1583,
29889,
10892,
29889,
10892,
29918,
13148,
29898,
8111,
29897,
13,
4706,
628,
4608,
13,
13,
4706,
736,
1962,
13,
13,
13,
1678,
822,
4078,
29898,
1311,
1125,
13,
4706,
14550,
11371,
599,
278,
16370,
4128,
964,
263,
11799,
934,
12008,
13,
4706,
3884,
353,
2897,
29889,
2084,
29889,
7122,
877,
7529,
742,
1583,
29889,
11037,
29897,
13,
4706,
565,
451,
2897,
29889,
2084,
29889,
9933,
29898,
12322,
1125,
13,
9651,
2897,
29889,
11256,
3972,
29898,
12322,
29897,
13,
13,
4706,
396,
4078,
281,
29918,
29873,
964,
11799,
934,
13,
4706,
281,
29918,
29873,
353,
1583,
29889,
29893,
29918,
29873,
29889,
4801,
496,
2141,
23749,
580,
13,
4706,
12655,
29889,
29879,
485,
300,
486,
29898,
359,
29889,
2084,
29889,
7122,
29898,
12322,
29892,
376,
29893,
29918,
29873,
29889,
7638,
4968,
281,
29918,
29873,
29892,
28552,
353,
9162,
1159,
13,
13,
4706,
396,
4078,
281,
29918,
29880,
964,
11799,
934,
13,
4706,
281,
29918,
29880,
353,
1583,
29889,
29893,
29918,
29880,
29889,
4801,
496,
2141,
23749,
580,
13,
4706,
12655,
29889,
29879,
485,
300,
486,
29898,
359,
29889,
2084,
29889,
7122,
29898,
12322,
29892,
376,
29893,
29918,
29880,
29889,
7638,
4968,
281,
29918,
29880,
29892,
28552,
353,
9162,
1159,
13,
308,
13,
4706,
396,
4078,
281,
29918,
29878,
964,
11799,
934,
13,
4706,
281,
29918,
29878,
353,
1583,
29889,
29893,
29918,
29878,
29889,
4801,
496,
2141,
23749,
580,
13,
4706,
12655,
29889,
29879,
485,
300,
486,
29898,
359,
29889,
2084,
29889,
7122,
29898,
12322,
29892,
376,
29893,
29918,
29878,
29889,
7638,
4968,
281,
29918,
29878,
29892,
28552,
353,
9162,
1159,
13,
13,
4706,
396,
4078,
289,
29918,
20580,
964,
11799,
934,
13,
4706,
289,
29918,
20580,
353,
1583,
29889,
29890,
29918,
20580,
29889,
4801,
496,
2141,
23749,
580,
13,
4706,
12655,
29889,
29879,
485,
300,
486,
29898,
359,
29889,
2084,
29889,
7122,
29898,
12322,
29892,
376,
29890,
29918,
20580,
29889,
7638,
4968,
289,
29918,
20580,
29892,
28552,
353,
9162,
1159,
13,
13,
4706,
396,
4078,
281,
29918,
10892,
964,
11799,
934,
13,
4706,
281,
29918,
10892,
353,
1583,
29889,
29893,
29918,
10892,
29889,
4801,
496,
2141,
23749,
580,
13,
4706,
12655,
29889,
29879,
485,
300,
486,
29898,
359,
29889,
2084,
29889,
7122,
29898,
12322,
29892,
376,
29893,
29918,
10892,
29889,
7638,
4968,
281,
29918,
10892,
29892,
28552,
353,
9162,
1159,
13,
13,
4706,
396,
4078,
289,
29918,
20580,
964,
11799,
934,
13,
4706,
289,
29918,
10892,
353,
1583,
29889,
29890,
29918,
10892,
29889,
4801,
496,
2141,
23749,
580,
13,
4706,
12655,
29889,
29879,
485,
300,
486,
29898,
359,
29889,
2084,
29889,
7122,
29898,
12322,
29892,
376,
29890,
29918,
10892,
29889,
7638,
4968,
289,
29918,
10892,
29892,
28552,
353,
9162,
1159,
13,
2
] |
tests/examples/minlplib/waterno2_03.py | ouyang-w-19/decogo | 2 | 23511 | <reponame>ouyang-w-19/decogo
# MINLP written by GAMS Convert at 04/21/18 13:55:18
#
# Equation counts
# Total E G L N X C B
# 617 367 103 147 0 0 0 0
#
# Variable counts
# x b i s1s s2s sc si
# Total cont binary integer sos1 sos2 scont sint
# 499 472 27 0 0 0 0 0
# FX 6 6 0 0 0 0 0 0
#
# Nonzero counts
# Total const NL DLL
# 1636 1333 303 0
#
# Reformulation has removed 1 variable and 1 equation
from pyomo.environ import *
model = m = ConcreteModel()
m.b2 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b3 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b4 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b5 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b6 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b7 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b8 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b9 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b10 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b11 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b12 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b13 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b14 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b15 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b16 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b17 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b18 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b19 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b20 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b21 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b22 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b23 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b24 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b25 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b26 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b27 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b28 = Var(within=Binary,bounds=(0,1),initialize=0)
m.x29 = Var(within=Reals,bounds=(-1000,1000),initialize=0)
m.x30 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x31 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x32 = Var(within=Reals,bounds=(-1000,1000),initialize=0)
m.x33 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x34 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x35 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x36 = Var(within=Reals,bounds=(-1000,1000),initialize=0)
m.x37 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x38 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x39 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x40 = Var(within=Reals,bounds=(-1000,1000),initialize=0)
m.x41 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x42 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x43 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x44 = Var(within=Reals,bounds=(-1000,1000),initialize=0)
m.x45 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x46 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x47 = Var(within=Reals,bounds=(-1000,1000),initialize=0)
m.x48 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x49 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x50 = Var(within=Reals,bounds=(-1000,1000),initialize=0)
m.x51 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x52 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x53 = Var(within=Reals,bounds=(-1000,1000),initialize=0)
m.x54 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x55 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x56 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x57 = Var(within=Reals,bounds=(-1000,1000),initialize=0)
m.x58 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x59 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x60 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x61 = Var(within=Reals,bounds=(-1000,1000),initialize=0)
m.x62 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x63 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x64 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x65 = Var(within=Reals,bounds=(-1000,1000),initialize=0)
m.x66 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x67 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x68 = Var(within=Reals,bounds=(-1000,1000),initialize=0)
m.x69 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x70 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x71 = Var(within=Reals,bounds=(-1000,1000),initialize=0)
m.x72 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x73 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x74 = Var(within=Reals,bounds=(-1000,1000),initialize=0)
m.x75 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x76 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x77 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x78 = Var(within=Reals,bounds=(-1000,1000),initialize=0)
m.x79 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x80 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x81 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x82 = Var(within=Reals,bounds=(-1000,1000),initialize=0)
m.x83 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x84 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x85 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x86 = Var(within=Reals,bounds=(-1000,1000),initialize=0)
m.x87 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x88 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x89 = Var(within=Reals,bounds=(-1000,1000),initialize=0)
m.x90 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x91 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x92 = Var(within=Reals,bounds=(-1000,1000),initialize=0)
m.x93 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x94 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x95 = Var(within=Reals,bounds=(0,5),initialize=0)
m.x96 = Var(within=Reals,bounds=(0,5),initialize=0)
m.x97 = Var(within=Reals,bounds=(0,5),initialize=0)
m.x98 = Var(within=Reals,bounds=(0,5),initialize=0)
m.x99 = Var(within=Reals,bounds=(0,2.4),initialize=0)
m.x100 = Var(within=Reals,bounds=(0,5),initialize=0)
m.x101 = Var(within=Reals,bounds=(0,2.4),initialize=0)
m.x102 = Var(within=Reals,bounds=(0,5),initialize=0)
m.x103 = Var(within=Reals,bounds=(0,2.4),initialize=0)
m.x104 = Var(within=Reals,bounds=(0,5),initialize=0)
m.x105 = Var(within=Reals,bounds=(0,2.4),initialize=0)
m.x106 = Var(within=Reals,bounds=(0,5),initialize=0)
m.x107 = Var(within=Reals,bounds=(0,2.4),initialize=0)
m.x108 = Var(within=Reals,bounds=(0,5),initialize=0)
m.x109 = Var(within=Reals,bounds=(0,2.4),initialize=0)
m.x110 = Var(within=Reals,bounds=(0,5),initialize=0)
m.x111 = Var(within=Reals,bounds=(0,5),initialize=0)
m.x112 = Var(within=Reals,bounds=(0,5),initialize=0)
m.x113 = Var(within=Reals,bounds=(0,5),initialize=0)
m.x114 = Var(within=Reals,bounds=(0,1.16),initialize=0)
m.x115 = Var(within=Reals,bounds=(0,5),initialize=0)
m.x116 = Var(within=Reals,bounds=(0,1.16),initialize=0)
m.x117 = Var(within=Reals,bounds=(0,5),initialize=0)
m.x118 = Var(within=Reals,bounds=(0,1.16),initialize=0)
m.x119 = Var(within=Reals,bounds=(0,5),initialize=0)
m.x120 = Var(within=Reals,bounds=(0,5),initialize=0)
m.x121 = Var(within=Reals,bounds=(0,5),initialize=0)
m.x122 = Var(within=Reals,bounds=(3.5,3.5),initialize=3.5)
m.x123 = Var(within=Reals,bounds=(2,5),initialize=2)
m.x124 = Var(within=Reals,bounds=(2,5),initialize=2)
m.x125 = Var(within=Reals,bounds=(2,5),initialize=2)
m.x126 = Var(within=Reals,bounds=(2,5),initialize=2)
m.x127 = Var(within=Reals,bounds=(2,5),initialize=2)
m.x128 = Var(within=Reals,bounds=(4.1,4.1),initialize=4.1)
m.x129 = Var(within=Reals,bounds=(2.5,5),initialize=2.5)
m.x130 = Var(within=Reals,bounds=(2.5,5),initialize=2.5)
m.x131 = Var(within=Reals,bounds=(2.5,5),initialize=2.5)
m.x132 = Var(within=Reals,bounds=(2.5,5),initialize=2.5)
m.x133 = Var(within=Reals,bounds=(2.5,5),initialize=2.5)
m.x134 = Var(within=Reals,bounds=(4,4),initialize=4)
m.x135 = Var(within=Reals,bounds=(2,6),initialize=2)
m.x136 = Var(within=Reals,bounds=(2,6),initialize=2)
m.x137 = Var(within=Reals,bounds=(2,6),initialize=2)
m.x138 = Var(within=Reals,bounds=(2,6),initialize=2)
m.x139 = Var(within=Reals,bounds=(2,6),initialize=2)
m.x140 = Var(within=Reals,bounds=(0,0.8),initialize=0)
m.x141 = Var(within=Reals,bounds=(-1000,1000),initialize=0)
m.x142 = Var(within=Reals,bounds=(0,0.8),initialize=0)
m.x143 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x144 = Var(within=Reals,bounds=(0,0.8),initialize=0)
m.x145 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x146 = Var(within=Reals,bounds=(0,0.8),initialize=0)
m.x147 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x148 = Var(within=Reals,bounds=(0,0.8),initialize=0)
m.x149 = Var(within=Reals,bounds=(-1000,1000),initialize=0)
m.x150 = Var(within=Reals,bounds=(0,0.8),initialize=0)
m.x151 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x152 = Var(within=Reals,bounds=(0,0.8),initialize=0)
m.x153 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x154 = Var(within=Reals,bounds=(0,0.8),initialize=0)
m.x155 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x156 = Var(within=Reals,bounds=(0,0.8),initialize=0)
m.x157 = Var(within=Reals,bounds=(-1000,1000),initialize=0)
m.x158 = Var(within=Reals,bounds=(0,0.5),initialize=0)
m.x159 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x160 = Var(within=Reals,bounds=(0,0.5),initialize=0)
m.x161 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x162 = Var(within=Reals,bounds=(0,0.5),initialize=0)
m.x163 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x164 = Var(within=Reals,bounds=(0,0.5),initialize=0)
m.x165 = Var(within=Reals,bounds=(-1000,1000),initialize=0)
m.x166 = Var(within=Reals,bounds=(0,0.5),initialize=0)
m.x167 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x168 = Var(within=Reals,bounds=(0,0.5),initialize=0)
m.x169 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x170 = Var(within=Reals,bounds=(0,0.7),initialize=0)
m.x171 = Var(within=Reals,bounds=(-1000,1000),initialize=0)
m.x172 = Var(within=Reals,bounds=(0,0.7),initialize=0)
m.x173 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x174 = Var(within=Reals,bounds=(0,0.7),initialize=0)
m.x175 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x176 = Var(within=Reals,bounds=(0,0.7),initialize=0)
m.x177 = Var(within=Reals,bounds=(-1000,1000),initialize=0)
m.x178 = Var(within=Reals,bounds=(0,0.7),initialize=0)
m.x179 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x180 = Var(within=Reals,bounds=(0,0.7),initialize=0)
m.x181 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x182 = Var(within=Reals,bounds=(0,0.58),initialize=0)
m.x183 = Var(within=Reals,bounds=(-1000,1000),initialize=0)
m.x184 = Var(within=Reals,bounds=(0,0.58),initialize=0)
m.x185 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x186 = Var(within=Reals,bounds=(0,0.58),initialize=0)
m.x187 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x188 = Var(within=Reals,bounds=(0,0.58),initialize=0)
m.x189 = Var(within=Reals,bounds=(-1000,1000),initialize=0)
m.x190 = Var(within=Reals,bounds=(0,0.58),initialize=0)
m.x191 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x192 = Var(within=Reals,bounds=(0,0.58),initialize=0)
m.x193 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x194 = Var(within=Reals,bounds=(62,65),initialize=62)
m.x195 = Var(within=Reals,bounds=(62,65),initialize=62)
m.x196 = Var(within=Reals,bounds=(62,65),initialize=62)
m.x197 = Var(within=Reals,bounds=(92.5,95),initialize=92.5)
m.x198 = Var(within=Reals,bounds=(92.5,95),initialize=92.5)
m.x199 = Var(within=Reals,bounds=(92.5,95),initialize=92.5)
m.x200 = Var(within=Reals,bounds=(105,109),initialize=105)
m.x201 = Var(within=Reals,bounds=(105,109),initialize=105)
m.x202 = Var(within=Reals,bounds=(105,109),initialize=105)
m.x203 = Var(within=Reals,bounds=(0,1000),initialize=0)
m.x204 = Var(within=Reals,bounds=(-125,125),initialize=0)
m.x205 = Var(within=Reals,bounds=(0,1000),initialize=0)
m.x206 = Var(within=Reals,bounds=(-125,125),initialize=0)
m.x207 = Var(within=Reals,bounds=(0,1000),initialize=0)
m.x208 = Var(within=Reals,bounds=(-125,125),initialize=0)
m.x209 = Var(within=Reals,bounds=(0,1000),initialize=0)
m.x210 = Var(within=Reals,bounds=(0,1000),initialize=0)
m.x211 = Var(within=Reals,bounds=(-100,100),initialize=0)
m.x212 = Var(within=Reals,bounds=(0,1000),initialize=0)
m.x213 = Var(within=Reals,bounds=(0,1000),initialize=0)
m.x214 = Var(within=Reals,bounds=(-100,100),initialize=0)
m.x215 = Var(within=Reals,bounds=(0,1000),initialize=0)
m.x216 = Var(within=Reals,bounds=(0,1000),initialize=0)
m.x217 = Var(within=Reals,bounds=(-100,100),initialize=0)
m.x218 = Var(within=Reals,bounds=(0,1000),initialize=0)
m.x219 = Var(within=Reals,bounds=(-125,125),initialize=0)
m.x220 = Var(within=Reals,bounds=(0,1000),initialize=0)
m.x221 = Var(within=Reals,bounds=(-125,125),initialize=0)
m.x222 = Var(within=Reals,bounds=(0,1000),initialize=0)
m.x223 = Var(within=Reals,bounds=(-125,125),initialize=0)
m.x224 = Var(within=Reals,bounds=(49,49),initialize=49)
m.x225 = Var(within=Reals,bounds=(-49,1000),initialize=0)
m.x226 = Var(within=Reals,bounds=(49,49),initialize=49)
m.x227 = Var(within=Reals,bounds=(-49,1000),initialize=0)
m.x228 = Var(within=Reals,bounds=(49,49),initialize=49)
m.x229 = Var(within=Reals,bounds=(-49,1000),initialize=0)
m.x230 = Var(within=Reals,bounds=(-65,1000),initialize=0)
m.x231 = Var(within=Reals,bounds=(-65,1000),initialize=0)
m.x232 = Var(within=Reals,bounds=(-65,1000),initialize=0)
m.x233 = Var(within=Reals,bounds=(-95,1000),initialize=0)
m.x234 = Var(within=Reals,bounds=(-95,1000),initialize=0)
m.x235 = Var(within=Reals,bounds=(-95,1000),initialize=0)
m.x236 = Var(within=Reals,bounds=(0.2,0.8),initialize=0.2)
m.x237 = Var(within=Reals,bounds=(0.2,0.8),initialize=0.2)
m.x238 = Var(within=Reals,bounds=(0.2,0.8),initialize=0.2)
m.x239 = Var(within=Reals,bounds=(0.2,0.8),initialize=0.2)
m.x240 = Var(within=Reals,bounds=(0.2,0.8),initialize=0.2)
m.x241 = Var(within=Reals,bounds=(0.2,0.8),initialize=0.2)
m.x242 = Var(within=Reals,bounds=(0.2,0.8),initialize=0.2)
m.x243 = Var(within=Reals,bounds=(0.2,0.8),initialize=0.2)
m.x244 = Var(within=Reals,bounds=(0.2,0.8),initialize=0.2)
m.x245 = Var(within=Reals,bounds=(0.25,0.5),initialize=0.25)
m.x246 = Var(within=Reals,bounds=(0.25,0.5),initialize=0.25)
m.x247 = Var(within=Reals,bounds=(0.25,0.5),initialize=0.25)
m.x248 = Var(within=Reals,bounds=(0.25,0.5),initialize=0.25)
m.x249 = Var(within=Reals,bounds=(0.25,0.5),initialize=0.25)
m.x250 = Var(within=Reals,bounds=(0.25,0.5),initialize=0.25)
m.x251 = Var(within=Reals,bounds=(0.4,0.7),initialize=0.4)
m.x252 = Var(within=Reals,bounds=(0.4,0.7),initialize=0.4)
m.x253 = Var(within=Reals,bounds=(0.4,0.7),initialize=0.4)
m.x254 = Var(within=Reals,bounds=(0.4,0.7),initialize=0.4)
m.x255 = Var(within=Reals,bounds=(0.4,0.7),initialize=0.4)
m.x256 = Var(within=Reals,bounds=(0.4,0.7),initialize=0.4)
m.x257 = Var(within=Reals,bounds=(0.24,0.58),initialize=0.24)
m.x258 = Var(within=Reals,bounds=(0.24,0.58),initialize=0.24)
m.x259 = Var(within=Reals,bounds=(0.24,0.58),initialize=0.24)
m.x260 = Var(within=Reals,bounds=(0.24,0.58),initialize=0.24)
m.x261 = Var(within=Reals,bounds=(0.24,0.58),initialize=0.24)
m.x262 = Var(within=Reals,bounds=(0.24,0.58),initialize=0.24)
m.x263 = Var(within=Reals,bounds=(0.6,1),initialize=0.6)
m.x264 = Var(within=Reals,bounds=(0.6,1),initialize=0.6)
m.x265 = Var(within=Reals,bounds=(0.6,1),initialize=0.6)
m.x266 = Var(within=Reals,bounds=(0.8,1),initialize=0.8)
m.x267 = Var(within=Reals,bounds=(0.8,1),initialize=0.8)
m.x268 = Var(within=Reals,bounds=(0.8,1),initialize=0.8)
m.x269 = Var(within=Reals,bounds=(0.85,1),initialize=0.85)
m.x270 = Var(within=Reals,bounds=(0.85,1),initialize=0.85)
m.x271 = Var(within=Reals,bounds=(0.85,1),initialize=0.85)
m.x272 = Var(within=Reals,bounds=(0.7,1),initialize=0.7)
m.x273 = Var(within=Reals,bounds=(0.7,1),initialize=0.7)
m.x274 = Var(within=Reals,bounds=(0.7,1),initialize=0.7)
m.x275 = Var(within=Reals,bounds=(100,1000),initialize=100)
m.x276 = Var(within=Reals,bounds=(100,1000),initialize=100)
m.x277 = Var(within=Reals,bounds=(100,1000),initialize=100)
m.x278 = Var(within=Reals,bounds=(0,54.1717996137183),initialize=0)
m.x279 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x280 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x281 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x282 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x283 = Var(within=Reals,bounds=(0,54.1717996137183),initialize=0)
m.x284 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x285 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x286 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x287 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x288 = Var(within=Reals,bounds=(0,54.1717996137183),initialize=0)
m.x289 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x290 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x291 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x292 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x293 = Var(within=Reals,bounds=(0,54.1717996137183),initialize=0)
m.x294 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x295 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x296 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x297 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x298 = Var(within=Reals,bounds=(0,54.1717996137183),initialize=0)
m.x299 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x300 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x301 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x302 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x303 = Var(within=Reals,bounds=(0,54.1717996137183),initialize=0)
m.x304 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x305 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x306 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x307 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x308 = Var(within=Reals,bounds=(0,54.1717996137183),initialize=0)
m.x309 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x310 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x311 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x312 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x313 = Var(within=Reals,bounds=(0,54.1717996137183),initialize=0)
m.x314 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x315 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x316 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x317 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x318 = Var(within=Reals,bounds=(0,54.1717996137183),initialize=0)
m.x319 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x320 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x321 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x322 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x323 = Var(within=Reals,bounds=(0,93.045051789432),initialize=0)
m.x324 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x325 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x326 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x327 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x328 = Var(within=Reals,bounds=(0,93.045051789432),initialize=0)
m.x329 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x330 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x331 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x332 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x333 = Var(within=Reals,bounds=(0,93.045051789432),initialize=0)
m.x334 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x335 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x336 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x337 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x338 = Var(within=Reals,bounds=(0,93.045051789432),initialize=0)
m.x339 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x340 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x341 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x342 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x343 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x344 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x345 = Var(within=Reals,bounds=(0,93.045051789432),initialize=0)
m.x346 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x347 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x348 = Var(within=Reals,bounds=(0,93.045051789432),initialize=0)
m.x349 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x350 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x351 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x352 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x353 = Var(within=Reals,bounds=(0,112.384987749469),initialize=0)
m.x354 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x355 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x356 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x357 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x358 = Var(within=Reals,bounds=(0,112.384987749469),initialize=0)
m.x359 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x360 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x361 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x362 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x363 = Var(within=Reals,bounds=(0,112.384987749469),initialize=0)
m.x364 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x365 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x366 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x367 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x368 = Var(within=Reals,bounds=(0,112.384987749469),initialize=0)
m.x369 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x370 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x371 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x372 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x373 = Var(within=Reals,bounds=(0,112.384987749469),initialize=0)
m.x374 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x375 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x376 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x377 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x378 = Var(within=Reals,bounds=(0,112.384987749469),initialize=0)
m.x379 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x380 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x381 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x382 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x383 = Var(within=Reals,bounds=(0,42.066542469172),initialize=0)
m.x384 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x385 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x386 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x387 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x388 = Var(within=Reals,bounds=(0,42.066542469172),initialize=0)
m.x389 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x390 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x391 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x392 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x393 = Var(within=Reals,bounds=(0,42.066542469172),initialize=0)
m.x394 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x395 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x396 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x397 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x398 = Var(within=Reals,bounds=(0,42.066542469172),initialize=0)
m.x399 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x400 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x401 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x402 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x403 = Var(within=Reals,bounds=(0,42.066542469172),initialize=0)
m.x404 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x405 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x406 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x407 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x408 = Var(within=Reals,bounds=(0,42.066542469172),initialize=0)
m.x409 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x410 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x411 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x412 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x413 = Var(within=Reals,bounds=(0,25),initialize=0)
m.x414 = Var(within=Reals,bounds=(0,25),initialize=0)
m.x415 = Var(within=Reals,bounds=(0,25),initialize=0)
m.x416 = Var(within=Reals,bounds=(0,25),initialize=0)
m.x417 = Var(within=Reals,bounds=(0,25),initialize=0)
m.x418 = Var(within=Reals,bounds=(0,25),initialize=0)
m.x419 = Var(within=Reals,bounds=(0,25),initialize=0)
m.x420 = Var(within=Reals,bounds=(0,25),initialize=0)
m.x421 = Var(within=Reals,bounds=(0,25),initialize=0)
m.x422 = Var(within=Reals,bounds=(0,0.64),initialize=0)
m.x423 = Var(within=Reals,bounds=(0,0.512),initialize=0)
m.x424 = Var(within=Reals,bounds=(0,0.64),initialize=0)
m.x425 = Var(within=Reals,bounds=(0,0.512),initialize=0)
m.x426 = Var(within=Reals,bounds=(0,0.64),initialize=0)
m.x427 = Var(within=Reals,bounds=(0,0.512),initialize=0)
m.x428 = Var(within=Reals,bounds=(0,0.64),initialize=0)
m.x429 = Var(within=Reals,bounds=(0,0.512),initialize=0)
m.x430 = Var(within=Reals,bounds=(0,0.64),initialize=0)
m.x431 = Var(within=Reals,bounds=(0,0.512),initialize=0)
m.x432 = Var(within=Reals,bounds=(0,0.64),initialize=0)
m.x433 = Var(within=Reals,bounds=(0,0.512),initialize=0)
m.x434 = Var(within=Reals,bounds=(0,0.64),initialize=0)
m.x435 = Var(within=Reals,bounds=(0,0.512),initialize=0)
m.x436 = Var(within=Reals,bounds=(0,0.64),initialize=0)
m.x437 = Var(within=Reals,bounds=(0,0.512),initialize=0)
m.x438 = Var(within=Reals,bounds=(0,0.64),initialize=0)
m.x439 = Var(within=Reals,bounds=(0,0.512),initialize=0)
m.x440 = Var(within=Reals,bounds=(0,0.25),initialize=0)
m.x441 = Var(within=Reals,bounds=(0,0.125),initialize=0)
m.x442 = Var(within=Reals,bounds=(0,0.25),initialize=0)
m.x443 = Var(within=Reals,bounds=(0,0.125),initialize=0)
m.x444 = Var(within=Reals,bounds=(0,0.25),initialize=0)
m.x445 = Var(within=Reals,bounds=(0,0.125),initialize=0)
m.x446 = Var(within=Reals,bounds=(0,0.25),initialize=0)
m.x447 = Var(within=Reals,bounds=(0,0.125),initialize=0)
m.x448 = Var(within=Reals,bounds=(0,0.25),initialize=0)
m.x449 = Var(within=Reals,bounds=(0,0.125),initialize=0)
m.x450 = Var(within=Reals,bounds=(0,0.25),initialize=0)
m.x451 = Var(within=Reals,bounds=(0,0.125),initialize=0)
m.x452 = Var(within=Reals,bounds=(0,0.49),initialize=0)
m.x453 = Var(within=Reals,bounds=(0,0.343),initialize=0)
m.x454 = Var(within=Reals,bounds=(0,0.49),initialize=0)
m.x455 = Var(within=Reals,bounds=(0,0.343),initialize=0)
m.x456 = Var(within=Reals,bounds=(0,0.49),initialize=0)
m.x457 = Var(within=Reals,bounds=(0,0.343),initialize=0)
m.x458 = Var(within=Reals,bounds=(0,0.49),initialize=0)
m.x459 = Var(within=Reals,bounds=(0,0.343),initialize=0)
m.x460 = Var(within=Reals,bounds=(0,0.49),initialize=0)
m.x461 = Var(within=Reals,bounds=(0,0.343),initialize=0)
m.x462 = Var(within=Reals,bounds=(0,0.49),initialize=0)
m.x463 = Var(within=Reals,bounds=(0,0.343),initialize=0)
m.x464 = Var(within=Reals,bounds=(0,0.3364),initialize=0)
m.x465 = Var(within=Reals,bounds=(0,0.195112),initialize=0)
m.x466 = Var(within=Reals,bounds=(0,0.3364),initialize=0)
m.x467 = Var(within=Reals,bounds=(0,0.195112),initialize=0)
m.x468 = Var(within=Reals,bounds=(0,0.3364),initialize=0)
m.x469 = Var(within=Reals,bounds=(0,0.195112),initialize=0)
m.x470 = Var(within=Reals,bounds=(0,0.3364),initialize=0)
m.x471 = Var(within=Reals,bounds=(0,0.195112),initialize=0)
m.x472 = Var(within=Reals,bounds=(0,0.3364),initialize=0)
m.x473 = Var(within=Reals,bounds=(0,0.195112),initialize=0)
m.x474 = Var(within=Reals,bounds=(0,0.3364),initialize=0)
m.x475 = Var(within=Reals,bounds=(0,0.195112),initialize=0)
m.x476 = Var(within=Reals,bounds=(0.36,1),initialize=0.36)
m.x477 = Var(within=Reals,bounds=(0.216,1),initialize=0.216)
m.x478 = Var(within=Reals,bounds=(0.36,1),initialize=0.36)
m.x479 = Var(within=Reals,bounds=(0.216,1),initialize=0.216)
m.x480 = Var(within=Reals,bounds=(0.36,1),initialize=0.36)
m.x481 = Var(within=Reals,bounds=(0.216,1),initialize=0.216)
m.x482 = Var(within=Reals,bounds=(0.64,1),initialize=0.64)
m.x483 = Var(within=Reals,bounds=(0.512,1),initialize=0.512)
m.x484 = Var(within=Reals,bounds=(0.64,1),initialize=0.64)
m.x485 = Var(within=Reals,bounds=(0.512,1),initialize=0.512)
m.x486 = Var(within=Reals,bounds=(0.64,1),initialize=0.64)
m.x487 = Var(within=Reals,bounds=(0.512,1),initialize=0.512)
m.x488 = Var(within=Reals,bounds=(0.7225,1),initialize=0.7225)
m.x489 = Var(within=Reals,bounds=(0.614125,1),initialize=0.614125)
m.x490 = Var(within=Reals,bounds=(0.7225,1),initialize=0.7225)
m.x491 = Var(within=Reals,bounds=(0.614125,1),initialize=0.614125)
m.x492 = Var(within=Reals,bounds=(0.7225,1),initialize=0.7225)
m.x493 = Var(within=Reals,bounds=(0.614125,1),initialize=0.614125)
m.x494 = Var(within=Reals,bounds=(0.49,1),initialize=0.49)
m.x495 = Var(within=Reals,bounds=(0.343,1),initialize=0.343)
m.x496 = Var(within=Reals,bounds=(0.49,1),initialize=0.49)
m.x497 = Var(within=Reals,bounds=(0.343,1),initialize=0.343)
m.x498 = Var(within=Reals,bounds=(0.49,1),initialize=0.49)
m.x499 = Var(within=Reals,bounds=(0.343,1),initialize=0.343)
m.obj = Objective(expr= m.x278 + m.x283 + m.x288 + m.x293 + m.x298 + m.x303 + m.x308 + m.x313 + m.x318 + m.x323
+ m.x328 + m.x333 + m.x338 + m.x345 + m.x348 + m.x353 + m.x358 + m.x363 + m.x368 + m.x373
+ m.x378 + m.x383 + m.x388 + m.x393 + m.x398 + m.x403 + m.x408, sense=minimize)
m.c2 = Constraint(expr= m.x141 + 27.42831624*m.x143 + 37.5407324*m.x145 - 57.2814121*m.x147 == 0)
m.c3 = Constraint(expr= m.x149 + 27.42831624*m.x151 - 57.2814121*m.x153 + 37.5407324*m.x155 == 0)
m.c4 = Constraint(expr= m.x157 + 27.42831624*m.x159 - 57.2814121*m.x161 + 37.5407324*m.x163 == 0)
m.c5 = Constraint(expr= - 57.2814121*m.x147 + m.x165 + 27.42831624*m.x167 + 37.5407324*m.x169 == 0)
m.c6 = Constraint(expr= - 57.2814121*m.x153 + m.x171 + 37.5407324*m.x173 + 27.42831624*m.x175 == 0)
m.c7 = Constraint(expr= - 57.2814121*m.x161 + m.x177 + 37.5407324*m.x179 + 27.42831624*m.x181 == 0)
m.c8 = Constraint(expr= - 57.2814121*m.x147 + m.x183 + 37.5407324*m.x185 + 27.42831624*m.x187 == 0)
m.c9 = Constraint(expr= - 57.2814121*m.x153 + m.x189 + 27.42831624*m.x191 + 37.5407324*m.x193 == 0)
m.c10 = Constraint(expr= m.x29 + 27.42831624*m.x30 + 37.5407324*m.x31 - 57.2814121*m.x161 == 0)
m.c11 = Constraint(expr= m.x32 - 76.45219958*m.x33 + 43.14087708*m.x34 + 50.37356589*m.x35 == 0)
m.c12 = Constraint(expr= m.x36 + 50.37356589*m.x37 - 76.45219958*m.x38 + 43.14087708*m.x39 == 0)
m.c13 = Constraint(expr= m.x40 + 43.14087708*m.x41 + 50.37356589*m.x42 - 76.45219958*m.x43 == 0)
m.c14 = Constraint(expr= - 76.45219958*m.x33 + m.x44 + 43.14087708*m.x45 + 50.37356589*m.x46 == 0)
m.c15 = Constraint(expr= - 76.45219958*m.x38 + m.x47 + 50.37356589*m.x48 + 43.14087708*m.x49 == 0)
m.c16 = Constraint(expr= - 76.45219958*m.x43 + m.x50 + 43.14087708*m.x51 + 50.37356589*m.x52 == 0)
m.c17 = Constraint(expr= m.x53 + 58.31011875*m.x54 - 69.39622571*m.x55 - 25.39911174*m.x56 == 0)
m.c18 = Constraint(expr= m.x57 - 25.39911174*m.x58 + 58.31011875*m.x59 - 69.39622571*m.x60 == 0)
m.c19 = Constraint(expr= m.x61 - 69.39622571*m.x62 + 58.31011875*m.x63 - 25.39911174*m.x64 == 0)
m.c20 = Constraint(expr= - 69.39622571*m.x55 + m.x65 + 58.31011875*m.x66 - 25.39911174*m.x67 == 0)
m.c21 = Constraint(expr= - 69.39622571*m.x60 + m.x68 - 25.39911174*m.x69 + 58.31011875*m.x70 == 0)
m.c22 = Constraint(expr= - 69.39622571*m.x62 + m.x71 + 58.31011875*m.x72 - 25.39911174*m.x73 == 0)
m.c23 = Constraint(expr= m.x74 - 2.03724124*m.x75 + 63.61644904*m.x76 - 34.92732674*m.x77 == 0)
m.c24 = Constraint(expr= m.x78 - 2.03724124*m.x79 - 34.92732674*m.x80 + 63.61644904*m.x81 == 0)
m.c25 = Constraint(expr= m.x82 - 2.03724124*m.x83 - 34.92732674*m.x84 + 63.61644904*m.x85 == 0)
m.c26 = Constraint(expr= - 34.92732674*m.x77 + m.x86 + 63.61644904*m.x87 - 2.03724124*m.x88 == 0)
m.c27 = Constraint(expr= - 34.92732674*m.x80 + m.x89 + 63.61644904*m.x90 - 2.03724124*m.x91 == 0)
m.c28 = Constraint(expr= - 34.92732674*m.x84 + m.x92 - 2.03724124*m.x93 + 63.61644904*m.x94 == 0)
m.c29 = Constraint(expr= m.x95 + m.x96 + m.x97 >= 0.875)
m.c30 = Constraint(expr= - m.x98 + m.x99 == 0)
m.c31 = Constraint(expr= - m.x100 + m.x101 == 0)
m.c32 = Constraint(expr= - m.x102 + m.x103 == 0)
m.c33 = Constraint(expr= - m.x104 + m.x105 == 0)
m.c34 = Constraint(expr= - m.x106 + m.x107 == 0)
m.c35 = Constraint(expr= - m.x108 + m.x109 == 0)
m.c36 = Constraint(expr= m.x104 - m.x110 == 0)
m.c37 = Constraint(expr= m.x106 - m.x111 == 0)
m.c38 = Constraint(expr= m.x108 - m.x112 == 0)
m.c39 = Constraint(expr= - m.x113 + m.x114 == 0)
m.c40 = Constraint(expr= - m.x115 + m.x116 == 0)
m.c41 = Constraint(expr= - m.x117 + m.x118 == 0)
m.c42 = Constraint(expr= m.x119 == 0.296666667)
m.c43 = Constraint(expr= m.x120 == 0.294444444)
m.c44 = Constraint(expr= m.x121 == 0.283888889)
m.c45 = Constraint(expr= m.x95 - m.x99 == 0)
m.c46 = Constraint(expr= m.x96 - m.x101 == 0)
m.c47 = Constraint(expr= m.x97 - m.x103 == 0)
m.c48 = Constraint(expr= 3600*m.x98 - 3600*m.x105 + 1800*m.x122 - 1800*m.x123 == 0)
m.c49 = Constraint(expr= 3600*m.x100 - 3600*m.x107 + 1800*m.x124 - 1800*m.x125 == 0)
m.c50 = Constraint(expr= 3600*m.x102 - 3600*m.x109 + 1800*m.x126 - 1800*m.x127 == 0)
m.c51 = Constraint(expr= 3600*m.x110 - 3600*m.x114 + 720*m.x128 - 720*m.x129 == 0)
m.c52 = Constraint(expr= 3600*m.x111 - 3600*m.x116 + 720*m.x130 - 720*m.x131 == 0)
m.c53 = Constraint(expr= 3600*m.x112 - 3600*m.x118 + 720*m.x132 - 720*m.x133 == 0)
m.c54 = Constraint(expr= 3600*m.x113 - 3600*m.x119 + 1600*m.x134 - 1600*m.x135 == 0)
m.c55 = Constraint(expr= 3600*m.x115 - 3600*m.x120 + 1600*m.x136 - 1600*m.x137 == 0)
m.c56 = Constraint(expr= 3600*m.x117 - 3600*m.x121 + 1600*m.x138 - 1600*m.x139 == 0)
m.c57 = Constraint(expr= - m.x123 + m.x124 == 0)
m.c58 = Constraint(expr= - m.x125 + m.x126 == 0)
m.c59 = Constraint(expr= - m.x129 + m.x130 == 0)
m.c60 = Constraint(expr= - m.x131 + m.x132 == 0)
m.c61 = Constraint(expr= - m.x135 + m.x136 == 0)
m.c62 = Constraint(expr= - m.x137 + m.x138 == 0)
m.c63 = Constraint(expr= - 0.2*m.b2 + m.x140 >= 0)
m.c64 = Constraint(expr= - 0.2*m.b3 + m.x142 >= 0)
m.c65 = Constraint(expr= - 0.2*m.b4 + m.x144 >= 0)
m.c66 = Constraint(expr= - 0.2*m.b5 + m.x146 >= 0)
m.c67 = Constraint(expr= - 0.2*m.b6 + m.x148 >= 0)
m.c68 = Constraint(expr= - 0.2*m.b7 + m.x150 >= 0)
m.c69 = Constraint(expr= - 0.2*m.b8 + m.x152 >= 0)
m.c70 = Constraint(expr= - 0.2*m.b9 + m.x154 >= 0)
m.c71 = Constraint(expr= - 0.2*m.b10 + m.x156 >= 0)
m.c72 = Constraint(expr= - 0.25*m.b11 + m.x158 >= 0)
m.c73 = Constraint(expr= - 0.25*m.b12 + m.x160 >= 0)
m.c74 = Constraint(expr= - 0.25*m.b13 + m.x162 >= 0)
m.c75 = Constraint(expr= - 0.25*m.b14 + m.x164 >= 0)
m.c76 = Constraint(expr= - 0.25*m.b15 + m.x166 >= 0)
m.c77 = Constraint(expr= - 0.25*m.b16 + m.x168 >= 0)
m.c78 = Constraint(expr= - 0.4*m.b17 + m.x170 >= 0)
m.c79 = Constraint(expr= - 0.4*m.b18 + m.x172 >= 0)
m.c80 = Constraint(expr= - 0.4*m.b19 + m.x174 >= 0)
m.c81 = Constraint(expr= - 0.4*m.b20 + m.x176 >= 0)
m.c82 = Constraint(expr= - 0.4*m.b21 + m.x178 >= 0)
m.c83 = Constraint(expr= - 0.4*m.b22 + m.x180 >= 0)
m.c84 = Constraint(expr= - 0.24*m.b23 + m.x182 >= 0)
m.c85 = Constraint(expr= - 0.24*m.b24 + m.x184 >= 0)
m.c86 = Constraint(expr= - 0.24*m.b25 + m.x186 >= 0)
m.c87 = Constraint(expr= - 0.24*m.b26 + m.x188 >= 0)
m.c88 = Constraint(expr= - 0.24*m.b27 + m.x190 >= 0)
m.c89 = Constraint(expr= - 0.24*m.b28 + m.x192 >= 0)
m.c90 = Constraint(expr= - 0.8*m.b2 + m.x140 <= 0)
m.c91 = Constraint(expr= - 0.8*m.b3 + m.x142 <= 0)
m.c92 = Constraint(expr= - 0.8*m.b4 + m.x144 <= 0)
m.c93 = Constraint(expr= - 0.8*m.b5 + m.x146 <= 0)
m.c94 = Constraint(expr= - 0.8*m.b6 + m.x148 <= 0)
m.c95 = Constraint(expr= - 0.8*m.b7 + m.x150 <= 0)
m.c96 = Constraint(expr= - 0.8*m.b8 + m.x152 <= 0)
m.c97 = Constraint(expr= - 0.8*m.b9 + m.x154 <= 0)
m.c98 = Constraint(expr= - 0.8*m.b10 + m.x156 <= 0)
m.c99 = Constraint(expr= - 0.5*m.b11 + m.x158 <= 0)
m.c100 = Constraint(expr= - 0.5*m.b12 + m.x160 <= 0)
m.c101 = Constraint(expr= - 0.5*m.b13 + m.x162 <= 0)
m.c102 = Constraint(expr= - 0.5*m.b14 + m.x164 <= 0)
m.c103 = Constraint(expr= - 0.5*m.b15 + m.x166 <= 0)
m.c104 = Constraint(expr= - 0.5*m.b16 + m.x168 <= 0)
m.c105 = Constraint(expr= - 0.7*m.b17 + m.x170 <= 0)
m.c106 = Constraint(expr= - 0.7*m.b18 + m.x172 <= 0)
m.c107 = Constraint(expr= - 0.7*m.b19 + m.x174 <= 0)
m.c108 = Constraint(expr= - 0.7*m.b20 + m.x176 <= 0)
m.c109 = Constraint(expr= - 0.7*m.b21 + m.x178 <= 0)
m.c110 = Constraint(expr= - 0.7*m.b22 + m.x180 <= 0)
m.c111 = Constraint(expr= - 0.58*m.b23 + m.x182 <= 0)
m.c112 = Constraint(expr= - 0.58*m.b24 + m.x184 <= 0)
m.c113 = Constraint(expr= - 0.58*m.b25 + m.x186 <= 0)
m.c114 = Constraint(expr= - 0.58*m.b26 + m.x188 <= 0)
m.c115 = Constraint(expr= - 0.58*m.b27 + m.x190 <= 0)
m.c116 = Constraint(expr= - 0.58*m.b28 + m.x192 <= 0)
m.c117 = Constraint(expr= - m.x122 + m.x194 == 60)
m.c118 = Constraint(expr= - m.x124 + m.x195 == 60)
m.c119 = Constraint(expr= - m.x126 + m.x196 == 60)
m.c120 = Constraint(expr= - m.x128 + m.x197 == 90)
m.c121 = Constraint(expr= - m.x130 + m.x198 == 90)
m.c122 = Constraint(expr= - m.x132 + m.x199 == 90)
m.c123 = Constraint(expr= - m.x134 + m.x200 == 103)
m.c124 = Constraint(expr= - m.x136 + m.x201 == 103)
m.c125 = Constraint(expr= - m.x138 + m.x202 == 103)
m.c126 = Constraint(expr= - m.x194 + m.x203 - m.x204 == 0)
m.c127 = Constraint(expr= - m.x195 + m.x205 - m.x206 == 0)
m.c128 = Constraint(expr= - m.x196 + m.x207 - m.x208 == 0)
m.c129 = Constraint(expr= m.x209 - m.x210 - m.x211 == 0)
m.c130 = Constraint(expr= m.x212 - m.x213 - m.x214 == 0)
m.c131 = Constraint(expr= m.x215 - m.x216 - m.x217 == 0)
m.c132 = Constraint(expr= - m.x200 + m.x218 - m.x219 == 0)
m.c133 = Constraint(expr= - m.x201 + m.x220 - m.x221 == 0)
m.c134 = Constraint(expr= - m.x202 + m.x222 - m.x223 == 0)
m.c135 = Constraint(expr= m.x203 - m.x224 - m.x225 == 0)
m.c136 = Constraint(expr= m.x205 - m.x226 - m.x227 == 0)
m.c137 = Constraint(expr= m.x207 - m.x228 - m.x229 == 0)
m.c138 = Constraint(expr= - m.x194 + m.x209 - m.x230 == 0)
m.c139 = Constraint(expr= - m.x195 + m.x212 - m.x231 == 0)
m.c140 = Constraint(expr= - m.x196 + m.x215 - m.x232 == 0)
m.c141 = Constraint(expr= - m.x197 + m.x218 - m.x233 == 0)
m.c142 = Constraint(expr= - m.x198 + m.x220 - m.x234 == 0)
m.c143 = Constraint(expr= - m.x199 + m.x222 - m.x235 == 0)
m.c144 = Constraint(expr= 0.2*m.b2 - m.x140 + m.x236 <= 0.2)
m.c145 = Constraint(expr= 0.2*m.b3 - m.x142 + m.x237 <= 0.2)
m.c146 = Constraint(expr= 0.2*m.b4 - m.x144 + m.x238 <= 0.2)
m.c147 = Constraint(expr= 0.2*m.b5 - m.x146 + m.x239 <= 0.2)
m.c148 = Constraint(expr= 0.2*m.b6 - m.x148 + m.x240 <= 0.2)
m.c149 = Constraint(expr= 0.2*m.b7 - m.x150 + m.x241 <= 0.2)
m.c150 = Constraint(expr= 0.2*m.b8 - m.x152 + m.x242 <= 0.2)
m.c151 = Constraint(expr= 0.2*m.b9 - m.x154 + m.x243 <= 0.2)
m.c152 = Constraint(expr= 0.2*m.b10 - m.x156 + m.x244 <= 0.2)
m.c153 = Constraint(expr= 0.25*m.b11 - m.x158 + m.x245 <= 0.25)
m.c154 = Constraint(expr= 0.25*m.b12 - m.x160 + m.x246 <= 0.25)
m.c155 = Constraint(expr= 0.25*m.b13 - m.x162 + m.x247 <= 0.25)
m.c156 = Constraint(expr= 0.25*m.b14 - m.x164 + m.x248 <= 0.25)
m.c157 = Constraint(expr= 0.25*m.b15 - m.x166 + m.x249 <= 0.25)
m.c158 = Constraint(expr= 0.25*m.b16 - m.x168 + m.x250 <= 0.25)
m.c159 = Constraint(expr= 0.4*m.b17 - m.x170 + m.x251 <= 0.4)
m.c160 = Constraint(expr= 0.4*m.b18 - m.x172 + m.x252 <= 0.4)
m.c161 = Constraint(expr= 0.4*m.b19 - m.x174 + m.x253 <= 0.4)
m.c162 = Constraint(expr= 0.4*m.b20 - m.x176 + m.x254 <= 0.4)
m.c163 = Constraint(expr= 0.4*m.b21 - m.x178 + m.x255 <= 0.4)
m.c164 = Constraint(expr= 0.4*m.b22 - m.x180 + m.x256 <= 0.4)
m.c165 = Constraint(expr= 0.24*m.b23 - m.x182 + m.x257 <= 0.24)
m.c166 = Constraint(expr= 0.24*m.b24 - m.x184 + m.x258 <= 0.24)
m.c167 = Constraint(expr= 0.24*m.b25 - m.x186 + m.x259 <= 0.24)
m.c168 = Constraint(expr= 0.24*m.b26 - m.x188 + m.x260 <= 0.24)
m.c169 = Constraint(expr= 0.24*m.b27 - m.x190 + m.x261 <= 0.24)
m.c170 = Constraint(expr= 0.24*m.b28 - m.x192 + m.x262 <= 0.24)
m.c171 = Constraint(expr= - m.x140 + m.x236 >= 0)
m.c172 = Constraint(expr= - m.x142 + m.x237 >= 0)
m.c173 = Constraint(expr= - m.x144 + m.x238 >= 0)
m.c174 = Constraint(expr= - m.x146 + m.x239 >= 0)
m.c175 = Constraint(expr= - m.x148 + m.x240 >= 0)
m.c176 = Constraint(expr= - m.x150 + m.x241 >= 0)
m.c177 = Constraint(expr= - m.x152 + m.x242 >= 0)
m.c178 = Constraint(expr= - m.x154 + m.x243 >= 0)
m.c179 = Constraint(expr= - m.x156 + m.x244 >= 0)
m.c180 = Constraint(expr= - m.x158 + m.x245 >= 0)
m.c181 = Constraint(expr= - m.x160 + m.x246 >= 0)
m.c182 = Constraint(expr= - m.x162 + m.x247 >= 0)
m.c183 = Constraint(expr= - m.x164 + m.x248 >= 0)
m.c184 = Constraint(expr= - m.x166 + m.x249 >= 0)
m.c185 = Constraint(expr= - m.x168 + m.x250 >= 0)
m.c186 = Constraint(expr= - m.x170 + m.x251 >= 0)
m.c187 = Constraint(expr= - m.x172 + m.x252 >= 0)
m.c188 = Constraint(expr= - m.x174 + m.x253 >= 0)
m.c189 = Constraint(expr= - m.x176 + m.x254 >= 0)
m.c190 = Constraint(expr= - m.x178 + m.x255 >= 0)
m.c191 = Constraint(expr= - m.x180 + m.x256 >= 0)
m.c192 = Constraint(expr= - m.x182 + m.x257 >= 0)
m.c193 = Constraint(expr= - m.x184 + m.x258 >= 0)
m.c194 = Constraint(expr= - m.x186 + m.x259 >= 0)
m.c195 = Constraint(expr= - m.x188 + m.x260 >= 0)
m.c196 = Constraint(expr= - m.x190 + m.x261 >= 0)
m.c197 = Constraint(expr= - m.x192 + m.x262 >= 0)
m.c198 = Constraint(expr= - 0.6*m.b2 + m.x236 <= 0.2)
m.c199 = Constraint(expr= - 0.6*m.b3 + m.x237 <= 0.2)
m.c200 = Constraint(expr= - 0.6*m.b4 + m.x238 <= 0.2)
m.c201 = Constraint(expr= - 0.6*m.b5 + m.x239 <= 0.2)
m.c202 = Constraint(expr= - 0.6*m.b6 + m.x240 <= 0.2)
m.c203 = Constraint(expr= - 0.6*m.b7 + m.x241 <= 0.2)
m.c204 = Constraint(expr= - 0.6*m.b8 + m.x242 <= 0.2)
m.c205 = Constraint(expr= - 0.6*m.b9 + m.x243 <= 0.2)
m.c206 = Constraint(expr= - 0.6*m.b10 + m.x244 <= 0.2)
m.c207 = Constraint(expr= - 0.25*m.b11 + m.x245 <= 0.25)
m.c208 = Constraint(expr= - 0.25*m.b12 + m.x246 <= 0.25)
m.c209 = Constraint(expr= - 0.25*m.b13 + m.x247 <= 0.25)
m.c210 = Constraint(expr= - 0.25*m.b14 + m.x248 <= 0.25)
m.c211 = Constraint(expr= - 0.25*m.b15 + m.x249 <= 0.25)
m.c212 = Constraint(expr= - 0.25*m.b16 + m.x250 <= 0.25)
m.c213 = Constraint(expr= - 0.3*m.b17 + m.x251 <= 0.4)
m.c214 = Constraint(expr= - 0.3*m.b18 + m.x252 <= 0.4)
m.c215 = Constraint(expr= - 0.3*m.b19 + m.x253 <= 0.4)
m.c216 = Constraint(expr= - 0.3*m.b20 + m.x254 <= 0.4)
m.c217 = Constraint(expr= - 0.3*m.b21 + m.x255 <= 0.4)
m.c218 = Constraint(expr= - 0.3*m.b22 + m.x256 <= 0.4)
m.c219 = Constraint(expr= - 0.34*m.b23 + m.x257 <= 0.24)
m.c220 = Constraint(expr= - 0.34*m.b24 + m.x258 <= 0.24)
m.c221 = Constraint(expr= - 0.34*m.b25 + m.x259 <= 0.24)
m.c222 = Constraint(expr= - 0.34*m.b26 + m.x260 <= 0.24)
m.c223 = Constraint(expr= - 0.34*m.b27 + m.x261 <= 0.24)
m.c224 = Constraint(expr= - 0.34*m.b28 + m.x262 <= 0.24)
m.c225 = Constraint(expr= - 0.4*m.b2 + m.x263 <= 0.6)
m.c226 = Constraint(expr= - 0.4*m.b3 + m.x264 <= 0.6)
m.c227 = Constraint(expr= - 0.4*m.b4 + m.x265 <= 0.6)
m.c228 = Constraint(expr= - 0.2*m.b11 + m.x266 <= 0.8)
m.c229 = Constraint(expr= - 0.2*m.b12 + m.x267 <= 0.8)
m.c230 = Constraint(expr= - 0.2*m.b13 + m.x268 <= 0.8)
m.c231 = Constraint(expr= - 0.15*m.b17 + m.x269 <= 0.85)
m.c232 = Constraint(expr= - 0.15*m.b18 + m.x270 <= 0.85)
m.c233 = Constraint(expr= - 0.15*m.b19 + m.x271 <= 0.85)
m.c234 = Constraint(expr= - 0.3*m.b23 + m.x272 <= 0.7)
m.c235 = Constraint(expr= - 0.3*m.b24 + m.x273 <= 0.7)
m.c236 = Constraint(expr= - 0.3*m.b25 + m.x274 <= 0.7)
m.c237 = Constraint(expr= m.b2 - m.b5 >= 0)
m.c238 = Constraint(expr= m.b3 - m.b6 >= 0)
m.c239 = Constraint(expr= m.b4 - m.b7 >= 0)
m.c240 = Constraint(expr= m.b5 - m.b8 >= 0)
m.c241 = Constraint(expr= m.b6 - m.b9 >= 0)
m.c242 = Constraint(expr= m.b7 - m.b10 >= 0)
m.c243 = Constraint(expr= m.b11 - m.b14 >= 0)
m.c244 = Constraint(expr= m.b12 - m.b15 >= 0)
m.c245 = Constraint(expr= m.b13 - m.b16 >= 0)
m.c246 = Constraint(expr= m.b17 - m.b20 >= 0)
m.c247 = Constraint(expr= m.b18 - m.b21 >= 0)
m.c248 = Constraint(expr= m.b19 - m.b22 >= 0)
m.c249 = Constraint(expr= m.b23 - m.b26 >= 0)
m.c250 = Constraint(expr= m.b24 - m.b27 >= 0)
m.c251 = Constraint(expr= m.b25 - m.b28 >= 0)
m.c252 = Constraint(expr= m.x99 - m.x140 - m.x146 - m.x152 == 0)
m.c253 = Constraint(expr= m.x101 - m.x142 - m.x148 - m.x154 == 0)
m.c254 = Constraint(expr= m.x103 - m.x144 - m.x150 - m.x156 == 0)
m.c255 = Constraint(expr= m.x105 - m.x158 - m.x164 - m.x170 - m.x176 == 0)
m.c256 = Constraint(expr= m.x107 - m.x160 - m.x166 - m.x172 - m.x178 == 0)
m.c257 = Constraint(expr= m.x109 - m.x162 - m.x168 - m.x174 - m.x180 == 0)
m.c258 = Constraint(expr= m.x114 - m.x182 - m.x188 == 0)
m.c259 = Constraint(expr= m.x116 - m.x184 - m.x190 == 0)
m.c260 = Constraint(expr= m.x118 - m.x186 - m.x192 == 0)
m.c261 = Constraint(expr= - 2000*m.b2 + m.x141 - m.x225 >= -2000)
m.c262 = Constraint(expr= - 2000*m.b3 + m.x149 - m.x227 >= -2000)
m.c263 = Constraint(expr= - 2000*m.b4 + m.x157 - m.x229 >= -2000)
m.c264 = Constraint(expr= - 2000*m.b5 + m.x165 - m.x225 >= -2000)
m.c265 = Constraint(expr= - 2000*m.b6 + m.x171 - m.x227 >= -2000)
m.c266 = Constraint(expr= - 2000*m.b7 + m.x177 - m.x229 >= -2000)
m.c267 = Constraint(expr= - 2000*m.b8 + m.x183 - m.x225 >= -2000)
m.c268 = Constraint(expr= - 2000*m.b9 + m.x189 - m.x227 >= -2000)
m.c269 = Constraint(expr= - 2000*m.b10 + m.x29 - m.x229 >= -2000)
m.c270 = Constraint(expr= - 2000*m.b11 + m.x32 - m.x230 >= -2000)
m.c271 = Constraint(expr= - 2000*m.b12 + m.x36 - m.x231 >= -2000)
m.c272 = Constraint(expr= - 2000*m.b13 + m.x40 - m.x232 >= -2000)
m.c273 = Constraint(expr= - 2000*m.b14 + m.x44 - m.x230 >= -2000)
m.c274 = Constraint(expr= - 2000*m.b15 + m.x47 - m.x231 >= -2000)
m.c275 = Constraint(expr= - 2000*m.b16 + m.x50 - m.x232 >= -2000)
m.c276 = Constraint(expr= - 2000*m.b17 + m.x53 - m.x230 >= -2000)
m.c277 = Constraint(expr= - 2000*m.b18 + m.x57 - m.x231 >= -2000)
m.c278 = Constraint(expr= - 2000*m.b19 + m.x61 - m.x232 >= -2000)
m.c279 = Constraint(expr= - 2000*m.b20 + m.x65 - m.x230 >= -2000)
m.c280 = Constraint(expr= - 2000*m.b21 + m.x68 - m.x231 >= -2000)
m.c281 = Constraint(expr= - 2000*m.b22 + m.x71 - m.x232 >= -2000)
m.c282 = Constraint(expr= - 2000*m.b23 + m.x74 - m.x233 >= -2000)
m.c283 = Constraint(expr= - 2000*m.b24 + m.x78 - m.x234 >= -2000)
m.c284 = Constraint(expr= - 2000*m.b25 + m.x82 - m.x235 >= -2000)
m.c285 = Constraint(expr= - 2000*m.b26 + m.x86 - m.x233 >= -2000)
m.c286 = Constraint(expr= - 2000*m.b27 + m.x89 - m.x234 >= -2000)
m.c287 = Constraint(expr= - 2000*m.b28 + m.x92 - m.x235 >= -2000)
m.c288 = Constraint(expr= 1049*m.b2 + m.x141 - m.x225 <= 1049)
m.c289 = Constraint(expr= 1049*m.b3 + m.x149 - m.x227 <= 1049)
m.c290 = Constraint(expr= 1049*m.b4 + m.x157 - m.x229 <= 1049)
m.c291 = Constraint(expr= 1049*m.b5 + m.x165 - m.x225 <= 1049)
m.c292 = Constraint(expr= 1049*m.b6 + m.x171 - m.x227 <= 1049)
m.c293 = Constraint(expr= 1049*m.b7 + m.x177 - m.x229 <= 1049)
m.c294 = Constraint(expr= 1049*m.b8 + m.x183 - m.x225 <= 1049)
m.c295 = Constraint(expr= 1049*m.b9 + m.x189 - m.x227 <= 1049)
m.c296 = Constraint(expr= 1049*m.b10 + m.x29 - m.x229 <= 1049)
m.c297 = Constraint(expr= 1065*m.b11 + m.x32 - m.x230 <= 1065)
m.c298 = Constraint(expr= 1065*m.b12 + m.x36 - m.x231 <= 1065)
m.c299 = Constraint(expr= 1065*m.b13 + m.x40 - m.x232 <= 1065)
m.c300 = Constraint(expr= 1065*m.b14 + m.x44 - m.x230 <= 1065)
m.c301 = Constraint(expr= 1065*m.b15 + m.x47 - m.x231 <= 1065)
m.c302 = Constraint(expr= 1065*m.b16 + m.x50 - m.x232 <= 1065)
m.c303 = Constraint(expr= 1065*m.b17 + m.x53 - m.x230 <= 1065)
m.c304 = Constraint(expr= 1065*m.b18 + m.x57 - m.x231 <= 1065)
m.c305 = Constraint(expr= 1065*m.b19 + m.x61 - m.x232 <= 1065)
m.c306 = Constraint(expr= 1065*m.b20 + m.x65 - m.x230 <= 1065)
m.c307 = Constraint(expr= 1065*m.b21 + m.x68 - m.x231 <= 1065)
m.c308 = Constraint(expr= 1065*m.b22 + m.x71 - m.x232 <= 1065)
m.c309 = Constraint(expr= 1095*m.b23 + m.x74 - m.x233 <= 1095)
m.c310 = Constraint(expr= 1095*m.b24 + m.x78 - m.x234 <= 1095)
m.c311 = Constraint(expr= 1095*m.b25 + m.x82 - m.x235 <= 1095)
m.c312 = Constraint(expr= 1095*m.b26 + m.x86 - m.x233 <= 1095)
m.c313 = Constraint(expr= 1095*m.b27 + m.x89 - m.x234 <= 1095)
m.c314 = Constraint(expr= 1095*m.b28 + m.x92 - m.x235 <= 1095)
m.c315 = Constraint(expr= - m.x197 + m.x210 >= 0)
m.c316 = Constraint(expr= - m.x198 + m.x213 >= 0)
m.c317 = Constraint(expr= - m.x199 + m.x216 >= 0)
m.c318 = Constraint(expr= m.x200 - m.x275 >= 0)
m.c319 = Constraint(expr= m.x201 - m.x276 >= 0)
m.c320 = Constraint(expr= m.x202 - m.x277 >= 0)
m.c321 = Constraint(expr= - 0.309838295393634*m.x278 + 13.94696158*m.x279 + 24.46510819*m.x280 - 7.28623839*m.x281
- 23.57687014*m.x282 <= 0)
m.c322 = Constraint(expr= - 0.309838295393634*m.x283 + 13.94696158*m.x284 + 24.46510819*m.x285 - 7.28623839*m.x286
- 23.57687014*m.x287 <= 0)
m.c323 = Constraint(expr= - 0.309838295393634*m.x288 + 13.94696158*m.x289 + 24.46510819*m.x290 - 7.28623839*m.x291
- 23.57687014*m.x292 <= 0)
m.c324 = Constraint(expr= - 0.309838295393634*m.x293 + 13.94696158*m.x294 + 24.46510819*m.x295 - 7.28623839*m.x296
- 23.57687014*m.x297 <= 0)
m.c325 = Constraint(expr= - 0.309838295393634*m.x298 + 13.94696158*m.x299 + 24.46510819*m.x300 - 7.28623839*m.x301
- 23.57687014*m.x302 <= 0)
m.c326 = Constraint(expr= - 0.309838295393634*m.x303 + 13.94696158*m.x304 + 24.46510819*m.x305 - 7.28623839*m.x306
- 23.57687014*m.x307 <= 0)
m.c327 = Constraint(expr= - 0.309838295393634*m.x308 + 13.94696158*m.x309 + 24.46510819*m.x310 - 7.28623839*m.x311
- 23.57687014*m.x312 <= 0)
m.c328 = Constraint(expr= - 0.309838295393634*m.x313 + 13.94696158*m.x314 + 24.46510819*m.x315 - 7.28623839*m.x316
- 23.57687014*m.x317 <= 0)
m.c329 = Constraint(expr= - 0.309838295393634*m.x318 + 13.94696158*m.x319 + 24.46510819*m.x320 - 7.28623839*m.x321
- 23.57687014*m.x322 <= 0)
m.c330 = Constraint(expr= - 0.309838295393634*m.x323 + 29.29404529*m.x324 - 108.39408287*m.x325 + 442.21990639*m.x326
- 454.58448169*m.x327 <= 0)
m.c331 = Constraint(expr= - 0.309838295393634*m.x328 + 29.29404529*m.x329 - 108.39408287*m.x330 + 442.21990639*m.x331
- 454.58448169*m.x332 <= 0)
m.c332 = Constraint(expr= - 0.309838295393634*m.x333 + 29.29404529*m.x334 - 108.39408287*m.x335 + 442.21990639*m.x336
- 454.58448169*m.x337 <= 0)
m.c333 = Constraint(expr= - 0.309838295393634*m.x338 + 29.29404529*m.x339 - 108.39408287*m.x340 + 442.21990639*m.x341
- 454.58448169*m.x342 <= 0)
m.c334 = Constraint(expr= 442.21990639*m.x343 - 454.58448169*m.x344 - 0.309838295393634*m.x345 + 29.29404529*m.x346
- 108.39408287*m.x347 <= 0)
m.c335 = Constraint(expr= - 0.309838295393634*m.x348 + 29.29404529*m.x349 - 108.39408287*m.x350 + 442.21990639*m.x351
- 454.58448169*m.x352 <= 0)
m.c336 = Constraint(expr= - 0.309838295393634*m.x353 + 25.92674585*m.x354 + 18.13482123*m.x355 + 22.12766012*m.x356
- 42.68950769*m.x357 <= 0)
m.c337 = Constraint(expr= - 0.309838295393634*m.x358 + 25.92674585*m.x359 + 18.13482123*m.x360 + 22.12766012*m.x361
- 42.68950769*m.x362 <= 0)
m.c338 = Constraint(expr= - 0.309838295393634*m.x363 + 25.92674585*m.x364 + 18.13482123*m.x365 + 22.12766012*m.x366
- 42.68950769*m.x367 <= 0)
m.c339 = Constraint(expr= - 0.309838295393634*m.x368 + 25.92674585*m.x369 + 18.13482123*m.x370 + 22.12766012*m.x371
- 42.68950769*m.x372 <= 0)
m.c340 = Constraint(expr= - 0.309838295393634*m.x373 + 25.92674585*m.x374 + 18.13482123*m.x375 + 22.12766012*m.x376
- 42.68950769*m.x377 <= 0)
m.c341 = Constraint(expr= - 0.309838295393634*m.x378 + 25.92674585*m.x379 + 18.13482123*m.x380 + 22.12766012*m.x381
- 42.68950769*m.x382 <= 0)
m.c342 = Constraint(expr= - 0.309838295393634*m.x383 + 17.4714791*m.x384 - 39.98407808*m.x385 + 134.55943082*m.x386
- 135.88441782*m.x387 <= 0)
m.c343 = Constraint(expr= - 0.309838295393634*m.x388 + 17.4714791*m.x389 - 39.98407808*m.x390 + 134.55943082*m.x391
- 135.88441782*m.x392 <= 0)
m.c344 = Constraint(expr= - 0.309838295393634*m.x393 + 17.4714791*m.x394 - 39.98407808*m.x395 + 134.55943082*m.x396
- 135.88441782*m.x397 <= 0)
m.c345 = Constraint(expr= - 0.309838295393634*m.x398 + 17.4714791*m.x399 - 39.98407808*m.x400 + 134.55943082*m.x401
- 135.88441782*m.x402 <= 0)
m.c346 = Constraint(expr= - 0.309838295393634*m.x403 + 17.4714791*m.x404 - 39.98407808*m.x405 + 134.55943082*m.x406
- 135.88441782*m.x407 <= 0)
m.c347 = Constraint(expr= - 0.309838295393634*m.x408 + 17.4714791*m.x409 - 39.98407808*m.x410 + 134.55943082*m.x411
- 135.88441782*m.x412 <= 0)
m.c348 = Constraint(expr=m.x98**2 - m.x413 == 0)
m.c349 = Constraint(expr= m.x204 - 5*m.x413 == 0)
m.c350 = Constraint(expr=m.x100**2 - m.x414 == 0)
m.c351 = Constraint(expr= m.x206 - 5*m.x414 == 0)
m.c352 = Constraint(expr=m.x102**2 - m.x415 == 0)
m.c353 = Constraint(expr= m.x208 - 5*m.x415 == 0)
m.c354 = Constraint(expr=m.x104**2 - m.x416 == 0)
m.c355 = Constraint(expr= m.x211 - 4*m.x416 == 0)
m.c356 = Constraint(expr=m.x106**2 - m.x417 == 0)
m.c357 = Constraint(expr= m.x214 - 4*m.x417 == 0)
m.c358 = Constraint(expr=m.x108**2 - m.x418 == 0)
m.c359 = Constraint(expr= m.x217 - 4*m.x418 == 0)
m.c360 = Constraint(expr=m.x113**2 - m.x419 == 0)
m.c361 = Constraint(expr= m.x219 - 5*m.x419 == 0)
m.c362 = Constraint(expr=m.x115**2 - m.x420 == 0)
m.c363 = Constraint(expr= m.x221 - 5*m.x420 == 0)
m.c364 = Constraint(expr=m.x117**2 - m.x421 == 0)
m.c365 = Constraint(expr= m.x223 - 5*m.x421 == 0)
m.c366 = Constraint(expr=m.x140**2 - m.x422 == 0)
m.c367 = Constraint(expr= m.x143 - m.x422 == 0)
m.c368 = Constraint(expr=m.x140**3 - m.x423 == 0)
m.c369 = Constraint(expr= m.x282 - m.x423 == 0)
m.c370 = Constraint(expr=m.x142**2 - m.x424 == 0)
m.c371 = Constraint(expr= m.x151 - m.x424 == 0)
m.c372 = Constraint(expr=m.x142**3 - m.x425 == 0)
m.c373 = Constraint(expr= m.x287 - m.x425 == 0)
m.c374 = Constraint(expr=m.x144**2 - m.x426 == 0)
m.c375 = Constraint(expr= m.x159 - m.x426 == 0)
m.c376 = Constraint(expr=m.x144**3 - m.x427 == 0)
m.c377 = Constraint(expr= m.x292 - m.x427 == 0)
m.c378 = Constraint(expr=m.x146**2 - m.x428 == 0)
m.c379 = Constraint(expr= m.x167 - m.x428 == 0)
m.c380 = Constraint(expr=m.x146**3 - m.x429 == 0)
m.c381 = Constraint(expr= m.x297 - m.x429 == 0)
m.c382 = Constraint(expr=m.x148**2 - m.x430 == 0)
m.c383 = Constraint(expr= m.x175 - m.x430 == 0)
m.c384 = Constraint(expr=m.x148**3 - m.x431 == 0)
m.c385 = Constraint(expr= m.x302 - m.x431 == 0)
m.c386 = Constraint(expr=m.x150**2 - m.x432 == 0)
m.c387 = Constraint(expr= m.x181 - m.x432 == 0)
m.c388 = Constraint(expr=m.x150**3 - m.x433 == 0)
m.c389 = Constraint(expr= m.x307 - m.x433 == 0)
m.c390 = Constraint(expr=m.x152**2 - m.x434 == 0)
m.c391 = Constraint(expr= m.x187 - m.x434 == 0)
m.c392 = Constraint(expr=m.x152**3 - m.x435 == 0)
m.c393 = Constraint(expr= m.x312 - m.x435 == 0)
m.c394 = Constraint(expr=m.x154**2 - m.x436 == 0)
m.c395 = Constraint(expr= m.x191 - m.x436 == 0)
m.c396 = Constraint(expr=m.x154**3 - m.x437 == 0)
m.c397 = Constraint(expr= m.x317 - m.x437 == 0)
m.c398 = Constraint(expr=m.x156**2 - m.x438 == 0)
m.c399 = Constraint(expr= m.x30 - m.x438 == 0)
m.c400 = Constraint(expr=m.x156**3 - m.x439 == 0)
m.c401 = Constraint(expr= m.x322 - m.x439 == 0)
m.c402 = Constraint(expr=m.x158**2 - m.x440 == 0)
m.c403 = Constraint(expr= m.x35 - m.x440 == 0)
m.c404 = Constraint(expr=m.x158**3 - m.x441 == 0)
m.c405 = Constraint(expr= m.x327 - m.x441 == 0)
m.c406 = Constraint(expr=m.x160**2 - m.x442 == 0)
m.c407 = Constraint(expr= m.x37 - m.x442 == 0)
m.c408 = Constraint(expr=m.x160**3 - m.x443 == 0)
m.c409 = Constraint(expr= m.x332 - m.x443 == 0)
m.c410 = Constraint(expr=m.x162**2 - m.x444 == 0)
m.c411 = Constraint(expr= m.x42 - m.x444 == 0)
m.c412 = Constraint(expr=m.x162**3 - m.x445 == 0)
m.c413 = Constraint(expr= m.x337 - m.x445 == 0)
m.c414 = Constraint(expr=m.x164**2 - m.x446 == 0)
m.c415 = Constraint(expr= m.x46 - m.x446 == 0)
m.c416 = Constraint(expr=m.x164**3 - m.x447 == 0)
m.c417 = Constraint(expr= m.x342 - m.x447 == 0)
m.c418 = Constraint(expr=m.x166**2 - m.x448 == 0)
m.c419 = Constraint(expr= m.x48 - m.x448 == 0)
m.c420 = Constraint(expr=m.x166**3 - m.x449 == 0)
m.c421 = Constraint(expr= m.x344 - m.x449 == 0)
m.c422 = Constraint(expr=m.x168**2 - m.x450 == 0)
m.c423 = Constraint(expr= m.x52 - m.x450 == 0)
m.c424 = Constraint(expr=m.x168**3 - m.x451 == 0)
m.c425 = Constraint(expr= m.x352 - m.x451 == 0)
m.c426 = Constraint(expr=m.x170**2 - m.x452 == 0)
m.c427 = Constraint(expr= m.x56 - m.x452 == 0)
m.c428 = Constraint(expr=m.x170**3 - m.x453 == 0)
m.c429 = Constraint(expr= m.x357 - m.x453 == 0)
m.c430 = Constraint(expr=m.x172**2 - m.x454 == 0)
m.c431 = Constraint(expr= m.x58 - m.x454 == 0)
m.c432 = Constraint(expr=m.x172**3 - m.x455 == 0)
m.c433 = Constraint(expr= m.x362 - m.x455 == 0)
m.c434 = Constraint(expr=m.x174**2 - m.x456 == 0)
m.c435 = Constraint(expr= m.x64 - m.x456 == 0)
m.c436 = Constraint(expr=m.x174**3 - m.x457 == 0)
m.c437 = Constraint(expr= m.x367 - m.x457 == 0)
m.c438 = Constraint(expr=m.x176**2 - m.x458 == 0)
m.c439 = Constraint(expr= m.x67 - m.x458 == 0)
m.c440 = Constraint(expr=m.x176**3 - m.x459 == 0)
m.c441 = Constraint(expr= m.x372 - m.x459 == 0)
m.c442 = Constraint(expr=m.x178**2 - m.x460 == 0)
m.c443 = Constraint(expr= m.x69 - m.x460 == 0)
m.c444 = Constraint(expr=m.x178**3 - m.x461 == 0)
m.c445 = Constraint(expr= m.x377 - m.x461 == 0)
m.c446 = Constraint(expr=m.x180**2 - m.x462 == 0)
m.c447 = Constraint(expr= m.x73 - m.x462 == 0)
m.c448 = Constraint(expr=m.x180**3 - m.x463 == 0)
m.c449 = Constraint(expr= m.x382 - m.x463 == 0)
m.c450 = Constraint(expr=m.x182**2 - m.x464 == 0)
m.c451 = Constraint(expr= m.x76 - m.x464 == 0)
m.c452 = Constraint(expr=m.x182**3 - m.x465 == 0)
m.c453 = Constraint(expr= m.x387 - m.x465 == 0)
m.c454 = Constraint(expr=m.x184**2 - m.x466 == 0)
m.c455 = Constraint(expr= m.x81 - m.x466 == 0)
m.c456 = Constraint(expr=m.x184**3 - m.x467 == 0)
m.c457 = Constraint(expr= m.x392 - m.x467 == 0)
m.c458 = Constraint(expr=m.x186**2 - m.x468 == 0)
m.c459 = Constraint(expr= m.x85 - m.x468 == 0)
m.c460 = Constraint(expr=m.x186**3 - m.x469 == 0)
m.c461 = Constraint(expr= m.x397 - m.x469 == 0)
m.c462 = Constraint(expr=m.x188**2 - m.x470 == 0)
m.c463 = Constraint(expr= m.x87 - m.x470 == 0)
m.c464 = Constraint(expr=m.x188**3 - m.x471 == 0)
m.c465 = Constraint(expr= m.x402 - m.x471 == 0)
m.c466 = Constraint(expr=m.x190**2 - m.x472 == 0)
m.c467 = Constraint(expr= m.x90 - m.x472 == 0)
m.c468 = Constraint(expr=m.x190**3 - m.x473 == 0)
m.c469 = Constraint(expr= m.x407 - m.x473 == 0)
m.c470 = Constraint(expr=m.x192**2 - m.x474 == 0)
m.c471 = Constraint(expr= m.x94 - m.x474 == 0)
m.c472 = Constraint(expr=m.x192**3 - m.x475 == 0)
m.c473 = Constraint(expr= m.x412 - m.x475 == 0)
m.c474 = Constraint(expr=m.x140*m.x263 - m.x145 == 0)
m.c475 = Constraint(expr=m.x263*m.x422 - m.x281 == 0)
m.c476 = Constraint(expr=m.x146*m.x263 - m.x169 == 0)
m.c477 = Constraint(expr=m.x263*m.x428 - m.x296 == 0)
m.c478 = Constraint(expr=m.x152*m.x263 - m.x185 == 0)
m.c479 = Constraint(expr=m.x263*m.x434 - m.x311 == 0)
m.c480 = Constraint(expr=m.x263**2 - m.x476 == 0)
m.c481 = Constraint(expr= m.x147 - m.x476 == 0)
m.c482 = Constraint(expr=m.x140*m.x476 - m.x280 == 0)
m.c483 = Constraint(expr=m.x146*m.x476 - m.x295 == 0)
m.c484 = Constraint(expr=m.x152*m.x476 - m.x310 == 0)
m.c485 = Constraint(expr=m.x263**3 - m.x477 == 0)
m.c486 = Constraint(expr=m.b2*m.x477 - m.x279 == 0)
m.c487 = Constraint(expr=m.b5*m.x477 - m.x294 == 0)
m.c488 = Constraint(expr=m.b8*m.x477 - m.x309 == 0)
m.c489 = Constraint(expr=m.x142*m.x264 - m.x155 == 0)
m.c490 = Constraint(expr=m.x264*m.x424 - m.x286 == 0)
m.c491 = Constraint(expr=m.x148*m.x264 - m.x173 == 0)
m.c492 = Constraint(expr=m.x264*m.x430 - m.x301 == 0)
m.c493 = Constraint(expr=m.x154*m.x264 - m.x193 == 0)
m.c494 = Constraint(expr=m.x264*m.x436 - m.x316 == 0)
m.c495 = Constraint(expr=m.x264**2 - m.x478 == 0)
m.c496 = Constraint(expr= m.x153 - m.x478 == 0)
m.c497 = Constraint(expr=m.x142*m.x478 - m.x285 == 0)
m.c498 = Constraint(expr=m.x148*m.x478 - m.x300 == 0)
m.c499 = Constraint(expr=m.x154*m.x478 - m.x315 == 0)
m.c500 = Constraint(expr=m.x264**3 - m.x479 == 0)
m.c501 = Constraint(expr=m.b3*m.x479 - m.x284 == 0)
m.c502 = Constraint(expr=m.b6*m.x479 - m.x299 == 0)
m.c503 = Constraint(expr=m.b9*m.x479 - m.x314 == 0)
m.c504 = Constraint(expr=m.x144*m.x265 - m.x163 == 0)
m.c505 = Constraint(expr=m.x265*m.x426 - m.x291 == 0)
m.c506 = Constraint(expr=m.x150*m.x265 - m.x179 == 0)
m.c507 = Constraint(expr=m.x265*m.x432 - m.x306 == 0)
m.c508 = Constraint(expr=m.x156*m.x265 - m.x31 == 0)
m.c509 = Constraint(expr=m.x265*m.x438 - m.x321 == 0)
m.c510 = Constraint(expr=m.x265**2 - m.x480 == 0)
m.c511 = Constraint(expr= m.x161 - m.x480 == 0)
m.c512 = Constraint(expr=m.x144*m.x480 - m.x290 == 0)
m.c513 = Constraint(expr=m.x150*m.x480 - m.x305 == 0)
m.c514 = Constraint(expr=m.x156*m.x480 - m.x320 == 0)
m.c515 = Constraint(expr=m.x265**3 - m.x481 == 0)
m.c516 = Constraint(expr=m.b4*m.x481 - m.x289 == 0)
m.c517 = Constraint(expr=m.b7*m.x481 - m.x304 == 0)
m.c518 = Constraint(expr=m.b10*m.x481 - m.x319 == 0)
m.c519 = Constraint(expr=m.x158*m.x266 - m.x34 == 0)
m.c520 = Constraint(expr=m.x266*m.x440 - m.x326 == 0)
m.c521 = Constraint(expr=m.x164*m.x266 - m.x45 == 0)
m.c522 = Constraint(expr=m.x266*m.x446 - m.x341 == 0)
m.c523 = Constraint(expr=m.x266**2 - m.x482 == 0)
m.c524 = Constraint(expr= m.x33 - m.x482 == 0)
m.c525 = Constraint(expr=m.x158*m.x482 - m.x325 == 0)
m.c526 = Constraint(expr=m.x164*m.x482 - m.x340 == 0)
m.c527 = Constraint(expr=m.x266**3 - m.x483 == 0)
m.c528 = Constraint(expr=m.b11*m.x483 - m.x324 == 0)
m.c529 = Constraint(expr=m.b14*m.x483 - m.x339 == 0)
m.c530 = Constraint(expr=m.x160*m.x267 - m.x39 == 0)
m.c531 = Constraint(expr=m.x267*m.x442 - m.x331 == 0)
m.c532 = Constraint(expr=m.x166*m.x267 - m.x49 == 0)
m.c533 = Constraint(expr=m.x267*m.x448 - m.x343 == 0)
m.c534 = Constraint(expr=m.x267**2 - m.x484 == 0)
m.c535 = Constraint(expr= m.x38 - m.x484 == 0)
m.c536 = Constraint(expr=m.x160*m.x484 - m.x330 == 0)
m.c537 = Constraint(expr=m.x166*m.x484 - m.x347 == 0)
m.c538 = Constraint(expr=m.x267**3 - m.x485 == 0)
m.c539 = Constraint(expr=m.b12*m.x485 - m.x329 == 0)
m.c540 = Constraint(expr=m.b15*m.x485 - m.x346 == 0)
m.c541 = Constraint(expr=m.x162*m.x268 - m.x41 == 0)
m.c542 = Constraint(expr=m.x268*m.x444 - m.x336 == 0)
m.c543 = Constraint(expr=m.x168*m.x268 - m.x51 == 0)
m.c544 = Constraint(expr=m.x268*m.x450 - m.x351 == 0)
m.c545 = Constraint(expr=m.x268**2 - m.x486 == 0)
m.c546 = Constraint(expr= m.x43 - m.x486 == 0)
m.c547 = Constraint(expr=m.x162*m.x486 - m.x335 == 0)
m.c548 = Constraint(expr=m.x168*m.x486 - m.x350 == 0)
m.c549 = Constraint(expr=m.x268**3 - m.x487 == 0)
m.c550 = Constraint(expr=m.b13*m.x487 - m.x334 == 0)
m.c551 = Constraint(expr=m.b16*m.x487 - m.x349 == 0)
m.c552 = Constraint(expr=m.x170*m.x269 - m.x54 == 0)
m.c553 = Constraint(expr=m.x269*m.x452 - m.x356 == 0)
m.c554 = Constraint(expr=m.x176*m.x269 - m.x66 == 0)
m.c555 = Constraint(expr=m.x269*m.x458 - m.x371 == 0)
m.c556 = Constraint(expr=m.x269**2 - m.x488 == 0)
m.c557 = Constraint(expr= m.x55 - m.x488 == 0)
m.c558 = Constraint(expr=m.x170*m.x488 - m.x355 == 0)
m.c559 = Constraint(expr=m.x176*m.x488 - m.x370 == 0)
m.c560 = Constraint(expr=m.x269**3 - m.x489 == 0)
m.c561 = Constraint(expr=m.b17*m.x489 - m.x354 == 0)
m.c562 = Constraint(expr=m.b20*m.x489 - m.x369 == 0)
m.c563 = Constraint(expr=m.x172*m.x270 - m.x59 == 0)
m.c564 = Constraint(expr=m.x270*m.x454 - m.x361 == 0)
m.c565 = Constraint(expr=m.x178*m.x270 - m.x70 == 0)
m.c566 = Constraint(expr=m.x270*m.x460 - m.x376 == 0)
m.c567 = Constraint(expr=m.x270**2 - m.x490 == 0)
m.c568 = Constraint(expr= m.x60 - m.x490 == 0)
m.c569 = Constraint(expr=m.x172*m.x490 - m.x360 == 0)
m.c570 = Constraint(expr=m.x178*m.x490 - m.x375 == 0)
m.c571 = Constraint(expr=m.x270**3 - m.x491 == 0)
m.c572 = Constraint(expr=m.b18*m.x491 - m.x359 == 0)
m.c573 = Constraint(expr=m.b21*m.x491 - m.x374 == 0)
m.c574 = Constraint(expr=m.x174*m.x271 - m.x63 == 0)
m.c575 = Constraint(expr=m.x271*m.x456 - m.x366 == 0)
m.c576 = Constraint(expr=m.x180*m.x271 - m.x72 == 0)
m.c577 = Constraint(expr=m.x271*m.x462 - m.x381 == 0)
m.c578 = Constraint(expr=m.x271**2 - m.x492 == 0)
m.c579 = Constraint(expr= m.x62 - m.x492 == 0)
m.c580 = Constraint(expr=m.x174*m.x492 - m.x365 == 0)
m.c581 = Constraint(expr=m.x180*m.x492 - m.x380 == 0)
m.c582 = Constraint(expr=m.x271**3 - m.x493 == 0)
m.c583 = Constraint(expr=m.b19*m.x493 - m.x364 == 0)
m.c584 = Constraint(expr=m.b22*m.x493 - m.x379 == 0)
m.c585 = Constraint(expr=m.x182*m.x272 - m.x75 == 0)
m.c586 = Constraint(expr=m.x272*m.x464 - m.x386 == 0)
m.c587 = Constraint(expr=m.x188*m.x272 - m.x88 == 0)
m.c588 = Constraint(expr=m.x272*m.x470 - m.x401 == 0)
m.c589 = Constraint(expr=m.x272**2 - m.x494 == 0)
m.c590 = Constraint(expr= m.x77 - m.x494 == 0)
m.c591 = Constraint(expr=m.x182*m.x494 - m.x385 == 0)
m.c592 = Constraint(expr=m.x188*m.x494 - m.x400 == 0)
m.c593 = Constraint(expr=m.x272**3 - m.x495 == 0)
m.c594 = Constraint(expr=m.b23*m.x495 - m.x384 == 0)
m.c595 = Constraint(expr=m.b26*m.x495 - m.x399 == 0)
m.c596 = Constraint(expr=m.x184*m.x273 - m.x79 == 0)
m.c597 = Constraint(expr=m.x273*m.x466 - m.x391 == 0)
m.c598 = Constraint(expr=m.x190*m.x273 - m.x91 == 0)
m.c599 = Constraint(expr=m.x273*m.x472 - m.x406 == 0)
m.c600 = Constraint(expr=m.x273**2 - m.x496 == 0)
m.c601 = Constraint(expr= m.x80 - m.x496 == 0)
m.c602 = Constraint(expr=m.x184*m.x496 - m.x390 == 0)
m.c603 = Constraint(expr=m.x190*m.x496 - m.x405 == 0)
m.c604 = Constraint(expr=m.x273**3 - m.x497 == 0)
m.c605 = Constraint(expr=m.b24*m.x497 - m.x389 == 0)
m.c606 = Constraint(expr=m.b27*m.x497 - m.x404 == 0)
m.c607 = Constraint(expr=m.x186*m.x274 - m.x83 == 0)
m.c608 = Constraint(expr=m.x274*m.x468 - m.x396 == 0)
m.c609 = Constraint(expr=m.x192*m.x274 - m.x93 == 0)
m.c610 = Constraint(expr=m.x274*m.x474 - m.x411 == 0)
m.c611 = Constraint(expr=m.x274**2 - m.x498 == 0)
m.c612 = Constraint(expr= m.x84 - m.x498 == 0)
m.c613 = Constraint(expr=m.x186*m.x498 - m.x395 == 0)
m.c614 = Constraint(expr=m.x192*m.x498 - m.x410 == 0)
m.c615 = Constraint(expr=m.x274**3 - m.x499 == 0)
m.c616 = Constraint(expr=m.b25*m.x499 - m.x394 == 0)
m.c617 = Constraint(expr=m.b28*m.x499 - m.x409 == 0)
| [
1,
529,
276,
1112,
420,
29958,
283,
29891,
574,
29899,
29893,
29899,
29896,
29929,
29914,
7099,
10482,
13,
29937,
29871,
341,
1177,
13208,
3971,
491,
402,
29909,
4345,
14806,
472,
29871,
29900,
29946,
29914,
29906,
29896,
29914,
29896,
29947,
29871,
29896,
29941,
29901,
29945,
29945,
29901,
29896,
29947,
13,
29937,
259,
13,
29937,
29871,
11243,
362,
18139,
13,
29937,
418,
14990,
4706,
382,
4706,
402,
4706,
365,
4706,
405,
4706,
1060,
4706,
315,
4706,
350,
13,
29937,
308,
29953,
29896,
29955,
539,
29941,
29953,
29955,
539,
29896,
29900,
29941,
539,
29896,
29946,
29955,
308,
29900,
308,
29900,
308,
29900,
308,
29900,
13,
29937,
259,
13,
29937,
29871,
28736,
18139,
13,
29937,
462,
259,
921,
4706,
289,
4706,
474,
418,
269,
29896,
29879,
418,
269,
29906,
29879,
539,
885,
539,
1354,
13,
29937,
418,
14990,
268,
640,
259,
7581,
29871,
6043,
268,
269,
359,
29896,
268,
269,
359,
29906,
1678,
269,
1285,
268,
25507,
13,
29937,
308,
29946,
29929,
29929,
539,
29946,
29955,
29906,
4706,
29906,
29955,
308,
29900,
308,
29900,
308,
29900,
308,
29900,
308,
29900,
13,
29937,
29871,
383,
29990,
539,
29953,
308,
29953,
308,
29900,
308,
29900,
308,
29900,
308,
29900,
308,
29900,
308,
29900,
13,
29937,
259,
13,
29937,
29871,
10050,
9171,
18139,
13,
29937,
418,
14990,
1678,
1040,
539,
405,
29931,
418,
22474,
13,
29937,
4706,
29896,
29953,
29941,
29953,
418,
29896,
29941,
29941,
29941,
539,
29941,
29900,
29941,
308,
29900,
13,
29937,
29871,
13,
29937,
29871,
23933,
2785,
756,
6206,
29871,
29896,
2286,
322,
29871,
29896,
6306,
13,
13,
13,
3166,
11451,
10730,
29889,
21813,
1053,
334,
13,
13,
4299,
353,
286,
353,
1281,
9084,
3195,
580,
13,
13,
13,
29885,
29889,
29890,
29906,
353,
11681,
29898,
2541,
262,
29922,
25196,
29892,
23687,
7607,
29900,
29892,
29896,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29890,
29941,
353,
11681,
29898,
2541,
262,
29922,
25196,
29892,
23687,
7607,
29900,
29892,
29896,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29890,
29946,
353,
11681,
29898,
2541,
262,
29922,
25196,
29892,
23687,
7607,
29900,
29892,
29896,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29890,
29945,
353,
11681,
29898,
2541,
262,
29922,
25196,
29892,
23687,
7607,
29900,
29892,
29896,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29890,
29953,
353,
11681,
29898,
2541,
262,
29922,
25196,
29892,
23687,
7607,
29900,
29892,
29896,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29890,
29955,
353,
11681,
29898,
2541,
262,
29922,
25196,
29892,
23687,
7607,
29900,
29892,
29896,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29890,
29947,
353,
11681,
29898,
2541,
262,
29922,
25196,
29892,
23687,
7607,
29900,
29892,
29896,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29890,
29929,
353,
11681,
29898,
2541,
262,
29922,
25196,
29892,
23687,
7607,
29900,
29892,
29896,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29890,
29896,
29900,
353,
11681,
29898,
2541,
262,
29922,
25196,
29892,
23687,
7607,
29900,
29892,
29896,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29890,
29896,
29896,
353,
11681,
29898,
2541,
262,
29922,
25196,
29892,
23687,
7607,
29900,
29892,
29896,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29890,
29896,
29906,
353,
11681,
29898,
2541,
262,
29922,
25196,
29892,
23687,
7607,
29900,
29892,
29896,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29890,
29896,
29941,
353,
11681,
29898,
2541,
262,
29922,
25196,
29892,
23687,
7607,
29900,
29892,
29896,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29890,
29896,
29946,
353,
11681,
29898,
2541,
262,
29922,
25196,
29892,
23687,
7607,
29900,
29892,
29896,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29890,
29896,
29945,
353,
11681,
29898,
2541,
262,
29922,
25196,
29892,
23687,
7607,
29900,
29892,
29896,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29890,
29896,
29953,
353,
11681,
29898,
2541,
262,
29922,
25196,
29892,
23687,
7607,
29900,
29892,
29896,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29890,
29896,
29955,
353,
11681,
29898,
2541,
262,
29922,
25196,
29892,
23687,
7607,
29900,
29892,
29896,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29890,
29896,
29947,
353,
11681,
29898,
2541,
262,
29922,
25196,
29892,
23687,
7607,
29900,
29892,
29896,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29890,
29896,
29929,
353,
11681,
29898,
2541,
262,
29922,
25196,
29892,
23687,
7607,
29900,
29892,
29896,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29890,
29906,
29900,
353,
11681,
29898,
2541,
262,
29922,
25196,
29892,
23687,
7607,
29900,
29892,
29896,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29890,
29906,
29896,
353,
11681,
29898,
2541,
262,
29922,
25196,
29892,
23687,
7607,
29900,
29892,
29896,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29890,
29906,
29906,
353,
11681,
29898,
2541,
262,
29922,
25196,
29892,
23687,
7607,
29900,
29892,
29896,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29890,
29906,
29941,
353,
11681,
29898,
2541,
262,
29922,
25196,
29892,
23687,
7607,
29900,
29892,
29896,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29890,
29906,
29946,
353,
11681,
29898,
2541,
262,
29922,
25196,
29892,
23687,
7607,
29900,
29892,
29896,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29890,
29906,
29945,
353,
11681,
29898,
2541,
262,
29922,
25196,
29892,
23687,
7607,
29900,
29892,
29896,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29890,
29906,
29953,
353,
11681,
29898,
2541,
262,
29922,
25196,
29892,
23687,
7607,
29900,
29892,
29896,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29890,
29906,
29955,
353,
11681,
29898,
2541,
262,
29922,
25196,
29892,
23687,
7607,
29900,
29892,
29896,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29890,
29906,
29947,
353,
11681,
29898,
2541,
262,
29922,
25196,
29892,
23687,
7607,
29900,
29892,
29896,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29896,
29900,
29900,
29900,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29896,
29900,
29900,
29900,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29896,
29900,
29900,
29900,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29896,
29900,
29900,
29900,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29896,
29900,
29900,
29900,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29896,
29900,
29900,
29900,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29945,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29896,
29900,
29900,
29900,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29945,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29945,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29945,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29896,
29900,
29900,
29900,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29945,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29945,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29945,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29945,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29896,
29900,
29900,
29900,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29945,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29945,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29953,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29953,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29896,
29900,
29900,
29900,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29953,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29953,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29953,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29953,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29896,
29900,
29900,
29900,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29953,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29953,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29953,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29896,
29900,
29900,
29900,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29953,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29955,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29955,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29896,
29900,
29900,
29900,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29955,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29955,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29955,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29896,
29900,
29900,
29900,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29955,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29955,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29955,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29955,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29896,
29900,
29900,
29900,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29955,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29947,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29947,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29947,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29896,
29900,
29900,
29900,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29947,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29947,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29947,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29947,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29896,
29900,
29900,
29900,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29947,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29947,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29947,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29896,
29900,
29900,
29900,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29929,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29929,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29929,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29896,
29900,
29900,
29900,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29929,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29929,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29929,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29929,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29929,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29929,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29929,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29906,
29889,
29946,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29900,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29900,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29906,
29889,
29946,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29900,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29900,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29906,
29889,
29946,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29900,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29900,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29906,
29889,
29946,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29900,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29900,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29906,
29889,
29946,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29900,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29900,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29906,
29889,
29946,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29896,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29896,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29896,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29896,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29896,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29896,
29889,
29896,
29953,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29896,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29896,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29896,
29889,
29896,
29953,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29896,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29896,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29896,
29889,
29896,
29953,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29896,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29906,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29906,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29906,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29941,
29889,
29945,
29892,
29941,
29889,
29945,
511,
24926,
29922,
29941,
29889,
29945,
29897,
13,
29885,
29889,
29916,
29896,
29906,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29906,
29892,
29945,
511,
24926,
29922,
29906,
29897,
13,
29885,
29889,
29916,
29896,
29906,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29906,
29892,
29945,
511,
24926,
29922,
29906,
29897,
13,
29885,
29889,
29916,
29896,
29906,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29906,
29892,
29945,
511,
24926,
29922,
29906,
29897,
13,
29885,
29889,
29916,
29896,
29906,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29906,
29892,
29945,
511,
24926,
29922,
29906,
29897,
13,
29885,
29889,
29916,
29896,
29906,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29906,
29892,
29945,
511,
24926,
29922,
29906,
29897,
13,
29885,
29889,
29916,
29896,
29906,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29946,
29889,
29896,
29892,
29946,
29889,
29896,
511,
24926,
29922,
29946,
29889,
29896,
29897,
13,
29885,
29889,
29916,
29896,
29906,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29906,
29889,
29945,
29892,
29945,
511,
24926,
29922,
29906,
29889,
29945,
29897,
13,
29885,
29889,
29916,
29896,
29941,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29906,
29889,
29945,
29892,
29945,
511,
24926,
29922,
29906,
29889,
29945,
29897,
13,
29885,
29889,
29916,
29896,
29941,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29906,
29889,
29945,
29892,
29945,
511,
24926,
29922,
29906,
29889,
29945,
29897,
13,
29885,
29889,
29916,
29896,
29941,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29906,
29889,
29945,
29892,
29945,
511,
24926,
29922,
29906,
29889,
29945,
29897,
13,
29885,
29889,
29916,
29896,
29941,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29906,
29889,
29945,
29892,
29945,
511,
24926,
29922,
29906,
29889,
29945,
29897,
13,
29885,
29889,
29916,
29896,
29941,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29946,
29892,
29946,
511,
24926,
29922,
29946,
29897,
13,
29885,
29889,
29916,
29896,
29941,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29906,
29892,
29953,
511,
24926,
29922,
29906,
29897,
13,
29885,
29889,
29916,
29896,
29941,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29906,
29892,
29953,
511,
24926,
29922,
29906,
29897,
13,
29885,
29889,
29916,
29896,
29941,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29906,
29892,
29953,
511,
24926,
29922,
29906,
29897,
13,
29885,
29889,
29916,
29896,
29941,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29906,
29892,
29953,
511,
24926,
29922,
29906,
29897,
13,
29885,
29889,
29916,
29896,
29941,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29906,
29892,
29953,
511,
24926,
29922,
29906,
29897,
13,
29885,
29889,
29916,
29896,
29946,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29947,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29946,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29896,
29900,
29900,
29900,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29946,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29947,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29946,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29946,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29947,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29946,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29946,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29947,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29946,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29946,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29947,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29946,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29896,
29900,
29900,
29900,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29945,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29947,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29945,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29945,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29947,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29945,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29945,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29947,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29945,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29945,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29947,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29945,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29896,
29900,
29900,
29900,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29945,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29945,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29953,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29953,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29953,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29953,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29953,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29953,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29896,
29900,
29900,
29900,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29953,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29953,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29953,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29953,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29955,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29955,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29955,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29896,
29900,
29900,
29900,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29955,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29955,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29955,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29955,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29955,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29955,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29955,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29955,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29955,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29896,
29900,
29900,
29900,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29955,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29955,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29955,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29947,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29955,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29947,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29947,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29945,
29947,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29947,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29896,
29900,
29900,
29900,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29947,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29945,
29947,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29947,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29947,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29945,
29947,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29947,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29947,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29945,
29947,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29947,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29896,
29900,
29900,
29900,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29929,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29945,
29947,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29929,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29929,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29945,
29947,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29929,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29896,
29929,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29953,
29906,
29892,
29953,
29945,
511,
24926,
29922,
29953,
29906,
29897,
13,
29885,
29889,
29916,
29896,
29929,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29953,
29906,
29892,
29953,
29945,
511,
24926,
29922,
29953,
29906,
29897,
13,
29885,
29889,
29916,
29896,
29929,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29953,
29906,
29892,
29953,
29945,
511,
24926,
29922,
29953,
29906,
29897,
13,
29885,
29889,
29916,
29896,
29929,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29929,
29906,
29889,
29945,
29892,
29929,
29945,
511,
24926,
29922,
29929,
29906,
29889,
29945,
29897,
13,
29885,
29889,
29916,
29896,
29929,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29929,
29906,
29889,
29945,
29892,
29929,
29945,
511,
24926,
29922,
29929,
29906,
29889,
29945,
29897,
13,
29885,
29889,
29916,
29896,
29929,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29929,
29906,
29889,
29945,
29892,
29929,
29945,
511,
24926,
29922,
29929,
29906,
29889,
29945,
29897,
13,
29885,
29889,
29916,
29906,
29900,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29896,
29900,
29945,
29892,
29896,
29900,
29929,
511,
24926,
29922,
29896,
29900,
29945,
29897,
13,
29885,
29889,
29916,
29906,
29900,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29896,
29900,
29945,
29892,
29896,
29900,
29929,
511,
24926,
29922,
29896,
29900,
29945,
29897,
13,
29885,
29889,
29916,
29906,
29900,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29896,
29900,
29945,
29892,
29896,
29900,
29929,
511,
24926,
29922,
29896,
29900,
29945,
29897,
13,
29885,
29889,
29916,
29906,
29900,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29900,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29896,
29906,
29945,
29892,
29896,
29906,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29900,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29900,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29896,
29906,
29945,
29892,
29896,
29906,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29900,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29900,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29896,
29906,
29945,
29892,
29896,
29906,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29900,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29896,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29896,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29896,
29900,
29900,
29892,
29896,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29896,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29896,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29896,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29896,
29900,
29900,
29892,
29896,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29896,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29896,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29896,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29896,
29900,
29900,
29892,
29896,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29896,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29896,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29896,
29906,
29945,
29892,
29896,
29906,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29906,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29906,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29896,
29906,
29945,
29892,
29896,
29906,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29906,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29906,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29896,
29906,
29945,
29892,
29896,
29906,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29906,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29946,
29929,
29892,
29946,
29929,
511,
24926,
29922,
29946,
29929,
29897,
13,
29885,
29889,
29916,
29906,
29906,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29946,
29929,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29906,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29946,
29929,
29892,
29946,
29929,
511,
24926,
29922,
29946,
29929,
29897,
13,
29885,
29889,
29916,
29906,
29906,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29946,
29929,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29906,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29946,
29929,
29892,
29946,
29929,
511,
24926,
29922,
29946,
29929,
29897,
13,
29885,
29889,
29916,
29906,
29906,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29946,
29929,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29941,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29953,
29945,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29941,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29953,
29945,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29941,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29953,
29945,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29941,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29929,
29945,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29941,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29929,
29945,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29941,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
29922,
6278,
29929,
29945,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29941,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29906,
29892,
29900,
29889,
29947,
511,
24926,
29922,
29900,
29889,
29906,
29897,
13,
29885,
29889,
29916,
29906,
29941,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29906,
29892,
29900,
29889,
29947,
511,
24926,
29922,
29900,
29889,
29906,
29897,
13,
29885,
29889,
29916,
29906,
29941,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29906,
29892,
29900,
29889,
29947,
511,
24926,
29922,
29900,
29889,
29906,
29897,
13,
29885,
29889,
29916,
29906,
29941,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29906,
29892,
29900,
29889,
29947,
511,
24926,
29922,
29900,
29889,
29906,
29897,
13,
29885,
29889,
29916,
29906,
29946,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29906,
29892,
29900,
29889,
29947,
511,
24926,
29922,
29900,
29889,
29906,
29897,
13,
29885,
29889,
29916,
29906,
29946,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29906,
29892,
29900,
29889,
29947,
511,
24926,
29922,
29900,
29889,
29906,
29897,
13,
29885,
29889,
29916,
29906,
29946,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29906,
29892,
29900,
29889,
29947,
511,
24926,
29922,
29900,
29889,
29906,
29897,
13,
29885,
29889,
29916,
29906,
29946,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29906,
29892,
29900,
29889,
29947,
511,
24926,
29922,
29900,
29889,
29906,
29897,
13,
29885,
29889,
29916,
29906,
29946,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29906,
29892,
29900,
29889,
29947,
511,
24926,
29922,
29900,
29889,
29906,
29897,
13,
29885,
29889,
29916,
29906,
29946,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29906,
29945,
29892,
29900,
29889,
29945,
511,
24926,
29922,
29900,
29889,
29906,
29945,
29897,
13,
29885,
29889,
29916,
29906,
29946,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29906,
29945,
29892,
29900,
29889,
29945,
511,
24926,
29922,
29900,
29889,
29906,
29945,
29897,
13,
29885,
29889,
29916,
29906,
29946,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29906,
29945,
29892,
29900,
29889,
29945,
511,
24926,
29922,
29900,
29889,
29906,
29945,
29897,
13,
29885,
29889,
29916,
29906,
29946,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29906,
29945,
29892,
29900,
29889,
29945,
511,
24926,
29922,
29900,
29889,
29906,
29945,
29897,
13,
29885,
29889,
29916,
29906,
29946,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29906,
29945,
29892,
29900,
29889,
29945,
511,
24926,
29922,
29900,
29889,
29906,
29945,
29897,
13,
29885,
29889,
29916,
29906,
29945,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29906,
29945,
29892,
29900,
29889,
29945,
511,
24926,
29922,
29900,
29889,
29906,
29945,
29897,
13,
29885,
29889,
29916,
29906,
29945,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29946,
29892,
29900,
29889,
29955,
511,
24926,
29922,
29900,
29889,
29946,
29897,
13,
29885,
29889,
29916,
29906,
29945,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29946,
29892,
29900,
29889,
29955,
511,
24926,
29922,
29900,
29889,
29946,
29897,
13,
29885,
29889,
29916,
29906,
29945,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29946,
29892,
29900,
29889,
29955,
511,
24926,
29922,
29900,
29889,
29946,
29897,
13,
29885,
29889,
29916,
29906,
29945,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29946,
29892,
29900,
29889,
29955,
511,
24926,
29922,
29900,
29889,
29946,
29897,
13,
29885,
29889,
29916,
29906,
29945,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29946,
29892,
29900,
29889,
29955,
511,
24926,
29922,
29900,
29889,
29946,
29897,
13,
29885,
29889,
29916,
29906,
29945,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29946,
29892,
29900,
29889,
29955,
511,
24926,
29922,
29900,
29889,
29946,
29897,
13,
29885,
29889,
29916,
29906,
29945,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29906,
29946,
29892,
29900,
29889,
29945,
29947,
511,
24926,
29922,
29900,
29889,
29906,
29946,
29897,
13,
29885,
29889,
29916,
29906,
29945,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29906,
29946,
29892,
29900,
29889,
29945,
29947,
511,
24926,
29922,
29900,
29889,
29906,
29946,
29897,
13,
29885,
29889,
29916,
29906,
29945,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29906,
29946,
29892,
29900,
29889,
29945,
29947,
511,
24926,
29922,
29900,
29889,
29906,
29946,
29897,
13,
29885,
29889,
29916,
29906,
29953,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29906,
29946,
29892,
29900,
29889,
29945,
29947,
511,
24926,
29922,
29900,
29889,
29906,
29946,
29897,
13,
29885,
29889,
29916,
29906,
29953,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29906,
29946,
29892,
29900,
29889,
29945,
29947,
511,
24926,
29922,
29900,
29889,
29906,
29946,
29897,
13,
29885,
29889,
29916,
29906,
29953,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29906,
29946,
29892,
29900,
29889,
29945,
29947,
511,
24926,
29922,
29900,
29889,
29906,
29946,
29897,
13,
29885,
29889,
29916,
29906,
29953,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29953,
29892,
29896,
511,
24926,
29922,
29900,
29889,
29953,
29897,
13,
29885,
29889,
29916,
29906,
29953,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29953,
29892,
29896,
511,
24926,
29922,
29900,
29889,
29953,
29897,
13,
29885,
29889,
29916,
29906,
29953,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29953,
29892,
29896,
511,
24926,
29922,
29900,
29889,
29953,
29897,
13,
29885,
29889,
29916,
29906,
29953,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29947,
29892,
29896,
511,
24926,
29922,
29900,
29889,
29947,
29897,
13,
29885,
29889,
29916,
29906,
29953,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29947,
29892,
29896,
511,
24926,
29922,
29900,
29889,
29947,
29897,
13,
29885,
29889,
29916,
29906,
29953,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29947,
29892,
29896,
511,
24926,
29922,
29900,
29889,
29947,
29897,
13,
29885,
29889,
29916,
29906,
29953,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29947,
29945,
29892,
29896,
511,
24926,
29922,
29900,
29889,
29947,
29945,
29897,
13,
29885,
29889,
29916,
29906,
29955,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29947,
29945,
29892,
29896,
511,
24926,
29922,
29900,
29889,
29947,
29945,
29897,
13,
29885,
29889,
29916,
29906,
29955,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29947,
29945,
29892,
29896,
511,
24926,
29922,
29900,
29889,
29947,
29945,
29897,
13,
29885,
29889,
29916,
29906,
29955,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29955,
29892,
29896,
511,
24926,
29922,
29900,
29889,
29955,
29897,
13,
29885,
29889,
29916,
29906,
29955,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29955,
29892,
29896,
511,
24926,
29922,
29900,
29889,
29955,
29897,
13,
29885,
29889,
29916,
29906,
29955,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29955,
29892,
29896,
511,
24926,
29922,
29900,
29889,
29955,
29897,
13,
29885,
29889,
29916,
29906,
29955,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29896,
29900,
29900,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29896,
29900,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29955,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29896,
29900,
29900,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29896,
29900,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29955,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29896,
29900,
29900,
29892,
29896,
29900,
29900,
29900,
511,
24926,
29922,
29896,
29900,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29955,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29945,
29946,
29889,
29896,
29955,
29896,
29955,
29929,
29929,
29953,
29896,
29941,
29955,
29896,
29947,
29941,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29955,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29947,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29947,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29947,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29947,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29945,
29946,
29889,
29896,
29955,
29896,
29955,
29929,
29929,
29953,
29896,
29941,
29955,
29896,
29947,
29941,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29947,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29947,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29947,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29947,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29947,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29945,
29946,
29889,
29896,
29955,
29896,
29955,
29929,
29929,
29953,
29896,
29941,
29955,
29896,
29947,
29941,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29947,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29929,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29929,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29929,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29929,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29945,
29946,
29889,
29896,
29955,
29896,
29955,
29929,
29929,
29953,
29896,
29941,
29955,
29896,
29947,
29941,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29929,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29929,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29929,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29929,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29929,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29945,
29946,
29889,
29896,
29955,
29896,
29955,
29929,
29929,
29953,
29896,
29941,
29955,
29896,
29947,
29941,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29906,
29929,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29900,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29900,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29900,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29900,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29945,
29946,
29889,
29896,
29955,
29896,
29955,
29929,
29929,
29953,
29896,
29941,
29955,
29896,
29947,
29941,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29900,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29900,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29900,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29900,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29900,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29945,
29946,
29889,
29896,
29955,
29896,
29955,
29929,
29929,
29953,
29896,
29941,
29955,
29896,
29947,
29941,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29900,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29896,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29896,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29896,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29896,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29945,
29946,
29889,
29896,
29955,
29896,
29955,
29929,
29929,
29953,
29896,
29941,
29955,
29896,
29947,
29941,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29896,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29896,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29896,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29896,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29896,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29945,
29946,
29889,
29896,
29955,
29896,
29955,
29929,
29929,
29953,
29896,
29941,
29955,
29896,
29947,
29941,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29896,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29906,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29906,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29906,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29906,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29929,
29941,
29889,
29900,
29946,
29945,
29900,
29945,
29896,
29955,
29947,
29929,
29946,
29941,
29906,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29906,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29906,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29906,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29906,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29906,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29929,
29941,
29889,
29900,
29946,
29945,
29900,
29945,
29896,
29955,
29947,
29929,
29946,
29941,
29906,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29906,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29941,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29941,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29941,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29941,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29929,
29941,
29889,
29900,
29946,
29945,
29900,
29945,
29896,
29955,
29947,
29929,
29946,
29941,
29906,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29941,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29941,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29941,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29941,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29941,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29929,
29941,
29889,
29900,
29946,
29945,
29900,
29945,
29896,
29955,
29947,
29929,
29946,
29941,
29906,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29941,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29946,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29946,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29946,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29946,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29946,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29946,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29929,
29941,
29889,
29900,
29946,
29945,
29900,
29945,
29896,
29955,
29947,
29929,
29946,
29941,
29906,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29946,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29946,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29946,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29929,
29941,
29889,
29900,
29946,
29945,
29900,
29945,
29896,
29955,
29947,
29929,
29946,
29941,
29906,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29946,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29945,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29945,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29945,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29945,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29896,
29896,
29906,
29889,
29941,
29947,
29946,
29929,
29947,
29955,
29955,
29946,
29929,
29946,
29953,
29929,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29945,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29945,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29945,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29945,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29945,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29896,
29896,
29906,
29889,
29941,
29947,
29946,
29929,
29947,
29955,
29955,
29946,
29929,
29946,
29953,
29929,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29945,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29953,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29953,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29953,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29953,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29896,
29896,
29906,
29889,
29941,
29947,
29946,
29929,
29947,
29955,
29955,
29946,
29929,
29946,
29953,
29929,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29953,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29953,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29953,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29953,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29953,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29896,
29896,
29906,
29889,
29941,
29947,
29946,
29929,
29947,
29955,
29955,
29946,
29929,
29946,
29953,
29929,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29953,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29955,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29955,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29955,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29955,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29896,
29896,
29906,
29889,
29941,
29947,
29946,
29929,
29947,
29955,
29955,
29946,
29929,
29946,
29953,
29929,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29955,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29955,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29955,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29955,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29955,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29896,
29896,
29906,
29889,
29941,
29947,
29946,
29929,
29947,
29955,
29955,
29946,
29929,
29946,
29953,
29929,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29955,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29947,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29947,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29947,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29947,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29946,
29906,
29889,
29900,
29953,
29953,
29945,
29946,
29906,
29946,
29953,
29929,
29896,
29955,
29906,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29947,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29947,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29947,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29947,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29947,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29946,
29906,
29889,
29900,
29953,
29953,
29945,
29946,
29906,
29946,
29953,
29929,
29896,
29955,
29906,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29947,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29929,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29929,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29929,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29929,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29946,
29906,
29889,
29900,
29953,
29953,
29945,
29946,
29906,
29946,
29953,
29929,
29896,
29955,
29906,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29929,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29929,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29929,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29929,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29929,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29946,
29906,
29889,
29900,
29953,
29953,
29945,
29946,
29906,
29946,
29953,
29929,
29896,
29955,
29906,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29941,
29929,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29900,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29900,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29900,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29900,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29946,
29906,
29889,
29900,
29953,
29953,
29945,
29946,
29906,
29946,
29953,
29929,
29896,
29955,
29906,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29900,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29900,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29900,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29900,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29900,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29946,
29906,
29889,
29900,
29953,
29953,
29945,
29946,
29906,
29946,
29953,
29929,
29896,
29955,
29906,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29900,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29896,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29896,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29896,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
8516,
29892,
8516,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29896,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29906,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29896,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29906,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29896,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29906,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29896,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29906,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29896,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29906,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29896,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29906,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29896,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29906,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29906,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29906,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29906,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29906,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29906,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29953,
29946,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29906,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29945,
29896,
29906,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29906,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29953,
29946,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29906,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29945,
29896,
29906,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29906,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29953,
29946,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29906,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29945,
29896,
29906,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29906,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29953,
29946,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29906,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29945,
29896,
29906,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29941,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29953,
29946,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29941,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29945,
29896,
29906,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29941,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29953,
29946,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29941,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29945,
29896,
29906,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29941,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29953,
29946,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29941,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29945,
29896,
29906,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29941,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29953,
29946,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29941,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29945,
29896,
29906,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29941,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29953,
29946,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29941,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29945,
29896,
29906,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29946,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29906,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29946,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29896,
29906,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29946,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29906,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29946,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29896,
29906,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29946,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29906,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29946,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29896,
29906,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29946,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29906,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29946,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29896,
29906,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29946,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29906,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29946,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29896,
29906,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29945,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29906,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29945,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29896,
29906,
29945,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29945,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29946,
29929,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29945,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29941,
29946,
29941,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29945,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29946,
29929,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29945,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29941,
29946,
29941,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29945,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29946,
29929,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29945,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29941,
29946,
29941,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29945,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29946,
29929,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29945,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29941,
29946,
29941,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29953,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29946,
29929,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29953,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29941,
29946,
29941,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29953,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29946,
29929,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29953,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29941,
29946,
29941,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29953,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29941,
29941,
29953,
29946,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29953,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29896,
29929,
29945,
29896,
29896,
29906,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29953,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29941,
29941,
29953,
29946,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29953,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29896,
29929,
29945,
29896,
29896,
29906,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29953,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29941,
29941,
29953,
29946,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29953,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29896,
29929,
29945,
29896,
29896,
29906,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29955,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29941,
29941,
29953,
29946,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29955,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29896,
29929,
29945,
29896,
29896,
29906,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29955,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29941,
29941,
29953,
29946,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29955,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29896,
29929,
29945,
29896,
29896,
29906,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29955,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29941,
29941,
29953,
29946,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29955,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29892,
29900,
29889,
29896,
29929,
29945,
29896,
29896,
29906,
511,
24926,
29922,
29900,
29897,
13,
29885,
29889,
29916,
29946,
29955,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29941,
29953,
29892,
29896,
511,
24926,
29922,
29900,
29889,
29941,
29953,
29897,
13,
29885,
29889,
29916,
29946,
29955,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29906,
29896,
29953,
29892,
29896,
511,
24926,
29922,
29900,
29889,
29906,
29896,
29953,
29897,
13,
29885,
29889,
29916,
29946,
29955,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29941,
29953,
29892,
29896,
511,
24926,
29922,
29900,
29889,
29941,
29953,
29897,
13,
29885,
29889,
29916,
29946,
29955,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29906,
29896,
29953,
29892,
29896,
511,
24926,
29922,
29900,
29889,
29906,
29896,
29953,
29897,
13,
29885,
29889,
29916,
29946,
29947,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29941,
29953,
29892,
29896,
511,
24926,
29922,
29900,
29889,
29941,
29953,
29897,
13,
29885,
29889,
29916,
29946,
29947,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29906,
29896,
29953,
29892,
29896,
511,
24926,
29922,
29900,
29889,
29906,
29896,
29953,
29897,
13,
29885,
29889,
29916,
29946,
29947,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29953,
29946,
29892,
29896,
511,
24926,
29922,
29900,
29889,
29953,
29946,
29897,
13,
29885,
29889,
29916,
29946,
29947,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29945,
29896,
29906,
29892,
29896,
511,
24926,
29922,
29900,
29889,
29945,
29896,
29906,
29897,
13,
29885,
29889,
29916,
29946,
29947,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29953,
29946,
29892,
29896,
511,
24926,
29922,
29900,
29889,
29953,
29946,
29897,
13,
29885,
29889,
29916,
29946,
29947,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29945,
29896,
29906,
29892,
29896,
511,
24926,
29922,
29900,
29889,
29945,
29896,
29906,
29897,
13,
29885,
29889,
29916,
29946,
29947,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29953,
29946,
29892,
29896,
511,
24926,
29922,
29900,
29889,
29953,
29946,
29897,
13,
29885,
29889,
29916,
29946,
29947,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29945,
29896,
29906,
29892,
29896,
511,
24926,
29922,
29900,
29889,
29945,
29896,
29906,
29897,
13,
29885,
29889,
29916,
29946,
29947,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29955,
29906,
29906,
29945,
29892,
29896,
511,
24926,
29922,
29900,
29889,
29955,
29906,
29906,
29945,
29897,
13,
29885,
29889,
29916,
29946,
29947,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29953,
29896,
29946,
29896,
29906,
29945,
29892,
29896,
511,
24926,
29922,
29900,
29889,
29953,
29896,
29946,
29896,
29906,
29945,
29897,
13,
29885,
29889,
29916,
29946,
29929,
29900,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29955,
29906,
29906,
29945,
29892,
29896,
511,
24926,
29922,
29900,
29889,
29955,
29906,
29906,
29945,
29897,
13,
29885,
29889,
29916,
29946,
29929,
29896,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29953,
29896,
29946,
29896,
29906,
29945,
29892,
29896,
511,
24926,
29922,
29900,
29889,
29953,
29896,
29946,
29896,
29906,
29945,
29897,
13,
29885,
29889,
29916,
29946,
29929,
29906,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29955,
29906,
29906,
29945,
29892,
29896,
511,
24926,
29922,
29900,
29889,
29955,
29906,
29906,
29945,
29897,
13,
29885,
29889,
29916,
29946,
29929,
29941,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29953,
29896,
29946,
29896,
29906,
29945,
29892,
29896,
511,
24926,
29922,
29900,
29889,
29953,
29896,
29946,
29896,
29906,
29945,
29897,
13,
29885,
29889,
29916,
29946,
29929,
29946,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29946,
29929,
29892,
29896,
511,
24926,
29922,
29900,
29889,
29946,
29929,
29897,
13,
29885,
29889,
29916,
29946,
29929,
29945,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29941,
29946,
29941,
29892,
29896,
511,
24926,
29922,
29900,
29889,
29941,
29946,
29941,
29897,
13,
29885,
29889,
29916,
29946,
29929,
29953,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29946,
29929,
29892,
29896,
511,
24926,
29922,
29900,
29889,
29946,
29929,
29897,
13,
29885,
29889,
29916,
29946,
29929,
29955,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29941,
29946,
29941,
29892,
29896,
511,
24926,
29922,
29900,
29889,
29941,
29946,
29941,
29897,
13,
29885,
29889,
29916,
29946,
29929,
29947,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29946,
29929,
29892,
29896,
511,
24926,
29922,
29900,
29889,
29946,
29929,
29897,
13,
29885,
29889,
29916,
29946,
29929,
29929,
353,
11681,
29898,
2541,
262,
29922,
1123,
1338,
29892,
23687,
7607,
29900,
29889,
29941,
29946,
29941,
29892,
29896,
511,
24926,
29922,
29900,
29889,
29941,
29946,
29941,
29897,
13,
13,
29885,
29889,
5415,
353,
4669,
573,
29898,
13338,
29922,
259,
286,
29889,
29916,
29906,
29955,
29947,
718,
286,
29889,
29916,
29906,
29947,
29941,
718,
286,
29889,
29916,
29906,
29947,
29947,
718,
286,
29889,
29916,
29906,
29929,
29941,
718,
286,
29889,
29916,
29906,
29929,
29947,
718,
286,
29889,
29916,
29941,
29900,
29941,
718,
286,
29889,
29916,
29941,
29900,
29947,
718,
286,
29889,
29916,
29941,
29896,
29941,
718,
286,
29889,
29916,
29941,
29896,
29947,
718,
286,
29889,
29916,
29941,
29906,
29941,
13,
462,
4706,
718,
286,
29889,
29916,
29941,
29906,
29947,
718,
286,
29889,
29916,
29941,
29941,
29941,
718,
286,
29889,
29916,
29941,
29941,
29947,
718,
286,
29889,
29916,
29941,
29946,
29945,
718,
286,
29889,
29916,
29941,
29946,
29947,
718,
286,
29889,
29916,
29941,
29945,
29941,
718,
286,
29889,
29916,
29941,
29945,
29947,
718,
286,
29889,
29916,
29941,
29953,
29941,
718,
286,
29889,
29916,
29941,
29953,
29947,
718,
286,
29889,
29916,
29941,
29955,
29941,
13,
462,
4706,
718,
286,
29889,
29916,
29941,
29955,
29947,
718,
286,
29889,
29916,
29941,
29947,
29941,
718,
286,
29889,
29916,
29941,
29947,
29947,
718,
286,
29889,
29916,
29941,
29929,
29941,
718,
286,
29889,
29916,
29941,
29929,
29947,
718,
286,
29889,
29916,
29946,
29900,
29941,
718,
286,
29889,
29916,
29946,
29900,
29947,
29892,
4060,
29922,
1195,
326,
675,
29897,
13,
13,
29885,
29889,
29883,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29896,
29946,
29896,
718,
29871,
29906,
29955,
29889,
29946,
29906,
29947,
29941,
29896,
29953,
29906,
29946,
29930,
29885,
29889,
29916,
29896,
29946,
29941,
718,
29871,
29941,
29955,
29889,
29945,
29946,
29900,
29955,
29941,
29906,
29946,
29930,
29885,
29889,
29916,
29896,
29946,
29945,
448,
29871,
29945,
29955,
29889,
29906,
29947,
29896,
29946,
29896,
29906,
29896,
29930,
29885,
29889,
29916,
29896,
29946,
29955,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29896,
29946,
29929,
718,
29871,
29906,
29955,
29889,
29946,
29906,
29947,
29941,
29896,
29953,
29906,
29946,
29930,
29885,
29889,
29916,
29896,
29945,
29896,
448,
29871,
29945,
29955,
29889,
29906,
29947,
29896,
29946,
29896,
29906,
29896,
29930,
29885,
29889,
29916,
29896,
29945,
29941,
718,
29871,
29941,
29955,
29889,
29945,
29946,
29900,
29955,
29941,
29906,
29946,
29930,
29885,
29889,
29916,
29896,
29945,
29945,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29896,
29945,
29955,
718,
29871,
29906,
29955,
29889,
29946,
29906,
29947,
29941,
29896,
29953,
29906,
29946,
29930,
29885,
29889,
29916,
29896,
29945,
29929,
448,
29871,
29945,
29955,
29889,
29906,
29947,
29896,
29946,
29896,
29906,
29896,
29930,
29885,
29889,
29916,
29896,
29953,
29896,
718,
29871,
29941,
29955,
29889,
29945,
29946,
29900,
29955,
29941,
29906,
29946,
29930,
29885,
29889,
29916,
29896,
29953,
29941,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29945,
29955,
29889,
29906,
29947,
29896,
29946,
29896,
29906,
29896,
29930,
29885,
29889,
29916,
29896,
29946,
29955,
718,
286,
29889,
29916,
29896,
29953,
29945,
718,
29871,
29906,
29955,
29889,
29946,
29906,
29947,
29941,
29896,
29953,
29906,
29946,
29930,
29885,
29889,
29916,
29896,
29953,
29955,
718,
29871,
29941,
29955,
29889,
29945,
29946,
29900,
29955,
29941,
29906,
29946,
29930,
29885,
29889,
29916,
29896,
29953,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29945,
29955,
29889,
29906,
29947,
29896,
29946,
29896,
29906,
29896,
29930,
29885,
29889,
29916,
29896,
29945,
29941,
718,
286,
29889,
29916,
29896,
29955,
29896,
718,
29871,
29941,
29955,
29889,
29945,
29946,
29900,
29955,
29941,
29906,
29946,
29930,
29885,
29889,
29916,
29896,
29955,
29941,
718,
29871,
29906,
29955,
29889,
29946,
29906,
29947,
29941,
29896,
29953,
29906,
29946,
29930,
29885,
29889,
29916,
29896,
29955,
29945,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29945,
29955,
29889,
29906,
29947,
29896,
29946,
29896,
29906,
29896,
29930,
29885,
29889,
29916,
29896,
29953,
29896,
718,
286,
29889,
29916,
29896,
29955,
29955,
718,
29871,
29941,
29955,
29889,
29945,
29946,
29900,
29955,
29941,
29906,
29946,
29930,
29885,
29889,
29916,
29896,
29955,
29929,
718,
29871,
29906,
29955,
29889,
29946,
29906,
29947,
29941,
29896,
29953,
29906,
29946,
29930,
29885,
29889,
29916,
29896,
29947,
29896,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29945,
29955,
29889,
29906,
29947,
29896,
29946,
29896,
29906,
29896,
29930,
29885,
29889,
29916,
29896,
29946,
29955,
718,
286,
29889,
29916,
29896,
29947,
29941,
718,
29871,
29941,
29955,
29889,
29945,
29946,
29900,
29955,
29941,
29906,
29946,
29930,
29885,
29889,
29916,
29896,
29947,
29945,
718,
29871,
29906,
29955,
29889,
29946,
29906,
29947,
29941,
29896,
29953,
29906,
29946,
29930,
29885,
29889,
29916,
29896,
29947,
29955,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29945,
29955,
29889,
29906,
29947,
29896,
29946,
29896,
29906,
29896,
29930,
29885,
29889,
29916,
29896,
29945,
29941,
718,
286,
29889,
29916,
29896,
29947,
29929,
718,
29871,
29906,
29955,
29889,
29946,
29906,
29947,
29941,
29896,
29953,
29906,
29946,
29930,
29885,
29889,
29916,
29896,
29929,
29896,
718,
29871,
29941,
29955,
29889,
29945,
29946,
29900,
29955,
29941,
29906,
29946,
29930,
29885,
29889,
29916,
29896,
29929,
29941,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29906,
29929,
718,
29871,
29906,
29955,
29889,
29946,
29906,
29947,
29941,
29896,
29953,
29906,
29946,
29930,
29885,
29889,
29916,
29941,
29900,
718,
29871,
29941,
29955,
29889,
29945,
29946,
29900,
29955,
29941,
29906,
29946,
29930,
29885,
29889,
29916,
29941,
29896,
448,
29871,
29945,
29955,
29889,
29906,
29947,
29896,
29946,
29896,
29906,
29896,
29930,
29885,
29889,
29916,
29896,
29953,
29896,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29941,
29906,
448,
29871,
29955,
29953,
29889,
29946,
29945,
29906,
29896,
29929,
29929,
29945,
29947,
29930,
29885,
29889,
29916,
29941,
29941,
718,
29871,
29946,
29941,
29889,
29896,
29946,
29900,
29947,
29955,
29955,
29900,
29947,
29930,
29885,
29889,
29916,
29941,
29946,
718,
29871,
29945,
29900,
29889,
29941,
29955,
29941,
29945,
29953,
29945,
29947,
29929,
29930,
29885,
29889,
29916,
29941,
29945,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29941,
29953,
718,
29871,
29945,
29900,
29889,
29941,
29955,
29941,
29945,
29953,
29945,
29947,
29929,
29930,
29885,
29889,
29916,
29941,
29955,
448,
29871,
29955,
29953,
29889,
29946,
29945,
29906,
29896,
29929,
29929,
29945,
29947,
29930,
29885,
29889,
29916,
29941,
29947,
718,
29871,
29946,
29941,
29889,
29896,
29946,
29900,
29947,
29955,
29955,
29900,
29947,
29930,
29885,
29889,
29916,
29941,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29946,
29900,
718,
29871,
29946,
29941,
29889,
29896,
29946,
29900,
29947,
29955,
29955,
29900,
29947,
29930,
29885,
29889,
29916,
29946,
29896,
718,
29871,
29945,
29900,
29889,
29941,
29955,
29941,
29945,
29953,
29945,
29947,
29929,
29930,
29885,
29889,
29916,
29946,
29906,
448,
29871,
29955,
29953,
29889,
29946,
29945,
29906,
29896,
29929,
29929,
29945,
29947,
29930,
29885,
29889,
29916,
29946,
29941,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29955,
29953,
29889,
29946,
29945,
29906,
29896,
29929,
29929,
29945,
29947,
29930,
29885,
29889,
29916,
29941,
29941,
718,
286,
29889,
29916,
29946,
29946,
718,
29871,
29946,
29941,
29889,
29896,
29946,
29900,
29947,
29955,
29955,
29900,
29947,
29930,
29885,
29889,
29916,
29946,
29945,
718,
29871,
29945,
29900,
29889,
29941,
29955,
29941,
29945,
29953,
29945,
29947,
29929,
29930,
29885,
29889,
29916,
29946,
29953,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29955,
29953,
29889,
29946,
29945,
29906,
29896,
29929,
29929,
29945,
29947,
29930,
29885,
29889,
29916,
29941,
29947,
718,
286,
29889,
29916,
29946,
29955,
718,
29871,
29945,
29900,
29889,
29941,
29955,
29941,
29945,
29953,
29945,
29947,
29929,
29930,
29885,
29889,
29916,
29946,
29947,
718,
29871,
29946,
29941,
29889,
29896,
29946,
29900,
29947,
29955,
29955,
29900,
29947,
29930,
29885,
29889,
29916,
29946,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29955,
29953,
29889,
29946,
29945,
29906,
29896,
29929,
29929,
29945,
29947,
29930,
29885,
29889,
29916,
29946,
29941,
718,
286,
29889,
29916,
29945,
29900,
718,
29871,
29946,
29941,
29889,
29896,
29946,
29900,
29947,
29955,
29955,
29900,
29947,
29930,
29885,
29889,
29916,
29945,
29896,
718,
29871,
29945,
29900,
29889,
29941,
29955,
29941,
29945,
29953,
29945,
29947,
29929,
29930,
29885,
29889,
29916,
29945,
29906,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29945,
29941,
718,
29871,
29945,
29947,
29889,
29941,
29896,
29900,
29896,
29896,
29947,
29955,
29945,
29930,
29885,
29889,
29916,
29945,
29946,
448,
29871,
29953,
29929,
29889,
29941,
29929,
29953,
29906,
29906,
29945,
29955,
29896,
29930,
29885,
29889,
29916,
29945,
29945,
448,
29871,
29906,
29945,
29889,
29941,
29929,
29929,
29896,
29896,
29896,
29955,
29946,
29930,
29885,
29889,
29916,
29945,
29953,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29945,
29955,
448,
29871,
29906,
29945,
29889,
29941,
29929,
29929,
29896,
29896,
29896,
29955,
29946,
29930,
29885,
29889,
29916,
29945,
29947,
718,
29871,
29945,
29947,
29889,
29941,
29896,
29900,
29896,
29896,
29947,
29955,
29945,
29930,
29885,
29889,
29916,
29945,
29929,
448,
29871,
29953,
29929,
29889,
29941,
29929,
29953,
29906,
29906,
29945,
29955,
29896,
29930,
29885,
29889,
29916,
29953,
29900,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29953,
29896,
448,
29871,
29953,
29929,
29889,
29941,
29929,
29953,
29906,
29906,
29945,
29955,
29896,
29930,
29885,
29889,
29916,
29953,
29906,
718,
29871,
29945,
29947,
29889,
29941,
29896,
29900,
29896,
29896,
29947,
29955,
29945,
29930,
29885,
29889,
29916,
29953,
29941,
448,
29871,
29906,
29945,
29889,
29941,
29929,
29929,
29896,
29896,
29896,
29955,
29946,
29930,
29885,
29889,
29916,
29953,
29946,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29953,
29929,
29889,
29941,
29929,
29953,
29906,
29906,
29945,
29955,
29896,
29930,
29885,
29889,
29916,
29945,
29945,
718,
286,
29889,
29916,
29953,
29945,
718,
29871,
29945,
29947,
29889,
29941,
29896,
29900,
29896,
29896,
29947,
29955,
29945,
29930,
29885,
29889,
29916,
29953,
29953,
448,
29871,
29906,
29945,
29889,
29941,
29929,
29929,
29896,
29896,
29896,
29955,
29946,
29930,
29885,
29889,
29916,
29953,
29955,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29953,
29929,
29889,
29941,
29929,
29953,
29906,
29906,
29945,
29955,
29896,
29930,
29885,
29889,
29916,
29953,
29900,
718,
286,
29889,
29916,
29953,
29947,
448,
29871,
29906,
29945,
29889,
29941,
29929,
29929,
29896,
29896,
29896,
29955,
29946,
29930,
29885,
29889,
29916,
29953,
29929,
718,
29871,
29945,
29947,
29889,
29941,
29896,
29900,
29896,
29896,
29947,
29955,
29945,
29930,
29885,
29889,
29916,
29955,
29900,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29953,
29929,
29889,
29941,
29929,
29953,
29906,
29906,
29945,
29955,
29896,
29930,
29885,
29889,
29916,
29953,
29906,
718,
286,
29889,
29916,
29955,
29896,
718,
29871,
29945,
29947,
29889,
29941,
29896,
29900,
29896,
29896,
29947,
29955,
29945,
29930,
29885,
29889,
29916,
29955,
29906,
448,
29871,
29906,
29945,
29889,
29941,
29929,
29929,
29896,
29896,
29896,
29955,
29946,
29930,
29885,
29889,
29916,
29955,
29941,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29955,
29946,
448,
29871,
29906,
29889,
29900,
29941,
29955,
29906,
29946,
29896,
29906,
29946,
29930,
29885,
29889,
29916,
29955,
29945,
718,
29871,
29953,
29941,
29889,
29953,
29896,
29953,
29946,
29946,
29929,
29900,
29946,
29930,
29885,
29889,
29916,
29955,
29953,
448,
29871,
29941,
29946,
29889,
29929,
29906,
29955,
29941,
29906,
29953,
29955,
29946,
29930,
29885,
29889,
29916,
29955,
29955,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29955,
29947,
448,
29871,
29906,
29889,
29900,
29941,
29955,
29906,
29946,
29896,
29906,
29946,
29930,
29885,
29889,
29916,
29955,
29929,
448,
29871,
29941,
29946,
29889,
29929,
29906,
29955,
29941,
29906,
29953,
29955,
29946,
29930,
29885,
29889,
29916,
29947,
29900,
718,
29871,
29953,
29941,
29889,
29953,
29896,
29953,
29946,
29946,
29929,
29900,
29946,
29930,
29885,
29889,
29916,
29947,
29896,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29947,
29906,
448,
29871,
29906,
29889,
29900,
29941,
29955,
29906,
29946,
29896,
29906,
29946,
29930,
29885,
29889,
29916,
29947,
29941,
448,
29871,
29941,
29946,
29889,
29929,
29906,
29955,
29941,
29906,
29953,
29955,
29946,
29930,
29885,
29889,
29916,
29947,
29946,
718,
29871,
29953,
29941,
29889,
29953,
29896,
29953,
29946,
29946,
29929,
29900,
29946,
29930,
29885,
29889,
29916,
29947,
29945,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29941,
29946,
29889,
29929,
29906,
29955,
29941,
29906,
29953,
29955,
29946,
29930,
29885,
29889,
29916,
29955,
29955,
718,
286,
29889,
29916,
29947,
29953,
718,
29871,
29953,
29941,
29889,
29953,
29896,
29953,
29946,
29946,
29929,
29900,
29946,
29930,
29885,
29889,
29916,
29947,
29955,
448,
29871,
29906,
29889,
29900,
29941,
29955,
29906,
29946,
29896,
29906,
29946,
29930,
29885,
29889,
29916,
29947,
29947,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29941,
29946,
29889,
29929,
29906,
29955,
29941,
29906,
29953,
29955,
29946,
29930,
29885,
29889,
29916,
29947,
29900,
718,
286,
29889,
29916,
29947,
29929,
718,
29871,
29953,
29941,
29889,
29953,
29896,
29953,
29946,
29946,
29929,
29900,
29946,
29930,
29885,
29889,
29916,
29929,
29900,
448,
29871,
29906,
29889,
29900,
29941,
29955,
29906,
29946,
29896,
29906,
29946,
29930,
29885,
29889,
29916,
29929,
29896,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29941,
29946,
29889,
29929,
29906,
29955,
29941,
29906,
29953,
29955,
29946,
29930,
29885,
29889,
29916,
29947,
29946,
718,
286,
29889,
29916,
29929,
29906,
448,
29871,
29906,
29889,
29900,
29941,
29955,
29906,
29946,
29896,
29906,
29946,
29930,
29885,
29889,
29916,
29929,
29941,
718,
29871,
29953,
29941,
29889,
29953,
29896,
29953,
29946,
29946,
29929,
29900,
29946,
29930,
29885,
29889,
29916,
29929,
29946,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29929,
29945,
718,
286,
29889,
29916,
29929,
29953,
718,
286,
29889,
29916,
29929,
29955,
6736,
29871,
29900,
29889,
29947,
29955,
29945,
29897,
13,
13,
29885,
29889,
29883,
29941,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29929,
29947,
718,
286,
29889,
29916,
29929,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29900,
29900,
718,
286,
29889,
29916,
29896,
29900,
29896,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29900,
29906,
718,
286,
29889,
29916,
29896,
29900,
29941,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29900,
29946,
718,
286,
29889,
29916,
29896,
29900,
29945,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29900,
29953,
718,
286,
29889,
29916,
29896,
29900,
29955,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29900,
29947,
718,
286,
29889,
29916,
29896,
29900,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29896,
29900,
29946,
448,
286,
29889,
29916,
29896,
29896,
29900,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29896,
29900,
29953,
448,
286,
29889,
29916,
29896,
29896,
29896,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29896,
29900,
29947,
448,
286,
29889,
29916,
29896,
29896,
29906,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29896,
29941,
718,
286,
29889,
29916,
29896,
29896,
29946,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29896,
29945,
718,
286,
29889,
29916,
29896,
29896,
29953,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29896,
29955,
718,
286,
29889,
29916,
29896,
29896,
29947,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29896,
29896,
29929,
1275,
29871,
29900,
29889,
29906,
29929,
29953,
29953,
29953,
29953,
29953,
29953,
29955,
29897,
13,
13,
29885,
29889,
29883,
29946,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29896,
29906,
29900,
1275,
29871,
29900,
29889,
29906,
29929,
29946,
29946,
29946,
29946,
29946,
29946,
29946,
29897,
13,
13,
29885,
29889,
29883,
29946,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29896,
29906,
29896,
1275,
29871,
29900,
29889,
29906,
29947,
29941,
29947,
29947,
29947,
29947,
29947,
29929,
29897,
13,
13,
29885,
29889,
29883,
29946,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29929,
29945,
448,
286,
29889,
29916,
29929,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29929,
29953,
448,
286,
29889,
29916,
29896,
29900,
29896,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29929,
29955,
448,
286,
29889,
29916,
29896,
29900,
29941,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29941,
29953,
29900,
29900,
29930,
29885,
29889,
29916,
29929,
29947,
448,
29871,
29941,
29953,
29900,
29900,
29930,
29885,
29889,
29916,
29896,
29900,
29945,
718,
29871,
29896,
29947,
29900,
29900,
29930,
29885,
29889,
29916,
29896,
29906,
29906,
448,
29871,
29896,
29947,
29900,
29900,
29930,
29885,
29889,
29916,
29896,
29906,
29941,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29941,
29953,
29900,
29900,
29930,
29885,
29889,
29916,
29896,
29900,
29900,
448,
29871,
29941,
29953,
29900,
29900,
29930,
29885,
29889,
29916,
29896,
29900,
29955,
718,
29871,
29896,
29947,
29900,
29900,
29930,
29885,
29889,
29916,
29896,
29906,
29946,
448,
29871,
29896,
29947,
29900,
29900,
29930,
29885,
29889,
29916,
29896,
29906,
29945,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29941,
29953,
29900,
29900,
29930,
29885,
29889,
29916,
29896,
29900,
29906,
448,
29871,
29941,
29953,
29900,
29900,
29930,
29885,
29889,
29916,
29896,
29900,
29929,
718,
29871,
29896,
29947,
29900,
29900,
29930,
29885,
29889,
29916,
29896,
29906,
29953,
448,
29871,
29896,
29947,
29900,
29900,
29930,
29885,
29889,
29916,
29896,
29906,
29955,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29941,
29953,
29900,
29900,
29930,
29885,
29889,
29916,
29896,
29896,
29900,
448,
29871,
29941,
29953,
29900,
29900,
29930,
29885,
29889,
29916,
29896,
29896,
29946,
718,
29871,
29955,
29906,
29900,
29930,
29885,
29889,
29916,
29896,
29906,
29947,
448,
29871,
29955,
29906,
29900,
29930,
29885,
29889,
29916,
29896,
29906,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29941,
29953,
29900,
29900,
29930,
29885,
29889,
29916,
29896,
29896,
29896,
448,
29871,
29941,
29953,
29900,
29900,
29930,
29885,
29889,
29916,
29896,
29896,
29953,
718,
29871,
29955,
29906,
29900,
29930,
29885,
29889,
29916,
29896,
29941,
29900,
448,
29871,
29955,
29906,
29900,
29930,
29885,
29889,
29916,
29896,
29941,
29896,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29941,
29953,
29900,
29900,
29930,
29885,
29889,
29916,
29896,
29896,
29906,
448,
29871,
29941,
29953,
29900,
29900,
29930,
29885,
29889,
29916,
29896,
29896,
29947,
718,
29871,
29955,
29906,
29900,
29930,
29885,
29889,
29916,
29896,
29941,
29906,
448,
29871,
29955,
29906,
29900,
29930,
29885,
29889,
29916,
29896,
29941,
29941,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29941,
29953,
29900,
29900,
29930,
29885,
29889,
29916,
29896,
29896,
29941,
448,
29871,
29941,
29953,
29900,
29900,
29930,
29885,
29889,
29916,
29896,
29896,
29929,
718,
29871,
29896,
29953,
29900,
29900,
29930,
29885,
29889,
29916,
29896,
29941,
29946,
448,
29871,
29896,
29953,
29900,
29900,
29930,
29885,
29889,
29916,
29896,
29941,
29945,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29941,
29953,
29900,
29900,
29930,
29885,
29889,
29916,
29896,
29896,
29945,
448,
29871,
29941,
29953,
29900,
29900,
29930,
29885,
29889,
29916,
29896,
29906,
29900,
718,
29871,
29896,
29953,
29900,
29900,
29930,
29885,
29889,
29916,
29896,
29941,
29953,
448,
29871,
29896,
29953,
29900,
29900,
29930,
29885,
29889,
29916,
29896,
29941,
29955,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29941,
29953,
29900,
29900,
29930,
29885,
29889,
29916,
29896,
29896,
29955,
448,
29871,
29941,
29953,
29900,
29900,
29930,
29885,
29889,
29916,
29896,
29906,
29896,
718,
29871,
29896,
29953,
29900,
29900,
29930,
29885,
29889,
29916,
29896,
29941,
29947,
448,
29871,
29896,
29953,
29900,
29900,
29930,
29885,
29889,
29916,
29896,
29941,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29906,
29941,
718,
286,
29889,
29916,
29896,
29906,
29946,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29906,
29945,
718,
286,
29889,
29916,
29896,
29906,
29953,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29906,
29929,
718,
286,
29889,
29916,
29896,
29941,
29900,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29953,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29941,
29896,
718,
286,
29889,
29916,
29896,
29941,
29906,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29953,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29941,
29945,
718,
286,
29889,
29916,
29896,
29941,
29953,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29953,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29941,
29955,
718,
286,
29889,
29916,
29896,
29941,
29947,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29953,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29906,
29930,
29885,
29889,
29890,
29906,
718,
286,
29889,
29916,
29896,
29946,
29900,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29953,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29906,
29930,
29885,
29889,
29890,
29941,
718,
286,
29889,
29916,
29896,
29946,
29906,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29953,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29906,
29930,
29885,
29889,
29890,
29946,
718,
286,
29889,
29916,
29896,
29946,
29946,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29953,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29906,
29930,
29885,
29889,
29890,
29945,
718,
286,
29889,
29916,
29896,
29946,
29953,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29953,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29906,
29930,
29885,
29889,
29890,
29953,
718,
286,
29889,
29916,
29896,
29946,
29947,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29953,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29906,
29930,
29885,
29889,
29890,
29955,
718,
286,
29889,
29916,
29896,
29945,
29900,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29953,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29906,
29930,
29885,
29889,
29890,
29947,
718,
286,
29889,
29916,
29896,
29945,
29906,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29955,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29906,
29930,
29885,
29889,
29890,
29929,
718,
286,
29889,
29916,
29896,
29945,
29946,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29955,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29906,
29930,
29885,
29889,
29890,
29896,
29900,
718,
286,
29889,
29916,
29896,
29945,
29953,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29955,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29906,
29945,
29930,
29885,
29889,
29890,
29896,
29896,
718,
286,
29889,
29916,
29896,
29945,
29947,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29955,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29906,
29945,
29930,
29885,
29889,
29890,
29896,
29906,
718,
286,
29889,
29916,
29896,
29953,
29900,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29955,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29906,
29945,
29930,
29885,
29889,
29890,
29896,
29941,
718,
286,
29889,
29916,
29896,
29953,
29906,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29955,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29906,
29945,
29930,
29885,
29889,
29890,
29896,
29946,
718,
286,
29889,
29916,
29896,
29953,
29946,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29955,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29906,
29945,
29930,
29885,
29889,
29890,
29896,
29945,
718,
286,
29889,
29916,
29896,
29953,
29953,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29955,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29906,
29945,
29930,
29885,
29889,
29890,
29896,
29953,
718,
286,
29889,
29916,
29896,
29953,
29947,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29955,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29946,
29930,
29885,
29889,
29890,
29896,
29955,
718,
286,
29889,
29916,
29896,
29955,
29900,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29955,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29946,
29930,
29885,
29889,
29890,
29896,
29947,
718,
286,
29889,
29916,
29896,
29955,
29906,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29947,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29946,
29930,
29885,
29889,
29890,
29896,
29929,
718,
286,
29889,
29916,
29896,
29955,
29946,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29947,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29946,
29930,
29885,
29889,
29890,
29906,
29900,
718,
286,
29889,
29916,
29896,
29955,
29953,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29947,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29946,
29930,
29885,
29889,
29890,
29906,
29896,
718,
286,
29889,
29916,
29896,
29955,
29947,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29947,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29946,
29930,
29885,
29889,
29890,
29906,
29906,
718,
286,
29889,
29916,
29896,
29947,
29900,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29947,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29906,
29946,
29930,
29885,
29889,
29890,
29906,
29941,
718,
286,
29889,
29916,
29896,
29947,
29906,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29947,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29906,
29946,
29930,
29885,
29889,
29890,
29906,
29946,
718,
286,
29889,
29916,
29896,
29947,
29946,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29947,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29906,
29946,
29930,
29885,
29889,
29890,
29906,
29945,
718,
286,
29889,
29916,
29896,
29947,
29953,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29947,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29906,
29946,
29930,
29885,
29889,
29890,
29906,
29953,
718,
286,
29889,
29916,
29896,
29947,
29947,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29947,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29906,
29946,
29930,
29885,
29889,
29890,
29906,
29955,
718,
286,
29889,
29916,
29896,
29929,
29900,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29947,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29906,
29946,
29930,
29885,
29889,
29890,
29906,
29947,
718,
286,
29889,
29916,
29896,
29929,
29906,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29929,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29947,
29930,
29885,
29889,
29890,
29906,
718,
286,
29889,
29916,
29896,
29946,
29900,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29929,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29947,
29930,
29885,
29889,
29890,
29941,
718,
286,
29889,
29916,
29896,
29946,
29906,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29929,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29947,
29930,
29885,
29889,
29890,
29946,
718,
286,
29889,
29916,
29896,
29946,
29946,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29929,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29947,
29930,
29885,
29889,
29890,
29945,
718,
286,
29889,
29916,
29896,
29946,
29953,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29929,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29947,
29930,
29885,
29889,
29890,
29953,
718,
286,
29889,
29916,
29896,
29946,
29947,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29929,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29947,
29930,
29885,
29889,
29890,
29955,
718,
286,
29889,
29916,
29896,
29945,
29900,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29929,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29947,
29930,
29885,
29889,
29890,
29947,
718,
286,
29889,
29916,
29896,
29945,
29906,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29929,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29947,
29930,
29885,
29889,
29890,
29929,
718,
286,
29889,
29916,
29896,
29945,
29946,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29929,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29947,
29930,
29885,
29889,
29890,
29896,
29900,
718,
286,
29889,
29916,
29896,
29945,
29953,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29929,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29945,
29930,
29885,
29889,
29890,
29896,
29896,
718,
286,
29889,
29916,
29896,
29945,
29947,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29900,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29945,
29930,
29885,
29889,
29890,
29896,
29906,
718,
286,
29889,
29916,
29896,
29953,
29900,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29900,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29945,
29930,
29885,
29889,
29890,
29896,
29941,
718,
286,
29889,
29916,
29896,
29953,
29906,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29900,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29945,
29930,
29885,
29889,
29890,
29896,
29946,
718,
286,
29889,
29916,
29896,
29953,
29946,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29900,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29945,
29930,
29885,
29889,
29890,
29896,
29945,
718,
286,
29889,
29916,
29896,
29953,
29953,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29900,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29945,
29930,
29885,
29889,
29890,
29896,
29953,
718,
286,
29889,
29916,
29896,
29953,
29947,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29900,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29955,
29930,
29885,
29889,
29890,
29896,
29955,
718,
286,
29889,
29916,
29896,
29955,
29900,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29900,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29955,
29930,
29885,
29889,
29890,
29896,
29947,
718,
286,
29889,
29916,
29896,
29955,
29906,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29900,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29955,
29930,
29885,
29889,
29890,
29896,
29929,
718,
286,
29889,
29916,
29896,
29955,
29946,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29900,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29955,
29930,
29885,
29889,
29890,
29906,
29900,
718,
286,
29889,
29916,
29896,
29955,
29953,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29900,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29955,
29930,
29885,
29889,
29890,
29906,
29896,
718,
286,
29889,
29916,
29896,
29955,
29947,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29896,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29955,
29930,
29885,
29889,
29890,
29906,
29906,
718,
286,
29889,
29916,
29896,
29947,
29900,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29896,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29945,
29947,
29930,
29885,
29889,
29890,
29906,
29941,
718,
286,
29889,
29916,
29896,
29947,
29906,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29896,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29945,
29947,
29930,
29885,
29889,
29890,
29906,
29946,
718,
286,
29889,
29916,
29896,
29947,
29946,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29896,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29945,
29947,
29930,
29885,
29889,
29890,
29906,
29945,
718,
286,
29889,
29916,
29896,
29947,
29953,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29896,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29945,
29947,
29930,
29885,
29889,
29890,
29906,
29953,
718,
286,
29889,
29916,
29896,
29947,
29947,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29896,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29945,
29947,
29930,
29885,
29889,
29890,
29906,
29955,
718,
286,
29889,
29916,
29896,
29929,
29900,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29896,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29945,
29947,
29930,
29885,
29889,
29890,
29906,
29947,
718,
286,
29889,
29916,
29896,
29929,
29906,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29896,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29906,
29906,
718,
286,
29889,
29916,
29896,
29929,
29946,
1275,
29871,
29953,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29896,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29906,
29946,
718,
286,
29889,
29916,
29896,
29929,
29945,
1275,
29871,
29953,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29896,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29906,
29953,
718,
286,
29889,
29916,
29896,
29929,
29953,
1275,
29871,
29953,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29906,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29906,
29947,
718,
286,
29889,
29916,
29896,
29929,
29955,
1275,
29871,
29929,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29906,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29941,
29900,
718,
286,
29889,
29916,
29896,
29929,
29947,
1275,
29871,
29929,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29906,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29941,
29906,
718,
286,
29889,
29916,
29896,
29929,
29929,
1275,
29871,
29929,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29906,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29941,
29946,
718,
286,
29889,
29916,
29906,
29900,
29900,
1275,
29871,
29896,
29900,
29941,
29897,
13,
13,
29885,
29889,
29883,
29896,
29906,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29941,
29953,
718,
286,
29889,
29916,
29906,
29900,
29896,
1275,
29871,
29896,
29900,
29941,
29897,
13,
13,
29885,
29889,
29883,
29896,
29906,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29941,
29947,
718,
286,
29889,
29916,
29906,
29900,
29906,
1275,
29871,
29896,
29900,
29941,
29897,
13,
13,
29885,
29889,
29883,
29896,
29906,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29929,
29946,
718,
286,
29889,
29916,
29906,
29900,
29941,
448,
286,
29889,
29916,
29906,
29900,
29946,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29906,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29929,
29945,
718,
286,
29889,
29916,
29906,
29900,
29945,
448,
286,
29889,
29916,
29906,
29900,
29953,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29906,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29929,
29953,
718,
286,
29889,
29916,
29906,
29900,
29955,
448,
286,
29889,
29916,
29906,
29900,
29947,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29906,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29906,
29900,
29929,
448,
286,
29889,
29916,
29906,
29896,
29900,
448,
286,
29889,
29916,
29906,
29896,
29896,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29941,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29906,
29896,
29906,
448,
286,
29889,
29916,
29906,
29896,
29941,
448,
286,
29889,
29916,
29906,
29896,
29946,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29941,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29906,
29896,
29945,
448,
286,
29889,
29916,
29906,
29896,
29953,
448,
286,
29889,
29916,
29906,
29896,
29955,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29941,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29906,
29900,
29900,
718,
286,
29889,
29916,
29906,
29896,
29947,
448,
286,
29889,
29916,
29906,
29896,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29941,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29906,
29900,
29896,
718,
286,
29889,
29916,
29906,
29906,
29900,
448,
286,
29889,
29916,
29906,
29906,
29896,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29941,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29906,
29900,
29906,
718,
286,
29889,
29916,
29906,
29906,
29906,
448,
286,
29889,
29916,
29906,
29906,
29941,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29941,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29906,
29900,
29941,
448,
286,
29889,
29916,
29906,
29906,
29946,
448,
286,
29889,
29916,
29906,
29906,
29945,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29941,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29906,
29900,
29945,
448,
286,
29889,
29916,
29906,
29906,
29953,
448,
286,
29889,
29916,
29906,
29906,
29955,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29941,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29906,
29900,
29955,
448,
286,
29889,
29916,
29906,
29906,
29947,
448,
286,
29889,
29916,
29906,
29906,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29941,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29929,
29946,
718,
286,
29889,
29916,
29906,
29900,
29929,
448,
286,
29889,
29916,
29906,
29941,
29900,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29941,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29929,
29945,
718,
286,
29889,
29916,
29906,
29896,
29906,
448,
286,
29889,
29916,
29906,
29941,
29896,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29946,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29929,
29953,
718,
286,
29889,
29916,
29906,
29896,
29945,
448,
286,
29889,
29916,
29906,
29941,
29906,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29946,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29929,
29955,
718,
286,
29889,
29916,
29906,
29896,
29947,
448,
286,
29889,
29916,
29906,
29941,
29941,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29946,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29929,
29947,
718,
286,
29889,
29916,
29906,
29906,
29900,
448,
286,
29889,
29916,
29906,
29941,
29946,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29946,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29929,
29929,
718,
286,
29889,
29916,
29906,
29906,
29906,
448,
286,
29889,
29916,
29906,
29941,
29945,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29946,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29900,
29889,
29906,
29930,
29885,
29889,
29890,
29906,
448,
286,
29889,
29916,
29896,
29946,
29900,
718,
286,
29889,
29916,
29906,
29941,
29953,
5277,
29871,
29900,
29889,
29906,
29897,
13,
13,
29885,
29889,
29883,
29896,
29946,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29900,
29889,
29906,
29930,
29885,
29889,
29890,
29941,
448,
286,
29889,
29916,
29896,
29946,
29906,
718,
286,
29889,
29916,
29906,
29941,
29955,
5277,
29871,
29900,
29889,
29906,
29897,
13,
13,
29885,
29889,
29883,
29896,
29946,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29900,
29889,
29906,
29930,
29885,
29889,
29890,
29946,
448,
286,
29889,
29916,
29896,
29946,
29946,
718,
286,
29889,
29916,
29906,
29941,
29947,
5277,
29871,
29900,
29889,
29906,
29897,
13,
13,
29885,
29889,
29883,
29896,
29946,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29900,
29889,
29906,
29930,
29885,
29889,
29890,
29945,
448,
286,
29889,
29916,
29896,
29946,
29953,
718,
286,
29889,
29916,
29906,
29941,
29929,
5277,
29871,
29900,
29889,
29906,
29897,
13,
13,
29885,
29889,
29883,
29896,
29946,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29900,
29889,
29906,
29930,
29885,
29889,
29890,
29953,
448,
286,
29889,
29916,
29896,
29946,
29947,
718,
286,
29889,
29916,
29906,
29946,
29900,
5277,
29871,
29900,
29889,
29906,
29897,
13,
13,
29885,
29889,
29883,
29896,
29946,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29900,
29889,
29906,
29930,
29885,
29889,
29890,
29955,
448,
286,
29889,
29916,
29896,
29945,
29900,
718,
286,
29889,
29916,
29906,
29946,
29896,
5277,
29871,
29900,
29889,
29906,
29897,
13,
13,
29885,
29889,
29883,
29896,
29945,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29900,
29889,
29906,
29930,
29885,
29889,
29890,
29947,
448,
286,
29889,
29916,
29896,
29945,
29906,
718,
286,
29889,
29916,
29906,
29946,
29906,
5277,
29871,
29900,
29889,
29906,
29897,
13,
13,
29885,
29889,
29883,
29896,
29945,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29900,
29889,
29906,
29930,
29885,
29889,
29890,
29929,
448,
286,
29889,
29916,
29896,
29945,
29946,
718,
286,
29889,
29916,
29906,
29946,
29941,
5277,
29871,
29900,
29889,
29906,
29897,
13,
13,
29885,
29889,
29883,
29896,
29945,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29900,
29889,
29906,
29930,
29885,
29889,
29890,
29896,
29900,
448,
286,
29889,
29916,
29896,
29945,
29953,
718,
286,
29889,
29916,
29906,
29946,
29946,
5277,
29871,
29900,
29889,
29906,
29897,
13,
13,
29885,
29889,
29883,
29896,
29945,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29900,
29889,
29906,
29945,
29930,
29885,
29889,
29890,
29896,
29896,
448,
286,
29889,
29916,
29896,
29945,
29947,
718,
286,
29889,
29916,
29906,
29946,
29945,
5277,
29871,
29900,
29889,
29906,
29945,
29897,
13,
13,
29885,
29889,
29883,
29896,
29945,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29900,
29889,
29906,
29945,
29930,
29885,
29889,
29890,
29896,
29906,
448,
286,
29889,
29916,
29896,
29953,
29900,
718,
286,
29889,
29916,
29906,
29946,
29953,
5277,
29871,
29900,
29889,
29906,
29945,
29897,
13,
13,
29885,
29889,
29883,
29896,
29945,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29900,
29889,
29906,
29945,
29930,
29885,
29889,
29890,
29896,
29941,
448,
286,
29889,
29916,
29896,
29953,
29906,
718,
286,
29889,
29916,
29906,
29946,
29955,
5277,
29871,
29900,
29889,
29906,
29945,
29897,
13,
13,
29885,
29889,
29883,
29896,
29945,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29900,
29889,
29906,
29945,
29930,
29885,
29889,
29890,
29896,
29946,
448,
286,
29889,
29916,
29896,
29953,
29946,
718,
286,
29889,
29916,
29906,
29946,
29947,
5277,
29871,
29900,
29889,
29906,
29945,
29897,
13,
13,
29885,
29889,
29883,
29896,
29945,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29900,
29889,
29906,
29945,
29930,
29885,
29889,
29890,
29896,
29945,
448,
286,
29889,
29916,
29896,
29953,
29953,
718,
286,
29889,
29916,
29906,
29946,
29929,
5277,
29871,
29900,
29889,
29906,
29945,
29897,
13,
13,
29885,
29889,
29883,
29896,
29945,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29900,
29889,
29906,
29945,
29930,
29885,
29889,
29890,
29896,
29953,
448,
286,
29889,
29916,
29896,
29953,
29947,
718,
286,
29889,
29916,
29906,
29945,
29900,
5277,
29871,
29900,
29889,
29906,
29945,
29897,
13,
13,
29885,
29889,
29883,
29896,
29945,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29900,
29889,
29946,
29930,
29885,
29889,
29890,
29896,
29955,
448,
286,
29889,
29916,
29896,
29955,
29900,
718,
286,
29889,
29916,
29906,
29945,
29896,
5277,
29871,
29900,
29889,
29946,
29897,
13,
13,
29885,
29889,
29883,
29896,
29953,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29900,
29889,
29946,
29930,
29885,
29889,
29890,
29896,
29947,
448,
286,
29889,
29916,
29896,
29955,
29906,
718,
286,
29889,
29916,
29906,
29945,
29906,
5277,
29871,
29900,
29889,
29946,
29897,
13,
13,
29885,
29889,
29883,
29896,
29953,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29900,
29889,
29946,
29930,
29885,
29889,
29890,
29896,
29929,
448,
286,
29889,
29916,
29896,
29955,
29946,
718,
286,
29889,
29916,
29906,
29945,
29941,
5277,
29871,
29900,
29889,
29946,
29897,
13,
13,
29885,
29889,
29883,
29896,
29953,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29900,
29889,
29946,
29930,
29885,
29889,
29890,
29906,
29900,
448,
286,
29889,
29916,
29896,
29955,
29953,
718,
286,
29889,
29916,
29906,
29945,
29946,
5277,
29871,
29900,
29889,
29946,
29897,
13,
13,
29885,
29889,
29883,
29896,
29953,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29900,
29889,
29946,
29930,
29885,
29889,
29890,
29906,
29896,
448,
286,
29889,
29916,
29896,
29955,
29947,
718,
286,
29889,
29916,
29906,
29945,
29945,
5277,
29871,
29900,
29889,
29946,
29897,
13,
13,
29885,
29889,
29883,
29896,
29953,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29900,
29889,
29946,
29930,
29885,
29889,
29890,
29906,
29906,
448,
286,
29889,
29916,
29896,
29947,
29900,
718,
286,
29889,
29916,
29906,
29945,
29953,
5277,
29871,
29900,
29889,
29946,
29897,
13,
13,
29885,
29889,
29883,
29896,
29953,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29900,
29889,
29906,
29946,
29930,
29885,
29889,
29890,
29906,
29941,
448,
286,
29889,
29916,
29896,
29947,
29906,
718,
286,
29889,
29916,
29906,
29945,
29955,
5277,
29871,
29900,
29889,
29906,
29946,
29897,
13,
13,
29885,
29889,
29883,
29896,
29953,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29900,
29889,
29906,
29946,
29930,
29885,
29889,
29890,
29906,
29946,
448,
286,
29889,
29916,
29896,
29947,
29946,
718,
286,
29889,
29916,
29906,
29945,
29947,
5277,
29871,
29900,
29889,
29906,
29946,
29897,
13,
13,
29885,
29889,
29883,
29896,
29953,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29900,
29889,
29906,
29946,
29930,
29885,
29889,
29890,
29906,
29945,
448,
286,
29889,
29916,
29896,
29947,
29953,
718,
286,
29889,
29916,
29906,
29945,
29929,
5277,
29871,
29900,
29889,
29906,
29946,
29897,
13,
13,
29885,
29889,
29883,
29896,
29953,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29900,
29889,
29906,
29946,
29930,
29885,
29889,
29890,
29906,
29953,
448,
286,
29889,
29916,
29896,
29947,
29947,
718,
286,
29889,
29916,
29906,
29953,
29900,
5277,
29871,
29900,
29889,
29906,
29946,
29897,
13,
13,
29885,
29889,
29883,
29896,
29953,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29900,
29889,
29906,
29946,
29930,
29885,
29889,
29890,
29906,
29955,
448,
286,
29889,
29916,
29896,
29929,
29900,
718,
286,
29889,
29916,
29906,
29953,
29896,
5277,
29871,
29900,
29889,
29906,
29946,
29897,
13,
13,
29885,
29889,
29883,
29896,
29955,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29900,
29889,
29906,
29946,
29930,
29885,
29889,
29890,
29906,
29947,
448,
286,
29889,
29916,
29896,
29929,
29906,
718,
286,
29889,
29916,
29906,
29953,
29906,
5277,
29871,
29900,
29889,
29906,
29946,
29897,
13,
13,
29885,
29889,
29883,
29896,
29955,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29946,
29900,
718,
286,
29889,
29916,
29906,
29941,
29953,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29955,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29946,
29906,
718,
286,
29889,
29916,
29906,
29941,
29955,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29955,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29946,
29946,
718,
286,
29889,
29916,
29906,
29941,
29947,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29955,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29946,
29953,
718,
286,
29889,
29916,
29906,
29941,
29929,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29955,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29946,
29947,
718,
286,
29889,
29916,
29906,
29946,
29900,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29955,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29945,
29900,
718,
286,
29889,
29916,
29906,
29946,
29896,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29955,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29945,
29906,
718,
286,
29889,
29916,
29906,
29946,
29906,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29955,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29945,
29946,
718,
286,
29889,
29916,
29906,
29946,
29941,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29955,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29945,
29953,
718,
286,
29889,
29916,
29906,
29946,
29946,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29947,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29945,
29947,
718,
286,
29889,
29916,
29906,
29946,
29945,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29947,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29953,
29900,
718,
286,
29889,
29916,
29906,
29946,
29953,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29947,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29953,
29906,
718,
286,
29889,
29916,
29906,
29946,
29955,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29947,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29953,
29946,
718,
286,
29889,
29916,
29906,
29946,
29947,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29947,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29953,
29953,
718,
286,
29889,
29916,
29906,
29946,
29929,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29947,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29953,
29947,
718,
286,
29889,
29916,
29906,
29945,
29900,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29947,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29955,
29900,
718,
286,
29889,
29916,
29906,
29945,
29896,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29947,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29955,
29906,
718,
286,
29889,
29916,
29906,
29945,
29906,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29947,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29955,
29946,
718,
286,
29889,
29916,
29906,
29945,
29941,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29947,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29955,
29953,
718,
286,
29889,
29916,
29906,
29945,
29946,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29929,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29955,
29947,
718,
286,
29889,
29916,
29906,
29945,
29945,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29929,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29947,
29900,
718,
286,
29889,
29916,
29906,
29945,
29953,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29929,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29947,
29906,
718,
286,
29889,
29916,
29906,
29945,
29955,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29929,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29947,
29946,
718,
286,
29889,
29916,
29906,
29945,
29947,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29929,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29947,
29953,
718,
286,
29889,
29916,
29906,
29945,
29929,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29929,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29947,
29947,
718,
286,
29889,
29916,
29906,
29953,
29900,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29929,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29929,
29900,
718,
286,
29889,
29916,
29906,
29953,
29896,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29929,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29929,
29906,
718,
286,
29889,
29916,
29906,
29953,
29906,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29896,
29929,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29953,
29930,
29885,
29889,
29890,
29906,
718,
286,
29889,
29916,
29906,
29941,
29953,
5277,
29871,
29900,
29889,
29906,
29897,
13,
13,
29885,
29889,
29883,
29896,
29929,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29953,
29930,
29885,
29889,
29890,
29941,
718,
286,
29889,
29916,
29906,
29941,
29955,
5277,
29871,
29900,
29889,
29906,
29897,
13,
13,
29885,
29889,
29883,
29906,
29900,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29953,
29930,
29885,
29889,
29890,
29946,
718,
286,
29889,
29916,
29906,
29941,
29947,
5277,
29871,
29900,
29889,
29906,
29897,
13,
13,
29885,
29889,
29883,
29906,
29900,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29953,
29930,
29885,
29889,
29890,
29945,
718,
286,
29889,
29916,
29906,
29941,
29929,
5277,
29871,
29900,
29889,
29906,
29897,
13,
13,
29885,
29889,
29883,
29906,
29900,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29953,
29930,
29885,
29889,
29890,
29953,
718,
286,
29889,
29916,
29906,
29946,
29900,
5277,
29871,
29900,
29889,
29906,
29897,
13,
13,
29885,
29889,
29883,
29906,
29900,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29953,
29930,
29885,
29889,
29890,
29955,
718,
286,
29889,
29916,
29906,
29946,
29896,
5277,
29871,
29900,
29889,
29906,
29897,
13,
13,
29885,
29889,
29883,
29906,
29900,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29953,
29930,
29885,
29889,
29890,
29947,
718,
286,
29889,
29916,
29906,
29946,
29906,
5277,
29871,
29900,
29889,
29906,
29897,
13,
13,
29885,
29889,
29883,
29906,
29900,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29953,
29930,
29885,
29889,
29890,
29929,
718,
286,
29889,
29916,
29906,
29946,
29941,
5277,
29871,
29900,
29889,
29906,
29897,
13,
13,
29885,
29889,
29883,
29906,
29900,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29953,
29930,
29885,
29889,
29890,
29896,
29900,
718,
286,
29889,
29916,
29906,
29946,
29946,
5277,
29871,
29900,
29889,
29906,
29897,
13,
13,
29885,
29889,
29883,
29906,
29900,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29906,
29945,
29930,
29885,
29889,
29890,
29896,
29896,
718,
286,
29889,
29916,
29906,
29946,
29945,
5277,
29871,
29900,
29889,
29906,
29945,
29897,
13,
13,
29885,
29889,
29883,
29906,
29900,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29906,
29945,
29930,
29885,
29889,
29890,
29896,
29906,
718,
286,
29889,
29916,
29906,
29946,
29953,
5277,
29871,
29900,
29889,
29906,
29945,
29897,
13,
13,
29885,
29889,
29883,
29906,
29900,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29906,
29945,
29930,
29885,
29889,
29890,
29896,
29941,
718,
286,
29889,
29916,
29906,
29946,
29955,
5277,
29871,
29900,
29889,
29906,
29945,
29897,
13,
13,
29885,
29889,
29883,
29906,
29896,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29906,
29945,
29930,
29885,
29889,
29890,
29896,
29946,
718,
286,
29889,
29916,
29906,
29946,
29947,
5277,
29871,
29900,
29889,
29906,
29945,
29897,
13,
13,
29885,
29889,
29883,
29906,
29896,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29906,
29945,
29930,
29885,
29889,
29890,
29896,
29945,
718,
286,
29889,
29916,
29906,
29946,
29929,
5277,
29871,
29900,
29889,
29906,
29945,
29897,
13,
13,
29885,
29889,
29883,
29906,
29896,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29906,
29945,
29930,
29885,
29889,
29890,
29896,
29953,
718,
286,
29889,
29916,
29906,
29945,
29900,
5277,
29871,
29900,
29889,
29906,
29945,
29897,
13,
13,
29885,
29889,
29883,
29906,
29896,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29941,
29930,
29885,
29889,
29890,
29896,
29955,
718,
286,
29889,
29916,
29906,
29945,
29896,
5277,
29871,
29900,
29889,
29946,
29897,
13,
13,
29885,
29889,
29883,
29906,
29896,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29941,
29930,
29885,
29889,
29890,
29896,
29947,
718,
286,
29889,
29916,
29906,
29945,
29906,
5277,
29871,
29900,
29889,
29946,
29897,
13,
13,
29885,
29889,
29883,
29906,
29896,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29941,
29930,
29885,
29889,
29890,
29896,
29929,
718,
286,
29889,
29916,
29906,
29945,
29941,
5277,
29871,
29900,
29889,
29946,
29897,
13,
13,
29885,
29889,
29883,
29906,
29896,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29941,
29930,
29885,
29889,
29890,
29906,
29900,
718,
286,
29889,
29916,
29906,
29945,
29946,
5277,
29871,
29900,
29889,
29946,
29897,
13,
13,
29885,
29889,
29883,
29906,
29896,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29941,
29930,
29885,
29889,
29890,
29906,
29896,
718,
286,
29889,
29916,
29906,
29945,
29945,
5277,
29871,
29900,
29889,
29946,
29897,
13,
13,
29885,
29889,
29883,
29906,
29896,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29941,
29930,
29885,
29889,
29890,
29906,
29906,
718,
286,
29889,
29916,
29906,
29945,
29953,
5277,
29871,
29900,
29889,
29946,
29897,
13,
13,
29885,
29889,
29883,
29906,
29896,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29941,
29946,
29930,
29885,
29889,
29890,
29906,
29941,
718,
286,
29889,
29916,
29906,
29945,
29955,
5277,
29871,
29900,
29889,
29906,
29946,
29897,
13,
13,
29885,
29889,
29883,
29906,
29906,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29941,
29946,
29930,
29885,
29889,
29890,
29906,
29946,
718,
286,
29889,
29916,
29906,
29945,
29947,
5277,
29871,
29900,
29889,
29906,
29946,
29897,
13,
13,
29885,
29889,
29883,
29906,
29906,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29941,
29946,
29930,
29885,
29889,
29890,
29906,
29945,
718,
286,
29889,
29916,
29906,
29945,
29929,
5277,
29871,
29900,
29889,
29906,
29946,
29897,
13,
13,
29885,
29889,
29883,
29906,
29906,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29941,
29946,
29930,
29885,
29889,
29890,
29906,
29953,
718,
286,
29889,
29916,
29906,
29953,
29900,
5277,
29871,
29900,
29889,
29906,
29946,
29897,
13,
13,
29885,
29889,
29883,
29906,
29906,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29941,
29946,
29930,
29885,
29889,
29890,
29906,
29955,
718,
286,
29889,
29916,
29906,
29953,
29896,
5277,
29871,
29900,
29889,
29906,
29946,
29897,
13,
13,
29885,
29889,
29883,
29906,
29906,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29941,
29946,
29930,
29885,
29889,
29890,
29906,
29947,
718,
286,
29889,
29916,
29906,
29953,
29906,
5277,
29871,
29900,
29889,
29906,
29946,
29897,
13,
13,
29885,
29889,
29883,
29906,
29906,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29946,
29930,
29885,
29889,
29890,
29906,
718,
286,
29889,
29916,
29906,
29953,
29941,
5277,
29871,
29900,
29889,
29953,
29897,
13,
13,
29885,
29889,
29883,
29906,
29906,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29946,
29930,
29885,
29889,
29890,
29941,
718,
286,
29889,
29916,
29906,
29953,
29946,
5277,
29871,
29900,
29889,
29953,
29897,
13,
13,
29885,
29889,
29883,
29906,
29906,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29946,
29930,
29885,
29889,
29890,
29946,
718,
286,
29889,
29916,
29906,
29953,
29945,
5277,
29871,
29900,
29889,
29953,
29897,
13,
13,
29885,
29889,
29883,
29906,
29906,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29906,
29930,
29885,
29889,
29890,
29896,
29896,
718,
286,
29889,
29916,
29906,
29953,
29953,
5277,
29871,
29900,
29889,
29947,
29897,
13,
13,
29885,
29889,
29883,
29906,
29906,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29906,
29930,
29885,
29889,
29890,
29896,
29906,
718,
286,
29889,
29916,
29906,
29953,
29955,
5277,
29871,
29900,
29889,
29947,
29897,
13,
13,
29885,
29889,
29883,
29906,
29941,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29906,
29930,
29885,
29889,
29890,
29896,
29941,
718,
286,
29889,
29916,
29906,
29953,
29947,
5277,
29871,
29900,
29889,
29947,
29897,
13,
13,
29885,
29889,
29883,
29906,
29941,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29896,
29945,
29930,
29885,
29889,
29890,
29896,
29955,
718,
286,
29889,
29916,
29906,
29953,
29929,
5277,
29871,
29900,
29889,
29947,
29945,
29897,
13,
13,
29885,
29889,
29883,
29906,
29941,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29896,
29945,
29930,
29885,
29889,
29890,
29896,
29947,
718,
286,
29889,
29916,
29906,
29955,
29900,
5277,
29871,
29900,
29889,
29947,
29945,
29897,
13,
13,
29885,
29889,
29883,
29906,
29941,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29896,
29945,
29930,
29885,
29889,
29890,
29896,
29929,
718,
286,
29889,
29916,
29906,
29955,
29896,
5277,
29871,
29900,
29889,
29947,
29945,
29897,
13,
13,
29885,
29889,
29883,
29906,
29941,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29941,
29930,
29885,
29889,
29890,
29906,
29941,
718,
286,
29889,
29916,
29906,
29955,
29906,
5277,
29871,
29900,
29889,
29955,
29897,
13,
13,
29885,
29889,
29883,
29906,
29941,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29941,
29930,
29885,
29889,
29890,
29906,
29946,
718,
286,
29889,
29916,
29906,
29955,
29941,
5277,
29871,
29900,
29889,
29955,
29897,
13,
13,
29885,
29889,
29883,
29906,
29941,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29941,
29930,
29885,
29889,
29890,
29906,
29945,
718,
286,
29889,
29916,
29906,
29955,
29946,
5277,
29871,
29900,
29889,
29955,
29897,
13,
13,
29885,
29889,
29883,
29906,
29941,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29890,
29906,
448,
286,
29889,
29890,
29945,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29941,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29890,
29941,
448,
286,
29889,
29890,
29953,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29941,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29890,
29946,
448,
286,
29889,
29890,
29955,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29946,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29890,
29945,
448,
286,
29889,
29890,
29947,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29946,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29890,
29953,
448,
286,
29889,
29890,
29929,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29946,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29890,
29955,
448,
286,
29889,
29890,
29896,
29900,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29946,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29890,
29896,
29896,
448,
286,
29889,
29890,
29896,
29946,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29946,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29890,
29896,
29906,
448,
286,
29889,
29890,
29896,
29945,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29946,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29890,
29896,
29941,
448,
286,
29889,
29890,
29896,
29953,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29946,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29890,
29896,
29955,
448,
286,
29889,
29890,
29906,
29900,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29946,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29890,
29896,
29947,
448,
286,
29889,
29890,
29906,
29896,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29946,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29890,
29896,
29929,
448,
286,
29889,
29890,
29906,
29906,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29946,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29890,
29906,
29941,
448,
286,
29889,
29890,
29906,
29953,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29945,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29890,
29906,
29946,
448,
286,
29889,
29890,
29906,
29955,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29945,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29890,
29906,
29945,
448,
286,
29889,
29890,
29906,
29947,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29945,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29929,
29929,
448,
286,
29889,
29916,
29896,
29946,
29900,
448,
286,
29889,
29916,
29896,
29946,
29953,
448,
286,
29889,
29916,
29896,
29945,
29906,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29945,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29896,
29900,
29896,
448,
286,
29889,
29916,
29896,
29946,
29906,
448,
286,
29889,
29916,
29896,
29946,
29947,
448,
286,
29889,
29916,
29896,
29945,
29946,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29945,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29896,
29900,
29941,
448,
286,
29889,
29916,
29896,
29946,
29946,
448,
286,
29889,
29916,
29896,
29945,
29900,
448,
286,
29889,
29916,
29896,
29945,
29953,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29945,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29896,
29900,
29945,
448,
286,
29889,
29916,
29896,
29945,
29947,
448,
286,
29889,
29916,
29896,
29953,
29946,
448,
286,
29889,
29916,
29896,
29955,
29900,
448,
286,
29889,
29916,
29896,
29955,
29953,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29945,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29896,
29900,
29955,
448,
286,
29889,
29916,
29896,
29953,
29900,
448,
286,
29889,
29916,
29896,
29953,
29953,
448,
286,
29889,
29916,
29896,
29955,
29906,
448,
286,
29889,
29916,
29896,
29955,
29947,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29945,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29896,
29900,
29929,
448,
286,
29889,
29916,
29896,
29953,
29906,
448,
286,
29889,
29916,
29896,
29953,
29947,
448,
286,
29889,
29916,
29896,
29955,
29946,
448,
286,
29889,
29916,
29896,
29947,
29900,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29945,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29896,
29896,
29946,
448,
286,
29889,
29916,
29896,
29947,
29906,
448,
286,
29889,
29916,
29896,
29947,
29947,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29945,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29896,
29896,
29953,
448,
286,
29889,
29916,
29896,
29947,
29946,
448,
286,
29889,
29916,
29896,
29929,
29900,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29953,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29896,
29896,
29947,
448,
286,
29889,
29916,
29896,
29947,
29953,
448,
286,
29889,
29916,
29896,
29929,
29906,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29953,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29906,
29900,
29900,
29900,
29930,
29885,
29889,
29890,
29906,
718,
286,
29889,
29916,
29896,
29946,
29896,
448,
286,
29889,
29916,
29906,
29906,
29945,
6736,
448,
29906,
29900,
29900,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29953,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29906,
29900,
29900,
29900,
29930,
29885,
29889,
29890,
29941,
718,
286,
29889,
29916,
29896,
29946,
29929,
448,
286,
29889,
29916,
29906,
29906,
29955,
6736,
448,
29906,
29900,
29900,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29953,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29906,
29900,
29900,
29900,
29930,
29885,
29889,
29890,
29946,
718,
286,
29889,
29916,
29896,
29945,
29955,
448,
286,
29889,
29916,
29906,
29906,
29929,
6736,
448,
29906,
29900,
29900,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29953,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29906,
29900,
29900,
29900,
29930,
29885,
29889,
29890,
29945,
718,
286,
29889,
29916,
29896,
29953,
29945,
448,
286,
29889,
29916,
29906,
29906,
29945,
6736,
448,
29906,
29900,
29900,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29953,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29906,
29900,
29900,
29900,
29930,
29885,
29889,
29890,
29953,
718,
286,
29889,
29916,
29896,
29955,
29896,
448,
286,
29889,
29916,
29906,
29906,
29955,
6736,
448,
29906,
29900,
29900,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29953,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29906,
29900,
29900,
29900,
29930,
29885,
29889,
29890,
29955,
718,
286,
29889,
29916,
29896,
29955,
29955,
448,
286,
29889,
29916,
29906,
29906,
29929,
6736,
448,
29906,
29900,
29900,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29953,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29906,
29900,
29900,
29900,
29930,
29885,
29889,
29890,
29947,
718,
286,
29889,
29916,
29896,
29947,
29941,
448,
286,
29889,
29916,
29906,
29906,
29945,
6736,
448,
29906,
29900,
29900,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29953,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29906,
29900,
29900,
29900,
29930,
29885,
29889,
29890,
29929,
718,
286,
29889,
29916,
29896,
29947,
29929,
448,
286,
29889,
29916,
29906,
29906,
29955,
6736,
448,
29906,
29900,
29900,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29953,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29906,
29900,
29900,
29900,
29930,
29885,
29889,
29890,
29896,
29900,
718,
286,
29889,
29916,
29906,
29929,
448,
286,
29889,
29916,
29906,
29906,
29929,
6736,
448,
29906,
29900,
29900,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29955,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29906,
29900,
29900,
29900,
29930,
29885,
29889,
29890,
29896,
29896,
718,
286,
29889,
29916,
29941,
29906,
448,
286,
29889,
29916,
29906,
29941,
29900,
6736,
448,
29906,
29900,
29900,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29955,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29906,
29900,
29900,
29900,
29930,
29885,
29889,
29890,
29896,
29906,
718,
286,
29889,
29916,
29941,
29953,
448,
286,
29889,
29916,
29906,
29941,
29896,
6736,
448,
29906,
29900,
29900,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29955,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29906,
29900,
29900,
29900,
29930,
29885,
29889,
29890,
29896,
29941,
718,
286,
29889,
29916,
29946,
29900,
448,
286,
29889,
29916,
29906,
29941,
29906,
6736,
448,
29906,
29900,
29900,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29955,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29906,
29900,
29900,
29900,
29930,
29885,
29889,
29890,
29896,
29946,
718,
286,
29889,
29916,
29946,
29946,
448,
286,
29889,
29916,
29906,
29941,
29900,
6736,
448,
29906,
29900,
29900,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29955,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29906,
29900,
29900,
29900,
29930,
29885,
29889,
29890,
29896,
29945,
718,
286,
29889,
29916,
29946,
29955,
448,
286,
29889,
29916,
29906,
29941,
29896,
6736,
448,
29906,
29900,
29900,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29955,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29906,
29900,
29900,
29900,
29930,
29885,
29889,
29890,
29896,
29953,
718,
286,
29889,
29916,
29945,
29900,
448,
286,
29889,
29916,
29906,
29941,
29906,
6736,
448,
29906,
29900,
29900,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29955,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29906,
29900,
29900,
29900,
29930,
29885,
29889,
29890,
29896,
29955,
718,
286,
29889,
29916,
29945,
29941,
448,
286,
29889,
29916,
29906,
29941,
29900,
6736,
448,
29906,
29900,
29900,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29955,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29906,
29900,
29900,
29900,
29930,
29885,
29889,
29890,
29896,
29947,
718,
286,
29889,
29916,
29945,
29955,
448,
286,
29889,
29916,
29906,
29941,
29896,
6736,
448,
29906,
29900,
29900,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29955,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29906,
29900,
29900,
29900,
29930,
29885,
29889,
29890,
29896,
29929,
718,
286,
29889,
29916,
29953,
29896,
448,
286,
29889,
29916,
29906,
29941,
29906,
6736,
448,
29906,
29900,
29900,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29955,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29906,
29900,
29900,
29900,
29930,
29885,
29889,
29890,
29906,
29900,
718,
286,
29889,
29916,
29953,
29945,
448,
286,
29889,
29916,
29906,
29941,
29900,
6736,
448,
29906,
29900,
29900,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29947,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29906,
29900,
29900,
29900,
29930,
29885,
29889,
29890,
29906,
29896,
718,
286,
29889,
29916,
29953,
29947,
448,
286,
29889,
29916,
29906,
29941,
29896,
6736,
448,
29906,
29900,
29900,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29947,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29906,
29900,
29900,
29900,
29930,
29885,
29889,
29890,
29906,
29906,
718,
286,
29889,
29916,
29955,
29896,
448,
286,
29889,
29916,
29906,
29941,
29906,
6736,
448,
29906,
29900,
29900,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29947,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29906,
29900,
29900,
29900,
29930,
29885,
29889,
29890,
29906,
29941,
718,
286,
29889,
29916,
29955,
29946,
448,
286,
29889,
29916,
29906,
29941,
29941,
6736,
448,
29906,
29900,
29900,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29947,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29906,
29900,
29900,
29900,
29930,
29885,
29889,
29890,
29906,
29946,
718,
286,
29889,
29916,
29955,
29947,
448,
286,
29889,
29916,
29906,
29941,
29946,
6736,
448,
29906,
29900,
29900,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29947,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29906,
29900,
29900,
29900,
29930,
29885,
29889,
29890,
29906,
29945,
718,
286,
29889,
29916,
29947,
29906,
448,
286,
29889,
29916,
29906,
29941,
29945,
6736,
448,
29906,
29900,
29900,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29947,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29906,
29900,
29900,
29900,
29930,
29885,
29889,
29890,
29906,
29953,
718,
286,
29889,
29916,
29947,
29953,
448,
286,
29889,
29916,
29906,
29941,
29941,
6736,
448,
29906,
29900,
29900,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29947,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29906,
29900,
29900,
29900,
29930,
29885,
29889,
29890,
29906,
29955,
718,
286,
29889,
29916,
29947,
29929,
448,
286,
29889,
29916,
29906,
29941,
29946,
6736,
448,
29906,
29900,
29900,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29947,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29906,
29900,
29900,
29900,
29930,
29885,
29889,
29890,
29906,
29947,
718,
286,
29889,
29916,
29929,
29906,
448,
286,
29889,
29916,
29906,
29941,
29945,
6736,
448,
29906,
29900,
29900,
29900,
29897,
13,
13,
29885,
29889,
29883,
29906,
29947,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29896,
29900,
29946,
29929,
29930,
29885,
29889,
29890,
29906,
718,
286,
29889,
29916,
29896,
29946,
29896,
448,
286,
29889,
29916,
29906,
29906,
29945,
5277,
29871,
29896,
29900,
29946,
29929,
29897,
13,
13,
29885,
29889,
29883,
29906,
29947,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29896,
29900,
29946,
29929,
29930,
29885,
29889,
29890,
29941,
718,
286,
29889,
29916,
29896,
29946,
29929,
448,
286,
29889,
29916,
29906,
29906,
29955,
5277,
29871,
29896,
29900,
29946,
29929,
29897,
13,
13,
29885,
29889,
29883,
29906,
29929,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29896,
29900,
29946,
29929,
29930,
29885,
29889,
29890,
29946,
718,
286,
29889,
29916,
29896,
29945,
29955,
448,
286,
29889,
29916,
29906,
29906,
29929,
5277,
29871,
29896,
29900,
29946,
29929,
29897,
13,
13,
29885,
29889,
29883,
29906,
29929,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29896,
29900,
29946,
29929,
29930,
29885,
29889,
29890,
29945,
718,
286,
29889,
29916,
29896,
29953,
29945,
448,
286,
29889,
29916,
29906,
29906,
29945,
5277,
29871,
29896,
29900,
29946,
29929,
29897,
13,
13,
29885,
29889,
29883,
29906,
29929,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29896,
29900,
29946,
29929,
29930,
29885,
29889,
29890,
29953,
718,
286,
29889,
29916,
29896,
29955,
29896,
448,
286,
29889,
29916,
29906,
29906,
29955,
5277,
29871,
29896,
29900,
29946,
29929,
29897,
13,
13,
29885,
29889,
29883,
29906,
29929,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29896,
29900,
29946,
29929,
29930,
29885,
29889,
29890,
29955,
718,
286,
29889,
29916,
29896,
29955,
29955,
448,
286,
29889,
29916,
29906,
29906,
29929,
5277,
29871,
29896,
29900,
29946,
29929,
29897,
13,
13,
29885,
29889,
29883,
29906,
29929,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29896,
29900,
29946,
29929,
29930,
29885,
29889,
29890,
29947,
718,
286,
29889,
29916,
29896,
29947,
29941,
448,
286,
29889,
29916,
29906,
29906,
29945,
5277,
29871,
29896,
29900,
29946,
29929,
29897,
13,
13,
29885,
29889,
29883,
29906,
29929,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29896,
29900,
29946,
29929,
29930,
29885,
29889,
29890,
29929,
718,
286,
29889,
29916,
29896,
29947,
29929,
448,
286,
29889,
29916,
29906,
29906,
29955,
5277,
29871,
29896,
29900,
29946,
29929,
29897,
13,
13,
29885,
29889,
29883,
29906,
29929,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29896,
29900,
29946,
29929,
29930,
29885,
29889,
29890,
29896,
29900,
718,
286,
29889,
29916,
29906,
29929,
448,
286,
29889,
29916,
29906,
29906,
29929,
5277,
29871,
29896,
29900,
29946,
29929,
29897,
13,
13,
29885,
29889,
29883,
29906,
29929,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29896,
29900,
29953,
29945,
29930,
29885,
29889,
29890,
29896,
29896,
718,
286,
29889,
29916,
29941,
29906,
448,
286,
29889,
29916,
29906,
29941,
29900,
5277,
29871,
29896,
29900,
29953,
29945,
29897,
13,
13,
29885,
29889,
29883,
29906,
29929,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29896,
29900,
29953,
29945,
29930,
29885,
29889,
29890,
29896,
29906,
718,
286,
29889,
29916,
29941,
29953,
448,
286,
29889,
29916,
29906,
29941,
29896,
5277,
29871,
29896,
29900,
29953,
29945,
29897,
13,
13,
29885,
29889,
29883,
29906,
29929,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29896,
29900,
29953,
29945,
29930,
29885,
29889,
29890,
29896,
29941,
718,
286,
29889,
29916,
29946,
29900,
448,
286,
29889,
29916,
29906,
29941,
29906,
5277,
29871,
29896,
29900,
29953,
29945,
29897,
13,
13,
29885,
29889,
29883,
29941,
29900,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29896,
29900,
29953,
29945,
29930,
29885,
29889,
29890,
29896,
29946,
718,
286,
29889,
29916,
29946,
29946,
448,
286,
29889,
29916,
29906,
29941,
29900,
5277,
29871,
29896,
29900,
29953,
29945,
29897,
13,
13,
29885,
29889,
29883,
29941,
29900,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29896,
29900,
29953,
29945,
29930,
29885,
29889,
29890,
29896,
29945,
718,
286,
29889,
29916,
29946,
29955,
448,
286,
29889,
29916,
29906,
29941,
29896,
5277,
29871,
29896,
29900,
29953,
29945,
29897,
13,
13,
29885,
29889,
29883,
29941,
29900,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29896,
29900,
29953,
29945,
29930,
29885,
29889,
29890,
29896,
29953,
718,
286,
29889,
29916,
29945,
29900,
448,
286,
29889,
29916,
29906,
29941,
29906,
5277,
29871,
29896,
29900,
29953,
29945,
29897,
13,
13,
29885,
29889,
29883,
29941,
29900,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29896,
29900,
29953,
29945,
29930,
29885,
29889,
29890,
29896,
29955,
718,
286,
29889,
29916,
29945,
29941,
448,
286,
29889,
29916,
29906,
29941,
29900,
5277,
29871,
29896,
29900,
29953,
29945,
29897,
13,
13,
29885,
29889,
29883,
29941,
29900,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29896,
29900,
29953,
29945,
29930,
29885,
29889,
29890,
29896,
29947,
718,
286,
29889,
29916,
29945,
29955,
448,
286,
29889,
29916,
29906,
29941,
29896,
5277,
29871,
29896,
29900,
29953,
29945,
29897,
13,
13,
29885,
29889,
29883,
29941,
29900,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29896,
29900,
29953,
29945,
29930,
29885,
29889,
29890,
29896,
29929,
718,
286,
29889,
29916,
29953,
29896,
448,
286,
29889,
29916,
29906,
29941,
29906,
5277,
29871,
29896,
29900,
29953,
29945,
29897,
13,
13,
29885,
29889,
29883,
29941,
29900,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29896,
29900,
29953,
29945,
29930,
29885,
29889,
29890,
29906,
29900,
718,
286,
29889,
29916,
29953,
29945,
448,
286,
29889,
29916,
29906,
29941,
29900,
5277,
29871,
29896,
29900,
29953,
29945,
29897,
13,
13,
29885,
29889,
29883,
29941,
29900,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29896,
29900,
29953,
29945,
29930,
29885,
29889,
29890,
29906,
29896,
718,
286,
29889,
29916,
29953,
29947,
448,
286,
29889,
29916,
29906,
29941,
29896,
5277,
29871,
29896,
29900,
29953,
29945,
29897,
13,
13,
29885,
29889,
29883,
29941,
29900,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29896,
29900,
29953,
29945,
29930,
29885,
29889,
29890,
29906,
29906,
718,
286,
29889,
29916,
29955,
29896,
448,
286,
29889,
29916,
29906,
29941,
29906,
5277,
29871,
29896,
29900,
29953,
29945,
29897,
13,
13,
29885,
29889,
29883,
29941,
29900,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29896,
29900,
29929,
29945,
29930,
29885,
29889,
29890,
29906,
29941,
718,
286,
29889,
29916,
29955,
29946,
448,
286,
29889,
29916,
29906,
29941,
29941,
5277,
29871,
29896,
29900,
29929,
29945,
29897,
13,
13,
29885,
29889,
29883,
29941,
29896,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29896,
29900,
29929,
29945,
29930,
29885,
29889,
29890,
29906,
29946,
718,
286,
29889,
29916,
29955,
29947,
448,
286,
29889,
29916,
29906,
29941,
29946,
5277,
29871,
29896,
29900,
29929,
29945,
29897,
13,
13,
29885,
29889,
29883,
29941,
29896,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29896,
29900,
29929,
29945,
29930,
29885,
29889,
29890,
29906,
29945,
718,
286,
29889,
29916,
29947,
29906,
448,
286,
29889,
29916,
29906,
29941,
29945,
5277,
29871,
29896,
29900,
29929,
29945,
29897,
13,
13,
29885,
29889,
29883,
29941,
29896,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29896,
29900,
29929,
29945,
29930,
29885,
29889,
29890,
29906,
29953,
718,
286,
29889,
29916,
29947,
29953,
448,
286,
29889,
29916,
29906,
29941,
29941,
5277,
29871,
29896,
29900,
29929,
29945,
29897,
13,
13,
29885,
29889,
29883,
29941,
29896,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29896,
29900,
29929,
29945,
29930,
29885,
29889,
29890,
29906,
29955,
718,
286,
29889,
29916,
29947,
29929,
448,
286,
29889,
29916,
29906,
29941,
29946,
5277,
29871,
29896,
29900,
29929,
29945,
29897,
13,
13,
29885,
29889,
29883,
29941,
29896,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29896,
29900,
29929,
29945,
29930,
29885,
29889,
29890,
29906,
29947,
718,
286,
29889,
29916,
29929,
29906,
448,
286,
29889,
29916,
29906,
29941,
29945,
5277,
29871,
29896,
29900,
29929,
29945,
29897,
13,
13,
29885,
29889,
29883,
29941,
29896,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29929,
29955,
718,
286,
29889,
29916,
29906,
29896,
29900,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29896,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29929,
29947,
718,
286,
29889,
29916,
29906,
29896,
29941,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29896,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
286,
29889,
29916,
29896,
29929,
29929,
718,
286,
29889,
29916,
29906,
29896,
29953,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29896,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29906,
29900,
29900,
448,
286,
29889,
29916,
29906,
29955,
29945,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29896,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29906,
29900,
29896,
448,
286,
29889,
29916,
29906,
29955,
29953,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29906,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29906,
29900,
29906,
448,
286,
29889,
29916,
29906,
29955,
29955,
6736,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29906,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29941,
29900,
29929,
29947,
29941,
29947,
29906,
29929,
29945,
29941,
29929,
29941,
29953,
29941,
29946,
29930,
29885,
29889,
29916,
29906,
29955,
29947,
718,
29871,
29896,
29941,
29889,
29929,
29946,
29953,
29929,
29953,
29896,
29945,
29947,
29930,
29885,
29889,
29916,
29906,
29955,
29929,
718,
29871,
29906,
29946,
29889,
29946,
29953,
29945,
29896,
29900,
29947,
29896,
29929,
29930,
29885,
29889,
29916,
29906,
29947,
29900,
448,
29871,
29955,
29889,
29906,
29947,
29953,
29906,
29941,
29947,
29941,
29929,
29930,
29885,
29889,
29916,
29906,
29947,
29896,
13,
462,
3986,
448,
29871,
29906,
29941,
29889,
29945,
29955,
29953,
29947,
29955,
29900,
29896,
29946,
29930,
29885,
29889,
29916,
29906,
29947,
29906,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29906,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29941,
29900,
29929,
29947,
29941,
29947,
29906,
29929,
29945,
29941,
29929,
29941,
29953,
29941,
29946,
29930,
29885,
29889,
29916,
29906,
29947,
29941,
718,
29871,
29896,
29941,
29889,
29929,
29946,
29953,
29929,
29953,
29896,
29945,
29947,
29930,
29885,
29889,
29916,
29906,
29947,
29946,
718,
29871,
29906,
29946,
29889,
29946,
29953,
29945,
29896,
29900,
29947,
29896,
29929,
29930,
29885,
29889,
29916,
29906,
29947,
29945,
448,
29871,
29955,
29889,
29906,
29947,
29953,
29906,
29941,
29947,
29941,
29929,
29930,
29885,
29889,
29916,
29906,
29947,
29953,
13,
462,
3986,
448,
29871,
29906,
29941,
29889,
29945,
29955,
29953,
29947,
29955,
29900,
29896,
29946,
29930,
29885,
29889,
29916,
29906,
29947,
29955,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29906,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29941,
29900,
29929,
29947,
29941,
29947,
29906,
29929,
29945,
29941,
29929,
29941,
29953,
29941,
29946,
29930,
29885,
29889,
29916,
29906,
29947,
29947,
718,
29871,
29896,
29941,
29889,
29929,
29946,
29953,
29929,
29953,
29896,
29945,
29947,
29930,
29885,
29889,
29916,
29906,
29947,
29929,
718,
29871,
29906,
29946,
29889,
29946,
29953,
29945,
29896,
29900,
29947,
29896,
29929,
29930,
29885,
29889,
29916,
29906,
29929,
29900,
448,
29871,
29955,
29889,
29906,
29947,
29953,
29906,
29941,
29947,
29941,
29929,
29930,
29885,
29889,
29916,
29906,
29929,
29896,
13,
462,
3986,
448,
29871,
29906,
29941,
29889,
29945,
29955,
29953,
29947,
29955,
29900,
29896,
29946,
29930,
29885,
29889,
29916,
29906,
29929,
29906,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29906,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29941,
29900,
29929,
29947,
29941,
29947,
29906,
29929,
29945,
29941,
29929,
29941,
29953,
29941,
29946,
29930,
29885,
29889,
29916,
29906,
29929,
29941,
718,
29871,
29896,
29941,
29889,
29929,
29946,
29953,
29929,
29953,
29896,
29945,
29947,
29930,
29885,
29889,
29916,
29906,
29929,
29946,
718,
29871,
29906,
29946,
29889,
29946,
29953,
29945,
29896,
29900,
29947,
29896,
29929,
29930,
29885,
29889,
29916,
29906,
29929,
29945,
448,
29871,
29955,
29889,
29906,
29947,
29953,
29906,
29941,
29947,
29941,
29929,
29930,
29885,
29889,
29916,
29906,
29929,
29953,
13,
462,
3986,
448,
29871,
29906,
29941,
29889,
29945,
29955,
29953,
29947,
29955,
29900,
29896,
29946,
29930,
29885,
29889,
29916,
29906,
29929,
29955,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29906,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29941,
29900,
29929,
29947,
29941,
29947,
29906,
29929,
29945,
29941,
29929,
29941,
29953,
29941,
29946,
29930,
29885,
29889,
29916,
29906,
29929,
29947,
718,
29871,
29896,
29941,
29889,
29929,
29946,
29953,
29929,
29953,
29896,
29945,
29947,
29930,
29885,
29889,
29916,
29906,
29929,
29929,
718,
29871,
29906,
29946,
29889,
29946,
29953,
29945,
29896,
29900,
29947,
29896,
29929,
29930,
29885,
29889,
29916,
29941,
29900,
29900,
448,
29871,
29955,
29889,
29906,
29947,
29953,
29906,
29941,
29947,
29941,
29929,
29930,
29885,
29889,
29916,
29941,
29900,
29896,
13,
462,
3986,
448,
29871,
29906,
29941,
29889,
29945,
29955,
29953,
29947,
29955,
29900,
29896,
29946,
29930,
29885,
29889,
29916,
29941,
29900,
29906,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29906,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29941,
29900,
29929,
29947,
29941,
29947,
29906,
29929,
29945,
29941,
29929,
29941,
29953,
29941,
29946,
29930,
29885,
29889,
29916,
29941,
29900,
29941,
718,
29871,
29896,
29941,
29889,
29929,
29946,
29953,
29929,
29953,
29896,
29945,
29947,
29930,
29885,
29889,
29916,
29941,
29900,
29946,
718,
29871,
29906,
29946,
29889,
29946,
29953,
29945,
29896,
29900,
29947,
29896,
29929,
29930,
29885,
29889,
29916,
29941,
29900,
29945,
448,
29871,
29955,
29889,
29906,
29947,
29953,
29906,
29941,
29947,
29941,
29929,
29930,
29885,
29889,
29916,
29941,
29900,
29953,
13,
462,
3986,
448,
29871,
29906,
29941,
29889,
29945,
29955,
29953,
29947,
29955,
29900,
29896,
29946,
29930,
29885,
29889,
29916,
29941,
29900,
29955,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29906,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29941,
29900,
29929,
29947,
29941,
29947,
29906,
29929,
29945,
29941,
29929,
29941,
29953,
29941,
29946,
29930,
29885,
29889,
29916,
29941,
29900,
29947,
718,
29871,
29896,
29941,
29889,
29929,
29946,
29953,
29929,
29953,
29896,
29945,
29947,
29930,
29885,
29889,
29916,
29941,
29900,
29929,
718,
29871,
29906,
29946,
29889,
29946,
29953,
29945,
29896,
29900,
29947,
29896,
29929,
29930,
29885,
29889,
29916,
29941,
29896,
29900,
448,
29871,
29955,
29889,
29906,
29947,
29953,
29906,
29941,
29947,
29941,
29929,
29930,
29885,
29889,
29916,
29941,
29896,
29896,
13,
462,
3986,
448,
29871,
29906,
29941,
29889,
29945,
29955,
29953,
29947,
29955,
29900,
29896,
29946,
29930,
29885,
29889,
29916,
29941,
29896,
29906,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29906,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29941,
29900,
29929,
29947,
29941,
29947,
29906,
29929,
29945,
29941,
29929,
29941,
29953,
29941,
29946,
29930,
29885,
29889,
29916,
29941,
29896,
29941,
718,
29871,
29896,
29941,
29889,
29929,
29946,
29953,
29929,
29953,
29896,
29945,
29947,
29930,
29885,
29889,
29916,
29941,
29896,
29946,
718,
29871,
29906,
29946,
29889,
29946,
29953,
29945,
29896,
29900,
29947,
29896,
29929,
29930,
29885,
29889,
29916,
29941,
29896,
29945,
448,
29871,
29955,
29889,
29906,
29947,
29953,
29906,
29941,
29947,
29941,
29929,
29930,
29885,
29889,
29916,
29941,
29896,
29953,
13,
462,
3986,
448,
29871,
29906,
29941,
29889,
29945,
29955,
29953,
29947,
29955,
29900,
29896,
29946,
29930,
29885,
29889,
29916,
29941,
29896,
29955,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29906,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29941,
29900,
29929,
29947,
29941,
29947,
29906,
29929,
29945,
29941,
29929,
29941,
29953,
29941,
29946,
29930,
29885,
29889,
29916,
29941,
29896,
29947,
718,
29871,
29896,
29941,
29889,
29929,
29946,
29953,
29929,
29953,
29896,
29945,
29947,
29930,
29885,
29889,
29916,
29941,
29896,
29929,
718,
29871,
29906,
29946,
29889,
29946,
29953,
29945,
29896,
29900,
29947,
29896,
29929,
29930,
29885,
29889,
29916,
29941,
29906,
29900,
448,
29871,
29955,
29889,
29906,
29947,
29953,
29906,
29941,
29947,
29941,
29929,
29930,
29885,
29889,
29916,
29941,
29906,
29896,
13,
462,
3986,
448,
29871,
29906,
29941,
29889,
29945,
29955,
29953,
29947,
29955,
29900,
29896,
29946,
29930,
29885,
29889,
29916,
29941,
29906,
29906,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29941,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29941,
29900,
29929,
29947,
29941,
29947,
29906,
29929,
29945,
29941,
29929,
29941,
29953,
29941,
29946,
29930,
29885,
29889,
29916,
29941,
29906,
29941,
718,
29871,
29906,
29929,
29889,
29906,
29929,
29946,
29900,
29946,
29945,
29906,
29929,
29930,
29885,
29889,
29916,
29941,
29906,
29946,
448,
29871,
29896,
29900,
29947,
29889,
29941,
29929,
29946,
29900,
29947,
29906,
29947,
29955,
29930,
29885,
29889,
29916,
29941,
29906,
29945,
718,
29871,
29946,
29946,
29906,
29889,
29906,
29896,
29929,
29929,
29900,
29953,
29941,
29929,
29930,
29885,
29889,
29916,
29941,
29906,
29953,
13,
462,
3986,
448,
29871,
29946,
29945,
29946,
29889,
29945,
29947,
29946,
29946,
29947,
29896,
29953,
29929,
29930,
29885,
29889,
29916,
29941,
29906,
29955,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29941,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29941,
29900,
29929,
29947,
29941,
29947,
29906,
29929,
29945,
29941,
29929,
29941,
29953,
29941,
29946,
29930,
29885,
29889,
29916,
29941,
29906,
29947,
718,
29871,
29906,
29929,
29889,
29906,
29929,
29946,
29900,
29946,
29945,
29906,
29929,
29930,
29885,
29889,
29916,
29941,
29906,
29929,
448,
29871,
29896,
29900,
29947,
29889,
29941,
29929,
29946,
29900,
29947,
29906,
29947,
29955,
29930,
29885,
29889,
29916,
29941,
29941,
29900,
718,
29871,
29946,
29946,
29906,
29889,
29906,
29896,
29929,
29929,
29900,
29953,
29941,
29929,
29930,
29885,
29889,
29916,
29941,
29941,
29896,
13,
462,
3986,
448,
29871,
29946,
29945,
29946,
29889,
29945,
29947,
29946,
29946,
29947,
29896,
29953,
29929,
29930,
29885,
29889,
29916,
29941,
29941,
29906,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29941,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29941,
29900,
29929,
29947,
29941,
29947,
29906,
29929,
29945,
29941,
29929,
29941,
29953,
29941,
29946,
29930,
29885,
29889,
29916,
29941,
29941,
29941,
718,
29871,
29906,
29929,
29889,
29906,
29929,
29946,
29900,
29946,
29945,
29906,
29929,
29930,
29885,
29889,
29916,
29941,
29941,
29946,
448,
29871,
29896,
29900,
29947,
29889,
29941,
29929,
29946,
29900,
29947,
29906,
29947,
29955,
29930,
29885,
29889,
29916,
29941,
29941,
29945,
718,
29871,
29946,
29946,
29906,
29889,
29906,
29896,
29929,
29929,
29900,
29953,
29941,
29929,
29930,
29885,
29889,
29916,
29941,
29941,
29953,
13,
462,
3986,
448,
29871,
29946,
29945,
29946,
29889,
29945,
29947,
29946,
29946,
29947,
29896,
29953,
29929,
29930,
29885,
29889,
29916,
29941,
29941,
29955,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29941,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29941,
29900,
29929,
29947,
29941,
29947,
29906,
29929,
29945,
29941,
29929,
29941,
29953,
29941,
29946,
29930,
29885,
29889,
29916,
29941,
29941,
29947,
718,
29871,
29906,
29929,
29889,
29906,
29929,
29946,
29900,
29946,
29945,
29906,
29929,
29930,
29885,
29889,
29916,
29941,
29941,
29929,
448,
29871,
29896,
29900,
29947,
29889,
29941,
29929,
29946,
29900,
29947,
29906,
29947,
29955,
29930,
29885,
29889,
29916,
29941,
29946,
29900,
718,
29871,
29946,
29946,
29906,
29889,
29906,
29896,
29929,
29929,
29900,
29953,
29941,
29929,
29930,
29885,
29889,
29916,
29941,
29946,
29896,
13,
462,
3986,
448,
29871,
29946,
29945,
29946,
29889,
29945,
29947,
29946,
29946,
29947,
29896,
29953,
29929,
29930,
29885,
29889,
29916,
29941,
29946,
29906,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29941,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
1678,
29946,
29946,
29906,
29889,
29906,
29896,
29929,
29929,
29900,
29953,
29941,
29929,
29930,
29885,
29889,
29916,
29941,
29946,
29941,
448,
29871,
29946,
29945,
29946,
29889,
29945,
29947,
29946,
29946,
29947,
29896,
29953,
29929,
29930,
29885,
29889,
29916,
29941,
29946,
29946,
448,
29871,
29900,
29889,
29941,
29900,
29929,
29947,
29941,
29947,
29906,
29929,
29945,
29941,
29929,
29941,
29953,
29941,
29946,
29930,
29885,
29889,
29916,
29941,
29946,
29945,
718,
29871,
29906,
29929,
29889,
29906,
29929,
29946,
29900,
29946,
29945,
29906,
29929,
29930,
29885,
29889,
29916,
29941,
29946,
29953,
13,
462,
3986,
448,
29871,
29896,
29900,
29947,
29889,
29941,
29929,
29946,
29900,
29947,
29906,
29947,
29955,
29930,
29885,
29889,
29916,
29941,
29946,
29955,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29941,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29941,
29900,
29929,
29947,
29941,
29947,
29906,
29929,
29945,
29941,
29929,
29941,
29953,
29941,
29946,
29930,
29885,
29889,
29916,
29941,
29946,
29947,
718,
29871,
29906,
29929,
29889,
29906,
29929,
29946,
29900,
29946,
29945,
29906,
29929,
29930,
29885,
29889,
29916,
29941,
29946,
29929,
448,
29871,
29896,
29900,
29947,
29889,
29941,
29929,
29946,
29900,
29947,
29906,
29947,
29955,
29930,
29885,
29889,
29916,
29941,
29945,
29900,
718,
29871,
29946,
29946,
29906,
29889,
29906,
29896,
29929,
29929,
29900,
29953,
29941,
29929,
29930,
29885,
29889,
29916,
29941,
29945,
29896,
13,
462,
3986,
448,
29871,
29946,
29945,
29946,
29889,
29945,
29947,
29946,
29946,
29947,
29896,
29953,
29929,
29930,
29885,
29889,
29916,
29941,
29945,
29906,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29941,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29941,
29900,
29929,
29947,
29941,
29947,
29906,
29929,
29945,
29941,
29929,
29941,
29953,
29941,
29946,
29930,
29885,
29889,
29916,
29941,
29945,
29941,
718,
29871,
29906,
29945,
29889,
29929,
29906,
29953,
29955,
29946,
29945,
29947,
29945,
29930,
29885,
29889,
29916,
29941,
29945,
29946,
718,
29871,
29896,
29947,
29889,
29896,
29941,
29946,
29947,
29906,
29896,
29906,
29941,
29930,
29885,
29889,
29916,
29941,
29945,
29945,
718,
29871,
29906,
29906,
29889,
29896,
29906,
29955,
29953,
29953,
29900,
29896,
29906,
29930,
29885,
29889,
29916,
29941,
29945,
29953,
13,
462,
3986,
448,
29871,
29946,
29906,
29889,
29953,
29947,
29929,
29945,
29900,
29955,
29953,
29929,
29930,
29885,
29889,
29916,
29941,
29945,
29955,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29941,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29941,
29900,
29929,
29947,
29941,
29947,
29906,
29929,
29945,
29941,
29929,
29941,
29953,
29941,
29946,
29930,
29885,
29889,
29916,
29941,
29945,
29947,
718,
29871,
29906,
29945,
29889,
29929,
29906,
29953,
29955,
29946,
29945,
29947,
29945,
29930,
29885,
29889,
29916,
29941,
29945,
29929,
718,
29871,
29896,
29947,
29889,
29896,
29941,
29946,
29947,
29906,
29896,
29906,
29941,
29930,
29885,
29889,
29916,
29941,
29953,
29900,
718,
29871,
29906,
29906,
29889,
29896,
29906,
29955,
29953,
29953,
29900,
29896,
29906,
29930,
29885,
29889,
29916,
29941,
29953,
29896,
13,
462,
3986,
448,
29871,
29946,
29906,
29889,
29953,
29947,
29929,
29945,
29900,
29955,
29953,
29929,
29930,
29885,
29889,
29916,
29941,
29953,
29906,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29941,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29941,
29900,
29929,
29947,
29941,
29947,
29906,
29929,
29945,
29941,
29929,
29941,
29953,
29941,
29946,
29930,
29885,
29889,
29916,
29941,
29953,
29941,
718,
29871,
29906,
29945,
29889,
29929,
29906,
29953,
29955,
29946,
29945,
29947,
29945,
29930,
29885,
29889,
29916,
29941,
29953,
29946,
718,
29871,
29896,
29947,
29889,
29896,
29941,
29946,
29947,
29906,
29896,
29906,
29941,
29930,
29885,
29889,
29916,
29941,
29953,
29945,
718,
29871,
29906,
29906,
29889,
29896,
29906,
29955,
29953,
29953,
29900,
29896,
29906,
29930,
29885,
29889,
29916,
29941,
29953,
29953,
13,
462,
3986,
448,
29871,
29946,
29906,
29889,
29953,
29947,
29929,
29945,
29900,
29955,
29953,
29929,
29930,
29885,
29889,
29916,
29941,
29953,
29955,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29941,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29941,
29900,
29929,
29947,
29941,
29947,
29906,
29929,
29945,
29941,
29929,
29941,
29953,
29941,
29946,
29930,
29885,
29889,
29916,
29941,
29953,
29947,
718,
29871,
29906,
29945,
29889,
29929,
29906,
29953,
29955,
29946,
29945,
29947,
29945,
29930,
29885,
29889,
29916,
29941,
29953,
29929,
718,
29871,
29896,
29947,
29889,
29896,
29941,
29946,
29947,
29906,
29896,
29906,
29941,
29930,
29885,
29889,
29916,
29941,
29955,
29900,
718,
29871,
29906,
29906,
29889,
29896,
29906,
29955,
29953,
29953,
29900,
29896,
29906,
29930,
29885,
29889,
29916,
29941,
29955,
29896,
13,
462,
3986,
448,
29871,
29946,
29906,
29889,
29953,
29947,
29929,
29945,
29900,
29955,
29953,
29929,
29930,
29885,
29889,
29916,
29941,
29955,
29906,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29946,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29941,
29900,
29929,
29947,
29941,
29947,
29906,
29929,
29945,
29941,
29929,
29941,
29953,
29941,
29946,
29930,
29885,
29889,
29916,
29941,
29955,
29941,
718,
29871,
29906,
29945,
29889,
29929,
29906,
29953,
29955,
29946,
29945,
29947,
29945,
29930,
29885,
29889,
29916,
29941,
29955,
29946,
718,
29871,
29896,
29947,
29889,
29896,
29941,
29946,
29947,
29906,
29896,
29906,
29941,
29930,
29885,
29889,
29916,
29941,
29955,
29945,
718,
29871,
29906,
29906,
29889,
29896,
29906,
29955,
29953,
29953,
29900,
29896,
29906,
29930,
29885,
29889,
29916,
29941,
29955,
29953,
13,
462,
3986,
448,
29871,
29946,
29906,
29889,
29953,
29947,
29929,
29945,
29900,
29955,
29953,
29929,
29930,
29885,
29889,
29916,
29941,
29955,
29955,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29946,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29941,
29900,
29929,
29947,
29941,
29947,
29906,
29929,
29945,
29941,
29929,
29941,
29953,
29941,
29946,
29930,
29885,
29889,
29916,
29941,
29955,
29947,
718,
29871,
29906,
29945,
29889,
29929,
29906,
29953,
29955,
29946,
29945,
29947,
29945,
29930,
29885,
29889,
29916,
29941,
29955,
29929,
718,
29871,
29896,
29947,
29889,
29896,
29941,
29946,
29947,
29906,
29896,
29906,
29941,
29930,
29885,
29889,
29916,
29941,
29947,
29900,
718,
29871,
29906,
29906,
29889,
29896,
29906,
29955,
29953,
29953,
29900,
29896,
29906,
29930,
29885,
29889,
29916,
29941,
29947,
29896,
13,
462,
3986,
448,
29871,
29946,
29906,
29889,
29953,
29947,
29929,
29945,
29900,
29955,
29953,
29929,
29930,
29885,
29889,
29916,
29941,
29947,
29906,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29946,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29941,
29900,
29929,
29947,
29941,
29947,
29906,
29929,
29945,
29941,
29929,
29941,
29953,
29941,
29946,
29930,
29885,
29889,
29916,
29941,
29947,
29941,
718,
29871,
29896,
29955,
29889,
29946,
29955,
29896,
29946,
29955,
29929,
29896,
29930,
29885,
29889,
29916,
29941,
29947,
29946,
448,
29871,
29941,
29929,
29889,
29929,
29947,
29946,
29900,
29955,
29947,
29900,
29947,
29930,
29885,
29889,
29916,
29941,
29947,
29945,
718,
29871,
29896,
29941,
29946,
29889,
29945,
29945,
29929,
29946,
29941,
29900,
29947,
29906,
29930,
29885,
29889,
29916,
29941,
29947,
29953,
13,
462,
3986,
448,
29871,
29896,
29941,
29945,
29889,
29947,
29947,
29946,
29946,
29896,
29955,
29947,
29906,
29930,
29885,
29889,
29916,
29941,
29947,
29955,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29946,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29941,
29900,
29929,
29947,
29941,
29947,
29906,
29929,
29945,
29941,
29929,
29941,
29953,
29941,
29946,
29930,
29885,
29889,
29916,
29941,
29947,
29947,
718,
29871,
29896,
29955,
29889,
29946,
29955,
29896,
29946,
29955,
29929,
29896,
29930,
29885,
29889,
29916,
29941,
29947,
29929,
448,
29871,
29941,
29929,
29889,
29929,
29947,
29946,
29900,
29955,
29947,
29900,
29947,
29930,
29885,
29889,
29916,
29941,
29929,
29900,
718,
29871,
29896,
29941,
29946,
29889,
29945,
29945,
29929,
29946,
29941,
29900,
29947,
29906,
29930,
29885,
29889,
29916,
29941,
29929,
29896,
13,
462,
3986,
448,
29871,
29896,
29941,
29945,
29889,
29947,
29947,
29946,
29946,
29896,
29955,
29947,
29906,
29930,
29885,
29889,
29916,
29941,
29929,
29906,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29946,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29941,
29900,
29929,
29947,
29941,
29947,
29906,
29929,
29945,
29941,
29929,
29941,
29953,
29941,
29946,
29930,
29885,
29889,
29916,
29941,
29929,
29941,
718,
29871,
29896,
29955,
29889,
29946,
29955,
29896,
29946,
29955,
29929,
29896,
29930,
29885,
29889,
29916,
29941,
29929,
29946,
448,
29871,
29941,
29929,
29889,
29929,
29947,
29946,
29900,
29955,
29947,
29900,
29947,
29930,
29885,
29889,
29916,
29941,
29929,
29945,
718,
29871,
29896,
29941,
29946,
29889,
29945,
29945,
29929,
29946,
29941,
29900,
29947,
29906,
29930,
29885,
29889,
29916,
29941,
29929,
29953,
13,
462,
3986,
448,
29871,
29896,
29941,
29945,
29889,
29947,
29947,
29946,
29946,
29896,
29955,
29947,
29906,
29930,
29885,
29889,
29916,
29941,
29929,
29955,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29946,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29941,
29900,
29929,
29947,
29941,
29947,
29906,
29929,
29945,
29941,
29929,
29941,
29953,
29941,
29946,
29930,
29885,
29889,
29916,
29941,
29929,
29947,
718,
29871,
29896,
29955,
29889,
29946,
29955,
29896,
29946,
29955,
29929,
29896,
29930,
29885,
29889,
29916,
29941,
29929,
29929,
448,
29871,
29941,
29929,
29889,
29929,
29947,
29946,
29900,
29955,
29947,
29900,
29947,
29930,
29885,
29889,
29916,
29946,
29900,
29900,
718,
29871,
29896,
29941,
29946,
29889,
29945,
29945,
29929,
29946,
29941,
29900,
29947,
29906,
29930,
29885,
29889,
29916,
29946,
29900,
29896,
13,
462,
3986,
448,
29871,
29896,
29941,
29945,
29889,
29947,
29947,
29946,
29946,
29896,
29955,
29947,
29906,
29930,
29885,
29889,
29916,
29946,
29900,
29906,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29946,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29941,
29900,
29929,
29947,
29941,
29947,
29906,
29929,
29945,
29941,
29929,
29941,
29953,
29941,
29946,
29930,
29885,
29889,
29916,
29946,
29900,
29941,
718,
29871,
29896,
29955,
29889,
29946,
29955,
29896,
29946,
29955,
29929,
29896,
29930,
29885,
29889,
29916,
29946,
29900,
29946,
448,
29871,
29941,
29929,
29889,
29929,
29947,
29946,
29900,
29955,
29947,
29900,
29947,
29930,
29885,
29889,
29916,
29946,
29900,
29945,
718,
29871,
29896,
29941,
29946,
29889,
29945,
29945,
29929,
29946,
29941,
29900,
29947,
29906,
29930,
29885,
29889,
29916,
29946,
29900,
29953,
13,
462,
3986,
448,
29871,
29896,
29941,
29945,
29889,
29947,
29947,
29946,
29946,
29896,
29955,
29947,
29906,
29930,
29885,
29889,
29916,
29946,
29900,
29955,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29946,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
448,
29871,
29900,
29889,
29941,
29900,
29929,
29947,
29941,
29947,
29906,
29929,
29945,
29941,
29929,
29941,
29953,
29941,
29946,
29930,
29885,
29889,
29916,
29946,
29900,
29947,
718,
29871,
29896,
29955,
29889,
29946,
29955,
29896,
29946,
29955,
29929,
29896,
29930,
29885,
29889,
29916,
29946,
29900,
29929,
448,
29871,
29941,
29929,
29889,
29929,
29947,
29946,
29900,
29955,
29947,
29900,
29947,
29930,
29885,
29889,
29916,
29946,
29896,
29900,
718,
29871,
29896,
29941,
29946,
29889,
29945,
29945,
29929,
29946,
29941,
29900,
29947,
29906,
29930,
29885,
29889,
29916,
29946,
29896,
29896,
13,
462,
3986,
448,
29871,
29896,
29941,
29945,
29889,
29947,
29947,
29946,
29946,
29896,
29955,
29947,
29906,
29930,
29885,
29889,
29916,
29946,
29896,
29906,
5277,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29946,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29929,
29947,
1068,
29906,
448,
286,
29889,
29916,
29946,
29896,
29941,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29946,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29906,
29900,
29946,
448,
29871,
29945,
29930,
29885,
29889,
29916,
29946,
29896,
29941,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29945,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29900,
29900,
1068,
29906,
448,
286,
29889,
29916,
29946,
29896,
29946,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29945,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29906,
29900,
29953,
448,
29871,
29945,
29930,
29885,
29889,
29916,
29946,
29896,
29946,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29945,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29900,
29906,
1068,
29906,
448,
286,
29889,
29916,
29946,
29896,
29945,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29945,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29906,
29900,
29947,
448,
29871,
29945,
29930,
29885,
29889,
29916,
29946,
29896,
29945,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29945,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29900,
29946,
1068,
29906,
448,
286,
29889,
29916,
29946,
29896,
29953,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29945,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29906,
29896,
29896,
448,
29871,
29946,
29930,
29885,
29889,
29916,
29946,
29896,
29953,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29945,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29900,
29953,
1068,
29906,
448,
286,
29889,
29916,
29946,
29896,
29955,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29945,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29906,
29896,
29946,
448,
29871,
29946,
29930,
29885,
29889,
29916,
29946,
29896,
29955,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29945,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29900,
29947,
1068,
29906,
448,
286,
29889,
29916,
29946,
29896,
29947,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29945,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29906,
29896,
29955,
448,
29871,
29946,
29930,
29885,
29889,
29916,
29946,
29896,
29947,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29953,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29896,
29941,
1068,
29906,
448,
286,
29889,
29916,
29946,
29896,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29953,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29906,
29896,
29929,
448,
29871,
29945,
29930,
29885,
29889,
29916,
29946,
29896,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29953,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29896,
29945,
1068,
29906,
448,
286,
29889,
29916,
29946,
29906,
29900,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29953,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29906,
29906,
29896,
448,
29871,
29945,
29930,
29885,
29889,
29916,
29946,
29906,
29900,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29953,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29896,
29955,
1068,
29906,
448,
286,
29889,
29916,
29946,
29906,
29896,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29953,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29906,
29906,
29941,
448,
29871,
29945,
29930,
29885,
29889,
29916,
29946,
29906,
29896,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29953,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29946,
29900,
1068,
29906,
448,
286,
29889,
29916,
29946,
29906,
29906,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29953,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29896,
29946,
29941,
448,
286,
29889,
29916,
29946,
29906,
29906,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29953,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29946,
29900,
1068,
29941,
448,
286,
29889,
29916,
29946,
29906,
29941,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29953,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29906,
29947,
29906,
448,
286,
29889,
29916,
29946,
29906,
29941,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29955,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29946,
29906,
1068,
29906,
448,
286,
29889,
29916,
29946,
29906,
29946,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29955,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29896,
29945,
29896,
448,
286,
29889,
29916,
29946,
29906,
29946,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29955,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29946,
29906,
1068,
29941,
448,
286,
29889,
29916,
29946,
29906,
29945,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29955,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29906,
29947,
29955,
448,
286,
29889,
29916,
29946,
29906,
29945,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29955,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29946,
29946,
1068,
29906,
448,
286,
29889,
29916,
29946,
29906,
29953,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29955,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29896,
29945,
29929,
448,
286,
29889,
29916,
29946,
29906,
29953,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29955,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29946,
29946,
1068,
29941,
448,
286,
29889,
29916,
29946,
29906,
29955,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29955,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29906,
29929,
29906,
448,
286,
29889,
29916,
29946,
29906,
29955,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29955,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29946,
29953,
1068,
29906,
448,
286,
29889,
29916,
29946,
29906,
29947,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29955,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29896,
29953,
29955,
448,
286,
29889,
29916,
29946,
29906,
29947,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29947,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29946,
29953,
1068,
29941,
448,
286,
29889,
29916,
29946,
29906,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29947,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29906,
29929,
29955,
448,
286,
29889,
29916,
29946,
29906,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29947,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29946,
29947,
1068,
29906,
448,
286,
29889,
29916,
29946,
29941,
29900,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29947,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29896,
29955,
29945,
448,
286,
29889,
29916,
29946,
29941,
29900,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29947,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29946,
29947,
1068,
29941,
448,
286,
29889,
29916,
29946,
29941,
29896,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29947,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29941,
29900,
29906,
448,
286,
29889,
29916,
29946,
29941,
29896,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29947,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29945,
29900,
1068,
29906,
448,
286,
29889,
29916,
29946,
29941,
29906,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29947,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29896,
29947,
29896,
448,
286,
29889,
29916,
29946,
29941,
29906,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29947,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29945,
29900,
1068,
29941,
448,
286,
29889,
29916,
29946,
29941,
29941,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29947,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29941,
29900,
29955,
448,
286,
29889,
29916,
29946,
29941,
29941,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29929,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29945,
29906,
1068,
29906,
448,
286,
29889,
29916,
29946,
29941,
29946,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29929,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29896,
29947,
29955,
448,
286,
29889,
29916,
29946,
29941,
29946,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29929,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29945,
29906,
1068,
29941,
448,
286,
29889,
29916,
29946,
29941,
29945,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29929,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29941,
29896,
29906,
448,
286,
29889,
29916,
29946,
29941,
29945,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29929,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29945,
29946,
1068,
29906,
448,
286,
29889,
29916,
29946,
29941,
29953,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29929,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29896,
29929,
29896,
448,
286,
29889,
29916,
29946,
29941,
29953,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29929,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29945,
29946,
1068,
29941,
448,
286,
29889,
29916,
29946,
29941,
29955,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29929,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29941,
29896,
29955,
448,
286,
29889,
29916,
29946,
29941,
29955,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29929,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29945,
29953,
1068,
29906,
448,
286,
29889,
29916,
29946,
29941,
29947,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29941,
29929,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29941,
29900,
448,
286,
29889,
29916,
29946,
29941,
29947,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29900,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29945,
29953,
1068,
29941,
448,
286,
29889,
29916,
29946,
29941,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29900,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29941,
29906,
29906,
448,
286,
29889,
29916,
29946,
29941,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29900,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29945,
29947,
1068,
29906,
448,
286,
29889,
29916,
29946,
29946,
29900,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29900,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29941,
29945,
448,
286,
29889,
29916,
29946,
29946,
29900,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29900,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29945,
29947,
1068,
29941,
448,
286,
29889,
29916,
29946,
29946,
29896,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29900,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29941,
29906,
29955,
448,
286,
29889,
29916,
29946,
29946,
29896,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29900,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29953,
29900,
1068,
29906,
448,
286,
29889,
29916,
29946,
29946,
29906,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29900,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29941,
29955,
448,
286,
29889,
29916,
29946,
29946,
29906,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29900,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29953,
29900,
1068,
29941,
448,
286,
29889,
29916,
29946,
29946,
29941,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29900,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29941,
29941,
29906,
448,
286,
29889,
29916,
29946,
29946,
29941,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29896,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29953,
29906,
1068,
29906,
448,
286,
29889,
29916,
29946,
29946,
29946,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29896,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29946,
29906,
448,
286,
29889,
29916,
29946,
29946,
29946,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29896,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29953,
29906,
1068,
29941,
448,
286,
29889,
29916,
29946,
29946,
29945,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29896,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29941,
29941,
29955,
448,
286,
29889,
29916,
29946,
29946,
29945,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29896,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29953,
29946,
1068,
29906,
448,
286,
29889,
29916,
29946,
29946,
29953,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29896,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29946,
29953,
448,
286,
29889,
29916,
29946,
29946,
29953,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29896,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29953,
29946,
1068,
29941,
448,
286,
29889,
29916,
29946,
29946,
29955,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29896,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29941,
29946,
29906,
448,
286,
29889,
29916,
29946,
29946,
29955,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29896,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29953,
29953,
1068,
29906,
448,
286,
29889,
29916,
29946,
29946,
29947,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29896,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29946,
29947,
448,
286,
29889,
29916,
29946,
29946,
29947,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29906,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29953,
29953,
1068,
29941,
448,
286,
29889,
29916,
29946,
29946,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29906,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29941,
29946,
29946,
448,
286,
29889,
29916,
29946,
29946,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29906,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29953,
29947,
1068,
29906,
448,
286,
29889,
29916,
29946,
29945,
29900,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29906,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29945,
29906,
448,
286,
29889,
29916,
29946,
29945,
29900,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29906,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29953,
29947,
1068,
29941,
448,
286,
29889,
29916,
29946,
29945,
29896,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29906,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29941,
29945,
29906,
448,
286,
29889,
29916,
29946,
29945,
29896,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29906,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29955,
29900,
1068,
29906,
448,
286,
29889,
29916,
29946,
29945,
29906,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29906,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29945,
29953,
448,
286,
29889,
29916,
29946,
29945,
29906,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29906,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29955,
29900,
1068,
29941,
448,
286,
29889,
29916,
29946,
29945,
29941,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29906,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29941,
29945,
29955,
448,
286,
29889,
29916,
29946,
29945,
29941,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29941,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29955,
29906,
1068,
29906,
448,
286,
29889,
29916,
29946,
29945,
29946,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29941,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29945,
29947,
448,
286,
29889,
29916,
29946,
29945,
29946,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29941,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29955,
29906,
1068,
29941,
448,
286,
29889,
29916,
29946,
29945,
29945,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29941,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29941,
29953,
29906,
448,
286,
29889,
29916,
29946,
29945,
29945,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29941,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29955,
29946,
1068,
29906,
448,
286,
29889,
29916,
29946,
29945,
29953,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29941,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29953,
29946,
448,
286,
29889,
29916,
29946,
29945,
29953,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29941,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29955,
29946,
1068,
29941,
448,
286,
29889,
29916,
29946,
29945,
29955,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29941,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29941,
29953,
29955,
448,
286,
29889,
29916,
29946,
29945,
29955,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29941,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29955,
29953,
1068,
29906,
448,
286,
29889,
29916,
29946,
29945,
29947,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29941,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29953,
29955,
448,
286,
29889,
29916,
29946,
29945,
29947,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29946,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29955,
29953,
1068,
29941,
448,
286,
29889,
29916,
29946,
29945,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29946,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29941,
29955,
29906,
448,
286,
29889,
29916,
29946,
29945,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29946,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29955,
29947,
1068,
29906,
448,
286,
29889,
29916,
29946,
29953,
29900,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29946,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29953,
29929,
448,
286,
29889,
29916,
29946,
29953,
29900,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29946,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29955,
29947,
1068,
29941,
448,
286,
29889,
29916,
29946,
29953,
29896,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29946,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29941,
29955,
29955,
448,
286,
29889,
29916,
29946,
29953,
29896,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29946,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29947,
29900,
1068,
29906,
448,
286,
29889,
29916,
29946,
29953,
29906,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29946,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29955,
29941,
448,
286,
29889,
29916,
29946,
29953,
29906,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29946,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29947,
29900,
1068,
29941,
448,
286,
29889,
29916,
29946,
29953,
29941,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29946,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29941,
29947,
29906,
448,
286,
29889,
29916,
29946,
29953,
29941,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29945,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29947,
29906,
1068,
29906,
448,
286,
29889,
29916,
29946,
29953,
29946,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29945,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29955,
29953,
448,
286,
29889,
29916,
29946,
29953,
29946,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29945,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29947,
29906,
1068,
29941,
448,
286,
29889,
29916,
29946,
29953,
29945,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29945,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29941,
29947,
29955,
448,
286,
29889,
29916,
29946,
29953,
29945,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29945,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29947,
29946,
1068,
29906,
448,
286,
29889,
29916,
29946,
29953,
29953,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29945,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29947,
29896,
448,
286,
29889,
29916,
29946,
29953,
29953,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29945,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29947,
29946,
1068,
29941,
448,
286,
29889,
29916,
29946,
29953,
29955,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29945,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29941,
29929,
29906,
448,
286,
29889,
29916,
29946,
29953,
29955,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29945,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29947,
29953,
1068,
29906,
448,
286,
29889,
29916,
29946,
29953,
29947,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29945,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29947,
29945,
448,
286,
29889,
29916,
29946,
29953,
29947,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29953,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29947,
29953,
1068,
29941,
448,
286,
29889,
29916,
29946,
29953,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29953,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29941,
29929,
29955,
448,
286,
29889,
29916,
29946,
29953,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29953,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29947,
29947,
1068,
29906,
448,
286,
29889,
29916,
29946,
29955,
29900,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29953,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29947,
29955,
448,
286,
29889,
29916,
29946,
29955,
29900,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29953,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29947,
29947,
1068,
29941,
448,
286,
29889,
29916,
29946,
29955,
29896,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29953,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29946,
29900,
29906,
448,
286,
29889,
29916,
29946,
29955,
29896,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29953,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29929,
29900,
1068,
29906,
448,
286,
29889,
29916,
29946,
29955,
29906,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29953,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29929,
29900,
448,
286,
29889,
29916,
29946,
29955,
29906,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29953,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29929,
29900,
1068,
29941,
448,
286,
29889,
29916,
29946,
29955,
29941,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29953,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29946,
29900,
29955,
448,
286,
29889,
29916,
29946,
29955,
29941,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29955,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29929,
29906,
1068,
29906,
448,
286,
29889,
29916,
29946,
29955,
29946,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29955,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29929,
29946,
448,
286,
29889,
29916,
29946,
29955,
29946,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29955,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29929,
29906,
1068,
29941,
448,
286,
29889,
29916,
29946,
29955,
29945,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29955,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29946,
29896,
29906,
448,
286,
29889,
29916,
29946,
29955,
29945,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29955,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29946,
29900,
29930,
29885,
29889,
29916,
29906,
29953,
29941,
448,
286,
29889,
29916,
29896,
29946,
29945,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29955,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29953,
29941,
29930,
29885,
29889,
29916,
29946,
29906,
29906,
448,
286,
29889,
29916,
29906,
29947,
29896,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29955,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29946,
29953,
29930,
29885,
29889,
29916,
29906,
29953,
29941,
448,
286,
29889,
29916,
29896,
29953,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29955,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29953,
29941,
29930,
29885,
29889,
29916,
29946,
29906,
29947,
448,
286,
29889,
29916,
29906,
29929,
29953,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29955,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29945,
29906,
29930,
29885,
29889,
29916,
29906,
29953,
29941,
448,
286,
29889,
29916,
29896,
29947,
29945,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29955,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29953,
29941,
29930,
29885,
29889,
29916,
29946,
29941,
29946,
448,
286,
29889,
29916,
29941,
29896,
29896,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29947,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29953,
29941,
1068,
29906,
448,
286,
29889,
29916,
29946,
29955,
29953,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29947,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29896,
29946,
29955,
448,
286,
29889,
29916,
29946,
29955,
29953,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29947,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29946,
29900,
29930,
29885,
29889,
29916,
29946,
29955,
29953,
448,
286,
29889,
29916,
29906,
29947,
29900,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29947,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29946,
29953,
29930,
29885,
29889,
29916,
29946,
29955,
29953,
448,
286,
29889,
29916,
29906,
29929,
29945,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29947,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29945,
29906,
29930,
29885,
29889,
29916,
29946,
29955,
29953,
448,
286,
29889,
29916,
29941,
29896,
29900,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29947,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29953,
29941,
1068,
29941,
448,
286,
29889,
29916,
29946,
29955,
29955,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29947,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29890,
29906,
29930,
29885,
29889,
29916,
29946,
29955,
29955,
448,
286,
29889,
29916,
29906,
29955,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29947,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29890,
29945,
29930,
29885,
29889,
29916,
29946,
29955,
29955,
448,
286,
29889,
29916,
29906,
29929,
29946,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29947,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29890,
29947,
29930,
29885,
29889,
29916,
29946,
29955,
29955,
448,
286,
29889,
29916,
29941,
29900,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29947,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29946,
29906,
29930,
29885,
29889,
29916,
29906,
29953,
29946,
448,
286,
29889,
29916,
29896,
29945,
29945,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29929,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29953,
29946,
29930,
29885,
29889,
29916,
29946,
29906,
29946,
448,
286,
29889,
29916,
29906,
29947,
29953,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29929,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29946,
29947,
29930,
29885,
29889,
29916,
29906,
29953,
29946,
448,
286,
29889,
29916,
29896,
29955,
29941,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29929,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29953,
29946,
29930,
29885,
29889,
29916,
29946,
29941,
29900,
448,
286,
29889,
29916,
29941,
29900,
29896,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29929,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29945,
29946,
29930,
29885,
29889,
29916,
29906,
29953,
29946,
448,
286,
29889,
29916,
29896,
29929,
29941,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29929,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29953,
29946,
29930,
29885,
29889,
29916,
29946,
29941,
29953,
448,
286,
29889,
29916,
29941,
29896,
29953,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29929,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29953,
29946,
1068,
29906,
448,
286,
29889,
29916,
29946,
29955,
29947,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29929,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29896,
29945,
29941,
448,
286,
29889,
29916,
29946,
29955,
29947,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29929,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29946,
29906,
29930,
29885,
29889,
29916,
29946,
29955,
29947,
448,
286,
29889,
29916,
29906,
29947,
29945,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29929,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29946,
29947,
29930,
29885,
29889,
29916,
29946,
29955,
29947,
448,
286,
29889,
29916,
29941,
29900,
29900,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29946,
29929,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29945,
29946,
29930,
29885,
29889,
29916,
29946,
29955,
29947,
448,
286,
29889,
29916,
29941,
29896,
29945,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29900,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29953,
29946,
1068,
29941,
448,
286,
29889,
29916,
29946,
29955,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29900,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29890,
29941,
29930,
29885,
29889,
29916,
29946,
29955,
29929,
448,
286,
29889,
29916,
29906,
29947,
29946,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29900,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29890,
29953,
29930,
29885,
29889,
29916,
29946,
29955,
29929,
448,
286,
29889,
29916,
29906,
29929,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29900,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29890,
29929,
29930,
29885,
29889,
29916,
29946,
29955,
29929,
448,
286,
29889,
29916,
29941,
29896,
29946,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29900,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29946,
29946,
29930,
29885,
29889,
29916,
29906,
29953,
29945,
448,
286,
29889,
29916,
29896,
29953,
29941,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29900,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29953,
29945,
29930,
29885,
29889,
29916,
29946,
29906,
29953,
448,
286,
29889,
29916,
29906,
29929,
29896,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29900,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29945,
29900,
29930,
29885,
29889,
29916,
29906,
29953,
29945,
448,
286,
29889,
29916,
29896,
29955,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29900,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29953,
29945,
29930,
29885,
29889,
29916,
29946,
29941,
29906,
448,
286,
29889,
29916,
29941,
29900,
29953,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29900,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29945,
29953,
29930,
29885,
29889,
29916,
29906,
29953,
29945,
448,
286,
29889,
29916,
29941,
29896,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29900,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29953,
29945,
29930,
29885,
29889,
29916,
29946,
29941,
29947,
448,
286,
29889,
29916,
29941,
29906,
29896,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29896,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29953,
29945,
1068,
29906,
448,
286,
29889,
29916,
29946,
29947,
29900,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29896,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29896,
29953,
29896,
448,
286,
29889,
29916,
29946,
29947,
29900,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29896,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29946,
29946,
29930,
29885,
29889,
29916,
29946,
29947,
29900,
448,
286,
29889,
29916,
29906,
29929,
29900,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29896,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29945,
29900,
29930,
29885,
29889,
29916,
29946,
29947,
29900,
448,
286,
29889,
29916,
29941,
29900,
29945,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29896,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29945,
29953,
29930,
29885,
29889,
29916,
29946,
29947,
29900,
448,
286,
29889,
29916,
29941,
29906,
29900,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29896,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29953,
29945,
1068,
29941,
448,
286,
29889,
29916,
29946,
29947,
29896,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29896,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29890,
29946,
29930,
29885,
29889,
29916,
29946,
29947,
29896,
448,
286,
29889,
29916,
29906,
29947,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29896,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29890,
29955,
29930,
29885,
29889,
29916,
29946,
29947,
29896,
448,
286,
29889,
29916,
29941,
29900,
29946,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29896,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29890,
29896,
29900,
29930,
29885,
29889,
29916,
29946,
29947,
29896,
448,
286,
29889,
29916,
29941,
29896,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29896,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29945,
29947,
29930,
29885,
29889,
29916,
29906,
29953,
29953,
448,
286,
29889,
29916,
29941,
29946,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29906,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29953,
29953,
29930,
29885,
29889,
29916,
29946,
29946,
29900,
448,
286,
29889,
29916,
29941,
29906,
29953,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29906,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29953,
29946,
29930,
29885,
29889,
29916,
29906,
29953,
29953,
448,
286,
29889,
29916,
29946,
29945,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29906,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29953,
29953,
29930,
29885,
29889,
29916,
29946,
29946,
29953,
448,
286,
29889,
29916,
29941,
29946,
29896,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29906,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29953,
29953,
1068,
29906,
448,
286,
29889,
29916,
29946,
29947,
29906,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29906,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29941,
29941,
448,
286,
29889,
29916,
29946,
29947,
29906,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29906,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29945,
29947,
29930,
29885,
29889,
29916,
29946,
29947,
29906,
448,
286,
29889,
29916,
29941,
29906,
29945,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29906,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29953,
29946,
29930,
29885,
29889,
29916,
29946,
29947,
29906,
448,
286,
29889,
29916,
29941,
29946,
29900,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29906,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29953,
29953,
1068,
29941,
448,
286,
29889,
29916,
29946,
29947,
29941,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29906,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29890,
29896,
29896,
29930,
29885,
29889,
29916,
29946,
29947,
29941,
448,
286,
29889,
29916,
29941,
29906,
29946,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29906,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29890,
29896,
29946,
29930,
29885,
29889,
29916,
29946,
29947,
29941,
448,
286,
29889,
29916,
29941,
29941,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29941,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29953,
29900,
29930,
29885,
29889,
29916,
29906,
29953,
29955,
448,
286,
29889,
29916,
29941,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29941,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29953,
29955,
29930,
29885,
29889,
29916,
29946,
29946,
29906,
448,
286,
29889,
29916,
29941,
29941,
29896,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29941,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29953,
29953,
29930,
29885,
29889,
29916,
29906,
29953,
29955,
448,
286,
29889,
29916,
29946,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29941,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29953,
29955,
29930,
29885,
29889,
29916,
29946,
29946,
29947,
448,
286,
29889,
29916,
29941,
29946,
29941,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29941,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29953,
29955,
1068,
29906,
448,
286,
29889,
29916,
29946,
29947,
29946,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29941,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29941,
29947,
448,
286,
29889,
29916,
29946,
29947,
29946,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29941,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29953,
29900,
29930,
29885,
29889,
29916,
29946,
29947,
29946,
448,
286,
29889,
29916,
29941,
29941,
29900,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29941,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29953,
29953,
29930,
29885,
29889,
29916,
29946,
29947,
29946,
448,
286,
29889,
29916,
29941,
29946,
29955,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29941,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29953,
29955,
1068,
29941,
448,
286,
29889,
29916,
29946,
29947,
29945,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29941,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29890,
29896,
29906,
29930,
29885,
29889,
29916,
29946,
29947,
29945,
448,
286,
29889,
29916,
29941,
29906,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29946,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29890,
29896,
29945,
29930,
29885,
29889,
29916,
29946,
29947,
29945,
448,
286,
29889,
29916,
29941,
29946,
29953,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29946,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29953,
29906,
29930,
29885,
29889,
29916,
29906,
29953,
29947,
448,
286,
29889,
29916,
29946,
29896,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29946,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29953,
29947,
29930,
29885,
29889,
29916,
29946,
29946,
29946,
448,
286,
29889,
29916,
29941,
29941,
29953,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29946,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29953,
29947,
29930,
29885,
29889,
29916,
29906,
29953,
29947,
448,
286,
29889,
29916,
29945,
29896,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29946,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29953,
29947,
29930,
29885,
29889,
29916,
29946,
29945,
29900,
448,
286,
29889,
29916,
29941,
29945,
29896,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29946,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29953,
29947,
1068,
29906,
448,
286,
29889,
29916,
29946,
29947,
29953,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29946,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29946,
29941,
448,
286,
29889,
29916,
29946,
29947,
29953,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29946,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29953,
29906,
29930,
29885,
29889,
29916,
29946,
29947,
29953,
448,
286,
29889,
29916,
29941,
29941,
29945,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29946,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29953,
29947,
29930,
29885,
29889,
29916,
29946,
29947,
29953,
448,
286,
29889,
29916,
29941,
29945,
29900,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29946,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29953,
29947,
1068,
29941,
448,
286,
29889,
29916,
29946,
29947,
29955,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29945,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29890,
29896,
29941,
29930,
29885,
29889,
29916,
29946,
29947,
29955,
448,
286,
29889,
29916,
29941,
29941,
29946,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29945,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29890,
29896,
29953,
29930,
29885,
29889,
29916,
29946,
29947,
29955,
448,
286,
29889,
29916,
29941,
29946,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29945,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29955,
29900,
29930,
29885,
29889,
29916,
29906,
29953,
29929,
448,
286,
29889,
29916,
29945,
29946,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29945,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29953,
29929,
29930,
29885,
29889,
29916,
29946,
29945,
29906,
448,
286,
29889,
29916,
29941,
29945,
29953,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29945,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29955,
29953,
29930,
29885,
29889,
29916,
29906,
29953,
29929,
448,
286,
29889,
29916,
29953,
29953,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29945,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29953,
29929,
29930,
29885,
29889,
29916,
29946,
29945,
29947,
448,
286,
29889,
29916,
29941,
29955,
29896,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29945,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29953,
29929,
1068,
29906,
448,
286,
29889,
29916,
29946,
29947,
29947,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29945,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29945,
29945,
448,
286,
29889,
29916,
29946,
29947,
29947,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29945,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29955,
29900,
29930,
29885,
29889,
29916,
29946,
29947,
29947,
448,
286,
29889,
29916,
29941,
29945,
29945,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29945,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29955,
29953,
29930,
29885,
29889,
29916,
29946,
29947,
29947,
448,
286,
29889,
29916,
29941,
29955,
29900,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29953,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29953,
29929,
1068,
29941,
448,
286,
29889,
29916,
29946,
29947,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29953,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29890,
29896,
29955,
29930,
29885,
29889,
29916,
29946,
29947,
29929,
448,
286,
29889,
29916,
29941,
29945,
29946,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29953,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29890,
29906,
29900,
29930,
29885,
29889,
29916,
29946,
29947,
29929,
448,
286,
29889,
29916,
29941,
29953,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29953,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29955,
29906,
29930,
29885,
29889,
29916,
29906,
29955,
29900,
448,
286,
29889,
29916,
29945,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29953,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29955,
29900,
29930,
29885,
29889,
29916,
29946,
29945,
29946,
448,
286,
29889,
29916,
29941,
29953,
29896,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29953,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29955,
29947,
29930,
29885,
29889,
29916,
29906,
29955,
29900,
448,
286,
29889,
29916,
29955,
29900,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29953,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29955,
29900,
29930,
29885,
29889,
29916,
29946,
29953,
29900,
448,
286,
29889,
29916,
29941,
29955,
29953,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29953,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29955,
29900,
1068,
29906,
448,
286,
29889,
29916,
29946,
29929,
29900,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29953,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29953,
29900,
448,
286,
29889,
29916,
29946,
29929,
29900,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29953,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29955,
29906,
29930,
29885,
29889,
29916,
29946,
29929,
29900,
448,
286,
29889,
29916,
29941,
29953,
29900,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29955,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29955,
29947,
29930,
29885,
29889,
29916,
29946,
29929,
29900,
448,
286,
29889,
29916,
29941,
29955,
29945,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29955,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29955,
29900,
1068,
29941,
448,
286,
29889,
29916,
29946,
29929,
29896,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29955,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29890,
29896,
29947,
29930,
29885,
29889,
29916,
29946,
29929,
29896,
448,
286,
29889,
29916,
29941,
29945,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29955,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29890,
29906,
29896,
29930,
29885,
29889,
29916,
29946,
29929,
29896,
448,
286,
29889,
29916,
29941,
29955,
29946,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29955,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29955,
29946,
29930,
29885,
29889,
29916,
29906,
29955,
29896,
448,
286,
29889,
29916,
29953,
29941,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29955,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29955,
29896,
29930,
29885,
29889,
29916,
29946,
29945,
29953,
448,
286,
29889,
29916,
29941,
29953,
29953,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29955,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29947,
29900,
29930,
29885,
29889,
29916,
29906,
29955,
29896,
448,
286,
29889,
29916,
29955,
29906,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29955,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29955,
29896,
29930,
29885,
29889,
29916,
29946,
29953,
29906,
448,
286,
29889,
29916,
29941,
29947,
29896,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29955,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29955,
29896,
1068,
29906,
448,
286,
29889,
29916,
29946,
29929,
29906,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29955,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29953,
29906,
448,
286,
29889,
29916,
29946,
29929,
29906,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29947,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29955,
29946,
29930,
29885,
29889,
29916,
29946,
29929,
29906,
448,
286,
29889,
29916,
29941,
29953,
29945,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29947,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29947,
29900,
29930,
29885,
29889,
29916,
29946,
29929,
29906,
448,
286,
29889,
29916,
29941,
29947,
29900,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29947,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29955,
29896,
1068,
29941,
448,
286,
29889,
29916,
29946,
29929,
29941,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29947,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29890,
29896,
29929,
29930,
29885,
29889,
29916,
29946,
29929,
29941,
448,
286,
29889,
29916,
29941,
29953,
29946,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29947,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29890,
29906,
29906,
29930,
29885,
29889,
29916,
29946,
29929,
29941,
448,
286,
29889,
29916,
29941,
29955,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29947,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29947,
29906,
29930,
29885,
29889,
29916,
29906,
29955,
29906,
448,
286,
29889,
29916,
29955,
29945,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29947,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29955,
29906,
29930,
29885,
29889,
29916,
29946,
29953,
29946,
448,
286,
29889,
29916,
29941,
29947,
29953,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29947,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29947,
29947,
29930,
29885,
29889,
29916,
29906,
29955,
29906,
448,
286,
29889,
29916,
29947,
29947,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29947,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29955,
29906,
29930,
29885,
29889,
29916,
29946,
29955,
29900,
448,
286,
29889,
29916,
29946,
29900,
29896,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29947,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29955,
29906,
1068,
29906,
448,
286,
29889,
29916,
29946,
29929,
29946,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29929,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29955,
29955,
448,
286,
29889,
29916,
29946,
29929,
29946,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29929,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29947,
29906,
29930,
29885,
29889,
29916,
29946,
29929,
29946,
448,
286,
29889,
29916,
29941,
29947,
29945,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29929,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29947,
29947,
29930,
29885,
29889,
29916,
29946,
29929,
29946,
448,
286,
29889,
29916,
29946,
29900,
29900,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29929,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29955,
29906,
1068,
29941,
448,
286,
29889,
29916,
29946,
29929,
29945,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29929,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29890,
29906,
29941,
29930,
29885,
29889,
29916,
29946,
29929,
29945,
448,
286,
29889,
29916,
29941,
29947,
29946,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29929,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29890,
29906,
29953,
29930,
29885,
29889,
29916,
29946,
29929,
29945,
448,
286,
29889,
29916,
29941,
29929,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29929,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29947,
29946,
29930,
29885,
29889,
29916,
29906,
29955,
29941,
448,
286,
29889,
29916,
29955,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29929,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29955,
29941,
29930,
29885,
29889,
29916,
29946,
29953,
29953,
448,
286,
29889,
29916,
29941,
29929,
29896,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29929,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29929,
29900,
29930,
29885,
29889,
29916,
29906,
29955,
29941,
448,
286,
29889,
29916,
29929,
29896,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29945,
29929,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29955,
29941,
29930,
29885,
29889,
29916,
29946,
29955,
29906,
448,
286,
29889,
29916,
29946,
29900,
29953,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29953,
29900,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29955,
29941,
1068,
29906,
448,
286,
29889,
29916,
29946,
29929,
29953,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29953,
29900,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29947,
29900,
448,
286,
29889,
29916,
29946,
29929,
29953,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29953,
29900,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29947,
29946,
29930,
29885,
29889,
29916,
29946,
29929,
29953,
448,
286,
29889,
29916,
29941,
29929,
29900,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29953,
29900,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29929,
29900,
29930,
29885,
29889,
29916,
29946,
29929,
29953,
448,
286,
29889,
29916,
29946,
29900,
29945,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29953,
29900,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29955,
29941,
1068,
29941,
448,
286,
29889,
29916,
29946,
29929,
29955,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29953,
29900,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29890,
29906,
29946,
29930,
29885,
29889,
29916,
29946,
29929,
29955,
448,
286,
29889,
29916,
29941,
29947,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29953,
29900,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29890,
29906,
29955,
29930,
29885,
29889,
29916,
29946,
29929,
29955,
448,
286,
29889,
29916,
29946,
29900,
29946,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29953,
29900,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29947,
29953,
29930,
29885,
29889,
29916,
29906,
29955,
29946,
448,
286,
29889,
29916,
29947,
29941,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29953,
29900,
29947,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29955,
29946,
29930,
29885,
29889,
29916,
29946,
29953,
29947,
448,
286,
29889,
29916,
29941,
29929,
29953,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29953,
29900,
29929,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29929,
29906,
29930,
29885,
29889,
29916,
29906,
29955,
29946,
448,
286,
29889,
29916,
29929,
29941,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29953,
29896,
29900,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29955,
29946,
29930,
29885,
29889,
29916,
29946,
29955,
29946,
448,
286,
29889,
29916,
29946,
29896,
29896,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29953,
29896,
29896,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29955,
29946,
1068,
29906,
448,
286,
29889,
29916,
29946,
29929,
29947,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29953,
29896,
29906,
353,
1281,
4151,
524,
29898,
13338,
29922,
259,
286,
29889,
29916,
29947,
29946,
448,
286,
29889,
29916,
29946,
29929,
29947,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29953,
29896,
29941,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29947,
29953,
29930,
29885,
29889,
29916,
29946,
29929,
29947,
448,
286,
29889,
29916,
29941,
29929,
29945,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29953,
29896,
29946,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29896,
29929,
29906,
29930,
29885,
29889,
29916,
29946,
29929,
29947,
448,
286,
29889,
29916,
29946,
29896,
29900,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29953,
29896,
29945,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29916,
29906,
29955,
29946,
1068,
29941,
448,
286,
29889,
29916,
29946,
29929,
29929,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29953,
29896,
29953,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29890,
29906,
29945,
29930,
29885,
29889,
29916,
29946,
29929,
29929,
448,
286,
29889,
29916,
29941,
29929,
29946,
1275,
29871,
29900,
29897,
13,
13,
29885,
29889,
29883,
29953,
29896,
29955,
353,
1281,
4151,
524,
29898,
13338,
29922,
29885,
29889,
29890,
29906,
29947,
29930,
29885,
29889,
29916,
29946,
29929,
29929,
448,
286,
29889,
29916,
29946,
29900,
29929,
1275,
29871,
29900,
29897,
13,
2
] |
project/project/basicOpencv.py | LamLauChiu/DjangoReact-Boilerplate | 1 | 169927 | <reponame>LamLauChiu/DjangoReact-Boilerplate
import numpy as np
import cv2
from matplotlib import pyplot as plt
# sources: https://blog.gtwang.org/programming/opencv-basic-image-read-and-write-tutorial/
# 讀取圖檔
img = cv2.imread('/Users/Ivan.lam/Projects/DjangoReact-Boilerplate/project/project/human-20180303-01-1024x683.jpg')
# 查看資料型態
#type(img)
#img.shape
# 以灰階的方式讀取圖檔
#img_gray = cv2.imread('image.jpg', cv2.IMREAD_GRAYSCALE)
# 顯示圖片
#cv2.imshow('My Image', img)
# 按下任意鍵則關閉所有視窗
#cv2.waitKey(0)
#cv2.destroyAllWindows()
# 關閉 'My Image' 視窗
#cv2.destroyWindow('My Image')
# 讓視窗可以自由縮放大小
#cv2.namedWindow('My Image', cv2.WINDOW_NORMAL)
#cv2.imshow('My Image', img)
#cv2.waitKey(0)
#cv2.destroyAllWindows()
# 寫入圖檔
#cv2.imwrite('output.jpg', img)
# 寫入不同圖檔格式
#cv2.imwrite('output.png', img)
#cv2.imwrite('output.tiff', img)
# 設定 JPEG 圖片品質為 90(可用值為 0 ~ 100)
#cv2.imwrite('output.jpg', img, [cv2.IMWRITE_JPEG_QUALITY, 90])
# 設定 PNG 壓縮層級為 5(可用值為 0 ~ 9)
#cv2.imwrite('output.png', img, [cv2.IMWRITE_PNG_COMPRESSION, 5])
# 使用 OpenCV 讀取圖檔
#img_bgr = cv2.imread('/Users/Ivan.lam/Projects/DjangoReact-Boilerplate/project/project/human-20180303-01-1024x683.jpg')
# 將 BGR 圖片轉為 RGB 圖片
#img_rgb = img_bgr[:,:,::-1]
# 或是這樣亦可
# img_rgb = cv2.cvtColor(img_bgr, cv2.COLOR_BGR2RGB)
# 使用 Matplotlib 顯示圖片
#plt.imshow(img_rgb)
#plt.show()
# 使用 OpenCV 讀取灰階圖檔
img_gray = cv2.imread('/Users/Ivan.lam/Projects/DjangoReact-Boilerplate/project/project/human-20180303-01-1024x683.jpg', cv2.IMREAD_GRAYSCALE)
# 使用 Matplotlib 顯示圖片
plt.imshow(img_gray, cmap = 'gray')
plt.show()
| [
1,
529,
276,
1112,
420,
29958,
29931,
314,
29931,
585,
1451,
5871,
29914,
29928,
5364,
1123,
627,
29899,
8431,
3955,
2341,
13,
5215,
12655,
408,
7442,
13,
5215,
13850,
29906,
13,
3166,
22889,
1053,
11451,
5317,
408,
14770,
13,
13,
13,
29937,
8974,
29901,
2045,
597,
7312,
29889,
4141,
29893,
574,
29889,
990,
29914,
28426,
29914,
3150,
11023,
29899,
16121,
29899,
3027,
29899,
949,
29899,
392,
29899,
3539,
29899,
12631,
29914,
13,
29937,
29871,
235,
177,
131,
30683,
232,
159,
153,
233,
173,
151,
13,
2492,
353,
13850,
29906,
29889,
326,
949,
11219,
5959,
29914,
29902,
3703,
29889,
5288,
29914,
25119,
29914,
29928,
5364,
1123,
627,
29899,
8431,
3955,
2341,
29914,
4836,
29914,
4836,
29914,
26029,
29899,
29906,
29900,
29896,
29947,
29900,
29941,
29900,
29941,
29899,
29900,
29896,
29899,
29896,
29900,
29906,
29946,
29916,
29953,
29947,
29941,
29889,
6173,
1495,
13,
13,
29937,
29871,
31213,
31811,
235,
182,
138,
31949,
30883,
233,
136,
142,
13,
29937,
1853,
29898,
2492,
29897,
13,
13,
29937,
2492,
29889,
12181,
13,
13,
29937,
29871,
30651,
234,
132,
179,
236,
157,
145,
30210,
30525,
30607,
235,
177,
131,
30683,
232,
159,
153,
233,
173,
151,
13,
29937,
2492,
29918,
21012,
353,
13850,
29906,
29889,
326,
949,
877,
3027,
29889,
6173,
742,
13850,
29906,
29889,
7833,
16310,
29918,
29954,
4717,
21554,
5454,
1307,
29897,
13,
13,
29937,
29871,
236,
164,
178,
30858,
232,
159,
153,
31122,
13,
29937,
11023,
29906,
29889,
326,
4294,
877,
3421,
7084,
742,
10153,
29897,
13,
13,
29937,
29871,
31590,
30557,
31450,
31474,
236,
144,
184,
232,
140,
138,
236,
154,
159,
236,
153,
140,
30744,
30417,
235,
169,
153,
234,
173,
154,
13,
29937,
11023,
29906,
29889,
10685,
2558,
29898,
29900,
29897,
13,
29937,
11023,
29906,
29889,
20524,
3596,
7685,
580,
13,
13,
29937,
29871,
236,
154,
159,
236,
153,
140,
525,
3421,
7084,
29915,
29871,
235,
169,
153,
234,
173,
154,
13,
29937,
11023,
29906,
29889,
20524,
5907,
877,
3421,
7084,
1495,
13,
13,
13,
29937,
29871,
235,
177,
150,
235,
169,
153,
234,
173,
154,
30682,
30651,
30688,
31272,
234,
187,
177,
31182,
30257,
30446,
13,
29937,
11023,
29906,
29889,
17514,
5907,
877,
3421,
7084,
742,
13850,
29906,
29889,
25152,
3970,
29956,
29918,
29940,
1955,
1529,
29931,
29897,
13,
13,
29937,
11023,
29906,
29889,
326,
4294,
877,
3421,
7084,
742,
10153,
29897,
13,
29937,
11023,
29906,
29889,
10685,
2558,
29898,
29900,
29897,
13,
29937,
11023,
29906,
29889,
20524,
3596,
7685,
580,
13,
13,
13,
29937,
29871,
232,
178,
174,
30752,
232,
159,
153,
233,
173,
151,
13,
29937,
11023,
29906,
29889,
326,
3539,
877,
4905,
29889,
6173,
742,
10153,
29897,
13,
29937,
29871,
232,
178,
174,
30752,
30413,
30980,
232,
159,
153,
233,
173,
151,
31168,
30607,
13,
29937,
11023,
29906,
29889,
326,
3539,
877,
4905,
29889,
2732,
742,
10153,
29897,
13,
29937,
11023,
29906,
29889,
326,
3539,
877,
4905,
29889,
29873,
2593,
742,
10153,
29897,
13,
13,
29937,
29871,
31770,
30495,
435,
4162,
29954,
29871,
232,
159,
153,
31122,
31399,
235,
182,
173,
234,
133,
189,
29871,
29929,
29900,
30419,
30682,
30406,
30959,
234,
133,
189,
29871,
29900,
3695,
29871,
29896,
29900,
29900,
30409,
13,
29937,
11023,
29906,
29889,
326,
3539,
877,
4905,
29889,
6173,
742,
10153,
29892,
518,
11023,
29906,
29889,
7833,
16365,
29918,
29967,
4162,
29954,
29918,
13356,
1964,
11937,
29892,
29871,
29929,
29900,
2314,
13,
29937,
29871,
31770,
30495,
349,
9312,
29871,
232,
166,
150,
234,
187,
177,
232,
180,
167,
234,
183,
157,
234,
133,
189,
29871,
29945,
30419,
30682,
30406,
30959,
234,
133,
189,
29871,
29900,
3695,
29871,
29929,
30409,
13,
29937,
11023,
29906,
29889,
326,
3539,
877,
4905,
29889,
2732,
742,
10153,
29892,
518,
11023,
29906,
29889,
7833,
16365,
29918,
29925,
9312,
29918,
21514,
1525,
13507,
29892,
29871,
29945,
2314,
13,
13,
13,
29937,
29871,
30785,
30406,
4673,
15633,
29871,
235,
177,
131,
30683,
232,
159,
153,
233,
173,
151,
13,
29937,
2492,
29918,
29890,
629,
353,
13850,
29906,
29889,
326,
949,
11219,
5959,
29914,
29902,
3703,
29889,
5288,
29914,
25119,
29914,
29928,
5364,
1123,
627,
29899,
8431,
3955,
2341,
29914,
4836,
29914,
4836,
29914,
26029,
29899,
29906,
29900,
29896,
29947,
29900,
29941,
29900,
29941,
29899,
29900,
29896,
29899,
29896,
29900,
29906,
29946,
29916,
29953,
29947,
29941,
29889,
6173,
1495,
13,
13,
29937,
29871,
232,
179,
138,
350,
14345,
29871,
232,
159,
153,
31122,
235,
192,
140,
234,
133,
189,
390,
7210,
29871,
232,
159,
153,
31122,
13,
29937,
2492,
29918,
23973,
353,
10153,
29918,
29890,
629,
7503,
29892,
29901,
29892,
1057,
29899,
29896,
29962,
13,
13,
29937,
29871,
31391,
30392,
236,
131,
156,
233,
171,
166,
231,
189,
169,
30682,
13,
29937,
10153,
29918,
23973,
353,
13850,
29906,
29889,
11023,
29873,
3306,
29898,
2492,
29918,
29890,
629,
29892,
13850,
29906,
29889,
15032,
1955,
29918,
29933,
14345,
29906,
28212,
29897,
13,
13,
29937,
29871,
30785,
30406,
5345,
17357,
29871,
236,
164,
178,
30858,
232,
159,
153,
31122,
13,
29937,
572,
29873,
29889,
326,
4294,
29898,
2492,
29918,
23973,
29897,
13,
29937,
572,
29873,
29889,
4294,
580,
13,
13,
13,
29937,
29871,
30785,
30406,
4673,
15633,
29871,
235,
177,
131,
30683,
234,
132,
179,
236,
157,
145,
232,
159,
153,
233,
173,
151,
13,
2492,
29918,
21012,
353,
13850,
29906,
29889,
326,
949,
11219,
5959,
29914,
29902,
3703,
29889,
5288,
29914,
25119,
29914,
29928,
5364,
1123,
627,
29899,
8431,
3955,
2341,
29914,
4836,
29914,
4836,
29914,
26029,
29899,
29906,
29900,
29896,
29947,
29900,
29941,
29900,
29941,
29899,
29900,
29896,
29899,
29896,
29900,
29906,
29946,
29916,
29953,
29947,
29941,
29889,
6173,
742,
13850,
29906,
29889,
7833,
16310,
29918,
29954,
4717,
21554,
5454,
1307,
29897,
13,
13,
29937,
29871,
30785,
30406,
5345,
17357,
29871,
236,
164,
178,
30858,
232,
159,
153,
31122,
13,
572,
29873,
29889,
326,
4294,
29898,
2492,
29918,
21012,
29892,
274,
1958,
353,
525,
21012,
1495,
13,
572,
29873,
29889,
4294,
580,
13,
2
] |
rl/utils/return_utils.py | jrobine/smaller-world-models | 0 | 134943 | <filename>rl/utils/return_utils.py
import torch
from torch import Tensor
__all__ = ['compute_return', 'compute_gae_return']
def compute_return(
rewards: Tensor,
terminals: Tensor,
bootstrap_value: Tensor,
discount_rate: float,
batch_first: bool = False) -> Tensor:
"""Computes the return based on sequences of rewards, terminals and the bootstrapped values of the next observation.
Arguments:
rewards (Tensor): Float tensor of shape `(time, batch)` that contains the reward sequence.
terminals (Tensor): Boolean tensor of shape `(time, batch)` that contains the terminal sequence.
bootstrap_value (Tensor): Float tensor of shape `(batch)` that contains the bootstrapped values of the next
obsrvation.
discount_rate (float): The discount rate that is used to compute the return.
batch_first (bool, optional): Whether the rewards and terminals are of shape `(batch, time)` instead. The
returns will also be of that shape. Defaults to ``False``.
Returns:
Tensor of shape `(time, batch)` containing the computed returns (or of shape `(batch, time)`, if `batch_first`
is ``True``).
"""
return_ = torch.zeros_like(rewards)
next_return = bootstrap_value
num_steps = rewards.shape[1 if batch_first else 0]
for t in reversed(range(num_steps)):
index_t = (slice(None), t) if batch_first else (t, slice(None))
non_terminal = ~terminals[index_t]
return_[index_t] = rewards[index_t]
return_[index_t][non_terminal] += discount_rate * next_return[non_terminal]
next_return = return_[index_t]
return return_
def compute_gae_return(
rewards: Tensor,
terminals: Tensor,
values: Tensor,
bootstrap_value: Tensor,
discount_rate: float,
gae_lambda: float,
batch_first: bool = False) -> Tensor:
"""TODO docstring
Implementation adopted from [1].
References:
[1] https://stable-baselines.readthedocs.io/en/master/_modules/stable_baselines/ppo2/ppo2.html#PPO2
"""
return_ = torch.zeros_like(rewards)
next_value = bootstrap_value
old_gae = torch.zeros_like(next_value)
num_steps = rewards.shape[1 if batch_first else 0]
for t in reversed(range(num_steps)):
index_t = (slice(None), t) if batch_first else (t, slice(None))
non_terminal = ~terminals[index_t]
value_t = values[index_t]
delta = rewards[index_t] - value_t
delta[non_terminal] += discount_rate * next_value[non_terminal]
gae = delta.clone()
gae[non_terminal] += discount_rate * gae_lambda * old_gae[non_terminal]
old_gae = gae
return_[index_t] = gae + value_t
next_value = value_t
return return_
| [
1,
529,
9507,
29958,
2096,
29914,
13239,
29914,
2457,
29918,
13239,
29889,
2272,
13,
5215,
4842,
305,
13,
3166,
4842,
305,
1053,
323,
6073,
13,
13,
1649,
497,
1649,
353,
6024,
26017,
29918,
2457,
742,
525,
26017,
29918,
3249,
29872,
29918,
2457,
2033,
13,
13,
13,
1753,
10272,
29918,
2457,
29898,
13,
4706,
337,
2935,
29901,
323,
6073,
29892,
13,
4706,
8638,
29879,
29901,
323,
6073,
29892,
13,
4706,
16087,
29918,
1767,
29901,
323,
6073,
29892,
13,
4706,
2313,
792,
29918,
10492,
29901,
5785,
29892,
13,
4706,
9853,
29918,
4102,
29901,
6120,
353,
7700,
29897,
1599,
323,
6073,
29901,
13,
1678,
9995,
20606,
267,
278,
736,
2729,
373,
15602,
310,
337,
2935,
29892,
8638,
29879,
322,
278,
6579,
4151,
2986,
1819,
310,
278,
2446,
15500,
29889,
13,
13,
1678,
11842,
9331,
29901,
13,
4706,
337,
2935,
313,
29911,
6073,
1125,
27842,
12489,
310,
8267,
12270,
2230,
29892,
9853,
3569,
393,
3743,
278,
20751,
5665,
29889,
13,
4706,
8638,
29879,
313,
29911,
6073,
1125,
11185,
12489,
310,
8267,
12270,
2230,
29892,
9853,
3569,
393,
3743,
278,
8638,
5665,
29889,
13,
4706,
16087,
29918,
1767,
313,
29911,
6073,
1125,
27842,
12489,
310,
8267,
12270,
16175,
3569,
393,
3743,
278,
6579,
4151,
2986,
1819,
310,
278,
2446,
13,
9651,
20881,
15291,
362,
29889,
13,
4706,
2313,
792,
29918,
10492,
313,
7411,
1125,
450,
2313,
792,
6554,
393,
338,
1304,
304,
10272,
278,
736,
29889,
13,
4706,
9853,
29918,
4102,
313,
11227,
29892,
13136,
1125,
26460,
278,
337,
2935,
322,
8638,
29879,
526,
310,
8267,
12270,
16175,
29892,
931,
3569,
2012,
29889,
450,
13,
9651,
3639,
674,
884,
367,
310,
393,
8267,
29889,
13109,
29879,
304,
4954,
8824,
29952,
1412,
13,
13,
1678,
16969,
29901,
13,
4706,
323,
6073,
310,
8267,
12270,
2230,
29892,
9853,
3569,
6943,
278,
15712,
3639,
313,
272,
310,
8267,
12270,
16175,
29892,
931,
20362,
565,
421,
16175,
29918,
4102,
29952,
13,
4706,
338,
4954,
5574,
29952,
12913,
13,
1678,
9995,
13,
1678,
736,
29918,
353,
4842,
305,
29889,
3298,
359,
29918,
4561,
29898,
276,
2935,
29897,
13,
1678,
2446,
29918,
2457,
353,
16087,
29918,
1767,
13,
1678,
954,
29918,
24530,
353,
337,
2935,
29889,
12181,
29961,
29896,
565,
9853,
29918,
4102,
1683,
29871,
29900,
29962,
13,
13,
1678,
363,
260,
297,
18764,
287,
29898,
3881,
29898,
1949,
29918,
24530,
22164,
13,
4706,
2380,
29918,
29873,
353,
313,
18337,
29898,
8516,
511,
260,
29897,
565,
9853,
29918,
4102,
1683,
313,
29873,
29892,
22780,
29898,
8516,
876,
13,
4706,
1661,
29918,
8489,
979,
353,
3695,
8489,
19016,
29961,
2248,
29918,
29873,
29962,
13,
4706,
736,
29918,
29961,
2248,
29918,
29873,
29962,
353,
337,
2935,
29961,
2248,
29918,
29873,
29962,
13,
4706,
736,
29918,
29961,
2248,
29918,
29873,
3816,
5464,
29918,
8489,
979,
29962,
4619,
2313,
792,
29918,
10492,
334,
2446,
29918,
2457,
29961,
5464,
29918,
8489,
979,
29962,
13,
4706,
2446,
29918,
2457,
353,
736,
29918,
29961,
2248,
29918,
29873,
29962,
13,
13,
1678,
736,
736,
29918,
13,
13,
13,
1753,
10272,
29918,
3249,
29872,
29918,
2457,
29898,
13,
4706,
337,
2935,
29901,
323,
6073,
29892,
13,
4706,
8638,
29879,
29901,
323,
6073,
29892,
13,
4706,
1819,
29901,
323,
6073,
29892,
13,
4706,
16087,
29918,
1767,
29901,
323,
6073,
29892,
13,
4706,
2313,
792,
29918,
10492,
29901,
5785,
29892,
13,
4706,
330,
3660,
29918,
2892,
29901,
5785,
29892,
13,
4706,
9853,
29918,
4102,
29901,
6120,
353,
7700,
29897,
1599,
323,
6073,
29901,
13,
1678,
9995,
4986,
3970,
1574,
1807,
13,
13,
1678,
1954,
14607,
16356,
515,
518,
29896,
1822,
13,
13,
1678,
28318,
29901,
13,
4706,
518,
29896,
29962,
2045,
597,
13844,
29899,
6500,
24210,
29889,
949,
386,
287,
12332,
29889,
601,
29914,
264,
29914,
6207,
19891,
7576,
29914,
13844,
29918,
6500,
24210,
29914,
9759,
29906,
29914,
9759,
29906,
29889,
1420,
29937,
29925,
13152,
29906,
13,
1678,
9995,
13,
1678,
736,
29918,
353,
4842,
305,
29889,
3298,
359,
29918,
4561,
29898,
276,
2935,
29897,
13,
1678,
2446,
29918,
1767,
353,
16087,
29918,
1767,
13,
1678,
2030,
29918,
3249,
29872,
353,
4842,
305,
29889,
3298,
359,
29918,
4561,
29898,
4622,
29918,
1767,
29897,
13,
1678,
954,
29918,
24530,
353,
337,
2935,
29889,
12181,
29961,
29896,
565,
9853,
29918,
4102,
1683,
29871,
29900,
29962,
13,
1678,
363,
260,
297,
18764,
287,
29898,
3881,
29898,
1949,
29918,
24530,
22164,
13,
4706,
2380,
29918,
29873,
353,
313,
18337,
29898,
8516,
511,
260,
29897,
565,
9853,
29918,
4102,
1683,
313,
29873,
29892,
22780,
29898,
8516,
876,
13,
4706,
1661,
29918,
8489,
979,
353,
3695,
8489,
19016,
29961,
2248,
29918,
29873,
29962,
13,
4706,
995,
29918,
29873,
353,
1819,
29961,
2248,
29918,
29873,
29962,
13,
4706,
19471,
353,
337,
2935,
29961,
2248,
29918,
29873,
29962,
448,
995,
29918,
29873,
13,
4706,
19471,
29961,
5464,
29918,
8489,
979,
29962,
4619,
2313,
792,
29918,
10492,
334,
2446,
29918,
1767,
29961,
5464,
29918,
8489,
979,
29962,
13,
4706,
330,
3660,
353,
19471,
29889,
16513,
580,
13,
4706,
330,
3660,
29961,
5464,
29918,
8489,
979,
29962,
4619,
2313,
792,
29918,
10492,
334,
330,
3660,
29918,
2892,
334,
2030,
29918,
3249,
29872,
29961,
5464,
29918,
8489,
979,
29962,
13,
4706,
2030,
29918,
3249,
29872,
353,
330,
3660,
13,
4706,
736,
29918,
29961,
2248,
29918,
29873,
29962,
353,
330,
3660,
718,
995,
29918,
29873,
13,
4706,
2446,
29918,
1767,
353,
995,
29918,
29873,
13,
13,
1678,
736,
736,
29918,
13,
2
] |
pyqt_drawer/drawer.py | yjg30737/pyqt-drawer | 7 | 164698 | <reponame>yjg30737/pyqt-drawer
from PyQt5.QtWidgets import QWidget, QGridLayout, QGraphicsOpacityEffect, qApp, QMainWindow
from PyQt5.QtCore import Qt, QPropertyAnimation, QAbstractAnimation, QParallelAnimationGroup
from PyQt5.QtGui import QColor, QPalette
from pyqt_svg_icon_pushbutton import SvgIconPushButton
class Drawer(QWidget):
def __init__(self, parent, widget, orientation=Qt.Horizontal):
super().__init__()
self.__initUi(parent, widget=widget, orientation=orientation)
def __initUi(self, parent, widget, orientation):
self.__parent = parent
self.__parent.installEventFilter(self)
self.__btn = SvgIconPushButton()
self.__btn.setCheckable(True)
self.__btn.toggled.connect(self.__drawerToggled)
self.__btn.setIcon('ico/drawer.svg')
self.__btn.setPadding(5)
self.__widget = widget
align = ''
# init size animation
self.__sizeAnimation = ''
if orientation == Qt.Horizontal:
self.__widget.setFixedWidth(0)
align = Qt.AlignLeft
self.__sizeAnimation = QPropertyAnimation(self, b"width")
self.__sizeAnimation.valueChanged.connect(self.__widget.setFixedWidth)
else:
self.__widget.setFixedHeight(0)
align = Qt.AlignTop
self.__sizeAnimation = QPropertyAnimation(self, b"height")
self.__sizeAnimation.valueChanged.connect(self.__widget.setFixedHeight)
self.__sizeAnimation.setStartValue(0)
self.__sizeAnimation.setDuration(200) # default duration
self.__sizeAnimation.setEndValue(200) # default end value
# init opacity animation
self.__opacityAnimation = QPropertyAnimation(self, b"opacity")
self.__widget.setGraphicsEffect(QGraphicsOpacityEffect(opacity=0.0))
self.__opacityAnimation.valueChanged.connect(self.__setOpacity)
self.__opacityAnimation.setStartValue(0.0)
self.__opacityAnimation.setDuration(200)
self.__opacityAnimation.setEndValue(1.0)
self.__parentOpacityAnimation = QPropertyAnimation(self, b"parentopacity")
self.__parentOpacityAnimation.valueChanged.connect(self.__setParentOpacity)
self.__parentOpacityAnimation.setStartValue(255)
self.__parentOpacityAnimation.setDuration(200)
self.__parentOpacityAnimation.setEndValue(127)
self.__animationGroup = QParallelAnimationGroup()
self.__animationGroup.addAnimation(self.__sizeAnimation)
self.__animationGroup.addAnimation(self.__opacityAnimation)
self.__animationGroup.addAnimation(self.__parentOpacityAnimation)
self.__animationGroup.stateChanged.connect(self.__animationStateChanged)
lay = QGridLayout()
lay.addWidget(self.__btn, 0, 0, 1, 1, Qt.AlignTop | Qt.AlignLeft)
lay.addWidget(self.__widget, 0, 0, 1, 2, align)
lay.setSpacing(0)
lay.setContentsMargins(0, 0, 0, 0)
self.setLayout(lay)
def __drawerToggled(self, f):
if f:
self.__animationGroup.setDirection(QAbstractAnimation.Forward)
self.__btn.hide()
else:
self.__animationGroup.setDirection(QAbstractAnimation.Backward)
self.__btn.show()
self.__animationGroup.start()
def __setOpacity(self, opacity):
opacity_effect = QGraphicsOpacityEffect(opacity=opacity)
self.__widget.setGraphicsEffect(opacity_effect)
def __setParentOpacity(self, opacity):
palette = self.__parent.palette()
palette.setColor(QPalette.Window, QColor(255, 255, 255, opacity))
self.__parent.setPalette(palette)
def setDuration(self, msecs):
self.__sizeAnimation.setDuration(msecs)
self.__opacityAnimation.setDuration(msecs)
self.__parentOpacityAnimation.setDuration(msecs)
def setEndValue(self, value):
self.__sizeAnimation.setEndValue(value)
def setIcon(self, icon):
self.__btn.setIcon(icon)
def eventFilter(self, obj, e):
if isinstance(obj, type(self.__parent)):
if e.type() == 3:
if self.__sizeAnimation.currentValue() == self.__sizeAnimation.endValue():
self.__btn.toggle()
return super().eventFilter(obj, e)
def __animationStateChanged(self, new_state, old_state):
if new_state == 2:
self.__widget.setAttribute(Qt.WA_TransparentForMouseEvents, True)
self.__parentOpacityAnimation.start()
elif new_state == 0:
self.__widget.setAttribute(Qt.WA_TransparentForMouseEvents, False) | [
1,
529,
276,
1112,
420,
29958,
17472,
29887,
29941,
29900,
29955,
29941,
29955,
29914,
2272,
17915,
29899,
19811,
556,
13,
3166,
10772,
17303,
29945,
29889,
17303,
8801,
29879,
1053,
660,
8801,
29892,
660,
5756,
3453,
29892,
660,
17290,
11746,
5946,
13971,
29892,
3855,
2052,
29892,
660,
6330,
5907,
13,
3166,
10772,
17303,
29945,
29889,
17303,
9203,
1053,
14705,
29892,
660,
4854,
13579,
29892,
660,
9118,
13579,
29892,
660,
2177,
6553,
13579,
4782,
13,
3166,
10772,
17303,
29945,
29889,
17303,
28707,
1053,
660,
3306,
29892,
660,
29925,
26456,
13,
3166,
11451,
17915,
29918,
15120,
29918,
4144,
29918,
5910,
3092,
1053,
15012,
29887,
12492,
27031,
3125,
13,
13,
13,
1990,
16322,
556,
29898,
29984,
8801,
1125,
13,
1678,
822,
4770,
2344,
12035,
1311,
29892,
3847,
29892,
11109,
29892,
19843,
29922,
17303,
29889,
24932,
1125,
13,
4706,
2428,
2141,
1649,
2344,
1649,
580,
13,
4706,
1583,
17255,
2344,
29965,
29875,
29898,
3560,
29892,
11109,
29922,
8030,
29892,
19843,
29922,
20659,
29897,
13,
13,
1678,
822,
4770,
2344,
29965,
29875,
29898,
1311,
29892,
3847,
29892,
11109,
29892,
19843,
1125,
13,
4706,
1583,
17255,
3560,
353,
3847,
13,
4706,
1583,
17255,
3560,
29889,
6252,
2624,
5072,
29898,
1311,
29897,
13,
13,
4706,
1583,
17255,
7290,
353,
15012,
29887,
12492,
27031,
3125,
580,
13,
4706,
1583,
17255,
7290,
29889,
842,
5596,
519,
29898,
5574,
29897,
13,
4706,
1583,
17255,
7290,
29889,
29873,
468,
29887,
839,
29889,
6915,
29898,
1311,
17255,
19811,
556,
29911,
468,
29887,
839,
29897,
13,
4706,
1583,
17255,
7290,
29889,
842,
12492,
877,
1417,
29914,
19811,
556,
29889,
15120,
1495,
13,
4706,
1583,
17255,
7290,
29889,
842,
29925,
4676,
29898,
29945,
29897,
13,
13,
4706,
1583,
17255,
8030,
353,
11109,
13,
13,
4706,
7595,
353,
6629,
13,
13,
4706,
396,
2069,
2159,
9612,
13,
4706,
1583,
17255,
2311,
13579,
353,
6629,
13,
4706,
565,
19843,
1275,
14705,
29889,
24932,
29901,
13,
9651,
1583,
17255,
8030,
29889,
842,
26262,
6110,
29898,
29900,
29897,
13,
9651,
7595,
353,
14705,
29889,
2499,
647,
8091,
13,
9651,
1583,
17255,
2311,
13579,
353,
660,
4854,
13579,
29898,
1311,
29892,
289,
29908,
2103,
1159,
13,
9651,
1583,
17255,
2311,
13579,
29889,
1767,
7590,
29889,
6915,
29898,
1311,
17255,
8030,
29889,
842,
26262,
6110,
29897,
13,
4706,
1683,
29901,
13,
9651,
1583,
17255,
8030,
29889,
842,
26262,
7011,
29898,
29900,
29897,
13,
9651,
7595,
353,
14705,
29889,
2499,
647,
7031,
13,
9651,
1583,
17255,
2311,
13579,
353,
660,
4854,
13579,
29898,
1311,
29892,
289,
29908,
3545,
1159,
13,
9651,
1583,
17255,
2311,
13579,
29889,
1767,
7590,
29889,
6915,
29898,
1311,
17255,
8030,
29889,
842,
26262,
7011,
29897,
13,
4706,
1583,
17255,
2311,
13579,
29889,
842,
4763,
1917,
29898,
29900,
29897,
13,
4706,
1583,
17255,
2311,
13579,
29889,
842,
18984,
29898,
29906,
29900,
29900,
29897,
29871,
396,
2322,
14385,
13,
4706,
1583,
17255,
2311,
13579,
29889,
842,
5044,
1917,
29898,
29906,
29900,
29900,
29897,
29871,
396,
2322,
1095,
995,
13,
13,
4706,
396,
2069,
17012,
9612,
13,
4706,
1583,
17255,
28193,
13579,
353,
660,
4854,
13579,
29898,
1311,
29892,
289,
29908,
28193,
1159,
13,
4706,
1583,
17255,
8030,
29889,
842,
17290,
13971,
29898,
29984,
17290,
11746,
5946,
13971,
29898,
28193,
29922,
29900,
29889,
29900,
876,
13,
4706,
1583,
17255,
28193,
13579,
29889,
1767,
7590,
29889,
6915,
29898,
1311,
17255,
842,
11746,
5946,
29897,
13,
13,
4706,
1583,
17255,
28193,
13579,
29889,
842,
4763,
1917,
29898,
29900,
29889,
29900,
29897,
13,
4706,
1583,
17255,
28193,
13579,
29889,
842,
18984,
29898,
29906,
29900,
29900,
29897,
13,
4706,
1583,
17255,
28193,
13579,
29889,
842,
5044,
1917,
29898,
29896,
29889,
29900,
29897,
13,
13,
4706,
1583,
17255,
3560,
11746,
5946,
13579,
353,
660,
4854,
13579,
29898,
1311,
29892,
289,
29908,
3560,
28193,
1159,
13,
4706,
1583,
17255,
3560,
11746,
5946,
13579,
29889,
1767,
7590,
29889,
6915,
29898,
1311,
17255,
842,
9780,
11746,
5946,
29897,
13,
13,
4706,
1583,
17255,
3560,
11746,
5946,
13579,
29889,
842,
4763,
1917,
29898,
29906,
29945,
29945,
29897,
13,
4706,
1583,
17255,
3560,
11746,
5946,
13579,
29889,
842,
18984,
29898,
29906,
29900,
29900,
29897,
13,
4706,
1583,
17255,
3560,
11746,
5946,
13579,
29889,
842,
5044,
1917,
29898,
29896,
29906,
29955,
29897,
13,
13,
4706,
1583,
17255,
18962,
4782,
353,
660,
2177,
6553,
13579,
4782,
580,
13,
4706,
1583,
17255,
18962,
4782,
29889,
1202,
13579,
29898,
1311,
17255,
2311,
13579,
29897,
13,
4706,
1583,
17255,
18962,
4782,
29889,
1202,
13579,
29898,
1311,
17255,
28193,
13579,
29897,
13,
4706,
1583,
17255,
18962,
4782,
29889,
1202,
13579,
29898,
1311,
17255,
3560,
11746,
5946,
13579,
29897,
13,
4706,
1583,
17255,
18962,
4782,
29889,
3859,
7590,
29889,
6915,
29898,
1311,
17255,
18962,
2792,
7590,
29897,
13,
13,
4706,
6568,
353,
660,
5756,
3453,
580,
13,
4706,
6568,
29889,
1202,
8801,
29898,
1311,
17255,
7290,
29892,
29871,
29900,
29892,
29871,
29900,
29892,
29871,
29896,
29892,
29871,
29896,
29892,
14705,
29889,
2499,
647,
7031,
891,
14705,
29889,
2499,
647,
8091,
29897,
13,
4706,
6568,
29889,
1202,
8801,
29898,
1311,
17255,
8030,
29892,
29871,
29900,
29892,
29871,
29900,
29892,
29871,
29896,
29892,
29871,
29906,
29892,
7595,
29897,
13,
4706,
6568,
29889,
842,
5592,
9390,
29898,
29900,
29897,
13,
4706,
6568,
29889,
842,
21002,
29924,
1191,
1144,
29898,
29900,
29892,
29871,
29900,
29892,
29871,
29900,
29892,
29871,
29900,
29897,
13,
13,
4706,
1583,
29889,
842,
3453,
29898,
8387,
29897,
13,
13,
1678,
822,
4770,
19811,
556,
29911,
468,
29887,
839,
29898,
1311,
29892,
285,
1125,
13,
4706,
565,
285,
29901,
13,
9651,
1583,
17255,
18962,
4782,
29889,
842,
21602,
29898,
29984,
9118,
13579,
29889,
2831,
1328,
29897,
13,
9651,
1583,
17255,
7290,
29889,
11458,
580,
13,
4706,
1683,
29901,
13,
9651,
1583,
17255,
18962,
4782,
29889,
842,
21602,
29898,
29984,
9118,
13579,
29889,
5841,
1328,
29897,
13,
9651,
1583,
17255,
7290,
29889,
4294,
580,
13,
4706,
1583,
17255,
18962,
4782,
29889,
2962,
580,
13,
13,
1678,
822,
4770,
842,
11746,
5946,
29898,
1311,
29892,
17012,
1125,
13,
4706,
17012,
29918,
15987,
353,
660,
17290,
11746,
5946,
13971,
29898,
28193,
29922,
28193,
29897,
13,
4706,
1583,
17255,
8030,
29889,
842,
17290,
13971,
29898,
28193,
29918,
15987,
29897,
13,
13,
1678,
822,
4770,
842,
9780,
11746,
5946,
29898,
1311,
29892,
17012,
1125,
13,
4706,
282,
26456,
353,
1583,
17255,
3560,
29889,
29886,
26456,
580,
13,
4706,
282,
26456,
29889,
842,
3306,
29898,
29984,
29925,
26456,
29889,
5907,
29892,
660,
3306,
29898,
29906,
29945,
29945,
29892,
29871,
29906,
29945,
29945,
29892,
29871,
29906,
29945,
29945,
29892,
17012,
876,
13,
4706,
1583,
17255,
3560,
29889,
842,
29925,
26456,
29898,
29886,
26456,
29897,
13,
13,
1678,
822,
731,
18984,
29898,
1311,
29892,
286,
344,
2395,
1125,
13,
4706,
1583,
17255,
2311,
13579,
29889,
842,
18984,
29898,
29885,
344,
2395,
29897,
13,
4706,
1583,
17255,
28193,
13579,
29889,
842,
18984,
29898,
29885,
344,
2395,
29897,
13,
4706,
1583,
17255,
3560,
11746,
5946,
13579,
29889,
842,
18984,
29898,
29885,
344,
2395,
29897,
13,
13,
1678,
822,
731,
5044,
1917,
29898,
1311,
29892,
995,
1125,
13,
4706,
1583,
17255,
2311,
13579,
29889,
842,
5044,
1917,
29898,
1767,
29897,
13,
13,
1678,
822,
731,
12492,
29898,
1311,
29892,
9849,
1125,
13,
4706,
1583,
17255,
7290,
29889,
842,
12492,
29898,
4144,
29897,
13,
13,
1678,
822,
1741,
5072,
29898,
1311,
29892,
5446,
29892,
321,
1125,
13,
4706,
565,
338,
8758,
29898,
5415,
29892,
1134,
29898,
1311,
17255,
3560,
22164,
13,
9651,
565,
321,
29889,
1853,
580,
1275,
29871,
29941,
29901,
13,
18884,
565,
1583,
17255,
2311,
13579,
29889,
3784,
1917,
580,
1275,
1583,
17255,
2311,
13579,
29889,
355,
1917,
7295,
13,
462,
1678,
1583,
17255,
7290,
29889,
13270,
580,
13,
4706,
736,
2428,
2141,
3696,
5072,
29898,
5415,
29892,
321,
29897,
13,
13,
1678,
822,
4770,
18962,
2792,
7590,
29898,
1311,
29892,
716,
29918,
3859,
29892,
2030,
29918,
3859,
1125,
13,
4706,
565,
716,
29918,
3859,
1275,
29871,
29906,
29901,
13,
9651,
1583,
17255,
8030,
29889,
27434,
29898,
17303,
29889,
12982,
29918,
4300,
3560,
2831,
14346,
13634,
29892,
5852,
29897,
13,
9651,
1583,
17255,
3560,
11746,
5946,
13579,
29889,
2962,
580,
13,
4706,
25342,
716,
29918,
3859,
1275,
29871,
29900,
29901,
13,
9651,
1583,
17255,
8030,
29889,
27434,
29898,
17303,
29889,
12982,
29918,
4300,
3560,
2831,
14346,
13634,
29892,
7700,
29897,
2
] |
vows/blacklist_vows.py | 2947721120/thumbor | 0 | 1608274 | <gh_stars>0
#!/usr/bin/python
# -*- coding: utf-8 -*-
# thumbor imaging service
# https://github.com/thumbor/thumbor/wiki
# Licensed under the MIT license:
# http://www.opensource.org/licenses/mit-license
# Copyright (c) 2011 globo.com <EMAIL>
from pyvows import Vows, expect
from tornado_pyvows.context import TornadoHTTPContext
from thumbor.app import ThumborServiceApp
from thumbor.importer import Importer
from thumbor.config import Config
from thumbor.context import Context, ServerParameters
from os.path import abspath, join, dirname, exists
from shutil import rmtree
class BaseContext(TornadoHTTPContext):
def get_app(self):
file_storage_root_path = '/tmp/thumbor-vows/storage'
if exists(file_storage_root_path):
rmtree(file_storage_root_path)
cfg = Config()
cfg.USE_BLACKLIST = True
cfg.LOADER = "thumbor.loaders.file_loader"
cfg.FILE_LOADER_ROOT_PATH = abspath(join(dirname(__file__), 'fixtures/'))
cfg.STORAGE = 'thumbor.storages.file_storage'
cfg.FILE_STORAGE_ROOT_PATH = file_storage_root_path
importer = Importer(cfg)
importer.import_modules()
server = ServerParameters(8889, 'localhost', 'thumbor.conf', None, 'debug', None)
ctx = Context(server, cfg, importer)
application = ThumborServiceApp(ctx)
return application
@Vows.batch
class Blacklist(BaseContext):
class BaseBlacklist(TornadoHTTPContext):
def topic(self):
response = self.get('/blacklist')
return (response.code, response.body)
def should_return_blank(self, topic):
expect(topic[1]).to_equal("")
def should_return_200(self, topic):
expect(topic[0]).to_equal(200)
class AddingToBlacklist(TornadoHTTPContext):
def topic(self):
response = self.fetch('/blacklist?blocked.jpg', method='PUT', body='')
return (response.code, response.body)
def should_return_200(self, topic):
expect(topic[0]).to_equal(200)
class ReadingUpdatedBlacklist(TornadoHTTPContext):
def topic(self):
response = self.get('/blacklist')
return (response.code, response.body)
def should_return_200(self, topic):
expect(topic[0]).to_equal(200)
def should_contain_blacklisted_file(self, topic):
expect("blocked.jpg\n" in topic[1]).to_equal(True)
@Vows.batch
class BlacklistIntegration(BaseContext):
class NormalGetImage(TornadoHTTPContext):
def topic(self):
response = self.get('/unsafe/image.jpg')
return response.code
def should_return_200(self, topic):
expect(topic).to_equal(200)
class BlacklistedGetImage(TornadoHTTPContext):
def topic(self):
self.fetch('/blacklist?image.jpg', method='PUT', body='')
response = self.get('/unsafe/image.jpg')
return response.code
def should_return_bad_request(self, topic):
expect(topic).to_equal(400)
| [
1,
529,
12443,
29918,
303,
1503,
29958,
29900,
13,
29937,
14708,
4855,
29914,
2109,
29914,
4691,
13,
29937,
448,
29930,
29899,
14137,
29901,
23616,
29899,
29947,
448,
29930,
29899,
13,
13,
29937,
28968,
272,
6382,
292,
2669,
13,
29937,
2045,
597,
3292,
29889,
510,
29914,
386,
3774,
272,
29914,
386,
3774,
272,
29914,
4594,
13,
13,
29937,
10413,
21144,
1090,
278,
341,
1806,
19405,
29901,
13,
29937,
1732,
597,
1636,
29889,
22156,
1167,
29889,
990,
29914,
506,
11259,
29914,
2415,
29899,
506,
1947,
13,
29937,
14187,
1266,
313,
29883,
29897,
29871,
29906,
29900,
29896,
29896,
15482,
833,
29889,
510,
529,
26862,
6227,
29958,
13,
13,
3166,
11451,
29894,
1242,
1053,
478,
1242,
29892,
2149,
13,
3166,
10146,
912,
29918,
2272,
29894,
1242,
29889,
4703,
1053,
323,
1398,
912,
10493,
2677,
13,
13,
3166,
28968,
272,
29889,
932,
1053,
498,
3774,
272,
3170,
2052,
13,
3166,
28968,
272,
29889,
326,
18505,
1053,
14305,
9555,
13,
3166,
28968,
272,
29889,
2917,
1053,
12782,
13,
3166,
28968,
272,
29889,
4703,
1053,
15228,
29892,
5656,
11507,
13,
13,
3166,
2897,
29889,
2084,
1053,
633,
1028,
493,
29892,
5988,
29892,
4516,
978,
29892,
4864,
13,
3166,
528,
4422,
1053,
364,
4378,
929,
13,
13,
13,
1990,
7399,
2677,
29898,
29911,
1398,
912,
10493,
2677,
1125,
13,
1678,
822,
679,
29918,
932,
29898,
1311,
1125,
13,
4706,
934,
29918,
12925,
29918,
4632,
29918,
2084,
353,
8207,
7050,
29914,
386,
3774,
272,
29899,
29894,
1242,
29914,
12925,
29915,
13,
4706,
565,
4864,
29898,
1445,
29918,
12925,
29918,
4632,
29918,
2084,
1125,
13,
9651,
364,
4378,
929,
29898,
1445,
29918,
12925,
29918,
4632,
29918,
2084,
29897,
13,
13,
4706,
274,
16434,
353,
12782,
580,
13,
4706,
274,
16434,
29889,
17171,
29918,
13367,
11375,
24360,
353,
5852,
13,
4706,
274,
16434,
29889,
29428,
1001,
353,
376,
386,
3774,
272,
29889,
1359,
414,
29889,
1445,
29918,
12657,
29908,
13,
4706,
274,
16434,
29889,
7724,
29918,
29428,
1001,
29918,
21289,
29918,
10145,
353,
633,
1028,
493,
29898,
7122,
29898,
25721,
22168,
1445,
1649,
511,
525,
7241,
486,
1973,
29914,
8785,
13,
4706,
274,
16434,
29889,
1254,
1955,
10461,
353,
525,
386,
3774,
272,
29889,
28957,
1179,
29889,
1445,
29918,
12925,
29915,
13,
4706,
274,
16434,
29889,
7724,
29918,
1254,
1955,
10461,
29918,
21289,
29918,
10145,
353,
934,
29918,
12925,
29918,
4632,
29918,
2084,
13,
13,
4706,
527,
18505,
353,
14305,
9555,
29898,
16859,
29897,
13,
4706,
527,
18505,
29889,
5215,
29918,
7576,
580,
13,
13,
4706,
1923,
353,
5656,
11507,
29898,
29947,
29947,
29947,
29929,
29892,
525,
7640,
742,
525,
386,
3774,
272,
29889,
5527,
742,
6213,
29892,
525,
8382,
742,
6213,
29897,
13,
4706,
12893,
353,
15228,
29898,
2974,
29892,
274,
16434,
29892,
527,
18505,
29897,
13,
4706,
2280,
353,
498,
3774,
272,
3170,
2052,
29898,
13073,
29897,
13,
4706,
736,
2280,
13,
13,
13,
29992,
29963,
1242,
29889,
16175,
13,
1990,
6054,
1761,
29898,
5160,
2677,
1125,
13,
13,
1678,
770,
7399,
18700,
1761,
29898,
29911,
1398,
912,
10493,
2677,
1125,
13,
4706,
822,
11261,
29898,
1311,
1125,
13,
9651,
2933,
353,
1583,
29889,
657,
11219,
8517,
1761,
1495,
13,
9651,
736,
313,
5327,
29889,
401,
29892,
2933,
29889,
2587,
29897,
13,
13,
4706,
822,
881,
29918,
2457,
29918,
19465,
29898,
1311,
29892,
11261,
1125,
13,
9651,
2149,
29898,
13010,
29961,
29896,
14664,
517,
29918,
11745,
703,
1159,
13,
13,
4706,
822,
881,
29918,
2457,
29918,
29906,
29900,
29900,
29898,
1311,
29892,
11261,
1125,
13,
9651,
2149,
29898,
13010,
29961,
29900,
14664,
517,
29918,
11745,
29898,
29906,
29900,
29900,
29897,
13,
13,
4706,
770,
18804,
1762,
18700,
1761,
29898,
29911,
1398,
912,
10493,
2677,
1125,
13,
9651,
822,
11261,
29898,
1311,
1125,
13,
18884,
2933,
353,
1583,
29889,
9155,
11219,
8517,
1761,
29973,
1271,
287,
29889,
6173,
742,
1158,
2433,
12336,
742,
3573,
2433,
1495,
13,
18884,
736,
313,
5327,
29889,
401,
29892,
2933,
29889,
2587,
29897,
13,
13,
9651,
822,
881,
29918,
2457,
29918,
29906,
29900,
29900,
29898,
1311,
29892,
11261,
1125,
13,
18884,
2149,
29898,
13010,
29961,
29900,
14664,
517,
29918,
11745,
29898,
29906,
29900,
29900,
29897,
13,
13,
9651,
770,
21439,
29248,
18700,
1761,
29898,
29911,
1398,
912,
10493,
2677,
1125,
13,
18884,
822,
11261,
29898,
1311,
1125,
13,
462,
1678,
2933,
353,
1583,
29889,
657,
11219,
8517,
1761,
1495,
13,
462,
1678,
736,
313,
5327,
29889,
401,
29892,
2933,
29889,
2587,
29897,
13,
13,
18884,
822,
881,
29918,
2457,
29918,
29906,
29900,
29900,
29898,
1311,
29892,
11261,
1125,
13,
462,
1678,
2149,
29898,
13010,
29961,
29900,
14664,
517,
29918,
11745,
29898,
29906,
29900,
29900,
29897,
13,
13,
18884,
822,
881,
29918,
1285,
475,
29918,
8517,
1761,
287,
29918,
1445,
29898,
1311,
29892,
11261,
1125,
13,
462,
1678,
2149,
703,
1271,
287,
29889,
6173,
29905,
29876,
29908,
297,
11261,
29961,
29896,
14664,
517,
29918,
11745,
29898,
5574,
29897,
13,
13,
13,
29992,
29963,
1242,
29889,
16175,
13,
1990,
6054,
1761,
23573,
362,
29898,
5160,
2677,
1125,
13,
13,
1678,
770,
21981,
2577,
2940,
29898,
29911,
1398,
912,
10493,
2677,
1125,
13,
4706,
822,
11261,
29898,
1311,
1125,
13,
9651,
2933,
353,
1583,
29889,
657,
11219,
348,
11177,
29914,
3027,
29889,
6173,
1495,
13,
9651,
736,
2933,
29889,
401,
13,
13,
4706,
822,
881,
29918,
2457,
29918,
29906,
29900,
29900,
29898,
1311,
29892,
11261,
1125,
13,
9651,
2149,
29898,
13010,
467,
517,
29918,
11745,
29898,
29906,
29900,
29900,
29897,
13,
13,
4706,
770,
6054,
1761,
287,
2577,
2940,
29898,
29911,
1398,
912,
10493,
2677,
1125,
13,
13,
9651,
822,
11261,
29898,
1311,
1125,
13,
18884,
1583,
29889,
9155,
11219,
8517,
1761,
29973,
3027,
29889,
6173,
742,
1158,
2433,
12336,
742,
3573,
2433,
1495,
13,
18884,
2933,
353,
1583,
29889,
657,
11219,
348,
11177,
29914,
3027,
29889,
6173,
1495,
13,
18884,
736,
2933,
29889,
401,
13,
13,
9651,
822,
881,
29918,
2457,
29918,
12313,
29918,
3827,
29898,
1311,
29892,
11261,
1125,
13,
18884,
2149,
29898,
13010,
467,
517,
29918,
11745,
29898,
29946,
29900,
29900,
29897,
13,
2
] |
lab03/gabriel-teston.py | Desnord/lab-mc102 | 7 | 85579 | # Rescebe os valores de entrada.
P1 = float(input())
P2 = float(input())
Ml = float(input())
# Calculo da media parcial.
Mp = (2 * P1 + 3 * P2) / 5.0
# Regras para aprovação.
if Ml < 5.0 or Mp < 5.0:
M = min(Mp, 4.9)
else:
M = (3 * Mp + 2 * Ml) / 5.0
if 5.0 > M >= 2.5:
E = float(input())
F = (M + E) / 2.0
else:
F = M
# Imprime os resultados.
print("%.1f" % Mp)
print("%.1f" % M)
print("%.1f" % F)
| [
1,
396,
2538,
346,
915,
2897,
659,
2361,
316,
9953,
1114,
29889,
13,
29925,
29896,
353,
5785,
29898,
2080,
3101,
13,
29925,
29906,
353,
5785,
29898,
2080,
3101,
13,
29924,
29880,
353,
5785,
29898,
2080,
3101,
13,
13,
29937,
3037,
17227,
1146,
5745,
610,
1455,
29889,
13,
29924,
29886,
353,
313,
29906,
334,
349,
29896,
718,
29871,
29941,
334,
349,
29906,
29897,
847,
29871,
29945,
29889,
29900,
13,
13,
29937,
2169,
3417,
1702,
11712,
1564,
2340,
29889,
13,
361,
341,
29880,
529,
29871,
29945,
29889,
29900,
470,
341,
29886,
529,
29871,
29945,
29889,
29900,
29901,
13,
1678,
341,
353,
1375,
29898,
29924,
29886,
29892,
29871,
29946,
29889,
29929,
29897,
13,
2870,
29901,
13,
1678,
341,
353,
313,
29941,
334,
341,
29886,
718,
29871,
29906,
334,
341,
29880,
29897,
847,
29871,
29945,
29889,
29900,
13,
13,
361,
29871,
29945,
29889,
29900,
1405,
341,
6736,
29871,
29906,
29889,
29945,
29901,
13,
1678,
382,
353,
5785,
29898,
2080,
3101,
13,
1678,
383,
353,
313,
29924,
718,
382,
29897,
847,
29871,
29906,
29889,
29900,
13,
2870,
29901,
13,
1678,
383,
353,
341,
13,
13,
29937,
1954,
10080,
2897,
1121,
2255,
29889,
13,
2158,
11702,
29889,
29896,
29888,
29908,
1273,
341,
29886,
29897,
13,
2158,
11702,
29889,
29896,
29888,
29908,
1273,
341,
29897,
13,
2158,
11702,
29889,
29896,
29888,
29908,
1273,
383,
29897,
13,
2
] |
Dense_mnist.py | YuanshengZhao/adiabaticbinary | 0 | 123895 | import tensorflow as tf
import numpy as np
import layers
import mnist
import trainer
import sys
class DenseNet(tf.keras.Model):
def __init__(self,binW,binA):
super(DenseNet, self).__init__()
self.binW=binW
self.binA=binA
self.flat= tf.keras.layers.Flatten()
self.dense1 = layers.BinaryDense(128) if binW else tf.keras.layers.Dense(128)
self.dense2 = layers.BinaryDense(10) if binW else tf.keras.layers.Dense(10)
self.actv1=layers.BinaryActivationRL() if binA else tf.keras.layers.Activation("relu")
self.actv2=tf.keras.layers.Activation("softmax")
self.drop=tf.keras.layers.Dropout(.2)
def set_kk(self, kka):
if not self.binW:
raise NotImplementedError
self.dense1.set_kk(kka)
self.dense2.set_kk(kka)
def set_ka(self,kka):
if not self.binA:
raise NotImplementedError
self.actv1.set_kk(kka)
def get_kk(self):
if not self.binW:
raise NotImplementedError
return self.dense1.kk
def get_ka(self):
if not self.binA:
raise NotImplementedError
return self.actv1.kk
def call(self, inputs, training=False):
x=self.drop(self.actv1(self.dense1(self.flat(inputs))),training=training)
return self.actv2(self.dense2(x))
bw=int(sys.argv[1])
ba=int(sys.argv[2])
if(bw and not ba):
mode="w"
elif(ba and not bw):
mode="a"
else:
mode="b"
print("VGG Small, mode "+mode)
model=DenseNet(bw,ba)
optz=tf.keras.optimizers.Adam()
model(mnist.x_train[:2])
model.compile(optimizer=optz,
loss='sparse_categorical_crossentropy',
metrics=['accuracy'])
model.summary()
trr=trainer.Trainer(1000,mode)
trr.val_bs=32
trr.lr_power=.2
model.evaluate(mnist.x_val,mnist.y_val,batch_size=trr.val_bs,verbose=2)
if(mode=="a"):
trr.sw_epc=0
trr.lr_base=1.5
trr.lr_power=.3
model.set_ka(trr.lr_base)
trr.train(model,None,mnist.x_train,mnist.y_train,mnist.x_val,mnist.y_val,8,1e-3,"Dse_",True,mnist.x_test,mnist.y_test)
model.set_ka(6)
trr.train(model,None,mnist.x_train,mnist.y_train,mnist.x_val,mnist.y_val,3,1e-3,"Dse_",True,mnist.x_test,mnist.y_test)
model.set_ka(1001)
trr.train(model,None,mnist.x_train,mnist.y_train,mnist.x_val,mnist.y_val,2,1e-3,"Dse_",True,mnist.x_test,mnist.y_test)
if(mode=="w"):
trr.sw_epc=0
trr.lr_base=3.0
model.set_kk(trr.lr_base)
trr.train(model,None,mnist.x_train,mnist.y_train,mnist.x_val,mnist.y_val,8,1e-3,"Dse_",True,mnist.x_test,mnist.y_test)
for kkz in [10, 20, 50, 100, 300, 500, 999]:
model.set_kk(kkz)
trr.train(model,None,mnist.x_train,mnist.y_train,mnist.x_val,mnist.y_val,3,1e-3,"Dse_",True,mnist.x_test,mnist.y_test)
if(mode=="b"):
trr.sw_epc=0
trr.lr_base=3.0
model.set_kk(trr.lr_base)
model.set_ka(trr.lr_base)
trr.train(model,None,mnist.x_train,mnist.y_train,mnist.x_val,mnist.y_val,8,1e-3,"Dse_",True,mnist.x_test,mnist.y_test)
for kkz in [10, 20, 50, 100, 300, 500, 999]:
model.set_ka(kkz)
model.set_kk(kkz)
trr.train(model,None,mnist.x_train,mnist.y_train,mnist.x_val,mnist.y_val,3,1e-3,"Dse_",True,mnist.x_test,mnist.y_test)
| [
1,
1053,
26110,
408,
15886,
30004,
13,
5215,
12655,
408,
7442,
30004,
13,
5215,
15359,
30004,
13,
5215,
28597,
391,
30004,
13,
5215,
1020,
4983,
30004,
13,
5215,
10876,
30004,
13,
30004,
13,
30004,
13,
1990,
360,
1947,
6779,
29898,
13264,
29889,
3946,
294,
29889,
3195,
1125,
30004,
13,
1678,
822,
4770,
2344,
12035,
1311,
29892,
2109,
29956,
29892,
2109,
29909,
1125,
30004,
13,
4706,
2428,
29898,
29928,
1947,
6779,
29892,
1583,
467,
1649,
2344,
1649,
26471,
13,
4706,
1583,
29889,
2109,
29956,
29922,
2109,
29956,
30004,
13,
4706,
1583,
29889,
2109,
29909,
29922,
2109,
29909,
30004,
13,
4706,
1583,
29889,
20620,
29922,
15886,
29889,
3946,
294,
29889,
29277,
29889,
29943,
5066,
841,
26471,
13,
4706,
1583,
29889,
1145,
344,
29896,
353,
15359,
29889,
25196,
29928,
1947,
29898,
29896,
29906,
29947,
29897,
565,
9016,
29956,
1683,
15886,
29889,
3946,
294,
29889,
29277,
29889,
29928,
1947,
29898,
29896,
29906,
29947,
8443,
13,
4706,
1583,
29889,
1145,
344,
29906,
353,
15359,
29889,
25196,
29928,
1947,
29898,
29896,
29900,
29897,
565,
9016,
29956,
1683,
15886,
29889,
3946,
294,
29889,
29277,
29889,
29928,
1947,
29898,
29896,
29900,
8443,
13,
4706,
1583,
29889,
627,
29894,
29896,
29922,
29277,
29889,
25196,
21786,
362,
2241,
580,
565,
9016,
29909,
1683,
15886,
29889,
3946,
294,
29889,
29277,
29889,
21786,
362,
703,
2674,
29884,
1159,
30004,
13,
4706,
1583,
29889,
627,
29894,
29906,
29922,
13264,
29889,
3946,
294,
29889,
29277,
29889,
21786,
362,
703,
2695,
3317,
1159,
30004,
13,
4706,
1583,
29889,
8865,
29922,
13264,
29889,
3946,
294,
29889,
29277,
29889,
15063,
449,
11891,
29906,
8443,
13,
30004,
13,
1678,
822,
731,
29918,
6859,
29898,
1311,
29892,
413,
1335,
1125,
30004,
13,
4706,
565,
451,
1583,
29889,
2109,
29956,
29901,
30004,
13,
9651,
12020,
2216,
1888,
2037,
287,
2392,
30004,
13,
4706,
1583,
29889,
1145,
344,
29896,
29889,
842,
29918,
6859,
29898,
29895,
1335,
8443,
13,
4706,
1583,
29889,
1145,
344,
29906,
29889,
842,
29918,
6859,
29898,
29895,
1335,
8443,
13,
30004,
13,
1678,
822,
731,
29918,
1335,
29898,
1311,
29892,
29895,
1335,
1125,
30004,
13,
4706,
565,
451,
1583,
29889,
2109,
29909,
29901,
30004,
13,
9651,
12020,
2216,
1888,
2037,
287,
2392,
30004,
13,
4706,
1583,
29889,
627,
29894,
29896,
29889,
842,
29918,
6859,
29898,
29895,
1335,
8443,
13,
1678,
6756,
13,
1678,
822,
679,
29918,
6859,
29898,
1311,
1125,
30004,
13,
4706,
565,
451,
1583,
29889,
2109,
29956,
29901,
30004,
13,
9651,
12020,
2216,
1888,
2037,
287,
2392,
30004,
13,
4706,
736,
1583,
29889,
1145,
344,
29896,
29889,
6859,
30004,
13,
1678,
6756,
13,
1678,
822,
679,
29918,
1335,
29898,
1311,
1125,
30004,
13,
4706,
565,
451,
1583,
29889,
2109,
29909,
29901,
30004,
13,
9651,
12020,
2216,
1888,
2037,
287,
2392,
30004,
13,
4706,
736,
1583,
29889,
627,
29894,
29896,
29889,
6859,
30004,
13,
30004,
13,
1678,
822,
1246,
29898,
1311,
29892,
10970,
29892,
6694,
29922,
8824,
1125,
30004,
13,
4706,
921,
29922,
1311,
29889,
8865,
29898,
1311,
29889,
627,
29894,
29896,
29898,
1311,
29889,
1145,
344,
29896,
29898,
1311,
29889,
20620,
29898,
2080,
29879,
876,
511,
26495,
29922,
26495,
8443,
13,
4706,
736,
1583,
29889,
627,
29894,
29906,
29898,
1311,
29889,
1145,
344,
29906,
29898,
29916,
876,
30004,
13,
30004,
13,
29890,
29893,
29922,
524,
29898,
9675,
29889,
19218,
29961,
29896,
2314,
30004,
13,
2291,
29922,
524,
29898,
9675,
29889,
19218,
29961,
29906,
2314,
30004,
13,
361,
29898,
29890,
29893,
322,
451,
9922,
1125,
30004,
13,
1678,
4464,
543,
29893,
19451,
13,
23681,
29898,
2291,
322,
451,
289,
29893,
1125,
30004,
13,
1678,
4464,
543,
29874,
19451,
13,
2870,
29901,
30004,
13,
1678,
4464,
543,
29890,
19451,
13,
30004,
13,
2158,
703,
29963,
26788,
18285,
29892,
4464,
15691,
8513,
8443,
13,
30004,
13,
4299,
29922,
29928,
1947,
6779,
29898,
29890,
29893,
29892,
2291,
8443,
13,
3670,
29920,
29922,
13264,
29889,
3946,
294,
29889,
20640,
19427,
29889,
3253,
314,
26471,
13,
4299,
29898,
23521,
391,
29889,
29916,
29918,
14968,
7503,
29906,
2314,
30004,
13,
4299,
29889,
12198,
29898,
20640,
3950,
29922,
3670,
29920,
11167,
13,
795,
6410,
2433,
29879,
5510,
29918,
29883,
20440,
936,
29918,
19128,
296,
14441,
23592,
13,
795,
21556,
29922,
1839,
562,
2764,
4135,
2033,
8443,
13,
4299,
29889,
7727,
26471,
13,
30004,
13,
509,
29878,
29922,
3018,
4983,
29889,
5323,
4983,
29898,
29896,
29900,
29900,
29900,
29892,
8513,
8443,
13,
509,
29878,
29889,
791,
29918,
5824,
29922,
29941,
29906,
30004,
13,
509,
29878,
29889,
29212,
29918,
13519,
21098,
29906,
30004,
13,
30004,
13,
4299,
29889,
24219,
403,
29898,
23521,
391,
29889,
29916,
29918,
791,
29892,
23521,
391,
29889,
29891,
29918,
791,
29892,
16175,
29918,
2311,
29922,
509,
29878,
29889,
791,
29918,
5824,
29892,
369,
15828,
29922,
29906,
8443,
13,
30004,
13,
361,
29898,
8513,
26359,
29874,
29908,
1125,
30004,
13,
1678,
534,
29878,
29889,
2774,
29918,
1022,
29883,
29922,
29900,
30004,
13,
1678,
534,
29878,
29889,
29212,
29918,
3188,
29922,
29896,
29889,
29945,
30004,
13,
1678,
534,
29878,
29889,
29212,
29918,
13519,
21098,
29941,
30004,
13,
1678,
1904,
29889,
842,
29918,
1335,
29898,
509,
29878,
29889,
29212,
29918,
3188,
8443,
13,
1678,
534,
29878,
29889,
14968,
29898,
4299,
29892,
8516,
29892,
23521,
391,
29889,
29916,
29918,
14968,
29892,
23521,
391,
29889,
29891,
29918,
14968,
29892,
23521,
391,
29889,
29916,
29918,
791,
29892,
23521,
391,
29889,
29891,
29918,
791,
29892,
29947,
29892,
29896,
29872,
29899,
29941,
1699,
29928,
344,
29918,
613,
5574,
29892,
23521,
391,
29889,
29916,
29918,
1688,
29892,
23521,
391,
29889,
29891,
29918,
1688,
8443,
13,
1678,
1904,
29889,
842,
29918,
1335,
29898,
29953,
8443,
13,
1678,
534,
29878,
29889,
14968,
29898,
4299,
29892,
8516,
29892,
23521,
391,
29889,
29916,
29918,
14968,
29892,
23521,
391,
29889,
29891,
29918,
14968,
29892,
23521,
391,
29889,
29916,
29918,
791,
29892,
23521,
391,
29889,
29891,
29918,
791,
29892,
29941,
29892,
29896,
29872,
29899,
29941,
1699,
29928,
344,
29918,
613,
5574,
29892,
23521,
391,
29889,
29916,
29918,
1688,
29892,
23521,
391,
29889,
29891,
29918,
1688,
8443,
13,
1678,
1904,
29889,
842,
29918,
1335,
29898,
29896,
29900,
29900,
29896,
8443,
13,
1678,
534,
29878,
29889,
14968,
29898,
4299,
29892,
8516,
29892,
23521,
391,
29889,
29916,
29918,
14968,
29892,
23521,
391,
29889,
29891,
29918,
14968,
29892,
23521,
391,
29889,
29916,
29918,
791,
29892,
23521,
391,
29889,
29891,
29918,
791,
29892,
29906,
29892,
29896,
29872,
29899,
29941,
1699,
29928,
344,
29918,
613,
5574,
29892,
23521,
391,
29889,
29916,
29918,
1688,
29892,
23521,
391,
29889,
29891,
29918,
1688,
8443,
13,
361,
29898,
8513,
26359,
29893,
29908,
1125,
30004,
13,
1678,
534,
29878,
29889,
2774,
29918,
1022,
29883,
29922,
29900,
30004,
13,
1678,
534,
29878,
29889,
29212,
29918,
3188,
29922,
29941,
29889,
29900,
30004,
13,
1678,
1904,
29889,
842,
29918,
6859,
29898,
509,
29878,
29889,
29212,
29918,
3188,
8443,
13,
1678,
534,
29878,
29889,
14968,
29898,
4299,
29892,
8516,
29892,
23521,
391,
29889,
29916,
29918,
14968,
29892,
23521,
391,
29889,
29891,
29918,
14968,
29892,
23521,
391,
29889,
29916,
29918,
791,
29892,
23521,
391,
29889,
29891,
29918,
791,
29892,
29947,
29892,
29896,
29872,
29899,
29941,
1699,
29928,
344,
29918,
613,
5574,
29892,
23521,
391,
29889,
29916,
29918,
1688,
29892,
23521,
391,
29889,
29891,
29918,
1688,
8443,
13,
1678,
363,
413,
29895,
29920,
297,
518,
29896,
29900,
29892,
29871,
29906,
29900,
29892,
29871,
29945,
29900,
29892,
29871,
29896,
29900,
29900,
29892,
29871,
29941,
29900,
29900,
29892,
29871,
29945,
29900,
29900,
29892,
29871,
29929,
29929,
29929,
5387,
30004,
13,
4706,
1904,
29889,
842,
29918,
6859,
29898,
6859,
29920,
8443,
13,
4706,
534,
29878,
29889,
14968,
29898,
4299,
29892,
8516,
29892,
23521,
391,
29889,
29916,
29918,
14968,
29892,
23521,
391,
29889,
29891,
29918,
14968,
29892,
23521,
391,
29889,
29916,
29918,
791,
29892,
23521,
391,
29889,
29891,
29918,
791,
29892,
29941,
29892,
29896,
29872,
29899,
29941,
1699,
29928,
344,
29918,
613,
5574,
29892,
23521,
391,
29889,
29916,
29918,
1688,
29892,
23521,
391,
29889,
29891,
29918,
1688,
8443,
13,
361,
29898,
8513,
26359,
29890,
29908,
1125,
30004,
13,
1678,
534,
29878,
29889,
2774,
29918,
1022,
29883,
29922,
29900,
30004,
13,
1678,
534,
29878,
29889,
29212,
29918,
3188,
29922,
29941,
29889,
29900,
30004,
13,
1678,
1904,
29889,
842,
29918,
6859,
29898,
509,
29878,
29889,
29212,
29918,
3188,
8443,
13,
1678,
1904,
29889,
842,
29918,
1335,
29898,
509,
29878,
29889,
29212,
29918,
3188,
8443,
13,
1678,
534,
29878,
29889,
14968,
29898,
4299,
29892,
8516,
29892,
23521,
391,
29889,
29916,
29918,
14968,
29892,
23521,
391,
29889,
29891,
29918,
14968,
29892,
23521,
391,
29889,
29916,
29918,
791,
29892,
23521,
391,
29889,
29891,
29918,
791,
29892,
29947,
29892,
29896,
29872,
29899,
29941,
1699,
29928,
344,
29918,
613,
5574,
29892,
23521,
391,
29889,
29916,
29918,
1688,
29892,
23521,
391,
29889,
29891,
29918,
1688,
8443,
13,
1678,
363,
413,
29895,
29920,
297,
518,
29896,
29900,
29892,
29871,
29906,
29900,
29892,
29871,
29945,
29900,
29892,
29871,
29896,
29900,
29900,
29892,
29871,
29941,
29900,
29900,
29892,
29871,
29945,
29900,
29900,
29892,
29871,
29929,
29929,
29929,
5387,
30004,
13,
4706,
1904,
29889,
842,
29918,
1335,
29898,
6859,
29920,
8443,
13,
4706,
1904,
29889,
842,
29918,
6859,
29898,
6859,
29920,
8443,
13,
4706,
534,
29878,
29889,
14968,
29898,
4299,
29892,
8516,
29892,
23521,
391,
29889,
29916,
29918,
14968,
29892,
23521,
391,
29889,
29891,
29918,
14968,
29892,
23521,
391,
29889,
29916,
29918,
791,
29892,
23521,
391,
29889,
29891,
29918,
791,
29892,
29941,
29892,
29896,
29872,
29899,
29941,
1699,
29928,
344,
29918,
613,
5574,
29892,
23521,
391,
29889,
29916,
29918,
1688,
29892,
23521,
391,
29889,
29891,
29918,
1688,
8443,
13,
2
] |
bulma/apps.py | makiolo/django-bulma | 330 | 137759 | from django.apps import AppConfig
class BulmaConfig(AppConfig):
name = 'bulma'
| [
1,
515,
9557,
29889,
13371,
1053,
2401,
3991,
13,
13,
13,
1990,
8313,
655,
3991,
29898,
2052,
3991,
1125,
13,
1678,
1024,
353,
525,
8645,
655,
29915,
13,
2
] |
bnn_mcmc_examples/datasets/pima/data1/constants.py | papamarkou/bnn_mcmc_examples | 1 | 197212 | <reponame>papamarkou/bnn_mcmc_examples
# %% Import packages
from bnn_mcmc_examples.datasets import data_paths
# %% Define constants
data_base_name = 'data1'
data_path = data_paths['pima'].joinpath(data_base_name)
| [
1,
529,
276,
1112,
420,
29958,
29886,
481,
314,
935,
283,
29914,
11197,
29876,
29918,
29885,
4912,
29883,
29918,
19057,
13,
29937,
17806,
16032,
9741,
13,
13,
3166,
289,
15755,
29918,
29885,
4912,
29883,
29918,
19057,
29889,
14538,
1691,
1053,
848,
29918,
24772,
13,
13,
29937,
17806,
22402,
17727,
13,
13,
1272,
29918,
3188,
29918,
978,
353,
525,
1272,
29896,
29915,
13,
13,
1272,
29918,
2084,
353,
848,
29918,
24772,
1839,
29886,
2946,
13359,
7122,
2084,
29898,
1272,
29918,
3188,
29918,
978,
29897,
13,
2
] |
TrainHelper/callbacks/__init__.py | MaLiN2223/TrainHelper | 1 | 113493 | <reponame>MaLiN2223/TrainHelper
from .repeater import Repeater
| [
1,
529,
276,
1112,
420,
29958,
21870,
23410,
29940,
29906,
29906,
29906,
29941,
29914,
5323,
262,
10739,
13,
3166,
869,
276,
412,
1008,
1053,
830,
412,
1008,
13,
2
] |
src/api/controllers/connection/CheckConnectionDatabaseResource.py | PythonDataIntegrator/pythondataintegrator | 14 | 49370 | from injector import inject
from domain.connection.CheckDatabaseConnection.CheckDatabaseConnectionCommand import CheckDatabaseConnectionCommand
from domain.connection.CheckDatabaseConnection.CheckDatabaseConnectionRequest import CheckDatabaseConnectionRequest
from infrastructure.api.ResourceBase import ResourceBase
from infrastructure.api.decorators.Controller import controller
from infrastructure.cqrs.Dispatcher import Dispatcher
@controller()
class CheckConnectionDatabaseResource(ResourceBase):
@inject
def __init__(self,
dispatcher: Dispatcher,
*args, **kwargs):
super().__init__(*args, **kwargs)
self.dispatcher = dispatcher
def post(self, req: CheckDatabaseConnectionRequest):
"""
Check Database Connection
"""
command = CheckDatabaseConnectionCommand(request=req)
self.dispatcher.dispatch(command) | [
1,
515,
11658,
272,
1053,
11658,
13,
13,
3166,
5354,
29889,
9965,
29889,
5596,
9112,
5350,
29889,
5596,
9112,
5350,
6255,
1053,
5399,
9112,
5350,
6255,
13,
3166,
5354,
29889,
9965,
29889,
5596,
9112,
5350,
29889,
5596,
9112,
5350,
3089,
1053,
5399,
9112,
5350,
3089,
13,
3166,
22035,
12425,
29889,
2754,
29889,
6848,
5160,
1053,
18981,
5160,
13,
3166,
22035,
12425,
29889,
2754,
29889,
19557,
4097,
29889,
2956,
1053,
4701,
13,
3166,
22035,
12425,
29889,
29883,
29939,
2288,
29889,
23669,
1053,
3295,
5041,
261,
13,
13,
13,
29992,
8299,
580,
13,
1990,
5399,
5350,
9112,
6848,
29898,
6848,
5160,
1125,
13,
1678,
732,
21920,
13,
1678,
822,
4770,
2344,
12035,
1311,
29892,
13,
462,
13916,
261,
29901,
3295,
5041,
261,
29892,
13,
462,
334,
5085,
29892,
3579,
19290,
1125,
13,
4706,
2428,
2141,
1649,
2344,
1649,
10456,
5085,
29892,
3579,
19290,
29897,
13,
4706,
1583,
29889,
13369,
261,
353,
13916,
261,
13,
13,
1678,
822,
1400,
29898,
1311,
29892,
12428,
29901,
5399,
9112,
5350,
3089,
1125,
13,
4706,
9995,
13,
4706,
5399,
5470,
15160,
13,
4706,
9995,
13,
4706,
1899,
353,
5399,
9112,
5350,
6255,
29898,
3827,
29922,
7971,
29897,
13,
4706,
1583,
29889,
13369,
261,
29889,
13369,
29898,
6519,
29897,
2
] |
depsolver/solver/policy.py | teoliphant/depsolver | 1 | 149791 | <filename>depsolver/solver/policy.py<gh_stars>1-10
import collections
import six
from depsolver.errors \
import \
DepSolverError
from depsolver.version \
import \
MaxVersion
class DefaultPolicy(object):
"""A Policy class that implements 'reasonable' defaults.
Its behavior is:
1. when multiple candidates are available, pick up the highest version first
2. if a package is already installed, it takes precendence over higher
version (over-ruling 1.)
"""
def _compute_prefered_packages_installed_first(self, pool, installed_map, package_ids):
"""Returns a package name -> package queue mapping, with each queue
being priority-sorted.
It puts packages already installed first
Arguments
---------
pool: Pool
Pool instance used to resolve packages, provides, etc...
Returns
-------
package_queue: dict
package name -> sorted queue of package ids.
"""
package_name_to_package_ids = collections.defaultdict(collections.deque)
for package_id in package_ids:
package = pool.package_by_id(package_id)
if package_id in installed_map:
package_name_to_package_ids[package.name].appendleft(package_id)
else:
package_name_to_package_ids[package.name].append(package_id)
return package_name_to_package_ids
def prefered_package_ids(self, pool, installed_map, decision_queue):
"""Return a list of preferred package ids to install for the given
package ids list, sorted by priority (from highest to lowest)."""
package_queues = \
self._compute_prefered_packages_installed_first(pool, installed_map,
decision_queue)
def package_id_to_version(package_id):
if package_id in installed_map:
return MaxVersion()
else:
package = pool.package_by_id(package_id)
return package.version
for package_name, package_queue in package_queues.items():
sorted_package_queue = sorted(package_queue, key=package_id_to_version)[::-1]
package_queues[package_name] = sorted_package_queue
for package_name, package_queue in package_queues.items():
package_queues[package_name] = prune_to_best_version(pool, package_queue)
if len(package_queues) > 1:
raise NotImplementedError("More than one package name in select " \
"and install not supported yet")
else:
try:
candidates = six.next(iter(package_queues.values()))
except StopIteration:
raise DepSolverError("No candidate in package_queues ?")
return collections.deque(candidates)
def prune_to_best_version(pool, package_ids):
# Assume package_ids is already sorted (from max to min)
if len(package_ids) < 1:
return []
else:
best_package = pool.package_by_id(package_ids[0])
best_version_only = [package_ids[0]]
for package_id in package_ids[1:]:
package = pool.package_by_id(package_id)
if package.version < best_package.version:
break
else:
best_version_only.append(package_id)
return best_version_only
| [
1,
529,
9507,
29958,
311,
567,
324,
369,
29914,
2929,
369,
29914,
22197,
29889,
2272,
29966,
12443,
29918,
303,
1503,
29958,
29896,
29899,
29896,
29900,
13,
5215,
16250,
13,
13,
5215,
4832,
13,
13,
3166,
316,
567,
324,
369,
29889,
12523,
320,
13,
1678,
1053,
320,
13,
4706,
10034,
13296,
369,
2392,
13,
3166,
316,
567,
324,
369,
29889,
3259,
320,
13,
1678,
1053,
320,
13,
4706,
5918,
6594,
13,
13,
1990,
13109,
15644,
29898,
3318,
1125,
13,
1678,
9995,
29909,
25219,
770,
393,
10703,
525,
23147,
519,
29915,
21274,
29889,
13,
13,
1678,
8011,
6030,
338,
29901,
13,
13,
308,
29896,
29889,
746,
2999,
21669,
526,
3625,
29892,
5839,
701,
278,
9939,
1873,
937,
13,
308,
29906,
29889,
565,
263,
3577,
338,
2307,
5130,
29892,
372,
4893,
8303,
355,
663,
975,
6133,
13,
4706,
1873,
313,
957,
29899,
29878,
19478,
29871,
29896,
1846,
13,
1678,
9995,
13,
1678,
822,
903,
26017,
29918,
1457,
571,
287,
29918,
8318,
29918,
25537,
29918,
4102,
29898,
1311,
29892,
11565,
29892,
5130,
29918,
1958,
29892,
3577,
29918,
4841,
1125,
13,
4706,
9995,
11609,
29879,
263,
3577,
1024,
1599,
3577,
9521,
10417,
29892,
411,
1269,
9521,
13,
4706,
1641,
20136,
29899,
24582,
29889,
13,
13,
4706,
739,
15223,
9741,
2307,
5130,
937,
13,
13,
4706,
11842,
9331,
13,
4706,
448,
1378,
13,
4706,
11565,
29901,
28625,
13,
9651,
28625,
2777,
1304,
304,
8814,
9741,
29892,
8128,
29892,
2992,
856,
13,
13,
4706,
16969,
13,
4706,
448,
22158,
13,
4706,
3577,
29918,
9990,
29901,
9657,
13,
9651,
3577,
1024,
1599,
12705,
9521,
310,
3577,
18999,
29889,
29871,
13,
4706,
9995,
13,
4706,
3577,
29918,
978,
29918,
517,
29918,
5113,
29918,
4841,
353,
16250,
29889,
4381,
8977,
29898,
29027,
29889,
311,
802,
29897,
13,
4706,
363,
3577,
29918,
333,
297,
3577,
29918,
4841,
29901,
13,
9651,
3577,
353,
11565,
29889,
5113,
29918,
1609,
29918,
333,
29898,
5113,
29918,
333,
29897,
13,
9651,
565,
3577,
29918,
333,
297,
5130,
29918,
1958,
29901,
13,
18884,
3577,
29918,
978,
29918,
517,
29918,
5113,
29918,
4841,
29961,
5113,
29889,
978,
1822,
4397,
1563,
29898,
5113,
29918,
333,
29897,
13,
9651,
1683,
29901,
13,
18884,
3577,
29918,
978,
29918,
517,
29918,
5113,
29918,
4841,
29961,
5113,
29889,
978,
1822,
4397,
29898,
5113,
29918,
333,
29897,
13,
13,
4706,
736,
3577,
29918,
978,
29918,
517,
29918,
5113,
29918,
4841,
13,
13,
1678,
822,
5821,
287,
29918,
5113,
29918,
4841,
29898,
1311,
29892,
11565,
29892,
5130,
29918,
1958,
29892,
10608,
29918,
9990,
1125,
13,
4706,
9995,
11609,
263,
1051,
310,
16389,
3577,
18999,
304,
2601,
363,
278,
2183,
13,
4706,
3577,
18999,
1051,
29892,
12705,
491,
20136,
313,
3166,
9939,
304,
19604,
467,
15945,
29908,
13,
4706,
3577,
29918,
802,
1041,
353,
320,
13,
9651,
1583,
3032,
26017,
29918,
1457,
571,
287,
29918,
8318,
29918,
25537,
29918,
4102,
29898,
10109,
29892,
5130,
29918,
1958,
29892,
13,
18884,
10608,
29918,
9990,
29897,
13,
13,
4706,
822,
3577,
29918,
333,
29918,
517,
29918,
3259,
29898,
5113,
29918,
333,
1125,
13,
9651,
565,
3577,
29918,
333,
297,
5130,
29918,
1958,
29901,
13,
18884,
736,
5918,
6594,
580,
13,
9651,
1683,
29901,
13,
18884,
3577,
353,
11565,
29889,
5113,
29918,
1609,
29918,
333,
29898,
5113,
29918,
333,
29897,
13,
18884,
736,
3577,
29889,
3259,
13,
13,
4706,
363,
3577,
29918,
978,
29892,
3577,
29918,
9990,
297,
3577,
29918,
802,
1041,
29889,
7076,
7295,
13,
9651,
12705,
29918,
5113,
29918,
9990,
353,
12705,
29898,
5113,
29918,
9990,
29892,
1820,
29922,
5113,
29918,
333,
29918,
517,
29918,
3259,
9601,
1057,
29899,
29896,
29962,
13,
9651,
3577,
29918,
802,
1041,
29961,
5113,
29918,
978,
29962,
353,
12705,
29918,
5113,
29918,
9990,
13,
13,
4706,
363,
3577,
29918,
978,
29892,
3577,
29918,
9990,
297,
3577,
29918,
802,
1041,
29889,
7076,
7295,
13,
9651,
3577,
29918,
802,
1041,
29961,
5113,
29918,
978,
29962,
353,
544,
1540,
29918,
517,
29918,
13318,
29918,
3259,
29898,
10109,
29892,
3577,
29918,
9990,
29897,
13,
13,
4706,
565,
7431,
29898,
5113,
29918,
802,
1041,
29897,
1405,
29871,
29896,
29901,
13,
9651,
12020,
2216,
1888,
2037,
287,
2392,
703,
20761,
1135,
697,
3577,
1024,
297,
1831,
376,
320,
13,
462,
462,
418,
376,
392,
2601,
451,
6969,
3447,
1159,
13,
4706,
1683,
29901,
13,
9651,
1018,
29901,
13,
18884,
21669,
353,
4832,
29889,
4622,
29898,
1524,
29898,
5113,
29918,
802,
1041,
29889,
5975,
22130,
13,
9651,
5174,
22303,
13463,
362,
29901,
13,
18884,
12020,
10034,
13296,
369,
2392,
703,
3782,
14020,
297,
3577,
29918,
802,
1041,
1577,
1159,
13,
9651,
736,
16250,
29889,
311,
802,
29898,
29883,
5380,
1078,
29897,
13,
13,
1753,
544,
1540,
29918,
517,
29918,
13318,
29918,
3259,
29898,
10109,
29892,
3577,
29918,
4841,
1125,
13,
1678,
396,
22680,
3577,
29918,
4841,
338,
2307,
12705,
313,
3166,
4236,
304,
1375,
29897,
13,
1678,
565,
7431,
29898,
5113,
29918,
4841,
29897,
529,
29871,
29896,
29901,
13,
4706,
736,
5159,
13,
1678,
1683,
29901,
13,
4706,
1900,
29918,
5113,
353,
11565,
29889,
5113,
29918,
1609,
29918,
333,
29898,
5113,
29918,
4841,
29961,
29900,
2314,
13,
4706,
1900,
29918,
3259,
29918,
6194,
353,
518,
5113,
29918,
4841,
29961,
29900,
5262,
13,
4706,
363,
3577,
29918,
333,
297,
3577,
29918,
4841,
29961,
29896,
29901,
5387,
13,
9651,
3577,
353,
11565,
29889,
5113,
29918,
1609,
29918,
333,
29898,
5113,
29918,
333,
29897,
13,
9651,
565,
3577,
29889,
3259,
529,
1900,
29918,
5113,
29889,
3259,
29901,
13,
18884,
2867,
13,
9651,
1683,
29901,
13,
18884,
1900,
29918,
3259,
29918,
6194,
29889,
4397,
29898,
5113,
29918,
333,
29897,
13,
13,
4706,
736,
1900,
29918,
3259,
29918,
6194,
13,
2
] |
acceptance_tests/features/pages/inbox_internal.py | ONSdigital/ras-integration-tests | 2 | 160501 | from acceptance_tests import browser
from common.browser_utilities import wait_for_url_matches
from config import Config
def go_to_using_context(context, conversation_tab='open'):
tab = conversation_tab.replace(' ', '+')
target_url = f"{Config.RESPONSE_OPERATIONS_UI}/messages/{context.short_name}?conversation_tab={tab}"
browser.visit(target_url)
wait_for_url_matches(target_url, timeout=3, retry=0.5, post_change_delay=0.1)
def go_to_select_survey():
target_url = f"{Config.RESPONSE_OPERATIONS_UI}/messages/select-survey"
browser.visit(target_url)
wait_for_url_matches(target_url, timeout=3, retry=0.5, post_change_delay=0.1)
def get_page_title():
return browser.title
def get_messages():
messages = []
table = browser.find_by_id('tbl-messages')
rows = table.find_by_tag('tbody').find_by_tag('tr')
for row in rows:
messages.append({
'ru_ref': row.find_by_name('tbl-messages-RU_Ref').value,
'business_name': row.find_by_name('tbl-messages-business').value,
'subject': row.find_by_name('tbl-messages-subject').value,
'from': row.find_by_name('tbl-messages-from').value,
'to': row.find_by_name('tbl-messages-to').value,
'received': row.find_by_name('tbl-messages-received').value
})
return messages
def get_table_heading():
table = browser.find_by_id('tbl-messages')
headings = table.find_by_tag('thead').find_by_tag('tr')
return headings[0].value
def get_no_messages_text():
return browser.find_by_text('No new conversations')
def get_no_closed_conversations_text():
return browser.find_by_text('No closed conversations')
def get_no_my_conversations_text():
return browser.find_by_text('There are currently no messages')
def get_dropdown_list():
return browser.driver.find_element_by_id('survey-list')
def get_filter_page_title():
return browser.find_by_text('Filter messages by survey')
def get_unread_messages():
return browser.find_by_name('message-unread')
def get_pagination_previous_link():
return browser.driver.find_element_by_class_name('previous')
def get_pagination():
return browser.driver.find_element_by_class_name('pagination')
def get_pagination_next_link():
return browser.driver.find_element_by_class_name('next')
def get_message_link_index(number_of_messages):
return browser.find_by_id(f"message-link-{number_of_messages}")
def closed_tab_present():
return browser.driver.find_element_by_link_text('Closed')
| [
1,
515,
3544,
749,
29918,
21150,
1053,
4714,
13,
3166,
3619,
29889,
15965,
29918,
4422,
1907,
1053,
4480,
29918,
1454,
29918,
2271,
29918,
20317,
13,
3166,
2295,
1053,
12782,
13,
13,
13,
1753,
748,
29918,
517,
29918,
4746,
29918,
4703,
29898,
4703,
29892,
14983,
29918,
3891,
2433,
3150,
29374,
13,
1678,
4434,
353,
14983,
29918,
3891,
29889,
6506,
877,
13420,
525,
29974,
1495,
13,
1678,
3646,
29918,
2271,
353,
285,
29908,
29912,
3991,
29889,
1525,
5550,
1164,
1660,
29918,
4590,
1001,
8098,
29903,
29918,
3120,
6822,
19158,
19248,
4703,
29889,
12759,
29918,
978,
29913,
29973,
535,
874,
362,
29918,
3891,
3790,
3891,
5038,
13,
1678,
4714,
29889,
1730,
277,
29898,
5182,
29918,
2271,
29897,
13,
1678,
4480,
29918,
1454,
29918,
2271,
29918,
20317,
29898,
5182,
29918,
2271,
29892,
11815,
29922,
29941,
29892,
337,
2202,
29922,
29900,
29889,
29945,
29892,
1400,
29918,
3167,
29918,
18829,
29922,
29900,
29889,
29896,
29897,
13,
13,
13,
1753,
748,
29918,
517,
29918,
2622,
29918,
7610,
6950,
7295,
13,
1678,
3646,
29918,
2271,
353,
285,
29908,
29912,
3991,
29889,
1525,
5550,
1164,
1660,
29918,
4590,
1001,
8098,
29903,
29918,
3120,
6822,
19158,
29914,
2622,
29899,
7610,
6950,
29908,
13,
1678,
4714,
29889,
1730,
277,
29898,
5182,
29918,
2271,
29897,
13,
1678,
4480,
29918,
1454,
29918,
2271,
29918,
20317,
29898,
5182,
29918,
2271,
29892,
11815,
29922,
29941,
29892,
337,
2202,
29922,
29900,
29889,
29945,
29892,
1400,
29918,
3167,
29918,
18829,
29922,
29900,
29889,
29896,
29897,
13,
13,
13,
1753,
679,
29918,
3488,
29918,
3257,
7295,
13,
1678,
736,
4714,
29889,
3257,
13,
13,
13,
1753,
679,
29918,
19158,
7295,
13,
1678,
7191,
353,
5159,
13,
1678,
1591,
353,
4714,
29889,
2886,
29918,
1609,
29918,
333,
877,
16400,
29899,
19158,
1495,
13,
1678,
4206,
353,
1591,
29889,
2886,
29918,
1609,
29918,
4039,
877,
15370,
2824,
2886,
29918,
1609,
29918,
4039,
877,
509,
1495,
13,
1678,
363,
1948,
297,
4206,
29901,
13,
4706,
7191,
29889,
4397,
3319,
13,
9651,
525,
582,
29918,
999,
2396,
1948,
29889,
2886,
29918,
1609,
29918,
978,
877,
16400,
29899,
19158,
29899,
28283,
29918,
5620,
2824,
1767,
29892,
13,
9651,
525,
8262,
3335,
29918,
978,
2396,
1948,
29889,
2886,
29918,
1609,
29918,
978,
877,
16400,
29899,
19158,
29899,
8262,
3335,
2824,
1767,
29892,
13,
9651,
525,
16009,
2396,
1948,
29889,
2886,
29918,
1609,
29918,
978,
877,
16400,
29899,
19158,
29899,
16009,
2824,
1767,
29892,
13,
9651,
525,
3166,
2396,
1948,
29889,
2886,
29918,
1609,
29918,
978,
877,
16400,
29899,
19158,
29899,
3166,
2824,
1767,
29892,
13,
9651,
525,
517,
2396,
1948,
29889,
2886,
29918,
1609,
29918,
978,
877,
16400,
29899,
19158,
29899,
517,
2824,
1767,
29892,
13,
9651,
525,
13556,
2347,
2396,
1948,
29889,
2886,
29918,
1609,
29918,
978,
877,
16400,
29899,
19158,
29899,
13556,
2347,
2824,
1767,
13,
4706,
5615,
13,
1678,
736,
7191,
13,
13,
13,
1753,
679,
29918,
2371,
29918,
2813,
292,
7295,
13,
1678,
1591,
353,
4714,
29889,
2886,
29918,
1609,
29918,
333,
877,
16400,
29899,
19158,
1495,
13,
1678,
2343,
886,
353,
1591,
29889,
2886,
29918,
1609,
29918,
4039,
877,
19081,
2824,
2886,
29918,
1609,
29918,
4039,
877,
509,
1495,
13,
1678,
736,
2343,
886,
29961,
29900,
1822,
1767,
13,
13,
13,
1753,
679,
29918,
1217,
29918,
19158,
29918,
726,
7295,
13,
1678,
736,
4714,
29889,
2886,
29918,
1609,
29918,
726,
877,
3782,
716,
9678,
800,
1495,
13,
13,
13,
1753,
679,
29918,
1217,
29918,
15603,
29918,
535,
874,
800,
29918,
726,
7295,
13,
1678,
736,
4714,
29889,
2886,
29918,
1609,
29918,
726,
877,
3782,
5764,
9678,
800,
1495,
13,
13,
13,
1753,
679,
29918,
1217,
29918,
1357,
29918,
535,
874,
800,
29918,
726,
7295,
13,
1678,
736,
4714,
29889,
2886,
29918,
1609,
29918,
726,
877,
8439,
526,
5279,
694,
7191,
1495,
13,
13,
13,
1753,
679,
29918,
19305,
29918,
1761,
7295,
13,
1678,
736,
4714,
29889,
9465,
29889,
2886,
29918,
5029,
29918,
1609,
29918,
333,
877,
7610,
6950,
29899,
1761,
1495,
13,
13,
13,
1753,
679,
29918,
4572,
29918,
3488,
29918,
3257,
7295,
13,
1678,
736,
4714,
29889,
2886,
29918,
1609,
29918,
726,
877,
5072,
7191,
491,
18994,
1495,
13,
13,
13,
1753,
679,
29918,
348,
949,
29918,
19158,
7295,
13,
1678,
736,
4714,
29889,
2886,
29918,
1609,
29918,
978,
877,
4906,
29899,
348,
949,
1495,
13,
13,
13,
1753,
679,
29918,
13573,
3381,
29918,
24957,
29918,
2324,
7295,
13,
1678,
736,
4714,
29889,
9465,
29889,
2886,
29918,
5029,
29918,
1609,
29918,
1990,
29918,
978,
877,
24957,
1495,
13,
13,
13,
1753,
679,
29918,
13573,
3381,
7295,
13,
1678,
736,
4714,
29889,
9465,
29889,
2886,
29918,
5029,
29918,
1609,
29918,
1990,
29918,
978,
877,
13573,
3381,
1495,
13,
13,
13,
1753,
679,
29918,
13573,
3381,
29918,
4622,
29918,
2324,
7295,
13,
1678,
736,
4714,
29889,
9465,
29889,
2886,
29918,
5029,
29918,
1609,
29918,
1990,
29918,
978,
877,
4622,
1495,
13,
13,
13,
1753,
679,
29918,
4906,
29918,
2324,
29918,
2248,
29898,
4537,
29918,
974,
29918,
19158,
1125,
13,
1678,
736,
4714,
29889,
2886,
29918,
1609,
29918,
333,
29898,
29888,
29908,
4906,
29899,
2324,
29899,
29912,
4537,
29918,
974,
29918,
19158,
27195,
13,
13,
13,
1753,
5764,
29918,
3891,
29918,
6338,
7295,
13,
1678,
736,
4714,
29889,
9465,
29889,
2886,
29918,
5029,
29918,
1609,
29918,
2324,
29918,
726,
877,
6821,
2662,
1495,
13,
2
] |
deepinesStore/cardg.py | xoascf/store_deepines | 6 | 33873 | <filename>deepinesStore/cardg.py<gh_stars>1-10
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'guis/card.ui'
#
# Created by: PyQt5 UI code generator 5.13.0
#
# WARNING! All changes made in this file will be lost!
from PyQt5 import QtCore, QtGui, QtWidgets
class QLabelClickable(QtWidgets.QLabel):
clicked = QtCore.pyqtSignal()
def __init__(self, *args):
QtWidgets.QLabel.__init__(self, *args)
def mouseReleaseEvent(self, ev):
self.clicked.emit()
class Ui_Frame(object):
def setupUi(self, Frame):
Frame.setObjectName("Frame")
Frame.resize(230, 249)
Frame.setMinimumSize(QtCore.QSize(226, 249))
Frame.setMaximumSize(QtCore.QSize(230, 16777215))
self.verticalLayout = QtWidgets.QVBoxLayout(Frame)
self.verticalLayout.setContentsMargins(0, 0, 0, 0)
self.verticalLayout.setSpacing(0)
self.verticalLayout.setObjectName("verticalLayout")
self.image_app = QLabelClickable(Frame)
self.image_app.setText("")
self.image_app.setScaledContents(True)
self.image_app.setAlignment(QtCore.Qt.AlignCenter)
self.image_app.setCursor(QtGui.QCursor(QtCore.Qt.PointingHandCursor))
self.image_app.setObjectName("image_app")
self.image_app.setStyleSheet("#image_app{margin-top: 10px;}")
self.verticalLayout.addWidget(self.image_app)
self.lbl_name_app = QLabelClickable(Frame)
self.lbl_name_app.setStyleSheet("background-color: transparent;"
"margin-top:5px;")
self.lbl_name_app.setText("")
self.lbl_name_app.setAlignment(QtCore.Qt.AlignCenter)
self.lbl_name_app.setCursor(QtGui.QCursor(QtCore.Qt.PointingHandCursor))
font = QtGui.QFont()
font.setFamily("Segoe UI Semibold")
font.setPointSize(11)
font.setItalic(False)
self.lbl_name_app.setFont(font)
self.lbl_name_app.setWordWrap(True)
self.lbl_name_app.setObjectName("lbl_name_app")
self.verticalLayout.addWidget(self.lbl_name_app)
self.btn_select_app = QLabelClickable(Frame)
font = QtGui.QFont()
font.setFamily("Segoe UI Semibold")
font.setPointSize(9)
font.setItalic(False)
self.btn_select_app.setFont(font)
self.btn_select_app.setWordWrap(True)
self.btn_select_app.setAlignment(QtCore.Qt.AlignCenter)
self.btn_select_app.setCursor(QtGui.QCursor(QtCore.Qt.PointingHandCursor))
self.btn_select_app.setObjectName("btn_select_app")
self.verticalLayout.addWidget(self.btn_select_app)
self.retranslateUi(Frame)
QtCore.QMetaObject.connectSlotsByName(Frame)
def retranslateUi(self, Frame):
_translate = QtCore.QCoreApplication.translate
Frame.setWindowTitle(_translate("Frame", "Card"))
self.btn_select_app.setText(_translate("Frame", "Instalar"))
| [
1,
529,
9507,
29958,
24535,
1475,
9044,
29914,
7543,
29887,
29889,
2272,
29966,
12443,
29918,
303,
1503,
29958,
29896,
29899,
29896,
29900,
13,
29937,
448,
29930,
29899,
14137,
29901,
23616,
29899,
29947,
448,
29930,
29899,
13,
13,
29937,
3812,
5314,
5759,
515,
5183,
14313,
934,
525,
2543,
275,
29914,
7543,
29889,
1481,
29915,
13,
29937,
13,
29937,
6760,
630,
491,
29901,
10772,
17303,
29945,
3740,
775,
15299,
29871,
29945,
29889,
29896,
29941,
29889,
29900,
13,
29937,
13,
29937,
399,
25614,
29991,
2178,
3620,
1754,
297,
445,
934,
674,
367,
5714,
29991,
13,
13,
13,
3166,
10772,
17303,
29945,
1053,
14705,
9203,
29892,
14705,
28707,
29892,
14705,
8801,
29879,
13,
13,
13,
13,
1990,
660,
4775,
4164,
519,
29898,
17303,
8801,
29879,
29889,
2239,
1107,
1125,
13,
13,
1678,
11484,
353,
14705,
9203,
29889,
2272,
17915,
10140,
284,
580,
13,
268,
13,
1678,
822,
4770,
2344,
12035,
1311,
29892,
334,
5085,
1125,
13,
4706,
14705,
8801,
29879,
29889,
2239,
1107,
17255,
2344,
12035,
1311,
29892,
334,
5085,
29897,
13,
1678,
13,
1678,
822,
9495,
19729,
2624,
29898,
1311,
29892,
3415,
1125,
13,
4706,
1583,
29889,
3808,
287,
29889,
21976,
580,
13,
13,
13,
13,
1990,
501,
29875,
29918,
4308,
29898,
3318,
1125,
13,
1678,
822,
6230,
29965,
29875,
29898,
1311,
29892,
12218,
1125,
13,
4706,
12218,
29889,
842,
2061,
1170,
703,
4308,
1159,
13,
4706,
12218,
29889,
21476,
29898,
29906,
29941,
29900,
29892,
29871,
29906,
29946,
29929,
29897,
13,
4706,
12218,
29889,
842,
8140,
12539,
3505,
29898,
17303,
9203,
29889,
29984,
3505,
29898,
29906,
29906,
29953,
29892,
29871,
29906,
29946,
29929,
876,
13,
4706,
12218,
29889,
842,
7976,
12539,
3505,
29898,
17303,
9203,
29889,
29984,
3505,
29898,
29906,
29941,
29900,
29892,
29871,
29896,
29953,
29955,
29955,
29955,
29906,
29896,
29945,
876,
13,
4706,
1583,
29889,
18575,
3453,
353,
14705,
8801,
29879,
29889,
29984,
29963,
3313,
3453,
29898,
4308,
29897,
13,
4706,
1583,
29889,
18575,
3453,
29889,
842,
21002,
29924,
1191,
1144,
29898,
29900,
29892,
29871,
29900,
29892,
29871,
29900,
29892,
29871,
29900,
29897,
13,
4706,
1583,
29889,
18575,
3453,
29889,
842,
5592,
9390,
29898,
29900,
29897,
13,
4706,
1583,
29889,
18575,
3453,
29889,
842,
2061,
1170,
703,
18575,
3453,
1159,
13,
4706,
1583,
29889,
3027,
29918,
932,
353,
660,
4775,
4164,
519,
29898,
4308,
29897,
13,
4706,
1583,
29889,
3027,
29918,
932,
29889,
12038,
703,
1159,
13,
4706,
1583,
29889,
3027,
29918,
932,
29889,
842,
4421,
7943,
21002,
29898,
5574,
29897,
13,
4706,
1583,
29889,
3027,
29918,
932,
29889,
842,
14658,
29898,
17303,
9203,
29889,
17303,
29889,
2499,
647,
13409,
29897,
13,
4706,
1583,
29889,
3027,
29918,
932,
29889,
842,
19890,
29898,
17303,
28707,
29889,
29984,
19890,
29898,
17303,
9203,
29889,
17303,
29889,
5228,
292,
3481,
19890,
876,
13,
4706,
1583,
29889,
3027,
29918,
932,
29889,
842,
2061,
1170,
703,
3027,
29918,
932,
1159,
13,
4706,
1583,
29889,
3027,
29918,
932,
29889,
842,
5568,
10654,
14822,
3027,
29918,
932,
29912,
9264,
29899,
3332,
29901,
29871,
29896,
29900,
1756,
13951,
1159,
13,
4706,
1583,
29889,
18575,
3453,
29889,
1202,
8801,
29898,
1311,
29889,
3027,
29918,
932,
29897,
13,
4706,
1583,
29889,
26648,
29918,
978,
29918,
932,
353,
660,
4775,
4164,
519,
29898,
4308,
29897,
13,
4706,
1583,
29889,
26648,
29918,
978,
29918,
932,
29889,
842,
5568,
10654,
703,
7042,
29899,
2780,
29901,
17772,
15458,
13,
9651,
376,
9264,
29899,
3332,
29901,
29945,
1756,
29936,
1159,
13,
4706,
1583,
29889,
26648,
29918,
978,
29918,
932,
29889,
12038,
703,
1159,
13,
4706,
1583,
29889,
26648,
29918,
978,
29918,
932,
29889,
842,
14658,
29898,
17303,
9203,
29889,
17303,
29889,
2499,
647,
13409,
29897,
13,
4706,
1583,
29889,
26648,
29918,
978,
29918,
932,
29889,
842,
19890,
29898,
17303,
28707,
29889,
29984,
19890,
29898,
17303,
9203,
29889,
17303,
29889,
5228,
292,
3481,
19890,
876,
13,
4706,
4079,
353,
14705,
28707,
29889,
29984,
9824,
580,
13,
4706,
4079,
29889,
842,
27104,
703,
29903,
2412,
29872,
3740,
9444,
747,
1025,
1159,
13,
4706,
4079,
29889,
842,
5228,
3505,
29898,
29896,
29896,
29897,
13,
4706,
4079,
29889,
842,
10512,
293,
29898,
8824,
29897,
13,
4706,
1583,
29889,
26648,
29918,
978,
29918,
932,
29889,
842,
9824,
29898,
5657,
29897,
13,
4706,
1583,
29889,
26648,
29918,
978,
29918,
932,
29889,
842,
14463,
29956,
2390,
29898,
5574,
29897,
13,
4706,
1583,
29889,
26648,
29918,
978,
29918,
932,
29889,
842,
2061,
1170,
703,
26648,
29918,
978,
29918,
932,
1159,
13,
4706,
1583,
29889,
18575,
3453,
29889,
1202,
8801,
29898,
1311,
29889,
26648,
29918,
978,
29918,
932,
29897,
13,
4706,
1583,
29889,
7290,
29918,
2622,
29918,
932,
353,
660,
4775,
4164,
519,
29898,
4308,
29897,
13,
4706,
4079,
353,
14705,
28707,
29889,
29984,
9824,
580,
13,
4706,
4079,
29889,
842,
27104,
703,
29903,
2412,
29872,
3740,
9444,
747,
1025,
1159,
13,
4706,
4079,
29889,
842,
5228,
3505,
29898,
29929,
29897,
13,
4706,
4079,
29889,
842,
10512,
293,
29898,
8824,
29897,
13,
4706,
1583,
29889,
7290,
29918,
2622,
29918,
932,
29889,
842,
9824,
29898,
5657,
29897,
13,
4706,
1583,
29889,
7290,
29918,
2622,
29918,
932,
29889,
842,
14463,
29956,
2390,
29898,
5574,
29897,
13,
4706,
1583,
29889,
7290,
29918,
2622,
29918,
932,
29889,
842,
14658,
29898,
17303,
9203,
29889,
17303,
29889,
2499,
647,
13409,
29897,
13,
4706,
1583,
29889,
7290,
29918,
2622,
29918,
932,
29889,
842,
19890,
29898,
17303,
28707,
29889,
29984,
19890,
29898,
17303,
9203,
29889,
17303,
29889,
5228,
292,
3481,
19890,
876,
13,
4706,
1583,
29889,
7290,
29918,
2622,
29918,
932,
29889,
842,
2061,
1170,
703,
7290,
29918,
2622,
29918,
932,
1159,
13,
4706,
1583,
29889,
18575,
3453,
29889,
1202,
8801,
29898,
1311,
29889,
7290,
29918,
2622,
29918,
932,
29897,
13,
13,
4706,
1583,
29889,
276,
21652,
29965,
29875,
29898,
4308,
29897,
13,
4706,
14705,
9203,
29889,
29984,
19346,
2061,
29889,
6915,
16973,
1862,
2059,
1170,
29898,
4308,
29897,
13,
13,
1678,
822,
337,
21652,
29965,
29875,
29898,
1311,
29892,
12218,
1125,
13,
4706,
903,
21652,
353,
14705,
9203,
29889,
29984,
9203,
4873,
29889,
21652,
13,
4706,
12218,
29889,
842,
5907,
7030,
7373,
21652,
703,
4308,
613,
376,
13200,
5783,
13,
4706,
1583,
29889,
7290,
29918,
2622,
29918,
932,
29889,
12038,
7373,
21652,
703,
4308,
613,
376,
3379,
284,
279,
5783,
13,
2
] |
setup.py | rabernat/xarray | 0 | 196445 | #!/usr/bin/env python
import os
import re
import sys
import warnings
from setuptools import setup, find_packages
from setuptools import Command
MAJOR = 0
MINOR = 10
MICRO = 0
ISRELEASED = False
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
QUALIFIER = 'rc2'
DISTNAME = 'xarray'
LICENSE = 'Apache'
AUTHOR = 'xarray Developers'
AUTHOR_EMAIL = '<EMAIL>'
URL = 'https://github.com/pydata/xarray'
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering',
]
INSTALL_REQUIRES = ['numpy >= 1.11', 'pandas >= 0.18.0']
TESTS_REQUIRE = ['pytest >= 2.7.1']
if sys.version_info[0] < 3:
TESTS_REQUIRE.append('mock')
DESCRIPTION = "N-D labeled arrays and datasets in Python"
LONG_DESCRIPTION = """
**xarray** (formerly **xray**) is an open source project and Python package
that aims to bring the labeled data power of pandas_ to the physical sciences,
by providing N-dimensional variants of the core pandas data structures.
Our goal is to provide a pandas-like and pandas-compatible toolkit for
analytics on multi-dimensional arrays, rather than the tabular data for which
pandas excels. Our approach adopts the `Common Data Model`_ for self-
describing scientific data in widespread use in the Earth sciences:
``xarray.Dataset`` is an in-memory representation of a netCDF file.
.. _pandas: http://pandas.pydata.org
.. _Common Data Model: http://www.unidata.ucar.edu/software/thredds/current/netcdf-java/CDM
.. _netCDF: http://www.unidata.ucar.edu/software/netcdf
.. _OPeNDAP: http://www.opendap.org/
Important links
---------------
- HTML documentation: http://xarray.pydata.org
- Issue tracker: http://github.com/pydata/xarray/issues
- Source code: http://github.com/pydata/xarray
- SciPy2015 talk: https://www.youtube.com/watch?v=X0pAhJgySxk
"""
# Code to extract and write the version copied from pandas.
# Used under the terms of pandas's license, see licenses/PANDAS_LICENSE.
FULLVERSION = VERSION
write_version = True
if not ISRELEASED:
import subprocess
FULLVERSION += '.dev'
pipe = None
for cmd in ['git', 'git.cmd']:
try:
pipe = subprocess.Popen(
[cmd, "describe", "--always", "--match", "v[0-9]*"],
stdout=subprocess.PIPE)
(so, serr) = pipe.communicate()
if pipe.returncode == 0:
break
except:
pass
if pipe is None or pipe.returncode != 0:
# no git, or not in git dir
if os.path.exists('xarray/version.py'):
warnings.warn("WARNING: Couldn't get git revision, using existing xarray/version.py")
write_version = False
else:
warnings.warn("WARNING: Couldn't get git revision, using generic version string")
else:
# have git, in git dir, but may have used a shallow clone (travis does this)
rev = so.strip()
# makes distutils blow up on Python 2.7
if sys.version_info[0] >= 3:
rev = rev.decode('ascii')
if not rev.startswith('v') and re.match("[a-zA-Z0-9]{7,9}", rev):
# partial clone, manually construct version string
# this is the format before we started using git-describe
# to get an ordering on dev version strings.
rev = "v%s.dev-%s" % (VERSION, rev)
# Strip leading v from tags format "vx.y.z" to get th version string
FULLVERSION = rev.lstrip('v')
else:
FULLVERSION += QUALIFIER
def write_version_py(filename=None):
cnt = """\
version = '%s'
short_version = '%s'
"""
if not filename:
filename = os.path.join(
os.path.dirname(__file__), 'xarray', 'version.py')
a = open(filename, 'w')
try:
a.write(cnt % (FULLVERSION, VERSION))
finally:
a.close()
if write_version:
write_version_py()
setup(name=DISTNAME,
version=FULLVERSION,
license=LICENSE,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
classifiers=CLASSIFIERS,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
install_requires=INSTALL_REQUIRES,
tests_require=TESTS_REQUIRE,
url=URL,
packages=find_packages(),
package_data={'xarray': ['tests/data/*', 'plot/default_colormap.csv']})
| [
1,
18787,
4855,
29914,
2109,
29914,
6272,
3017,
13,
5215,
2897,
13,
5215,
337,
13,
5215,
10876,
13,
5215,
18116,
13,
13,
3166,
731,
21245,
8789,
1053,
6230,
29892,
1284,
29918,
8318,
13,
3166,
731,
21245,
8789,
1053,
10516,
13,
13,
1529,
29967,
1955,
353,
29871,
29900,
13,
16173,
1955,
353,
29871,
29896,
29900,
13,
29924,
2965,
1672,
353,
29871,
29900,
13,
3235,
14829,
29928,
353,
7700,
13,
16358,
353,
14210,
29881,
29889,
29995,
29881,
29889,
29995,
29881,
29915,
1273,
313,
1529,
29967,
1955,
29892,
341,
1177,
1955,
29892,
341,
2965,
1672,
29897,
13,
13356,
1964,
29902,
3738,
1001,
353,
525,
2214,
29906,
29915,
13,
13,
13,
4571,
1254,
5813,
353,
525,
29916,
2378,
29915,
13,
27888,
1430,
1660,
353,
525,
17396,
1829,
29915,
13,
20656,
29950,
1955,
353,
525,
29916,
2378,
10682,
414,
29915,
13,
20656,
29950,
1955,
29918,
26862,
6227,
353,
12801,
26862,
6227,
16299,
13,
4219,
353,
525,
991,
597,
3292,
29889,
510,
29914,
2272,
1272,
29914,
29916,
2378,
29915,
13,
13875,
1799,
29902,
3738,
23598,
353,
518,
13,
1678,
525,
21956,
358,
16034,
4761,
29871,
29946,
448,
350,
1187,
742,
13,
1678,
525,
29931,
293,
1947,
4761,
438,
5425,
28268,
1490,
4761,
13380,
18540,
19245,
742,
13,
1678,
525,
7094,
1218,
2184,
4761,
6570,
25266,
742,
13,
1678,
525,
2928,
2760,
319,
4749,
663,
4761,
9327,
29914,
1666,
2842,
742,
13,
1678,
525,
9283,
4056,
17088,
4761,
5132,
742,
13,
1678,
525,
9283,
4056,
17088,
4761,
5132,
4761,
29871,
29906,
742,
13,
1678,
525,
9283,
4056,
17088,
4761,
5132,
4761,
29871,
29906,
29889,
29955,
742,
13,
1678,
525,
9283,
4056,
17088,
4761,
5132,
4761,
29871,
29941,
742,
13,
1678,
525,
9283,
4056,
17088,
4761,
5132,
4761,
29871,
29941,
29889,
29946,
742,
13,
1678,
525,
9283,
4056,
17088,
4761,
5132,
4761,
29871,
29941,
29889,
29945,
742,
13,
1678,
525,
9283,
4056,
17088,
4761,
5132,
4761,
29871,
29941,
29889,
29953,
742,
13,
1678,
525,
7031,
293,
4761,
23753,
928,
29914,
12412,
3241,
742,
13,
29962,
13,
13,
25580,
9818,
29918,
1525,
29984,
3120,
15989,
353,
6024,
23749,
6736,
29871,
29896,
29889,
29896,
29896,
742,
525,
15112,
6736,
29871,
29900,
29889,
29896,
29947,
29889,
29900,
2033,
13,
18267,
29903,
29918,
1525,
29984,
3120,
1525,
353,
6024,
2272,
1688,
6736,
29871,
29906,
29889,
29955,
29889,
29896,
2033,
13,
361,
10876,
29889,
3259,
29918,
3888,
29961,
29900,
29962,
529,
29871,
29941,
29901,
13,
1678,
17067,
1254,
29903,
29918,
1525,
29984,
3120,
1525,
29889,
4397,
877,
17640,
1495,
13,
13,
2287,
7187,
24290,
2725,
353,
376,
29940,
29899,
29928,
301,
24025,
7049,
322,
20035,
297,
5132,
29908,
13,
29931,
20614,
29918,
2287,
7187,
24290,
2725,
353,
9995,
13,
1068,
29916,
2378,
1068,
313,
24784,
368,
3579,
29916,
764,
1068,
29897,
338,
385,
1722,
2752,
2060,
322,
5132,
3577,
13,
5747,
263,
9893,
304,
6963,
278,
301,
24025,
848,
3081,
310,
11701,
29918,
304,
278,
9128,
21195,
29892,
13,
1609,
13138,
405,
29899,
12531,
29161,
310,
278,
7136,
11701,
848,
12286,
29889,
13,
13,
29949,
332,
7306,
338,
304,
3867,
263,
11701,
29899,
4561,
322,
11701,
29899,
23712,
5780,
7354,
363,
13,
7054,
22026,
373,
2473,
29899,
12531,
7049,
29892,
3265,
1135,
278,
4434,
1070,
848,
363,
607,
13,
15112,
5566,
1379,
29889,
8680,
2948,
9332,
29879,
278,
421,
18877,
3630,
8125,
29952,
29918,
363,
1583,
29899,
13,
2783,
699,
10549,
16021,
848,
297,
281,
2247,
29886,
949,
671,
297,
278,
11563,
21195,
29901,
13,
16159,
29916,
2378,
29889,
16390,
24541,
16159,
338,
385,
297,
29899,
14834,
8954,
310,
263,
7787,
29907,
4037,
934,
29889,
13,
13,
636,
903,
15112,
29901,
1732,
597,
15112,
29889,
2272,
1272,
29889,
990,
13,
636,
903,
18877,
3630,
8125,
29901,
1732,
597,
1636,
29889,
348,
333,
532,
29889,
1682,
279,
29889,
6085,
29914,
20415,
29914,
386,
1127,
6289,
29914,
3784,
29914,
1212,
29883,
2176,
29899,
1645,
29914,
6530,
29924,
13,
636,
903,
1212,
29907,
4037,
29901,
1732,
597,
1636,
29889,
348,
333,
532,
29889,
1682,
279,
29889,
6085,
29914,
20415,
29914,
1212,
29883,
2176,
13,
636,
903,
4590,
29872,
2797,
3301,
29901,
1732,
597,
1636,
29889,
459,
355,
481,
29889,
990,
29914,
13,
13,
17518,
424,
2988,
13,
9072,
5634,
13,
13,
29899,
4544,
5106,
29901,
1732,
597,
29916,
2378,
29889,
2272,
1272,
29889,
990,
13,
29899,
26246,
1020,
4937,
29901,
1732,
597,
3292,
29889,
510,
29914,
2272,
1272,
29914,
29916,
2378,
29914,
12175,
13,
29899,
7562,
775,
29901,
1732,
597,
3292,
29889,
510,
29914,
2272,
1272,
29914,
29916,
2378,
13,
29899,
5636,
19737,
29906,
29900,
29896,
29945,
5193,
29901,
2045,
597,
1636,
29889,
19567,
29889,
510,
29914,
12344,
29973,
29894,
29922,
29990,
29900,
29886,
17565,
29967,
1927,
29903,
29916,
29895,
13,
15945,
29908,
13,
13,
29937,
5920,
304,
6597,
322,
2436,
278,
1873,
13746,
515,
11701,
29889,
13,
29937,
501,
8485,
1090,
278,
4958,
310,
11701,
29915,
29879,
19405,
29892,
1074,
7794,
11259,
29914,
29925,
9468,
3289,
29918,
27888,
1430,
1660,
29889,
13,
29943,
3299,
16358,
353,
478,
1001,
13381,
13,
3539,
29918,
3259,
353,
5852,
13,
13,
361,
451,
8519,
14829,
29928,
29901,
13,
1678,
1053,
1014,
5014,
13,
1678,
383,
3299,
16358,
4619,
15300,
3359,
29915,
13,
13,
1678,
14282,
353,
6213,
13,
1678,
363,
9920,
297,
6024,
5559,
742,
525,
5559,
29889,
9006,
2033,
29901,
13,
4706,
1018,
29901,
13,
9651,
14282,
353,
1014,
5014,
29889,
29925,
3150,
29898,
13,
18884,
518,
9006,
29892,
376,
2783,
29581,
613,
376,
489,
21936,
613,
376,
489,
4352,
613,
376,
29894,
29961,
29900,
29899,
29929,
14178,
12436,
13,
18884,
27591,
29922,
1491,
5014,
29889,
2227,
4162,
29897,
13,
9651,
313,
578,
29892,
724,
29878,
29897,
353,
14282,
29889,
27820,
403,
580,
13,
9651,
565,
14282,
29889,
2457,
401,
1275,
29871,
29900,
29901,
13,
18884,
2867,
13,
4706,
5174,
29901,
13,
9651,
1209,
13,
13,
1678,
565,
14282,
338,
6213,
470,
14282,
29889,
2457,
401,
2804,
29871,
29900,
29901,
13,
4706,
396,
694,
6315,
29892,
470,
451,
297,
6315,
4516,
13,
4706,
565,
2897,
29889,
2084,
29889,
9933,
877,
29916,
2378,
29914,
3259,
29889,
2272,
29374,
13,
9651,
18116,
29889,
25442,
703,
29956,
25614,
29901,
6527,
29876,
29915,
29873,
679,
6315,
26554,
29892,
773,
5923,
921,
2378,
29914,
3259,
29889,
2272,
1159,
13,
9651,
2436,
29918,
3259,
353,
7700,
13,
4706,
1683,
29901,
13,
9651,
18116,
29889,
25442,
703,
29956,
25614,
29901,
6527,
29876,
29915,
29873,
679,
6315,
26554,
29892,
773,
10035,
1873,
1347,
1159,
13,
1678,
1683,
29901,
13,
4706,
396,
505,
6315,
29892,
297,
6315,
4516,
29892,
541,
1122,
505,
1304,
263,
4091,
340,
17432,
313,
3018,
1730,
947,
445,
29897,
13,
4706,
6664,
353,
577,
29889,
17010,
580,
13,
4706,
396,
3732,
1320,
13239,
13031,
701,
373,
5132,
29871,
29906,
29889,
29955,
13,
4706,
565,
10876,
29889,
3259,
29918,
3888,
29961,
29900,
29962,
6736,
29871,
29941,
29901,
13,
9651,
6664,
353,
6664,
29889,
13808,
877,
294,
18869,
1495,
13,
13,
4706,
565,
451,
6664,
29889,
27382,
2541,
877,
29894,
1495,
322,
337,
29889,
4352,
703,
29961,
29874,
29899,
25265,
29899,
29999,
29900,
29899,
29929,
3199,
29955,
29892,
29929,
17671,
6664,
1125,
13,
9651,
396,
7687,
17432,
29892,
7522,
3386,
1873,
1347,
13,
9651,
396,
445,
338,
278,
3402,
1434,
591,
4687,
773,
6315,
29899,
2783,
29581,
13,
9651,
396,
304,
679,
385,
20520,
373,
2906,
1873,
6031,
29889,
13,
9651,
6664,
353,
376,
29894,
29995,
29879,
29889,
3359,
19222,
29879,
29908,
1273,
313,
16358,
29892,
6664,
29897,
13,
13,
4706,
396,
624,
6472,
8236,
325,
515,
8282,
3402,
376,
29894,
29916,
29889,
29891,
29889,
29920,
29908,
304,
679,
266,
1873,
1347,
13,
4706,
383,
3299,
16358,
353,
6664,
29889,
29880,
17010,
877,
29894,
1495,
13,
13,
2870,
29901,
13,
1678,
383,
3299,
16358,
4619,
660,
29965,
1964,
29902,
3738,
1001,
13,
13,
13,
1753,
2436,
29918,
3259,
29918,
2272,
29898,
9507,
29922,
8516,
1125,
13,
1678,
274,
593,
353,
9995,
29905,
13,
3259,
353,
14210,
29879,
29915,
13,
12759,
29918,
3259,
353,
14210,
29879,
29915,
13,
15945,
29908,
13,
1678,
565,
451,
10422,
29901,
13,
4706,
10422,
353,
2897,
29889,
2084,
29889,
7122,
29898,
13,
9651,
2897,
29889,
2084,
29889,
25721,
22168,
1445,
1649,
511,
525,
29916,
2378,
742,
525,
3259,
29889,
2272,
1495,
13,
13,
1678,
263,
353,
1722,
29898,
9507,
29892,
525,
29893,
1495,
13,
1678,
1018,
29901,
13,
4706,
263,
29889,
3539,
29898,
20047,
1273,
313,
29943,
3299,
16358,
29892,
478,
1001,
13381,
876,
13,
1678,
7146,
29901,
13,
4706,
263,
29889,
5358,
580,
13,
13,
361,
2436,
29918,
3259,
29901,
13,
1678,
2436,
29918,
3259,
29918,
2272,
580,
13,
13,
14669,
29898,
978,
29922,
4571,
1254,
5813,
29892,
13,
418,
1873,
29922,
29943,
3299,
16358,
29892,
13,
418,
19405,
29922,
27888,
1430,
1660,
29892,
13,
418,
4148,
29922,
20656,
29950,
1955,
29892,
13,
418,
4148,
29918,
5269,
29922,
20656,
29950,
1955,
29918,
26862,
6227,
29892,
13,
418,
770,
14903,
29922,
13875,
1799,
29902,
3738,
23598,
29892,
13,
418,
6139,
29922,
2287,
7187,
24290,
2725,
29892,
13,
418,
1472,
29918,
8216,
29922,
29931,
20614,
29918,
2287,
7187,
24290,
2725,
29892,
13,
418,
2601,
29918,
276,
339,
2658,
29922,
25580,
9818,
29918,
1525,
29984,
3120,
15989,
29892,
13,
418,
6987,
29918,
12277,
29922,
18267,
29903,
29918,
1525,
29984,
3120,
1525,
29892,
13,
418,
3142,
29922,
4219,
29892,
13,
418,
9741,
29922,
2886,
29918,
8318,
3285,
13,
418,
3577,
29918,
1272,
3790,
29915,
29916,
2378,
2396,
6024,
21150,
29914,
1272,
5515,
742,
525,
5317,
29914,
4381,
29918,
1054,
555,
481,
29889,
7638,
2033,
1800,
13,
2
] |
models/Conditionners/CouplingConditioner.py | jonathandumas/generative-models-power-systems | 11 | 1600329 | <filename>models/Conditionners/CouplingConditioner.py
from .Conditioner import Conditioner
import torch
import torch.nn as nn
class CouplingMLP(nn.Module):
def __init__(self, in_size, hidden, out_size, cond_in = 0):
super(CouplingMLP, self).__init__()
l1 = [in_size - int(in_size/2) + cond_in] + hidden
l2 = hidden + [out_size * int(in_size/2)]
layers = []
for h1, h2 in zip(l1, l2):
layers += [nn.Linear(h1, h2), nn.ReLU()]
layers.pop()
self.net = nn.Sequential(*layers)
def forward(self, x):
return self.net(x)
class CouplingConditioner(Conditioner):
def __init__(self, in_size, hidden, out_size, cond_in=0):
super(CouplingConditioner, self).__init__()
self.in_size = in_size
self.out_size = out_size
self.cond_size = int(in_size/2)
self.indep_size = in_size - self.cond_size
self.embeding_net = CouplingMLP(in_size, hidden, out_size, cond_in)
self.constants = nn.Parameter(torch.randn(self.indep_size, out_size))
self.register_buffer("A", torch.cat((torch.zeros(self.cond_size, in_size),
torch.cat((torch.ones(self.indep_size, self.cond_size), torch.zeros(self.indep_size, self.indep_size)), 1)), 0))
def forward(self, x, context=None):
if context is not None:
x = torch.cat((x, context), 1)
h1 = self.constants.unsqueeze(0).expand(x.shape[0], -1, -1)
h2 = self.embeding_net(x[:, :self.indep_size]).view(x.shape[0], self.cond_size, self.out_size)
return torch.cat((h1, h2), 1)
def depth(self):
return 1
| [
1,
529,
9507,
29958,
9794,
29914,
25255,
8397,
29914,
29907,
283,
10335,
25255,
261,
29889,
2272,
13,
3166,
869,
25255,
261,
1053,
11790,
654,
261,
13,
5215,
4842,
305,
13,
5215,
4842,
305,
29889,
15755,
408,
302,
29876,
13,
13,
13,
1990,
19565,
10335,
1988,
29925,
29898,
15755,
29889,
7355,
1125,
13,
1678,
822,
4770,
2344,
12035,
1311,
29892,
297,
29918,
2311,
29892,
7934,
29892,
714,
29918,
2311,
29892,
2148,
29918,
262,
353,
29871,
29900,
1125,
13,
4706,
2428,
29898,
29907,
283,
10335,
1988,
29925,
29892,
1583,
467,
1649,
2344,
1649,
580,
13,
4706,
301,
29896,
353,
518,
262,
29918,
2311,
448,
938,
29898,
262,
29918,
2311,
29914,
29906,
29897,
718,
2148,
29918,
262,
29962,
718,
7934,
13,
4706,
301,
29906,
353,
7934,
718,
518,
449,
29918,
2311,
334,
938,
29898,
262,
29918,
2311,
29914,
29906,
4638,
13,
4706,
15359,
353,
5159,
13,
4706,
363,
298,
29896,
29892,
298,
29906,
297,
14319,
29898,
29880,
29896,
29892,
301,
29906,
1125,
13,
9651,
15359,
4619,
518,
15755,
29889,
12697,
29898,
29882,
29896,
29892,
298,
29906,
511,
302,
29876,
29889,
1123,
29931,
29965,
580,
29962,
13,
4706,
15359,
29889,
7323,
580,
13,
4706,
1583,
29889,
1212,
353,
302,
29876,
29889,
16941,
2556,
10456,
29277,
29897,
13,
13,
1678,
822,
6375,
29898,
1311,
29892,
921,
1125,
13,
4706,
736,
1583,
29889,
1212,
29898,
29916,
29897,
13,
13,
13,
1990,
19565,
10335,
25255,
261,
29898,
25255,
261,
1125,
13,
1678,
822,
4770,
2344,
12035,
1311,
29892,
297,
29918,
2311,
29892,
7934,
29892,
714,
29918,
2311,
29892,
2148,
29918,
262,
29922,
29900,
1125,
13,
4706,
2428,
29898,
29907,
283,
10335,
25255,
261,
29892,
1583,
467,
1649,
2344,
1649,
580,
13,
4706,
1583,
29889,
262,
29918,
2311,
353,
297,
29918,
2311,
13,
4706,
1583,
29889,
449,
29918,
2311,
353,
714,
29918,
2311,
13,
4706,
1583,
29889,
1116,
29918,
2311,
353,
938,
29898,
262,
29918,
2311,
29914,
29906,
29897,
13,
4706,
1583,
29889,
262,
2716,
29918,
2311,
353,
297,
29918,
2311,
448,
1583,
29889,
1116,
29918,
2311,
13,
4706,
1583,
29889,
17987,
292,
29918,
1212,
353,
19565,
10335,
1988,
29925,
29898,
262,
29918,
2311,
29892,
7934,
29892,
714,
29918,
2311,
29892,
2148,
29918,
262,
29897,
13,
4706,
1583,
29889,
3075,
1934,
353,
302,
29876,
29889,
9329,
29898,
7345,
305,
29889,
9502,
29876,
29898,
1311,
29889,
262,
2716,
29918,
2311,
29892,
714,
29918,
2311,
876,
13,
4706,
1583,
29889,
9573,
29918,
9040,
703,
29909,
613,
4842,
305,
29889,
4117,
3552,
7345,
305,
29889,
3298,
359,
29898,
1311,
29889,
1116,
29918,
2311,
29892,
297,
29918,
2311,
511,
13,
462,
9651,
4842,
305,
29889,
4117,
3552,
7345,
305,
29889,
2873,
29898,
1311,
29889,
262,
2716,
29918,
2311,
29892,
1583,
29889,
1116,
29918,
2311,
511,
4842,
305,
29889,
3298,
359,
29898,
1311,
29889,
262,
2716,
29918,
2311,
29892,
1583,
29889,
262,
2716,
29918,
2311,
8243,
29871,
29896,
8243,
29871,
29900,
876,
13,
13,
1678,
822,
6375,
29898,
1311,
29892,
921,
29892,
3030,
29922,
8516,
1125,
13,
4706,
565,
3030,
338,
451,
6213,
29901,
13,
9651,
921,
353,
4842,
305,
29889,
4117,
3552,
29916,
29892,
3030,
511,
29871,
29896,
29897,
13,
4706,
298,
29896,
353,
1583,
29889,
3075,
1934,
29889,
6948,
802,
29872,
911,
29898,
29900,
467,
18837,
29898,
29916,
29889,
12181,
29961,
29900,
1402,
448,
29896,
29892,
448,
29896,
29897,
13,
4706,
298,
29906,
353,
1583,
29889,
17987,
292,
29918,
1212,
29898,
29916,
7503,
29892,
584,
1311,
29889,
262,
2716,
29918,
2311,
14664,
1493,
29898,
29916,
29889,
12181,
29961,
29900,
1402,
1583,
29889,
1116,
29918,
2311,
29892,
1583,
29889,
449,
29918,
2311,
29897,
13,
4706,
736,
4842,
305,
29889,
4117,
3552,
29882,
29896,
29892,
298,
29906,
511,
29871,
29896,
29897,
13,
13,
1678,
822,
10809,
29898,
1311,
1125,
13,
4706,
736,
29871,
29896,
13,
2
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.