Build modified streamline images
The official image from streamline does not currently work for the arm64 platform. As a temporary measure, the source code and docker build scripts have been lifted from the official images and are used to build locally. Some additional modifications are made to reduce overall image size, these are documented in docker/README.md
@@ -0,0 +1,8 @@
|
||||
message_board
|
||||
messageboard
|
||||
resources
|
||||
images
|
||||
insurance_members
|
||||
hospital_resources
|
||||
csv_imports
|
||||
users
|
||||
|
After Width: | Height: | Size: 3.6 KiB |
|
After Width: | Height: | Size: 3.5 KiB |
@@ -0,0 +1,55 @@
|
||||
import json
|
||||
import socket
|
||||
|
||||
import requests
|
||||
|
||||
HOST = "192.168.1.215" # Standard loopback interface address (localhost)
|
||||
PORT = 5100 # Port to listen on (non-privileged ports are > 1023)
|
||||
|
||||
bytes_to_decode = b''
|
||||
|
||||
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
|
||||
s.bind((HOST, PORT))
|
||||
s.listen()
|
||||
conn, addr = s.accept()
|
||||
|
||||
with conn:
|
||||
# print(f"Connected by {addr}")
|
||||
|
||||
while True:
|
||||
data = conn.recv(1024)
|
||||
|
||||
if data:
|
||||
bytes_to_decode += data
|
||||
|
||||
if 'END_RESULT' in data.decode():
|
||||
results_dict = {}
|
||||
decoded_data = bytes_to_decode.decode()
|
||||
|
||||
data_lists = [line.split(";") for line in decoded_data.split("\r\n")]
|
||||
data_list = []
|
||||
|
||||
for row in data_lists:
|
||||
if row[0] in ['SID', 'PID', 'ID']:
|
||||
results_dict[row[0]] = row[1]
|
||||
elif row[0] in ['WBC', 'LYMP', 'MONP', 'NEUP', 'EOSP', 'BASP', 'IMMP', 'ALYP', 'LYM', 'RDW-SD',
|
||||
'MON', 'NEU', 'EOS', 'BAS', 'IMM', 'ALY', 'RBC', 'HGB', 'HCT', 'MCV', 'MCH',
|
||||
'MCHC', 'RDW-CV', 'PLCR', 'PDW', 'PCT', 'MPV', 'PLT']:
|
||||
try:
|
||||
flag = row[3]
|
||||
except:
|
||||
flag = ''
|
||||
|
||||
try:
|
||||
result = row[1]
|
||||
except:
|
||||
result = ''
|
||||
|
||||
data_list.append([row[0], result, flag])
|
||||
|
||||
results_dict["results"] = json.dumps(data_list)
|
||||
|
||||
requests.post('http://192.168.1.215/lab_machines/receive_results_mispa', data=results_dict)
|
||||
|
||||
bytes_to_decode = b''
|
||||
|
||||
@@ -0,0 +1,25 @@
|
||||
from subprocess import check_output, Popen, PIPE, STDOUT
|
||||
import os
|
||||
|
||||
file_path = "/var/www/streamline/public/uploads/lab_machine_scripts/kisiizi/main.py"
|
||||
|
||||
try:
|
||||
# get the pid of the last process running with python3
|
||||
pid_list = check_output(["pidof", "python3"]).split()
|
||||
|
||||
# iterate over the list of related pids
|
||||
for pid in pid_list:
|
||||
decoded_pid = pid.decode("utf-8")
|
||||
file_path_from_pid = check_output(["ps", "-o", "cmd", decoded_pid]).split()[2].decode("utf-8")
|
||||
|
||||
if file_path_from_pid == file_path:
|
||||
# kill the process with this path
|
||||
delete_pid = check_output(["kill", "-9", decoded_pid])
|
||||
break
|
||||
|
||||
# start a new process
|
||||
os.system("nohup python3 " + file_path + " >/dev/null 2>&1 & ")
|
||||
print(1)
|
||||
|
||||
except Exception as e:
|
||||
print(e)
|
||||
|
After Width: | Height: | Size: 536 KiB |
|
After Width: | Height: | Size: 903 KiB |
|
After Width: | Height: | Size: 911 KiB |
|
After Width: | Height: | Size: 1.1 MiB |
|
After Width: | Height: | Size: 34 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 24 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 193 KiB |
|
After Width: | Height: | Size: 46 KiB |
|
After Width: | Height: | Size: 46 KiB |
|
After Width: | Height: | Size: 27 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 101 KiB |
|
After Width: | Height: | Size: 64 KiB |
|
After Width: | Height: | Size: 64 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 24 KiB |
|
After Width: | Height: | Size: 32 KiB |
|
After Width: | Height: | Size: 3.8 KiB |
|
After Width: | Height: | Size: 101 KiB |
|
After Width: | Height: | Size: 41 KiB |
|
After Width: | Height: | Size: 70 KiB |
|
After Width: | Height: | Size: 41 KiB |
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 4.0 KiB |
@@ -0,0 +1,108 @@
|
||||
120,0,12.4,13.5,16.6,19.1
|
||||
121,0,12.4,13.5,16.7,19.2
|
||||
122,0,12.4,13.5,16.7,19.3
|
||||
123,0,12.5,13.6,16.8,19.3
|
||||
124,0,12.5,13.6,16.8,19.4
|
||||
125,0,12.5,13.6,16.9,19.5
|
||||
126,0,12.5,13.7,16.9,19.5
|
||||
127,0,12.6,13.7,17,19.6
|
||||
128,0,12.6,13.7,17,19.7
|
||||
129,0,12.6,13.8,17.1,19.7
|
||||
130,0,12.7,13.8,17.1,19.8
|
||||
131,0,12.7,13.8,17.2,19.9
|
||||
132,0,12.7,13.9,17.2,20
|
||||
133,0,12.8,13.9,17.3,20
|
||||
134,0,12.8,14,17.4,20.1
|
||||
135,0,12.8,14,17.4,20.2
|
||||
136,0,12.9,14,17.5,20.3
|
||||
137,0,12.9,14.1,17.5,20.3
|
||||
138,0,12.9,14.1,17.6,20.4
|
||||
139,0,13,14.2,17.7,20.5
|
||||
140,0,13,14.2,17.7,20.6
|
||||
141,0,13,14.3,17.8,20.7
|
||||
142,0,13.1,14.3,17.9,20.7
|
||||
143,0,13.1,14.3,17.9,20.8
|
||||
144,0,13.2,14.4,18,20.9
|
||||
145,0,13.2,14.4,18.1,21
|
||||
146,0,13.2,14.5,18.1,21.1
|
||||
147,0,13.3,14.5,18.2,21.2
|
||||
148,0,13.3,14.6,18.3,21.2
|
||||
149,0,13.3,14.6,18.3,21.3
|
||||
150,0,13.4,14.7,18.4,21.4
|
||||
151,0,13.4,14.7,18.5,21.5
|
||||
152,0,13.5,14.8,18.5,21.6
|
||||
153,0,13.5,14.8,18.6,21.7
|
||||
154,0,13.5,14.8,18.7,21.7
|
||||
155,0,13.6,14.9,18.7,21.8
|
||||
156,0,13.6,14.9,18.8,21.9
|
||||
157,0,13.6,15,18.9,22
|
||||
158,0,13.7,15,18.9,22.1
|
||||
159,0,13.7,15.1,19,22.1
|
||||
160,0,13.8,15.1,19.1,22.2
|
||||
161,0,13.8,15.2,19.1,22.3
|
||||
162,0,13.8,15.2,19.2,22.4
|
||||
163,0,13.9,15.2,19.3,22.5
|
||||
164,0,13.9,15.3,19.3,22.5
|
||||
165,0,13.9,15.3,19.4,22.6
|
||||
166,0,14,15.4,19.4,22.7
|
||||
167,0,14,15.4,19.5,22.8
|
||||
168,0,14,15.4,19.6,22.8
|
||||
169,0,14.1,15.5,19.6,22.9
|
||||
170,0,14.1,15.5,19.7,23
|
||||
171,0,14.1,15.6,19.7,23
|
||||
172,0,14.1,15.6,19.8,23.1
|
||||
173,0,14.2,15.6,19.9,23.2
|
||||
174,0,14.2,15.7,19.9,23.2
|
||||
175,0,14.2,15.7,20,23.3
|
||||
176,0,14.3,15.7,20,23.4
|
||||
177,0,14.3,15.8,20.1,23.4
|
||||
178,0,14.3,15.8,20.1,23.5
|
||||
179,0,14.3,15.8,20.2,23.6
|
||||
180,0,14.4,15.9,20.2,23.6
|
||||
181,0,14.4,15.9,20.3,23.7
|
||||
182,0,14.4,15.9,20.3,23.7
|
||||
183,0,14.4,16,20.4,23.8
|
||||
184,0,14.5,16,20.4,23.8
|
||||
185,0,14.5,16,20.4,23.9
|
||||
186,0,14.5,16,20.5,23.9
|
||||
187,0,14.5,16.1,20.5,24
|
||||
188,0,14.5,16.1,20.6,24
|
||||
189,0,14.5,16.1,20.6,24.1
|
||||
190,0,14.6,16.1,20.6,24.1
|
||||
191,0,14.6,16.2,20.7,24.2
|
||||
192,0,14.6,16.2,20.7,24.2
|
||||
193,0,14.6,16.2,20.7,24.2
|
||||
194,0,14.6,16.2,20.8,24.3
|
||||
195,0,14.6,16.2,20.8,24.3
|
||||
196,0,14.6,16.2,20.8,24.4
|
||||
197,0,14.6,16.3,20.9,24.4
|
||||
198,0,14.7,16.3,20.9,24.4
|
||||
199,0,14.7,16.3,20.9,24.5
|
||||
200,0,14.7,16.3,20.9,24.5
|
||||
201,0,14.7,16.3,21,24.5
|
||||
202,0,14.7,16.3,21,24.5
|
||||
203,0,14.7,16.3,21,24.6
|
||||
204,0,14.7,16.4,21,24.6
|
||||
205,0,14.7,16.4,21.1,24.6
|
||||
206,0,14.7,16.4,21.1,24.7
|
||||
207,0,14.7,16.4,21.1,24.7
|
||||
208,0,14.7,16.4,21.1,24.7
|
||||
209,0,14.7,16.4,21.1,24.7
|
||||
210,0,14.7,16.4,21.2,24.7
|
||||
211,0,14.7,16.4,21.2,24.8
|
||||
212,0,14.7,16.4,21.2,24.8
|
||||
213,0,14.7,16.4,21.2,24.8
|
||||
214,0,14.7,16.4,21.2,24.8
|
||||
215,0,14.7,16.4,21.2,24.9
|
||||
216,0,14.7,16.4,21.3,24.9
|
||||
217,0,14.7,16.5,21.3,24.9
|
||||
218,0,14.7,16.5,21.3,24.9
|
||||
219,0,14.7,16.5,21.3,24.9
|
||||
220,0,14.7,16.5,21.3,24.9
|
||||
221,0,14.7,16.5,21.3,25
|
||||
222,0,14.7,16.5,21.3,25
|
||||
223,0,14.7,16.5,21.4,25
|
||||
224,0,14.7,16.5,21.4,25
|
||||
225,0,14.7,16.5,21.4,25
|
||||
226,0,14.7,16.5,21.4,25
|
||||
227,0,14.7,16.5,21.4,25.1
|
||||
|
@@ -0,0 +1,60 @@
|
||||
60,0,11.6,12.7,15.3,15.5
|
||||
61,0,11.8,12.7,15.2,15.4
|
||||
62,0,11.8,12.7,15.2,15.4
|
||||
63,0,11.8,12.7,15.2,15.4
|
||||
64,0,11.8,12.7,15.2,15.4
|
||||
65,0,11.7,12.7,15.2,15.4
|
||||
66,0,11.7,12.7,15.2,15.4
|
||||
67,0,11.7,12.7,15.2,15.4
|
||||
68,0,11.7,12.7,15.3,15.5
|
||||
69,0,11.7,12.7,15.3,15.5
|
||||
70,0,11.7,12.7,15.3,15.5
|
||||
71,0,11.7,12.7,15.3,15.5
|
||||
72,0,11.7,12.7,15.3,15.5
|
||||
73,0,11.7,12.7,15.3,15.5
|
||||
74,0,11.7,12.7,15.3,15.5
|
||||
75,0,11.7,12.7,15.3,15.5
|
||||
76,0,11.7,12.7,15.3,15.5
|
||||
77,0,11.7,12.7,15.3,15.5
|
||||
78,0,11.7,12.7,15.3,15.5
|
||||
79,0,11.7,12.7,15.3,15.5
|
||||
80,0,11.7,12.7,15.3,15.5
|
||||
81,0,11.7,12.7,15.4,15.6
|
||||
82,0,11.7,12.7,15.4,15.6
|
||||
83,0,11.7,12.7,15.4,15.6
|
||||
84,0,11.8,12.7,15.4,15.6
|
||||
85,0,11.8,12.7,15.4,15.6
|
||||
86,0,11.8,12.8,15.4,15.6
|
||||
87,0,11.8,12.8,15.5,15.7
|
||||
88,0,11.8,12.8,15.5,15.7
|
||||
89,0,11.8,12.8,15.5,15.7
|
||||
90,0,11.8,12.8,15.5,15.7
|
||||
91,0,11.8,12.8,15.5,15.7
|
||||
92,0,11.8,12.8,15.6,15.8
|
||||
93,0,11.8,12.8,15.6,15.8
|
||||
94,0,11.9,12.9,15.6,15.8
|
||||
95,0,11.9,12.9,15.7,15.9
|
||||
96,0,11.9,12.9,15.7,15.9
|
||||
97,0,11.9,12.9,15.7,15.9
|
||||
98,0,11.9,12.9,15.7,15.9
|
||||
99,0,11.9,12.9,15.8,16
|
||||
100,0,11.9,13,15.8,16
|
||||
101,0,12,13,15.8,16
|
||||
102,0,12,13,15.9,16.1
|
||||
103,0,12,13,15.9,16.1
|
||||
104,0,12,13,15.9,16.1
|
||||
105,0,12,13.1,16,16.2
|
||||
106,0,12.1,13.1,16,16.2
|
||||
107,0,12.1,13.1,16.1,16.3
|
||||
108,0,12.1,13.1,16.1,16.3
|
||||
109,0,12.1,13.2,16.1,16.3
|
||||
110,0,12.1,13.2,16.2,16.4
|
||||
111,0,12.2,13.2,16.2,16.4
|
||||
112,0,12.2,13.2,16.3,16.5
|
||||
113,0,12.2,13.3,16.3,16.5
|
||||
114,0,12.2,13.3,16.3,16.5
|
||||
115,0,12.3,13.3,16.4,16.6
|
||||
116,0,12.3,13.4,16.4,16.6
|
||||
117,0,12.3,13.4,16.5,16.7
|
||||
118,0,12.3,13.4,16.5,16.7
|
||||
119,0,12.4,13.4,16.6,16.8
|
||||
|
@@ -0,0 +1,131 @@
|
||||
55,0,3.5,3.8,5,5.51
|
||||
55.5,0,3.6,3.9,5.1,5.71
|
||||
56,0,3.7,4,5.3,5.81
|
||||
56.5,0,3.8,4.1,5.4,6.01
|
||||
57,0,3.9,4.3,5.6,6.11
|
||||
57.5,0,4,4.4,5.7,6.31
|
||||
58,0,4.1,4.5,5.9,6.51
|
||||
58.5,0,4.2,4.6,6,6.61
|
||||
59,0,4.3,4.7,6.2,6.81
|
||||
59.5,0,4.4,4.8,6.3,6.91
|
||||
60,0,4.5,4.9,6.4,7.11
|
||||
60.5,0,4.6,5,6.6,7.31
|
||||
61,0,4.7,5.1,6.7,7.41
|
||||
61.5,0,4.8,5.2,6.9,7.61
|
||||
62,0,4.9,5.3,7,7.71
|
||||
62.5,0,5,5.4,7.1,7.81
|
||||
63,0,5.1,5.5,7.3,8.01
|
||||
63.5,0,5.2,5.6,7.4,8.11
|
||||
64,0,5.3,5.7,7.5,8.31
|
||||
64.5,0,5.4,5.8,7.6,8.41
|
||||
65,0,5.5,5.9,7.8,8.61
|
||||
65.5,0,5.5,6,7.9,8.71
|
||||
66,0,5.6,6.1,8,8.81
|
||||
66.5,0,5.7,6.2,8.1,9.01
|
||||
67,0,5.8,6.3,8.3,9.11
|
||||
67.5,0,5.9,6.4,8.4,9.21
|
||||
68,0,6,6.5,8.5,9.41
|
||||
68.5,0,6.1,6.6,8.6,9.51
|
||||
69,0,6.1,6.7,8.7,9.61
|
||||
69.5,0,6.2,6.8,8.8,9.71
|
||||
70,0,6.3,6.9,9,9.91
|
||||
70.5,0,6.4,6.9,9.1,10.01
|
||||
71,0,6.5,7,9.2,10.11
|
||||
71.5,0,6.5,7.1,9.3,10.21
|
||||
72,0,6.6,7.2,9.4,10.31
|
||||
72.5,0,6.7,7.3,9.5,10.51
|
||||
73,0,6.8,7.4,9.6,10.61
|
||||
73.5,0,6.9,7.4,9.7,10.71
|
||||
74,0,6.9,7.5,9.8,10.81
|
||||
74.5,0,7,7.6,9.9,10.91
|
||||
75,0,7.1,7.7,10,11.01
|
||||
75.5,0,7.1,7.8,10.1,11.11
|
||||
76,0,7.2,7.8,10.2,11.21
|
||||
76.5,0,7.3,7.9,10.3,11.41
|
||||
77,0,7.4,8,10.4,11.51
|
||||
77.5,0,7.4,8.1,10.5,11.61
|
||||
78,0,7.5,8.2,10.6,11.71
|
||||
78.5,0,7.6,8.2,10.7,11.81
|
||||
79,0,7.7,8.3,10.8,11.91
|
||||
79.5,0,7.7,8.4,10.9,12.01
|
||||
80,0,7.8,8.5,11,12.11
|
||||
80.5,0,7.9,8.6,11.2,12.31
|
||||
81,0,8.1,8.8,11.4,12.6
|
||||
81.5,0,8.2,8.9,11.6,12.7
|
||||
82,0,8.3,9,11.7,12.8
|
||||
82.5,0,8.4,9.1,11.8,13
|
||||
83,0,8.5,9.2,11.9,13.1
|
||||
83.5,0,8.5,9.3,12.1,13.3
|
||||
84,0,8.6,9.4,12.2,13.4
|
||||
84.5,0,8.7,9.5,12.3,13.5
|
||||
85,0,8.8,9.6,12.5,13.7
|
||||
85.5,0,8.9,9.7,12.6,13.8
|
||||
86,0,9,9.8,12.7,14
|
||||
86.5,0,9.1,9.9,12.9,14.2
|
||||
87,0,9.2,10,13,14.3
|
||||
87.5,0,9.3,10.1,13.2,14.5
|
||||
88,0,9.4,10.2,13.3,14.6
|
||||
88.5,0,9.5,10.3,13.4,14.8
|
||||
89,0,9.6,10.4,13.6,14.9
|
||||
89.5,0,9.7,10.5,13.7,15.1
|
||||
90,0,9.8,10.6,13.8,15.2
|
||||
90.5,0,9.9,10.7,14,15.4
|
||||
91,0,10,10.9,14.1,15.5
|
||||
91.5,0,10.1,11,14.3,15.7
|
||||
92,0,10.2,11.1,14.4,15.8
|
||||
92.5,0,10.3,11.2,14.5,16
|
||||
93,0,10.4,11.3,14.7,16.1
|
||||
93.5,0,10.5,11.4,14.8,16.3
|
||||
94,0,10.6,11.5,14.9,16.4
|
||||
94.5,0,10.7,11.6,15.1,16.6
|
||||
95,0,10.8,11.7,15.2,16.7
|
||||
95.5,0,10.8,11.8,15.4,16.9
|
||||
96,0,10.9,11.9,15.5,17
|
||||
96.5,0,11,12,15.6,17.2
|
||||
97,0,11.1,12.1,15.8,17.4
|
||||
97.5,0,11.2,12.2,15.9,17.5
|
||||
98,0,11.3,12.3,16.1,17.7
|
||||
98.5,0,11.4,12.4,16.2,17.9
|
||||
99,0,11.5,12.5,16.4,18
|
||||
99.5,0,11.6,12.7,16.5,18.2
|
||||
100,0,11.7,12.8,16.7,18.4
|
||||
100.5,0,11.9,12.9,16.9,18.6
|
||||
101,0,12,13,17,18.7
|
||||
101.5,0,12.1,13.1,17.2,18.9
|
||||
102,0,12.2,13.3,17.4,19.1
|
||||
102.5,0,12.3,13.4,17.5,19.3
|
||||
103,0,12.4,13.5,17.7,19.5
|
||||
103.5,0,12.5,13.6,17.9,19.7
|
||||
104,0,12.6,13.8,18.1,19.9
|
||||
104.5,0,12.8,13.9,18.2,20.1
|
||||
105,0,12.9,14,18.4,20.3
|
||||
105.5,0,13,14.2,18.6,20.5
|
||||
106,0,13.1,14.3,18.8,20.8
|
||||
106.5,0,13.3,14.5,19,21
|
||||
107,0,13.4,14.6,19.2,21.2
|
||||
107.5,0,13.5,14.7,19.4,21.4
|
||||
108,0,13.7,14.9,19.6,21.7
|
||||
108.5,0,13.8,15,19.8,21.9
|
||||
109,0,13.9,15.2,20,22.1
|
||||
109.5,0,14.1,15.4,20.3,22.4
|
||||
110,0,14.2,15.5,20.5,22.6
|
||||
110.5,0,14.4,15.7,20.7,22.9
|
||||
111,0,14.5,15.8,20.9,23.1
|
||||
111.5,0,14.7,16,21.2,23.4
|
||||
112,0,14.8,16.2,21.4,23.6
|
||||
112.5,0,15,16.3,21.6,23.9
|
||||
113,0,15.1,16.5,21.8,24.2
|
||||
113.5,0,15.3,16.7,22.1,24.4
|
||||
114,0,15.4,16.8,22.3,24.7
|
||||
114.5,0,15.6,17,22.6,25
|
||||
115,0,15.7,17.2,22.8,25.2
|
||||
115.5,0,15.9,17.3,23,25.5
|
||||
116,0,16,17.5,23.3,25.8
|
||||
116.5,0,16.2,17.7,23.5,26.1
|
||||
117,0,16.3,17.8,23.8,26.3
|
||||
117.5,0,16.5,18,24,26.6
|
||||
118,0,16.6,18.2,24.2,26.9
|
||||
118.5,0,16.8,18.4,24.5,27.2
|
||||
119,0,16.9,18.5,24.7,27.4
|
||||
119.5,0,17.1,18.7,25,27.7
|
||||
120,0,17.3,18.9,25.2,28
|
||||
|
@@ -0,0 +1,108 @@
|
||||
120,0,12.8,13.7,16.4,18.6
|
||||
121,0,12.8,13.8,16.5,18.6
|
||||
122,0,12.8,13.8,16.5,18.7
|
||||
123,0,12.8,13.8,16.6,18.7
|
||||
124,0,12.9,13.8,16.6,18.8
|
||||
125,0,12.9,13.9,16.6,18.9
|
||||
126,0,12.9,13.9,16.7,18.9
|
||||
127,0,12.9,13.9,16.7,19
|
||||
128,0,13,13.9,16.8,19
|
||||
129,0,13,14,16.8,19.1
|
||||
130,0,13,14,16.9,19.1
|
||||
131,0,13,14,16.9,19.2
|
||||
132,0,13.1,14.1,16.9,19.3
|
||||
133,0,13.1,14.1,17,19.3
|
||||
134,0,13.1,14.1,17,19.4
|
||||
135,0,13.1,14.1,17.1,19.4
|
||||
136,0,13.2,14.2,17.1,19.5
|
||||
137,0,13.2,14.2,17.2,19.6
|
||||
138,0,13.2,14.2,17.2,19.6
|
||||
139,0,13.2,14.3,17.3,19.7
|
||||
140,0,13.3,14.3,17.3,19.8
|
||||
141,0,13.3,14.3,17.4,19.8
|
||||
142,0,13.3,14.4,17.4,19.9
|
||||
143,0,13.4,14.4,17.5,20
|
||||
144,0,13.4,14.5,17.5,20
|
||||
145,0,13.4,14.5,17.6,20.1
|
||||
146,0,13.5,14.5,17.6,20.2
|
||||
147,0,13.5,14.6,17.7,20.3
|
||||
148,0,13.5,14.6,17.8,20.3
|
||||
149,0,13.6,14.6,17.8,20.4
|
||||
150,0,13.6,14.7,17.9,20.5
|
||||
151,0,13.6,14.7,17.9,20.5
|
||||
152,0,13.7,14.8,18,20.6
|
||||
153,0,13.7,14.8,18,20.7
|
||||
154,0,13.7,14.8,18.1,20.8
|
||||
155,0,13.8,14.9,18.2,20.9
|
||||
156,0,13.8,14.9,18.2,20.9
|
||||
157,0,13.8,15,18.3,21
|
||||
158,0,13.9,15,18.4,21.1
|
||||
159,0,13.9,15.1,18.4,21.2
|
||||
160,0,14,15.1,18.5,21.2
|
||||
161,0,14,15.2,18.6,21.3
|
||||
162,0,14,15.2,18.6,21.4
|
||||
163,0,14.1,15.2,18.7,21.5
|
||||
164,0,14.1,15.3,18.7,21.6
|
||||
165,0,14.1,15.3,18.8,21.6
|
||||
166,0,14.2,15.4,18.9,21.7
|
||||
167,0,14.2,15.4,18.9,21.8
|
||||
168,0,14.3,15.5,19,21.9
|
||||
169,0,14.3,15.5,19.1,21.9
|
||||
170,0,14.3,15.6,19.1,22
|
||||
171,0,14.4,15.6,19.2,22.1
|
||||
172,0,14.4,15.7,19.3,22.2
|
||||
173,0,14.5,15.7,19.3,22.3
|
||||
174,0,14.5,15.7,19.4,22.3
|
||||
175,0,14.5,15.8,19.5,22.4
|
||||
176,0,14.6,15.8,19.5,22.5
|
||||
177,0,14.6,15.9,19.6,22.6
|
||||
178,0,14.6,15.9,19.6,22.6
|
||||
179,0,14.7,16,19.7,22.7
|
||||
180,0,14.7,16,19.8,22.8
|
||||
181,0,14.7,16.1,19.8,22.9
|
||||
182,0,14.8,16.1,19.9,22.9
|
||||
183,0,14.8,16.1,20,23
|
||||
184,0,14.8,16.2,20,23.1
|
||||
185,0,14.9,16.2,20.1,23.1
|
||||
186,0,14.9,16.3,20.1,23.2
|
||||
187,0,15,16.3,20.2,23.3
|
||||
188,0,15,16.3,20.3,23.4
|
||||
189,0,15,16.4,20.3,23.4
|
||||
190,0,15,16.4,20.4,23.5
|
||||
191,0,15.1,16.5,20.4,23.6
|
||||
192,0,15.1,16.5,20.5,23.6
|
||||
193,0,15.1,16.5,20.6,23.7
|
||||
194,0,15.2,16.6,20.6,23.8
|
||||
195,0,15.2,16.6,20.7,23.8
|
||||
196,0,15.2,16.7,20.7,23.9
|
||||
197,0,15.3,16.7,20.8,23.9
|
||||
198,0,15.3,16.7,20.8,24
|
||||
199,0,15.3,16.8,20.9,24.1
|
||||
200,0,15.3,16.8,20.9,24.1
|
||||
201,0,15.4,16.8,21,24.2
|
||||
202,0,15.4,16.9,21,24.3
|
||||
203,0,15.4,16.9,21.1,24.3
|
||||
204,0,15.4,16.9,21.1,24.4
|
||||
205,0,15.5,17,21.2,24.4
|
||||
206,0,15.5,17,21.2,24.5
|
||||
207,0,15.5,17,21.3,24.5
|
||||
208,0,15.5,17.1,21.3,24.6
|
||||
209,0,15.6,17.1,21.4,24.6
|
||||
210,0,15.6,17.1,21.4,24.7
|
||||
211,0,15.6,17.1,21.5,24.8
|
||||
212,0,15.6,17.2,21.5,24.8
|
||||
213,0,15.6,17.2,21.6,24.9
|
||||
214,0,15.7,17.2,21.6,24.9
|
||||
215,0,15.7,17.3,21.7,25
|
||||
216,0,15.7,17.3,21.7,25
|
||||
217,0,15.7,17.3,21.8,25.1
|
||||
218,0,15.7,17.3,21.8,25.1
|
||||
219,0,15.7,17.4,21.8,25.2
|
||||
220,0,15.8,17.4,21.9,25.2
|
||||
221,0,15.8,17.4,21.9,25.2
|
||||
222,0,15.8,17.4,22,25.3
|
||||
223,0,15.8,17.5,22,25.3
|
||||
224,0,15.8,17.5,22,25.4
|
||||
225,0,15.8,17.5,22.1,25.4
|
||||
226,0,15.8,17.5,22.1,25.5
|
||||
227,0,15.8,17.5,22.2,25.5
|
||||
|
@@ -0,0 +1,60 @@
|
||||
60,0,12,12.9,15.2,16.7
|
||||
61,0,12.1,13,15.3,16.7
|
||||
62,0,12.1,13,15.3,16.7
|
||||
63,0,12.1,13,15.3,16.8
|
||||
64,0,12.1,13,15.3,16.8
|
||||
65,0,12.1,13,15.3,16.8
|
||||
66,0,12.1,13,15.3,16.8
|
||||
67,0,12.1,13,15.3,16.8
|
||||
68,0,12.1,13,15.3,16.8
|
||||
69,0,12.1,13,15.3,16.8
|
||||
70,0,12.1,13,15.3,16.8
|
||||
71,0,12.1,13,15.3,16.8
|
||||
72,0,12.1,13,15.3,16.9
|
||||
73,0,12.1,13,15.3,16.9
|
||||
74,0,12.2,13.1,15.3,16.9
|
||||
75,0,12.2,13.1,15.3,16.9
|
||||
76,0,12.2,13.1,15.4,16.9
|
||||
77,0,12.2,13.1,15.4,17
|
||||
78,0,12.2,13.1,15.4,17
|
||||
79,0,12.2,13.1,15.4,17
|
||||
80,0,12.2,13.1,15.4,17
|
||||
81,0,12.2,13.1,15.4,17.1
|
||||
82,0,12.2,13.1,15.4,17.1
|
||||
83,0,12.2,13.1,15.5,17.1
|
||||
84,0,12.3,13.1,15.5,17.1
|
||||
85,0,12.3,13.2,15.5,17.2
|
||||
86,0,12.3,13.2,15.5,17.2
|
||||
87,0,12.3,13.2,15.5,17.2
|
||||
88,0,12.3,13.2,15.6,17.3
|
||||
89,0,12.3,13.2,15.6,17.3
|
||||
90,0,12.3,13.2,15.6,17.3
|
||||
91,0,12.3,13.2,15.6,17.4
|
||||
92,0,12.3,13.2,15.6,17.4
|
||||
93,0,12.4,13.3,15.7,17.4
|
||||
94,0,12.4,13.3,15.7,17.5
|
||||
95,0,12.4,13.3,15.7,17.5
|
||||
96,0,12.4,13.3,15.7,17.5
|
||||
97,0,12.4,13.3,15.8,17.6
|
||||
98,0,12.4,13.3,15.8,17.6
|
||||
99,0,12.4,13.3,15.8,17.6
|
||||
100,0,12.4,13.4,15.8,17.7
|
||||
101,0,12.5,13.4,15.9,17.7
|
||||
102,0,12.5,13.4,15.9,17.8
|
||||
103,0,12.5,13.4,15.9,17.8
|
||||
104,0,12.5,13.4,15.9,17.8
|
||||
105,0,12.5,13.4,16,17.9
|
||||
106,0,12.5,13.5,16,17.9
|
||||
107,0,12.5,13.5,16,18
|
||||
108,0,12.6,13.5,16,18
|
||||
109,0,12.6,13.5,16.1,18.1
|
||||
110,0,12.6,13.5,16.1,18.1
|
||||
111,0,12.6,13.5,16.1,18.1
|
||||
112,0,12.6,13.6,16.2,18.2
|
||||
113,0,12.6,13.6,16.2,18.2
|
||||
114,0,12.7,13.6,16.2,18.3
|
||||
115,0,12.7,13.6,16.3,18.3
|
||||
116,0,12.7,13.6,16.3,18.4
|
||||
117,0,12.7,13.7,16.3,18.4
|
||||
118,0,12.7,13.7,16.4,18.5
|
||||
119,0,12.8,13.7,16.4,18.5
|
||||
|
@@ -0,0 +1,130 @@
|
||||
55.5,0,3.7,4,5.1,5.7
|
||||
56,0,3.8,4.1,5.3,5.9
|
||||
56.5,0,3.9,4.2,5.4,6
|
||||
57,0,4,4.3,5.6,6.2
|
||||
57.5,0,4.1,4.5,5.7,6.4
|
||||
58,0,4.3,4.6,5.9,6.5
|
||||
58.5,0,4.4,4.7,6.1,6.7
|
||||
59,0,4.5,4.8,6.2,6.9
|
||||
59.5,0,4.6,5,6.4,7.1
|
||||
60,0,4.7,5.1,6.5,7.2
|
||||
60.5,0,4.8,5.2,6.7,7.4
|
||||
61,0,4.9,5.3,6.8,7.5
|
||||
61.5,0,5,5.4,7,7.7
|
||||
62,0,5.1,5.6,7.1,7.8
|
||||
62.5,0,5.2,5.7,7.2,8
|
||||
63,0,5.3,5.8,7.4,8.1
|
||||
63.5,0,5.4,5.9,7.5,8.3
|
||||
64,0,5.5,6,7.6,8.4
|
||||
64.5,0,5.6,6.1,7.8,8.6
|
||||
65,0,5.7,6.2,7.9,8.7
|
||||
65.5,0,5.8,6.3,8,8.8
|
||||
66,0,5.9,6.4,8.2,9
|
||||
66.5,0,6,6.5,8.3,9.1
|
||||
67,0,6.1,6.6,8.4,9.3
|
||||
67.5,0,6.2,6.7,8.5,9.4
|
||||
68,0,6.3,6.8,8.7,9.5
|
||||
68.5,0,6.4,6.9,8.8,9.7
|
||||
69,0,6.5,7,8.9,9.8
|
||||
69.5,0,6.6,7.1,9,9.9
|
||||
70,0,6.6,7.2,9.2,10.1
|
||||
70.5,0,6.7,7.3,9.3,10.2
|
||||
71,0,6.8,7.4,9.4,10.3
|
||||
71.5,0,6.9,7.5,9.5,10.5
|
||||
72,0,7,7.6,9.6,10.6
|
||||
72.5,0,7.1,7.6,9.8,10.7
|
||||
73,0,7.2,7.7,9.9,10.9
|
||||
73.5,0,7.2,7.8,10,11
|
||||
74,0,7.3,7.9,10.1,11.1
|
||||
74.5,0,7.4,8,10.2,11.3
|
||||
75,0,7.5,8.1,10.3,11.4
|
||||
75.5,0,7.6,8.2,10.4,11.5
|
||||
76,0,7.6,8.3,10.6,11.6
|
||||
76.5,0,7.7,8.3,10.7,11.7
|
||||
77,0,7.8,8.4,10.8,11.8
|
||||
77.5,0,7.9,8.5,10.9,12
|
||||
78,0,7.9,8.6,11,12.1
|
||||
78.5,0,8,8.7,11.1,12.2
|
||||
79,0,8.1,8.7,11.2,12.3
|
||||
79.5,0,8.2,8.8,11.3,12.4
|
||||
80,0,8.2,8.9,11.4,12.5
|
||||
80.5,0,8.3,9,11.5,12.6
|
||||
81,0,8.4,9.1,11.6,12.7
|
||||
81.5,0,8.5,9.1,11.7,12.8
|
||||
82,0,8.5,9.2,11.8,12.9
|
||||
82.5,0,8.6,9.3,11.9,13.1
|
||||
83,0,8.7,9.4,12,13.2
|
||||
83.5,0,8.8,9.5,12.1,13.3
|
||||
84,0,8.9,9.6,12.2,13.4
|
||||
84.5,0,9,9.7,12.4,13.6
|
||||
85,0,9.1,9.8,12.5,13.7
|
||||
85.5,0,9.2,9.9,12.6,13.8
|
||||
86,0,9.3,10,12.8,14
|
||||
86.5,0,9.4,10.1,12.9,14.1
|
||||
87,0,9.5,10.2,13,14.3
|
||||
87.5,0,9.6,10.4,13.2,14.4
|
||||
88,0,9.7,10.5,13.3,14.6
|
||||
88.5,0,9.8,10.6,13.4,14.7
|
||||
89,0,9.9,10.7,13.5,14.8
|
||||
89.5,0,10,10.8,13.7,15
|
||||
90,0,10.1,10.9,13.8,15.1
|
||||
90.5,0,10.2,11,13.9,15.2
|
||||
91,0,10.3,11.1,14.1,15.4
|
||||
91.5,0,10.4,11.2,14.2,15.5
|
||||
92,0,10.5,11.3,14.3,15.7
|
||||
92.5,0,10.6,11.4,14.4,15.8
|
||||
93,0,10.7,11.5,14.6,15.9
|
||||
93.5,0,10.7,11.6,14.7,16.1
|
||||
94,0,10.8,11.7,14.8,16.2
|
||||
94.5,0,10.9,11.8,14.9,16.4
|
||||
95,0,11,11.9,15.1,16.5
|
||||
95.5,0,11.1,12,15.2,16.6
|
||||
96,0,11.2,12.1,15.3,16.8
|
||||
96.5,0,11.3,12.2,15.5,16.9
|
||||
97,0,11.4,12.3,15.6,17.1
|
||||
97.5,0,11.5,12.4,15.7,17.2
|
||||
98,0,11.6,12.5,15.9,17.4
|
||||
98.5,0,11.7,12.6,16,17.6
|
||||
99,0,11.8,12.7,16.2,17.7
|
||||
99.5,0,11.9,12.8,16.3,17.9
|
||||
100,0,12,12.9,16.5,18.1
|
||||
100.5,0,12.1,13,16.6,18.2
|
||||
101,0,12.2,13.2,16.8,18.4
|
||||
101.5,0,12.3,13.3,16.9,18.6
|
||||
102,0,12.4,13.4,17.1,18.8
|
||||
102.5,0,12.5,13.5,17.3,18.9
|
||||
103,0,12.6,13.6,17.4,19.1
|
||||
103.5,0,12.7,13.7,17.6,19.3
|
||||
104,0,12.8,13.9,17.8,19.5
|
||||
104.5,0,12.9,14,17.9,19.7
|
||||
105,0,13,14.1,18.1,19.9
|
||||
105.5,0,13.2,14.2,18.3,20.1
|
||||
106,0,13.3,14.4,18.5,20.3
|
||||
106.5,0,13.4,14.5,18.6,20.5
|
||||
107,0,13.5,14.6,18.8,20.7
|
||||
107.5,0,13.6,14.7,19,20.9
|
||||
108,0,13.7,14.9,19.2,21.1
|
||||
108.5,0,13.8,15,19.4,21.3
|
||||
109,0,14,15.1,19.6,21.5
|
||||
109.5,0,14.1,15.3,19.8,21.8
|
||||
110,0,14.2,15.4,20,22
|
||||
110.5,0,14.5,15.8,20.4,22.5
|
||||
111,0,14.6,15.9,20.7,22.8
|
||||
111.5,0,14.8,16,20.9,23
|
||||
112,0,14.9,16.2,21.1,23.2
|
||||
112.5,0,15,16.3,21.3,23.5
|
||||
113,0,15.2,16.5,21.5,23.7
|
||||
113.5,0,15.3,16.6,21.7,24
|
||||
114,0,15.4,16.8,21.9,24.2
|
||||
114.5,0,15.6,16.9,22.1,24.5
|
||||
115,0,15.7,17.1,22.4,24.7
|
||||
115.5,0,15.8,17.2,22.6,25
|
||||
116,0,16,17.4,22.8,25.2
|
||||
116.5,0,16.1,17.5,23,25.5
|
||||
117,0,16.2,17.7,23.3,25.7
|
||||
117.5,0,16.4,17.9,23.5,26
|
||||
118,0,16.5,18,23.7,26.2
|
||||
118.5,0,16.7,18.2,23.9,26.5
|
||||
119,0,16.8,18.3,24.1,26.7
|
||||
119.5,0,16.9,18.5,24.4,27
|
||||
120,0,17.1,18.6,24.6,27.3
|
||||
|
|
After Width: | Height: | Size: 7.5 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 101 KiB |
|
After Width: | Height: | Size: 475 B |
|
After Width: | Height: | Size: 3.0 KiB |
|
After Width: | Height: | Size: 322 B |
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 23 KiB |
|
After Width: | Height: | Size: 535 KiB |
|
After Width: | Height: | Size: 3.3 KiB |
|
After Width: | Height: | Size: 2.3 KiB |
|
After Width: | Height: | Size: 61 KiB |
|
After Width: | Height: | Size: 243 KiB |
|
After Width: | Height: | Size: 5.8 KiB |
|
After Width: | Height: | Size: 3.8 KiB |
|
After Width: | Height: | Size: 851 KiB |
|
After Width: | Height: | Size: 310 KiB |
|
After Width: | Height: | Size: 422 KiB |
|
After Width: | Height: | Size: 526 KiB |
|
After Width: | Height: | Size: 116 KiB |
|
After Width: | Height: | Size: 1.2 MiB |
|
After Width: | Height: | Size: 338 KiB |
|
After Width: | Height: | Size: 884 KiB |
|
After Width: | Height: | Size: 5.0 KiB |
|
After Width: | Height: | Size: 35 KiB |