jeti-log 0.1.1 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 158deb9294114c12180cf33b96f0647c6d17caf3
4
- data.tar.gz: c55a6188529118570b4e1e2e7a0abe9d2c104fa9
3
+ metadata.gz: 0c36674e50bbf76560d622f1a3dabe38e6e12c83
4
+ data.tar.gz: 066bd868467244799bdd667048accdf0711d7914
5
5
  SHA512:
6
- metadata.gz: ee311d71497959b42d29dc478ea3401b01a44617fdbbcf9fed02dbbc18fff4d7c8c703f8d9cdee2668d68686034323762fe570ec3178492d004233a3ec24732d
7
- data.tar.gz: 2d6a18756da1256761b7fc24d65f1f9a614d09b13a828c225b32b22f36023bac0d71e5e95d8fc910e4678311a8ba80e1715460cc88f5038de99793a90083a9af
6
+ metadata.gz: e792affed5a81725337e60177404c788e5a25149729140f93519593ff077775b8884a36256ccfb1937364c1f636318f918a9e8efbd6dcdcae053f906339b7369
7
+ data.tar.gz: 36467cb5e3a38cd4e3b66c49bbdeb21949a28a4f8ae3ce530c5c25a65e3abe513e9a89211187149eeac7cc822e8ec42d2b9b3139135df2f4446c4d93fb97ac16
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --color
@@ -1,3 +1,4 @@
1
+ require 'jeti/log/coordinate'
1
2
  require 'jeti/log/entry'
2
3
  require 'jeti/log/file'
3
4
  require 'jeti/log/header'
@@ -0,0 +1,30 @@
1
+ module Jeti; module Log;
2
+
3
+ class Coordinate
4
+
5
+ attr_reader :time, :latitude, :longitude, :course
6
+
7
+ def initialize(time, latitude, longitude, altitude, course)
8
+ @time = time
9
+ @latitude = latitude
10
+ @longitude = longitude
11
+ @altitude = altitude
12
+ @course = course
13
+ end
14
+
15
+ # Gets the altitude, in desired unit.
16
+ #
17
+ # @param unit one of :feet, :meters to define desired unit
18
+ # @return [Float] altitude in the desired unit
19
+ def altitude(unit = :feet)
20
+ case unit
21
+ when :feet
22
+ @altitude * 0.32808399
23
+ else
24
+ @altitude
25
+ end
26
+ end
27
+
28
+ end
29
+
30
+ end; end
@@ -60,7 +60,7 @@ module Jeti; module Log;
60
60
  end
61
61
 
62
62
  def antenna1_signals
63
- @antenna1_signals ||= build_value_dataset('Rx', 'A1')
63
+ @antenna1_signals ||= build_value_dataset(/Rx/, /A1/)
64
64
  end
65
65
 
66
66
  def antenna2_signals?
@@ -68,7 +68,37 @@ module Jeti; module Log;
68
68
  end
69
69
 
70
70
  def antenna2_signals
71
- @antenna2_signals ||= build_value_dataset('Rx', 'A2')
71
+ @antenna2_signals ||= build_value_dataset(/Rx/, /A2/)
72
+ end
73
+
74
+ def bec_voltages?
75
+ !bec_voltages.empty?
76
+ end
77
+
78
+ def bec_voltages
79
+ @bec_voltages ||= build_bec_voltages
80
+ end
81
+
82
+ def esc_voltages?
83
+ !esc_voltages.empty?
84
+ end
85
+
86
+ def esc_voltages
87
+ @esc_voltages ||= build_esc_voltages
88
+ end
89
+
90
+ def esc_temperatures?
91
+ !esc_temperatures.empty?
92
+ end
93
+
94
+ def esc_temperatures(unit = :c)
95
+ @esc_temperatures ||= build_value_dataset(/Mezon/i, /Temp/)
96
+ case unit
97
+ when :f
98
+ @esc_temperatures.map { |t| [t[0], 32 + (t[1] * (9.0 / 5.0))] }
99
+ else
100
+ @esc_temperatures
101
+ end
72
102
  end
73
103
 
74
104
  def rx_voltages?
@@ -84,11 +114,11 @@ module Jeti; module Log;
84
114
  end
85
115
 
86
116
  def signal_qualities
87
- @signal_qualities ||= build_value_dataset('Rx', "Q")
117
+ @signal_qualities ||= build_value_dataset(/Rx/, /Q/)
88
118
  end
89
119
 
90
120
  def mgps_locations?
91
- device_present?('MGPS')
121
+ device_present?(/MGPS/)
92
122
  end
93
123
 
94
124
  def mgps_locations
@@ -156,7 +186,7 @@ module Jeti; module Log;
156
186
  raise RuntimeError, 'No coordinates available for KML generation' unless to_kml?
157
187
  options = apply_default_placemark_options(options)
158
188
 
159
- coords = mgps_locations.map { |l| [l[1][:longitude], l[1][:latitude], l[1][:altitude]] }
189
+ coords = mgps_locations.map { |l| [l.longitude, l.latitude, l.altitude] }
160
190
  KML::Placemark.new(
161
191
  :name => options[:name],
162
192
  :style_url => options[:style_url],
@@ -188,37 +218,42 @@ module Jeti; module Log;
188
218
  end
189
219
 
190
220
  def build_mgps_locations
191
- lats = build_value_dataset('MGPS', 'Latitude')
192
- lons = build_value_dataset('MGPS', 'Longitude')
193
- alts = build_value_dataset('MGPS', 'Altitude')
194
- crss = build_value_dataset('MGPS', 'Course')
195
-
196
- coords = lats.map { |l| [l[0], { latitude: l[1] }] }
197
- coords.map do |c|
198
- [
199
- c[0],
200
- {
201
- longitude: lons.min_by { |lon| (lon[0] - c[0]).abs }[1],
202
- altitude: alts.min_by { |alt| (alt[0] - c[0]).abs }[1],
203
- course: crss.min_by { |crs| (crs[0] - c[0]).abs }[1]
204
- }.merge(c[1])
205
- ]
221
+ lats = build_value_dataset(/MGPS/, /Latitude/)
222
+ lons = build_value_dataset(/MGPS/, /Longitude/)
223
+ alts = build_value_dataset(/MGPS/, /Altitude/)
224
+ crss = build_value_dataset(/MGPS/, /Course/)
225
+
226
+ lats.map do |raw_lat|
227
+ time = raw_lat[0]
228
+ lat = raw_lat[1]
229
+ lon = lons.min_by { |lon| (lon[0] - time).abs }[1]
230
+ alt = alts.min_by { |alt| (alt[0] - time).abs }[1]
231
+ crs = crss.min_by { |crs| (crs[0] - time).abs }[1]
232
+ Coordinate.new(time, lat, lon, alt, crs)
206
233
  end
207
234
  end
208
235
 
236
+ def build_bec_voltages
237
+ build_value_dataset(/Mezon/i, /U BEC/, ->(val) { val / 10.0 })
238
+ end
239
+
240
+ def build_esc_voltages
241
+ build_value_dataset(/Mezon/i, /U Battery/, ->(val) { val / 10.0 })
242
+ end
243
+
209
244
  def build_rx_voltages
210
- build_value_dataset('Rx', 'U Rx', ->(val) { val / 100.0 })
245
+ build_value_dataset(/Rx/, /U Rx/, ->(val) { val / 100.0 })
211
246
  end
212
247
 
213
248
  def build_value_dataset(device, sensor, modifier = ->(val) { val })
214
249
  headers, entries = headers_and_entries_by_device(device)
215
- sensor_id = (headers.select { |h| h.name == sensor })[0].sensor_id
250
+ sensor_id = (headers.select { |h| sensor =~ h.name })[0].sensor_id
216
251
  entries.reject! { |e| e.detail(sensor_id).nil? }
217
252
  entries.map { |e| [e.time, modifier.call(e.value(sensor_id))] }
218
253
  end
219
254
 
220
255
  def headers_and_entries_by_device(device)
221
- headers = @headers.select { |h| h.name == device }
256
+ headers = @headers.select { |h| device =~ h.name }
222
257
  return [[],[]] if headers.empty?
223
258
 
224
259
  id = headers.first.id
@@ -228,7 +263,7 @@ module Jeti; module Log;
228
263
  end
229
264
 
230
265
  def device_present?(device)
231
- @headers.any? { |h| h.name == device }
266
+ @headers.any? { |h| device =~ h.name }
232
267
  end
233
268
 
234
269
  end
@@ -1,5 +1,5 @@
1
1
  module Jeti
2
2
  module Log
3
- VERSION = '0.1.1'
3
+ VERSION = '0.2.0'
4
4
  end
5
5
  end
@@ -0,0 +1,7 @@
1
+ require 'spec_helper'
2
+
3
+ describe Jeti::Log::Coordinate do
4
+
5
+ it 'does stuff'
6
+
7
+ end
@@ -0,0 +1,476 @@
1
+ # Goblin 700
2
+ 000000000;4291420554;0;Tx;
3
+ 000000000;4272321920;0;Rx;
4
+ 000000000;4272321920;1;U Rx;V
5
+ 000000000;4272321920;2;A1;
6
+ 000000000;4272321920;3;A2;
7
+ 000000000;4272321920;4;Q;%
8
+ 000000000;3920121719;0;MEZON 130;
9
+ 000000000;3920121719;1;U Battery;V
10
+ 000000000;3920121719;2;I Battery;A
11
+ 000000000;3920121719;3;U BEC;V
12
+ 000000000;3920121719;4;I BEC;A
13
+ 000000000;3920121719;5;Capacity;mAh
14
+ 000000000;3920121719;6;Revolution;RPM
15
+ 000000000;3920121719;7;Temp.;�C
16
+ 000000000;3920121719;8;Run Time;s
17
+ 000000000;3920121719;9;PWM;%
18
+ 001009713;3920121719;1;1;1;229
19
+ 001009713;3920121719;2;1;0;0
20
+ 001009713;3920121719;3;1;1;55
21
+ 001009713;3920121719;4;1;1;0
22
+ 001009715;3920121719;5;4;0;0
23
+ 001009715;3920121719;6;4;0;0
24
+ 001009715;3920121719;7;1;0;21
25
+ 001009715;3920121719;8;5;0;0
26
+ 001009715;3920121719;9;1;0;0
27
+ 001009799;3920121719;1;1;1;229
28
+ 001009799;3920121719;2;1;0;0
29
+ 001009799;3920121719;3;1;1;55
30
+ 001009799;3920121719;4;1;1;0
31
+ 001009799;3920121719;6;4;0;0
32
+ 001009799;3920121719;9;1;0;0
33
+ 001009839;4272321920;1;1;2;766;2;1;0;9;3;1;0;9;4;1;0;100
34
+ 001009904;3920121719;1;1;1;229
35
+ 001009909;3920121719;2;1;0;0
36
+ 001009910;3920121719;4;1;1;0
37
+ 001009910;3920121719;5;4;0;0
38
+ 001009910;3920121719;6;4;0;0
39
+ 001009910;3920121719;9;1;0;0
40
+ 001010031;3920121719;1;1;1;229
41
+ 001010031;3920121719;2;1;0;0
42
+ 001010031;3920121719;3;1;1;55
43
+ 001010031;3920121719;4;1;1;0
44
+ 001010032;3920121719;6;4;0;0
45
+ 001010032;3920121719;9;1;0;0
46
+ 001010141;3920121719;1;1;1;229
47
+ 001010141;3920121719;2;1;0;0
48
+ 001010141;3920121719;4;1;1;0
49
+ 001010141;3920121719;6;4;0;0
50
+ 001010141;3920121719;7;1;0;21
51
+ 001010141;3920121719;9;1;0;0
52
+ 001010199;3920121719;1;1;1;229
53
+ 001010199;3920121719;2;1;0;0
54
+ 001010199;3920121719;3;1;1;55
55
+ 001010199;3920121719;4;1;1;0
56
+ 001010199;3920121719;6;4;0;0
57
+ 001010199;3920121719;9;1;0;0
58
+ 001010319;3920121719;1;1;1;229
59
+ 001010319;3920121719;2;1;0;0
60
+ 001010319;3920121719;4;1;1;0
61
+ 001010319;3920121719;5;4;0;0
62
+ 001010319;3920121719;6;4;0;0
63
+ 001010319;3920121719;9;1;0;0
64
+ 001010391;4272321920;1;1;2;766;2;1;0;9;3;1;0;9;4;1;0;96
65
+ 001010391;3920121719;1;1;1;229
66
+ 001010391;3920121719;2;1;0;0
67
+ 001010391;3920121719;3;1;1;55
68
+ 001010391;3920121719;4;1;1;0
69
+ 001010394;3920121719;6;4;0;0
70
+ 001010394;3920121719;9;1;0;0
71
+ 001010502;3920121719;1;1;1;229
72
+ 001010503;3920121719;2;1;0;0
73
+ 001010503;3920121719;4;1;1;0
74
+ 001010503;3920121719;6;4;0;0
75
+ 001010503;3920121719;7;1;0;21
76
+ 001010503;3920121719;9;1;0;0
77
+ 001010620;3920121719;1;1;1;229
78
+ 001010620;3920121719;2;1;0;0
79
+ 001010620;3920121719;3;1;1;55
80
+ 001010620;3920121719;4;1;1;0
81
+ 001010621;3920121719;6;4;0;0
82
+ 001010621;3920121719;9;1;0;0
83
+ 001010879;4272321920;1;1;2;766;2;1;0;9;3;1;0;9;4;1;0;96
84
+ 001011179;3920121719;1;1;1;229
85
+ 001011182;3920121719;2;1;0;0
86
+ 001011182;3920121719;4;1;1;0
87
+ 001011182;3920121719;6;4;0;0
88
+ 001011182;3920121719;8;5;0;0
89
+ 001011182;3920121719;9;1;0;0
90
+ 001011379;3920121719;1;1;1;229
91
+ 001011379;3920121719;2;1;0;0
92
+ 001011379;3920121719;3;1;1;55
93
+ 001011379;3920121719;4;1;1;0
94
+ 001011379;3920121719;6;4;0;0
95
+ 001011381;3920121719;9;1;0;0
96
+ 001011399;4272321920;1;1;2;766;2;1;0;9;3;1;0;9;4;1;0;96
97
+ 001011499;3920121719;1;1;1;229
98
+ 001011499;3920121719;2;1;0;0
99
+ 001011499;3920121719;4;1;1;0
100
+ 001011499;3920121719;5;4;0;0
101
+ 001011499;3920121719;6;4;0;0
102
+ 001011502;3920121719;9;1;0;0
103
+ 001011591;3920121719;1;1;1;229
104
+ 001011591;3920121719;2;1;0;0
105
+ 001011591;3920121719;3;1;1;55
106
+ 001011591;3920121719;4;1;1;0
107
+ 001011591;3920121719;6;4;0;0
108
+ 001011591;3920121719;9;1;0;0
109
+ 001011707;3920121719;1;1;1;229
110
+ 001011707;3920121719;2;1;0;0
111
+ 001011707;3920121719;4;1;1;0
112
+ 001011707;3920121719;6;4;0;0
113
+ 001011707;3920121719;7;1;0;21
114
+ 001011707;3920121719;9;1;0;0
115
+ 001011820;3920121719;1;1;1;229
116
+ 001011821;3920121719;2;1;0;0
117
+ 001011821;3920121719;3;1;1;55
118
+ 001011821;3920121719;4;1;1;0
119
+ 001011824;3920121719;6;4;0;0
120
+ 001011824;3920121719;9;1;0;0
121
+ 001011899;3920121719;1;1;1;229
122
+ 001011899;3920121719;2;1;0;0
123
+ 001011899;3920121719;4;1;1;0
124
+ 001011899;3920121719;5;4;0;0
125
+ 001011899;3920121719;6;4;0;0
126
+ 001011899;3920121719;9;1;0;0
127
+ 001011949;4272321920;1;1;2;766;2;1;0;9;3;1;0;9;4;1;0;98
128
+ 001012019;3920121719;1;1;1;229
129
+ 001012019;3920121719;2;1;0;0
130
+ 001012019;3920121719;3;1;1;55
131
+ 001012019;3920121719;4;1;1;0
132
+ 001012019;3920121719;6;4;0;0
133
+ 001012019;3920121719;9;1;0;0
134
+ 001012119;3920121719;1;1;1;229
135
+ 001012123;3920121719;2;1;0;0
136
+ 001012123;3920121719;4;1;1;0
137
+ 001012123;3920121719;6;4;0;0
138
+ 001012123;3920121719;7;1;0;21
139
+ 001012123;3920121719;9;1;0;0
140
+ 001012219;3920121719;1;1;1;229
141
+ 001012219;3920121719;2;1;0;0
142
+ 001012219;3920121719;3;1;1;55
143
+ 001012219;3920121719;4;1;1;0
144
+ 001012219;3920121719;6;4;0;0
145
+ 001012220;3920121719;9;1;0;0
146
+ 001012339;3920121719;1;1;1;229
147
+ 001012339;3920121719;2;1;0;0
148
+ 001012339;3920121719;4;1;1;0
149
+ 001012339;3920121719;6;4;0;0
150
+ 001012339;3920121719;8;5;0;0
151
+ 001012339;3920121719;9;1;0;0
152
+ 001012431;3920121719;1;1;1;229
153
+ 001012434;3920121719;2;1;0;0
154
+ 001012434;3920121719;3;1;1;55
155
+ 001012434;3920121719;4;1;1;0
156
+ 001012434;3920121719;6;4;0;0
157
+ 001012434;3920121719;9;1;0;0
158
+ 001012439;4272321920;1;1;2;766;2;1;0;9;3;1;0;9;4;1;0;98
159
+ 001012541;3920121719;1;1;1;229
160
+ 001012541;3920121719;2;1;0;0
161
+ 001012541;3920121719;4;1;1;0
162
+ 001012541;3920121719;5;4;0;0
163
+ 001012541;3920121719;6;4;0;0
164
+ 001012541;3920121719;9;1;0;0
165
+ 001012661;3920121719;1;1;1;229
166
+ 001012661;3920121719;2;1;0;0
167
+ 001012661;3920121719;3;1;1;55
168
+ 001012661;3920121719;4;1;1;0
169
+ 001012664;3920121719;6;4;0;0
170
+ 001012664;3920121719;9;1;0;0
171
+ 001012791;3920121719;1;1;1;229
172
+ 001012791;3920121719;2;1;0;0
173
+ 001012791;3920121719;4;1;1;0
174
+ 001012791;3920121719;6;4;0;0
175
+ 001012792;3920121719;7;1;0;21
176
+ 001012792;3920121719;9;1;0;0
177
+ 001012859;3920121719;1;1;1;229
178
+ 001012859;3920121719;2;1;0;0
179
+ 001012859;3920121719;3;1;1;55
180
+ 001012859;3920121719;4;1;1;0
181
+ 001012859;3920121719;6;4;0;0
182
+ 001012859;3920121719;9;1;0;0
183
+ 001012959;4272321920;1;1;2;766;2;1;0;9;3;1;0;9;4;1;0;100
184
+ 001013059;3920121719;1;1;1;229
185
+ 001013059;3920121719;2;1;0;0
186
+ 001013062;3920121719;4;1;1;0
187
+ 001013062;3920121719;5;4;0;0
188
+ 001013062;3920121719;6;4;0;0
189
+ 001013062;3920121719;9;1;0;0
190
+ 001013179;3920121719;1;1;1;229
191
+ 001013179;3920121719;2;1;0;0
192
+ 001013179;3920121719;3;1;1;55
193
+ 001013179;3920121719;4;1;1;0
194
+ 001013179;3920121719;6;4;0;0
195
+ 001013179;3920121719;9;1;0;0
196
+ 001013271;3920121719;1;1;1;229
197
+ 001013271;3920121719;2;1;0;0
198
+ 001013272;3920121719;4;1;1;0
199
+ 001013272;3920121719;6;4;0;0
200
+ 001013272;3920121719;7;1;0;21
201
+ 001013272;3920121719;9;1;0;0
202
+ 001013399;3920121719;1;1;1;229
203
+ 001013402;3920121719;2;1;0;0
204
+ 001013402;3920121719;3;1;1;55
205
+ 001013402;3920121719;4;1;1;0
206
+ 001013402;3920121719;6;4;0;0
207
+ 001013402;3920121719;9;1;0;0
208
+ 001013500;4272321920;1;1;2;766;2;1;0;9;3;1;0;9;4;1;0;96
209
+ 001013500;3920121719;1;1;1;229
210
+ 001013500;3920121719;2;1;0;0
211
+ 001013500;3920121719;4;1;1;0
212
+ 001013500;3920121719;6;4;0;0
213
+ 001013500;3920121719;8;5;0;0
214
+ 001013500;3920121719;9;1;0;0
215
+ 001013579;3920121719;1;1;1;229
216
+ 001013579;3920121719;2;1;0;0
217
+ 001013579;3920121719;3;1;1;55
218
+ 001013579;3920121719;4;1;1;0
219
+ 001013579;3920121719;6;4;0;0
220
+ 001013596;3920121719;9;1;0;0
221
+ 001013679;3920121719;1;1;1;229
222
+ 001013679;3920121719;2;1;0;0
223
+ 001013679;3920121719;4;1;1;0
224
+ 001013679;3920121719;5;4;0;0
225
+ 001013679;3920121719;6;4;0;0
226
+ 001013679;3920121719;9;1;0;0
227
+ 001013779;3920121719;1;1;1;229
228
+ 001013779;3920121719;2;1;0;0
229
+ 001013779;3920121719;3;1;1;55
230
+ 001013779;3920121719;4;1;1;0
231
+ 001013779;3920121719;6;4;0;0
232
+ 001013779;3920121719;9;1;0;0
233
+ 001013879;3920121719;1;1;1;229
234
+ 001013879;3920121719;2;1;0;0
235
+ 001013879;3920121719;4;1;1;0
236
+ 001013879;3920121719;6;4;0;0
237
+ 001013883;3920121719;7;1;0;21
238
+ 001013883;3920121719;9;1;0;0
239
+ 001013991;3920121719;1;1;1;229
240
+ 001013991;3920121719;2;1;0;0
241
+ 001013991;3920121719;3;1;1;55
242
+ 001013991;3920121719;4;1;1;0
243
+ 001013991;3920121719;6;4;0;0
244
+ 001013991;3920121719;9;1;0;0
245
+ 001013999;4272321920;1;1;2;766;2;1;0;9;3;1;0;9;4;1;0;98
246
+ 001014519;4272321920;1;1;2;766;2;1;0;9;3;1;0;9;4;1;0;96
247
+ 001014519;3920121719;1;1;1;229
248
+ 001014519;3920121719;2;1;0;0
249
+ 001014519;3920121719;4;1;1;0
250
+ 001014519;3920121719;5;4;0;0
251
+ 001014520;3920121719;6;4;0;0
252
+ 001014520;3920121719;9;1;0;0
253
+ 001014619;3920121719;1;1;1;229
254
+ 001014619;3920121719;2;1;0;0
255
+ 001014619;3920121719;3;1;1;55
256
+ 001014619;3920121719;4;1;1;0
257
+ 001014619;3920121719;6;4;0;0
258
+ 001014621;3920121719;9;1;0;0
259
+ 001014719;3920121719;1;1;1;229
260
+ 001014719;3920121719;2;1;0;0
261
+ 001014719;3920121719;4;1;1;0
262
+ 001014719;3920121719;6;4;0;0
263
+ 001014719;3920121719;7;1;0;21
264
+ 001014719;3920121719;9;1;0;0
265
+ 001014831;3920121719;1;1;1;229
266
+ 001014831;3920121719;2;1;0;0
267
+ 001014831;3920121719;3;1;1;55
268
+ 001014831;3920121719;4;1;1;0
269
+ 001014831;3920121719;6;4;0;0
270
+ 001014834;3920121719;9;1;0;0
271
+ 001014944;3920121719;1;1;1;229
272
+ 001014944;3920121719;2;1;0;0
273
+ 001014944;3920121719;4;1;1;0
274
+ 001014944;3920121719;6;4;0;0
275
+ 001014944;3920121719;8;5;0;0
276
+ 001014945;3920121719;9;1;0;0
277
+ 001015060;4272321920;1;1;2;766;2;1;0;9;3;1;0;9;4;1;0;100
278
+ 001015139;3920121719;1;1;1;229
279
+ 001015139;3920121719;2;1;0;0
280
+ 001015139;3920121719;3;1;1;55
281
+ 001015139;3920121719;4;1;1;0
282
+ 001015139;3920121719;6;4;0;0
283
+ 001015140;3920121719;9;1;0;0
284
+ 001015239;3920121719;1;1;1;229
285
+ 001015239;3920121719;2;1;0;0
286
+ 001015242;3920121719;4;1;1;0
287
+ 001015242;3920121719;5;4;0;0
288
+ 001015242;3920121719;6;4;0;0
289
+ 001015242;3920121719;9;1;0;0
290
+ 001015339;3920121719;1;1;1;229
291
+ 001015339;3920121719;2;1;0;0
292
+ 001015339;3920121719;3;1;1;55
293
+ 001015339;3920121719;4;1;1;0
294
+ 001015339;3920121719;6;4;0;0
295
+ 001015339;3920121719;9;1;0;0
296
+ 001015459;3920121719;1;1;1;229
297
+ 001015459;3920121719;2;1;0;0
298
+ 001015459;3920121719;4;1;1;0
299
+ 001015459;3920121719;6;4;0;0
300
+ 001015460;3920121719;7;1;0;21
301
+ 001015460;3920121719;9;1;0;0
302
+ 001015559;4272321920;1;1;2;766;2;1;0;9;3;1;0;9;4;1;0;98
303
+ 001015562;3920121719;1;1;1;229
304
+ 001015562;3920121719;2;1;0;0
305
+ 001015562;3920121719;3;1;1;55
306
+ 001015562;3920121719;4;1;1;0
307
+ 001015562;3920121719;6;4;0;0
308
+ 001015562;3920121719;9;1;0;0
309
+ 001015671;3920121719;1;1;1;229
310
+ 001015671;3920121719;2;1;0;0
311
+ 001015671;3920121719;4;1;1;0
312
+ 001015671;3920121719;5;4;0;0
313
+ 001015671;3920121719;6;4;0;0
314
+ 001015672;3920121719;9;1;0;0
315
+ 001015781;3920121719;1;1;1;229
316
+ 001015781;3920121719;2;1;0;0
317
+ 001015781;3920121719;3;1;1;55
318
+ 001015781;3920121719;4;1;1;0
319
+ 001015781;3920121719;6;4;0;0
320
+ 001015784;3920121719;9;1;0;0
321
+ 001015900;3920121719;1;1;1;229
322
+ 001015900;3920121719;2;1;0;0
323
+ 001015900;3920121719;4;1;1;0
324
+ 001015901;3920121719;6;4;0;0
325
+ 001015901;3920121719;7;1;0;21
326
+ 001015901;3920121719;9;1;0;0
327
+ 001015979;3920121719;1;1;1;229
328
+ 001015979;3920121719;2;1;0;0
329
+ 001015979;3920121719;3;1;1;55
330
+ 001015979;3920121719;4;1;1;0
331
+ 001015979;3920121719;6;4;0;0
332
+ 001015979;3920121719;9;1;0;0
333
+ 001016079;4272321920;1;1;2;766;2;1;0;9;3;1;0;9;4;1;0;100
334
+ 001016099;3920121719;1;1;1;229
335
+ 001016099;3920121719;2;1;0;0
336
+ 001016099;3920121719;4;1;1;0
337
+ 001016103;3920121719;6;4;0;0
338
+ 001016105;3920121719;8;5;0;0
339
+ 001016105;3920121719;9;1;0;0
340
+ 001016199;3920121719;1;1;1;229
341
+ 001016199;3920121719;2;1;0;0
342
+ 001016199;3920121719;3;1;1;55
343
+ 001016199;3920121719;4;1;1;0
344
+ 001016199;3920121719;6;4;0;0
345
+ 001016200;3920121719;9;1;0;0
346
+ 001016299;3920121719;1;1;1;229
347
+ 001016299;3920121719;2;1;0;0
348
+ 001016299;3920121719;4;1;1;0
349
+ 001016299;3920121719;5;4;0;0
350
+ 001016299;3920121719;6;4;0;0
351
+ 001016299;3920121719;9;1;0;0
352
+ 001016390;3920121719;1;1;1;229
353
+ 001016390;3920121719;2;1;0;0
354
+ 001016393;3920121719;3;1;1;55
355
+ 001016393;3920121719;4;1;1;0
356
+ 001016393;3920121719;6;4;0;0
357
+ 001016393;3920121719;9;1;0;0
358
+ 001016511;3920121719;1;1;1;229
359
+ 001016511;3920121719;2;1;0;0
360
+ 001016512;3920121719;4;1;1;0
361
+ 001016512;3920121719;6;4;0;0
362
+ 001016512;3920121719;7;1;0;21
363
+ 001016512;3920121719;9;1;0;0
364
+ 001016579;3920121719;1;1;1;229
365
+ 001016579;3920121719;2;1;0;0
366
+ 001016579;3920121719;3;1;1;55
367
+ 001016579;3920121719;4;1;1;0
368
+ 001016579;3920121719;6;4;0;0
369
+ 001016579;3920121719;9;1;0;0
370
+ 001016621;4272321920;1;1;2;766;2;1;0;9;3;1;0;9;4;1;0;98
371
+ 001016799;3920121719;1;1;1;229
372
+ 001016799;3920121719;2;1;0;0
373
+ 001016799;3920121719;4;1;1;0
374
+ 001016799;3920121719;5;4;0;0
375
+ 001016799;3920121719;6;4;0;0
376
+ 001016800;3920121719;9;1;0;0
377
+ 001016871;3920121719;1;1;1;229
378
+ 001016871;3920121719;2;1;0;0
379
+ 001016871;3920121719;3;1;1;55
380
+ 001016871;3920121719;4;1;1;0
381
+ 001016872;3920121719;6;4;0;0
382
+ 001016872;3920121719;9;1;0;0
383
+ 001016981;3920121719;1;1;1;229
384
+ 001016981;3920121719;2;1;0;0
385
+ 001016981;3920121719;4;1;1;0
386
+ 001016982;3920121719;6;4;0;0
387
+ 001016982;3920121719;7;1;0;21
388
+ 001016985;3920121719;9;1;0;0
389
+ 001017101;3920121719;1;1;1;229
390
+ 001017101;3920121719;2;1;0;0
391
+ 001017101;3920121719;3;1;1;55
392
+ 001017101;3920121719;4;1;1;0
393
+ 001017101;3920121719;6;4;0;0
394
+ 001017101;3920121719;9;1;0;0
395
+ 001017119;4272321920;1;1;2;766;2;1;0;9;3;1;0;9;4;1;0;98
396
+ 001017179;3920121719;1;1;1;229
397
+ 001017179;3920121719;2;1;0;0
398
+ 001017179;3920121719;4;1;1;0
399
+ 001017179;3920121719;6;4;0;0
400
+ 001017179;3920121719;8;5;0;0
401
+ 001017179;3920121719;9;1;0;0
402
+ 001017279;3920121719;1;1;1;229
403
+ 001017279;3920121719;2;1;0;0
404
+ 001017282;3920121719;3;1;1;55
405
+ 001017282;3920121719;4;1;1;0
406
+ 001017282;3920121719;6;4;0;0
407
+ 001017282;3920121719;9;1;0;0
408
+ 001017639;4272321920;1;1;2;766;2;1;0;9;3;1;0;9;4;1;0;96
409
+ 001017859;3920121719;1;1;1;229
410
+ 001017859;3920121719;2;1;0;0
411
+ 001017859;3920121719;4;1;1;0
412
+ 001017861;3920121719;5;4;0;0
413
+ 001017861;3920121719;6;4;0;0
414
+ 001017861;3920121719;9;1;0;0
415
+ 001017959;3920121719;1;1;1;229
416
+ 001017959;3920121719;2;1;0;0
417
+ 001017959;3920121719;3;1;1;55
418
+ 001017959;3920121719;4;1;1;0
419
+ 001017959;3920121719;6;4;0;0
420
+ 001017959;3920121719;9;1;0;0
421
+ 001018071;3920121719;1;1;1;229
422
+ 001018071;3920121719;2;1;0;0
423
+ 001018071;3920121719;4;1;1;0
424
+ 001018071;3920121719;6;4;0;0
425
+ 001018071;3920121719;7;1;0;21
426
+ 001018071;3920121719;9;1;0;0
427
+ 001018182;4272321920;1;1;2;766;2;1;0;9;3;1;0;9;4;1;0;100
428
+ 001018183;3920121719;1;1;1;229
429
+ 001018183;3920121719;2;1;0;0
430
+ 001018183;3920121719;3;1;1;55
431
+ 001018183;3920121719;4;1;1;0
432
+ 001018183;3920121719;6;4;0;0
433
+ 001018183;3920121719;9;1;0;0
434
+ 001018301;3920121719;1;1;1;229
435
+ 001018301;3920121719;2;1;0;0
436
+ 001018301;3920121719;4;1;1;0
437
+ 001018304;3920121719;5;4;0;0
438
+ 001018304;3920121719;6;4;0;0
439
+ 001018304;3920121719;9;1;0;0
440
+ 001018379;3920121719;1;1;1;229
441
+ 001018379;3920121719;2;1;0;0
442
+ 001018379;3920121719;3;1;1;55
443
+ 001018379;3920121719;4;1;1;0
444
+ 001018379;3920121719;6;4;0;0
445
+ 001018379;3920121719;9;1;0;0
446
+ 001018479;3920121719;1;1;1;229
447
+ 001018479;3920121719;2;1;0;0
448
+ 001018479;3920121719;4;1;1;0
449
+ 001018479;3920121719;6;4;0;0
450
+ 001018479;3920121719;7;1;0;21
451
+ 001018479;3920121719;9;1;0;0
452
+ 001018579;3920121719;1;1;1;229
453
+ 001018579;3920121719;2;1;0;0
454
+ 001018579;3920121719;3;1;1;55
455
+ 001018582;3920121719;4;1;1;0
456
+ 001018582;3920121719;6;4;0;0
457
+ 001018582;3920121719;9;1;0;0
458
+ 001018679;4272321920;1;1;2;766;2;1;0;9;3;1;0;9;4;1;0;100
459
+ 001018679;3920121719;1;1;1;229
460
+ 001018679;3920121719;2;1;0;0
461
+ 001018679;3920121719;4;1;1;0
462
+ 001018679;3920121719;6;4;0;0
463
+ 001018679;3920121719;8;5;0;0
464
+ 001018680;3920121719;9;1;0;0
465
+ 001018911;3920121719;1;1;1;229
466
+ 001018911;3920121719;2;1;0;0
467
+ 001018911;3920121719;3;1;1;55
468
+ 001018911;3920121719;4;1;1;0
469
+ 001018911;3920121719;6;4;0;0
470
+ 001018912;3920121719;9;1;0;0
471
+ 001018979;3920121719;1;1;1;229
472
+ 001018979;3920121719;2;1;0;0
473
+ 001018979;3920121719;4;1;1;0
474
+ 001018979;3920121719;5;4;0;0
475
+ 001018979;3920121719;6;4;0;0
476
+ 001018979;3920121719;9;1;0;0