jsanders-ruport 1.7.1

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.
Files changed (76) hide show
  1. data/AUTHORS +48 -0
  2. data/LICENSE +59 -0
  3. data/README +114 -0
  4. data/Rakefile +93 -0
  5. data/examples/RWEmerson.jpg +0 -0
  6. data/examples/anon.rb +43 -0
  7. data/examples/btree/commaleon/commaleon.rb +263 -0
  8. data/examples/btree/commaleon/sample_data/ticket_count.csv +124 -0
  9. data/examples/btree/commaleon/sample_data/ticket_count2.csv +119 -0
  10. data/examples/centered_pdf_text_box.rb +83 -0
  11. data/examples/data/tattle.dump +82 -0
  12. data/examples/example.csv +3 -0
  13. data/examples/line_plotter.rb +61 -0
  14. data/examples/pdf_report_with_common_base.rb +72 -0
  15. data/examples/png_embed.rb +54 -0
  16. data/examples/roadmap.png +0 -0
  17. data/examples/row_renderer.rb +39 -0
  18. data/examples/simple_pdf_lines.rb +25 -0
  19. data/examples/simple_templating_example.rb +34 -0
  20. data/examples/tattle_ruby_version.rb +39 -0
  21. data/examples/tattle_rubygems_version.rb +37 -0
  22. data/examples/trac_ticket_status.rb +59 -0
  23. data/lib/ruport.rb +127 -0
  24. data/lib/ruport/controller.rb +616 -0
  25. data/lib/ruport/controller/grouping.rb +71 -0
  26. data/lib/ruport/controller/table.rb +54 -0
  27. data/lib/ruport/data.rb +4 -0
  28. data/lib/ruport/data/feeder.rb +111 -0
  29. data/lib/ruport/data/grouping.rb +399 -0
  30. data/lib/ruport/data/record.rb +297 -0
  31. data/lib/ruport/data/table.rb +950 -0
  32. data/lib/ruport/extensions.rb +4 -0
  33. data/lib/ruport/formatter.rb +254 -0
  34. data/lib/ruport/formatter/csv.rb +149 -0
  35. data/lib/ruport/formatter/html.rb +161 -0
  36. data/lib/ruport/formatter/pdf.rb +591 -0
  37. data/lib/ruport/formatter/template.rb +187 -0
  38. data/lib/ruport/formatter/text.rb +231 -0
  39. data/lib/uport.rb +1 -0
  40. data/test/controller_test.rb +743 -0
  41. data/test/csv_formatter_test.rb +164 -0
  42. data/test/data_feeder_test.rb +88 -0
  43. data/test/grouping_test.rb +410 -0
  44. data/test/helpers.rb +11 -0
  45. data/test/html_formatter_test.rb +201 -0
  46. data/test/pdf_formatter_test.rb +354 -0
  47. data/test/record_test.rb +332 -0
  48. data/test/samples/addressbook.csv +6 -0
  49. data/test/samples/data.csv +3 -0
  50. data/test/samples/data.tsv +3 -0
  51. data/test/samples/dates.csv +1409 -0
  52. data/test/samples/erb_test.sql +1 -0
  53. data/test/samples/query_test.sql +1 -0
  54. data/test/samples/ruport_test.sql +8 -0
  55. data/test/samples/test.sql +2 -0
  56. data/test/samples/test.yaml +3 -0
  57. data/test/samples/ticket_count.csv +124 -0
  58. data/test/table_pivot_test.rb +134 -0
  59. data/test/table_test.rb +838 -0
  60. data/test/template_test.rb +48 -0
  61. data/test/text_formatter_test.rb +258 -0
  62. data/util/bench/data/record/bench_as_vs_to.rb +18 -0
  63. data/util/bench/data/record/bench_constructor.rb +46 -0
  64. data/util/bench/data/record/bench_indexing.rb +65 -0
  65. data/util/bench/data/record/bench_reorder.rb +35 -0
  66. data/util/bench/data/record/bench_to_a.rb +19 -0
  67. data/util/bench/data/table/bench_column_manip.rb +103 -0
  68. data/util/bench/data/table/bench_dup.rb +24 -0
  69. data/util/bench/data/table/bench_init.rb +67 -0
  70. data/util/bench/data/table/bench_manip.rb +125 -0
  71. data/util/bench/formatter/bench_csv.rb +14 -0
  72. data/util/bench/formatter/bench_html.rb +14 -0
  73. data/util/bench/formatter/bench_pdf.rb +14 -0
  74. data/util/bench/formatter/bench_text.rb +14 -0
  75. data/util/bench/samples/tattle.csv +1237 -0
  76. metadata +176 -0
@@ -0,0 +1,332 @@
1
+ #!/usr/bin/env ruby -w
2
+ require File.join(File.expand_path(File.dirname(__FILE__)), "helpers")
3
+
4
+ class TestRecord < Test::Unit::TestCase
5
+
6
+ include Ruport::Data
7
+
8
+ def setup
9
+ @attributes = %w[a b c d]
10
+ @record = Ruport::Data::Record.new [1,2,3,4], :attributes => @attributes
11
+ end
12
+
13
+ context "when initializing with an array with attributes" do
14
+ def specify_key_access_should_work
15
+ assert_equal 1, @record["a"]
16
+ assert_equal 4, @record["d"]
17
+ assert_equal 2, @record.b
18
+ assert_equal 3, @record.c
19
+ assert_raise(NoMethodError) { @record.f }
20
+ end
21
+
22
+ def specify_ordinal_access_should_work
23
+ assert_equal 1, @record[0]
24
+ assert_equal 2, @record[1]
25
+ assert_equal 3, @record[2]
26
+ assert_equal 4, @record[3]
27
+ end
28
+ end
29
+
30
+ context "when initializing with an array without attributes" do
31
+ def specify_ordinal_access_should_work
32
+ record = Ruport::Data::Record.new [1,2,3,4]
33
+ assert_equal 1, record[0]
34
+ assert_equal 2, record[1]
35
+ assert_equal 3, record[2]
36
+ assert_equal 4, record[3]
37
+ end
38
+ end
39
+
40
+ context "when initializing with a hash without attributes" do
41
+ def setup
42
+ @record = Ruport::Data::Record.new({:a => 1, :b => 2, :c => 3},{})
43
+ end
44
+
45
+ def specify_key_access_should_work
46
+ assert_equal 1, @record[:a]
47
+ assert_equal 2, @record[:b]
48
+ assert_equal 3, @record[:c]
49
+ assert_equal 3, @record.c
50
+ end
51
+ end
52
+
53
+ context "when initializing with a hash with attributes" do
54
+ def setup
55
+ @record = Record.new({:a => 1, :b => 2, :c => 3 },
56
+ :attributes => [:c,:b,:a])
57
+ end
58
+
59
+ def specify_key_access_should_work
60
+ assert_equal 1, @record[:a]
61
+ assert_equal 2, @record[:b]
62
+ assert_equal 3, @record[:c]
63
+ assert_equal 3, @record.c
64
+ end
65
+
66
+ def specify_ordinal_access_should_work
67
+ assert_equal 3, @record[0]
68
+ assert_equal 2, @record[1]
69
+ assert_equal 1, @record[2]
70
+ end
71
+ end
72
+
73
+ def test_bracket_equals
74
+ @record[1] = "godzilla"
75
+ @record["d"] = "mothra"
76
+
77
+ assert_equal @record[1], "godzilla"
78
+ assert_equal @record["b"], "godzilla"
79
+
80
+ assert_equal @record[3], "mothra"
81
+ assert_equal @record["d"], "mothra"
82
+ end
83
+
84
+ def test_accessors
85
+ assert_equal @record.a, @record["a"]
86
+ assert_equal @record.b, @record["b"]
87
+ assert_equal @record.c, @record["c"]
88
+ assert_equal @record.d, @record["d"]
89
+ end
90
+
91
+ def test_can_has_id
92
+ record = Ruport::Data::Record.new(:id => 12345)
93
+ assert_equal 12345, record.id
94
+ end
95
+
96
+ def test_nonexistent_accessor
97
+ assert_raise NoMethodError do
98
+ @record.e
99
+ end
100
+ end
101
+
102
+ def test_attribute_setting
103
+ @record.a = 10
104
+ @record.b = 20
105
+ assert_equal 10, @record.a
106
+ assert_equal 20, @record.b
107
+ end
108
+
109
+ def test_to_a
110
+ assert_equal [1,2,3,4], a = @record.to_a; a[0] = "q"
111
+ assert_equal [1,2,3,4], @record.to_a
112
+ end
113
+
114
+ def test_to_hash
115
+ assert_nothing_raised { @record.to_hash }
116
+ assert_equal({ "a" => 1, "b" => 2, "c" => 3, "d" => 4 }, @record.to_hash)
117
+ end
118
+
119
+ def test_rename_attribute
120
+ @record.rename_attribute("b","x")
121
+ assert_equal %w[a x c d], @record.attributes
122
+ assert_equal 2, @record["x"]
123
+ assert_equal 2, @record.x
124
+ assert_equal 2, @record[1]
125
+ end
126
+
127
+ def test_equality
128
+
129
+ dc = %w[a b c d]
130
+ dc2 = %w[a b c d]
131
+ dc3 = %w[a b c]
132
+
133
+ rec1 = Record.new [1,2,3,4]
134
+ rec2 = Record.new [1,2,3,4]
135
+ rec3 = Record.new [1,2]
136
+ rec4 = Record.new [1,2,3,4], :attributes => dc
137
+ rec5 = Record.new [1,2,3,4], :attributes => dc2
138
+ rec6 = Record.new [1,2,3,4], :attributes => dc3
139
+ rec7 = Record.new [1,2], :attributes => dc
140
+
141
+ [:==, :eql?].each do |op|
142
+ assert rec1.send(op, rec2)
143
+ assert rec4.send(op, rec5)
144
+ assert ! rec1.send(op,rec3)
145
+ assert ! rec1.send(op,rec4)
146
+ assert ! rec6.send(op,rec7)
147
+ assert ! rec3.send(op,rec4)
148
+ end
149
+
150
+ end
151
+
152
+ def test_attributes
153
+ assert_equal %w[a b c d], @record.attributes
154
+ @record.attributes = %w[apple banana courier django]
155
+ assert_equal %w[apple banana courier django], @record.attributes
156
+ end
157
+
158
+ def test_reordering
159
+ r = @record.dup.reorder "a","d","b","c"
160
+ assert_equal [1,4,2,3], r.to_a
161
+ assert_equal %w[a d b c], r.attributes
162
+
163
+ assert_equal [1,2,3,4], @record.to_a
164
+ assert_equal %w[a b c d], @record.attributes
165
+
166
+ @record.reorder "a","d","b","c"
167
+ assert_equal [1,4,2,3], @record.to_a
168
+ assert_equal %w[a d b c], @record.attributes
169
+
170
+ @record.reorder 3,1,2
171
+ assert_equal [3,4,2], @record.to_a
172
+ assert_equal %w[c d b], @record.attributes
173
+
174
+ r.reorder %w[a b c]
175
+ assert_equal [1,2,3], r.to_a
176
+ assert_equal %w[a b c], r.attributes
177
+
178
+ assert_raise(ArgumentError) { r.dup.reorder "foo" }
179
+ assert_raise(ArgumentError) { r.dup.reorder 0,5 }
180
+ assert_nothing_raised { r.dup.reorder 0 }
181
+ assert_nothing_raised { r.dup.reorder "a","b" }
182
+ end
183
+
184
+ def test_dup
185
+ rec1 = Record.new [1,2,3,4], :attributes => %w[a b c d]
186
+ rec2 = rec1.dup
187
+
188
+ rec2.a = 5
189
+ rec2["b"] = 7
190
+ rec2[2] = 9
191
+
192
+
193
+ assert_equal [1,2,3,4], rec1.to_a
194
+ assert_equal [5,7,9,4], rec2.to_a
195
+ end
196
+
197
+ def test_records_with_same_attrs_and_data_hash_the_same
198
+ r = Record.new :attributes => %w[a b], :data => [1,2]
199
+ s = Record.new :attributes => %w[a b], :data => [1,2]
200
+ assert_equal r.hash, s.hash
201
+ end
202
+
203
+ def test_records_with_differing_attrs_and_data_hash_differently
204
+ r = Record.new [1,2],:attributes => %w[a b]
205
+ s = Record.new [nil,nil],:attributes => %w[a b]
206
+ assert r.hash != s.hash
207
+
208
+ t = Record.new [1,3],:attributes => %w[a b]
209
+ assert r.hash != t.hash
210
+ end
211
+
212
+ def test_length_and_size
213
+ r = Record.new({:a => 1, :b => 2, :c => 3})
214
+ assert_equal 3,r.length
215
+ assert_equal 3,r.size
216
+ end
217
+
218
+ def test_reindex
219
+ assert_equal %w[a b c d], @record.attributes
220
+ #old_object_id = @record.instance_variable_get(:@attributes).object_id
221
+
222
+ @record.send(:reindex, a=%w[apple banana courier django])
223
+ assert_equal %w[apple banana courier django], @record.attributes
224
+
225
+ new_object_id = @record.instance_variable_get(:@attributes).object_id
226
+ assert_equal a.object_id, new_object_id
227
+ end
228
+
229
+ #----------------------------------------------------------------------
230
+ # BUG Traps
231
+ #----------------------------------------------------------------------
232
+
233
+ def test_ensure_records_dup_source_data
234
+ a = [1,2,3]
235
+ b = Record.new(a)
236
+ b[0] += 1
237
+ assert_equal 2, b[0]
238
+ assert_equal 1, a[0]
239
+
240
+ a = { "a" => 1, "b" => 2, "c" => 3 }
241
+ b = Record.new(a)
242
+ b["a"] += 1
243
+ assert_equal 2, b["a"]
244
+ assert_equal 1, a["a"]
245
+ end
246
+
247
+ # Ticket #172
248
+ def test_ensure_get_really_indifferent
249
+ a = Record.new({"a" => 1, "b" => 2})
250
+ assert_equal(2,a.get("b"))
251
+ assert_equal(2,a.get(:b))
252
+ a = Record.new({:a => 1, :b => 2})
253
+ assert_equal(2,a.get("b"))
254
+ assert_equal(2,a.get(:b))
255
+ end
256
+
257
+ def test_ensure_get_throws_argument_error
258
+ a = Record.new({"a" => 1, "b" => 2})
259
+ assert_raises(ArgumentError) { a.get([]) }
260
+ end
261
+
262
+ def test_ensure_delete_removes_attribute
263
+ a = Record.new({"a" => 1, "b" => 2})
264
+ assert_equal({"a" => 1, "b" => 2}, a.data)
265
+ assert_equal(["a","b"], a.attributes)
266
+
267
+ a.send(:delete, "a")
268
+ assert_equal({"b" => 2}, a.data)
269
+ assert_equal(["b"], a.attributes)
270
+ end
271
+
272
+ def test_ensure_bracket_equals_updates_attributes
273
+ a = Record.new({"a" => 1, "b" => 2})
274
+ assert_equal({"a" => 1, "b" => 2}, a.data)
275
+ assert_equal(["a","b"], a.attributes)
276
+
277
+ a["b"] = 3
278
+ assert_equal({"a" => 1, "b" => 3}, a.data)
279
+ assert_equal(["a","b"], a.attributes)
280
+
281
+ a["c"] = 4
282
+ assert_equal({"a" => 1, "b" => 3, "c" => 4}, a.data)
283
+ assert_equal(["a","b","c"], a.attributes)
284
+ end
285
+
286
+ class MyRecordSub < Ruport::Data::Record; end
287
+
288
+ def test_ensure_record_subclasses_render_properly
289
+ a = MyRecordSub.new [1,2,3]
290
+ assert_equal "1,2,3\n", a.to_csv
291
+ end
292
+
293
+ context "when rendering records" do
294
+
295
+ def specify_record_as_should_work
296
+ rendered_row = @record.as(:text)
297
+ assert_equal("| 1 | 2 | 3 | 4 |\n", rendered_row)
298
+ end
299
+
300
+ def specify_record_to_format_should_work_without_options
301
+ rendered_row = @record.to_text
302
+ assert_equal("| 1 | 2 | 3 | 4 |\n", rendered_row)
303
+ end
304
+
305
+ def specify_record_to_format_should_work_with_options
306
+ rendered_row = @record.to_csv(:format_options => { :col_sep => "\t"})
307
+ assert_equal("1\t2\t3\t4\n",rendered_row)
308
+ end
309
+
310
+ context "when given bad format names" do
311
+ def setup
312
+ @a = Record.new({ "a" => 1, "b" => 2 })
313
+ end
314
+
315
+ def specify_as_should_throw_proper_errors
316
+ assert_raises(Ruport::Controller::UnknownFormatError) { @a.as(:nothing) }
317
+ end
318
+
319
+ def specify_to_format_should_throw_proper_errors
320
+ assert_raises(Ruport::Controller::UnknownFormatError) { @a.to_nothing }
321
+ end
322
+ end
323
+
324
+ ## -- BUG TRAPS --------------------
325
+
326
+ def specify_attributes_should_not_be_broken_by_to_hack
327
+ record = Ruport::Data::Record.new [1,2], :attributes => %w[a to_something]
328
+ assert_equal 2, record.to_something
329
+ end
330
+ end
331
+
332
+ end
@@ -0,0 +1,6 @@
1
+ id,name,phone,street,town,state
2
+ 1,Inky,555-000-1234,Druary Lane,Union City,CT
3
+ 2,Blinky,525-0529-123,Apple Street,Robot Town,NJ
4
+ 3,Clyde,247-219-4820,Sandbox Hill,Alvin's Landing,PA
5
+ 4,Pacman,283-102-8293,Rat Avenue,Southford,VT
6
+ 5,Mrs. Pacman,214-892-1892,Conch Walk,New York,NY
@@ -0,0 +1,3 @@
1
+ "col1","col2","col3"
2
+ "a","b","c"
3
+ "d",,"e"
@@ -0,0 +1,3 @@
1
+ a b c
2
+ 1 2 3
3
+ 4 5 6
@@ -0,0 +1,1409 @@
1
+ "PROCEDURE_DATE","AMOUNT","TARGET_AMOUNT","AMTPINSPAID","Count"
2
+ 05/02/06,0,0,0,1
3
+ 05/02/06,7500,7500,0,2
4
+ 05/02/06,0,0,0,3
5
+ 04/25/06,4400,4400,0,4
6
+ 04/25/06,3500,3500,0,5
7
+ 04/25/06,0,0,0,6
8
+ 05/01/06,13100,18700,0,7
9
+ 05/01/06,0,0,0,8
10
+ 05/01/06,13100,13100,0,9
11
+ 05/01/06,0,0,0,10
12
+ 05/09/06,5300,5300,0,11
13
+ 05/09/06,2900,2900,0,12
14
+ 05/16/06,13100,13100,0,13
15
+ 06/13/06,4400,4400,0,14
16
+ 06/13/06,4400,4400,0,15
17
+ 06/13/06,4400,4400,0,16
18
+ 03/01/06,18700,18700,4600,17
19
+ 03/01/06,0,0,0,18
20
+ 05/16/06,5300,5300,0,19
21
+ 05/16/06,2900,2900,0,20
22
+ 05/31/06,2100,2100,0,21
23
+ 05/31/06,4400,4400,0,22
24
+ 05/31/06,3500,3500,0,23
25
+ 05/31/06,0,0,0,24
26
+ 06/20/06,4400,4400,0,25
27
+ 06/20/06,4400,4400,0,26
28
+ 03/28/06,5300,5300,0,27
29
+ 03/28/06,2900,2900,0,28
30
+ 04/26/06,16400,16400,0,29
31
+ 04/26/06,4400,4400,0,30
32
+ 04/26/06,0,0,0,31
33
+ 04/26/06,0,0,0,32
34
+ 04/26/06,0,7100,0,33
35
+ 05/09/06,0,0,0,34
36
+ 05/09/06,4400,4400,0,35
37
+ 06/14/06,4400,4400,0,36
38
+ 06/14/06,0,0,0,37
39
+ 06/14/06,3500,3500,0,38
40
+ 03/29/06,2900,2900,1700,39
41
+ 03/29/06,5300,5300,2400,40
42
+ 04/26/06,10800,16400,0,41
43
+ 04/26/06,10800,16400,0,42
44
+ 04/26/06,4400,4400,0,43
45
+ 04/26/06,3500,3500,0,44
46
+ 04/26/06,0,0,0,45
47
+ 04/26/06,0,0,0,46
48
+ 03/21/06,9600,9600,3300,47
49
+ 03/21/06,0,0,0,48
50
+ 01/18/06,4400,4400,1900,49
51
+ 01/18/06,3500,3500,1700,50
52
+ 02/28/06,13100,13100,3300,51
53
+ 02/28/06,0,0,0,52
54
+ 04/05/06,4400,4400,0,53
55
+ 06/06/06,13100,13100,0,54
56
+ 06/06/06,0,0,0,55
57
+ 06/06/06,0,0,0,56
58
+ 06/14/06,5300,5300,0,57
59
+ 06/14/06,2900,2900,0,58
60
+ 06/14/06,0,0,0,59
61
+ 01/18/06,3500,3500,1700,60
62
+ 01/18/06,4400,4400,1900,61
63
+ 03/29/06,5300,5300,2400,62
64
+ 03/29/06,2900,2900,1700,63
65
+ 05/02/06,3500,3500,0,64
66
+ 05/02/06,5300,5300,0,65
67
+ 05/02/06,0,0,0,66
68
+ 01/04/06,10800,10800,4400,67
69
+ 01/04/06,4400,4400,1900,68
70
+ 01/04/06,2100,2100,900,69
71
+ 01/04/06,0,0,0,70
72
+ 05/01/06,5800,5800,0,71
73
+ 05/01/06,0,0,0,72
74
+ 05/01/06,0,0,0,73
75
+ 05/01/06,0,0,0,74
76
+ 05/02/06,0,0,0,75
77
+ 05/09/06,10200,10200,0,76
78
+ 05/16/06,0,0,0,77
79
+ 06/06/06,5300,5300,0,78
80
+ 06/06/06,2900,2900,0,79
81
+ 01/04/06,3500,3500,1700,80
82
+ 01/04/06,4400,4400,1900,81
83
+ 06/14/06,5300,5300,0,82
84
+ 06/14/06,2900,2900,0,83
85
+ 02/08/06,13100,13100,3200,84
86
+ 02/08/06,0,0,0,85
87
+ 05/09/06,13100,13100,3200,86
88
+ 05/09/06,0,0,0,87
89
+ 05/09/06,5300,5300,2300,88
90
+ 05/09/06,2900,2900,1600,89
91
+ 05/17/06,13100,13100,0,90
92
+ 05/17/06,4400,4400,0,91
93
+ 01/10/06,5300,5300,2400,92
94
+ 01/10/06,2900,2900,1700,93
95
+ 01/04/06,4400,4400,1900,94
96
+ 01/04/06,3500,3500,0,95
97
+ 01/04/06,10800,10800,4400,96
98
+ 01/04/06,0,0,0,97
99
+ 06/13/06,4400,4400,0,98
100
+ 06/13/06,4400,4400,0,99
101
+ 06/21/06,5300,5300,0,100
102
+ 06/21/06,2900,2900,0,101
103
+ 06/21/06,0,0,0,102
104
+ 01/04/06,5300,5300,2400,103
105
+ 01/04/06,2900,2900,1700,104
106
+ 05/03/06,2100,2100,0,105
107
+ 05/03/06,21000,21000,0,106
108
+ 05/03/06,0,0,0,107
109
+ 05/03/06,0,0,0,108
110
+ 05/24/06,16400,16400,0,109
111
+ 05/24/06,5800,5800,0,110
112
+ 05/24/06,0,0,0,111
113
+ 05/24/06,0,0,0,112
114
+ 06/20/06,0,0,0,113
115
+ 06/20/06,4400,4400,0,114
116
+ 06/20/06,4400,4400,0,115
117
+ 01/04/06,5300,5300,4700,116
118
+ 01/04/06,2900,2900,2900,117
119
+ 04/04/06,5300,5300,0,118
120
+ 04/04/06,2900,2900,0,119
121
+ 02/21/06,5800,5800,5800,120
122
+ 02/22/06,18700,18700,12960,121
123
+ 02/22/06,0,0,0,122
124
+ 02/21/06,11600,11600,9280,123
125
+ 02/22/06,18700,18700,12960,124
126
+ 02/22/06,4400,4400,4400,125
127
+ 02/22/06,0,0,0,126
128
+ 01/23/06,2900,2900,1600,127
129
+ 01/23/06,5300,5300,2300,128
130
+ 02/15/06,4400,4400,1900,129
131
+ 02/28/06,4400,4400,1900,130
132
+ 02/28/06,4400,4400,1900,131
133
+ 05/23/06,4400,4400,0,132
134
+ 05/23/06,3500,3500,0,133
135
+ 01/11/06,18700,18700,4533,134
136
+ 01/11/06,0,0,0,135
137
+ 01/04/06,5300,5300,2400,136
138
+ 01/04/06,2900,2900,1700,137
139
+ 06/07/06,4400,4400,0,138
140
+ 06/07/06,3500,3500,0,139
141
+ 06/07/06,0,0,0,140
142
+ 06/20/06,4400,4400,0,141
143
+ 06/20/06,4400,4400,0,142
144
+ 01/11/06,3500,3500,1700,143
145
+ 01/11/06,2900,2900,1700,144
146
+ 01/11/06,5300,5300,2400,145
147
+ 01/31/06,4400,4400,2000,146
148
+ 01/31/06,4400,4400,2000,147
149
+ 02/07/06,4400,4400,2000,148
150
+ 02/07/06,4400,4400,2000,149
151
+ 04/12/06,24400,24400,0,150
152
+ 05/09/06,27600,27600,0,151
153
+ 05/09/06,0,0,0,152
154
+ 05/09/06,0,0,0,153
155
+ 05/16/06,0,0,0,154
156
+ 02/14/06,13100,13100,0,155
157
+ 02/14/06,0,0,0,156
158
+ 04/25/06,5300,5300,5000,157
159
+ 04/25/06,2900,2900,2800,158
160
+ 04/25/06,0,0,0,159
161
+ 04/26/06,13100,13100,1400,160
162
+ 04/26/06,4400,4400,2500,161
163
+ 04/26/06,0,0,0,162
164
+ 04/26/06,0,0,0,163
165
+ 04/26/06,0,0,0,164
166
+ 01/11/06,2900,2900,1700,165
167
+ 01/11/06,5300,5300,2400,166
168
+ 01/24/06,4400,4400,1900,167
169
+ 01/24/06,3500,3500,1700,168
170
+ 04/26/06,13100,13100,0,169
171
+ 04/26/06,0,0,0,170
172
+ 05/02/06,26300,26300,0,171
173
+ 05/02/06,0,0,0,172
174
+ 05/02/06,0,0,0,173
175
+ 01/04/06,13100,13100,0,174
176
+ 01/04/06,3500,3500,3300,175
177
+ 01/04/06,0,0,0,176
178
+ 02/07/06,4400,4400,1900,177
179
+ 05/16/06,5300,5300,0,178
180
+ 05/16/06,2900,2900,0,179
181
+ 01/17/06,5300,5300,0,180
182
+ 01/17/06,2900,2900,0,181
183
+ 03/07/06,3500,3500,0,182
184
+ 03/07/06,4400,4400,0,183
185
+ 03/07/06,2100,2100,0,184
186
+ 03/07/06,1800,1800,0,185
187
+ 05/31/06,4400,4400,0,186
188
+ 05/31/06,4400,4400,0,187
189
+ 05/31/06,0,0,0,188
190
+ 06/07/06,4400,4400,0,189
191
+ 06/07/06,4400,4400,0,190
192
+ 06/07/06,0,0,0,191
193
+ 02/01/06,2900,2900,1700,192
194
+ 02/01/06,5300,5300,2400,193
195
+ 05/02/06,0,0,0,194
196
+ 02/28/06,5300,5300,2400,195
197
+ 02/28/06,2900,2900,1700,196
198
+ 02/28/06,4400,4400,1900,197
199
+ 02/28/06,11600,11600,4000,198
200
+ 02/28/06,13100,13100,3300,199
201
+ 02/28/06,13100,13100,3300,200
202
+ 02/28/06,0,0,0,201
203
+ 05/02/06,0,0,0,202
204
+ 01/23/06,2900,2900,1742,203
205
+ 01/23/06,5300,5300,2495,204
206
+ 03/15/06,4400,4400,0,205
207
+ 03/15/06,18700,18700,0,206
208
+ 03/15/06,0,0,0,207
209
+ 05/16/06,5300,5300,0,208
210
+ 05/16/06,2900,2900,0,209
211
+ 06/06/06,5300,5300,0,210
212
+ 06/06/06,2900,2900,0,211
213
+ 06/06/06,3500,3500,0,212
214
+ 06/07/06,18700,18700,0,213
215
+ 06/07/06,0,0,0,214
216
+ 06/07/06,0,0,0,215
217
+ 03/28/06,5300,5300,2495,216
218
+ 03/28/06,2900,2900,1742,217
219
+ 01/11/06,3500,3500,1700,218
220
+ 01/11/06,4400,4400,1900,219
221
+ 01/17/06,5300,5300,2400,220
222
+ 01/17/06,2900,2900,1700,221
223
+ 04/25/06,2900,2900,0,222
224
+ 04/25/06,5300,5300,0,223
225
+ 04/25/06,0,0,0,224
226
+ 02/08/06,4400,4400,1900,225
227
+ 03/01/06,2900,2900,1700,226
228
+ 03/01/06,5300,5300,2400,227
229
+ 03/21/06,5300,5300,0,228
230
+ 03/21/06,2900,2900,0,229
231
+ 01/10/06,13100,13100,3300,230
232
+ 01/10/06,4400,4400,1900,231
233
+ 01/10/06,13100,13100,3300,232
234
+ 01/10/06,0,0,0,233
235
+ 05/30/06,5300,5300,0,234
236
+ 05/30/06,2900,2900,0,235
237
+ 06/20/06,0,4400,0,236
238
+ 06/20/06,3500,3500,0,237
239
+ 06/20/06,0,0,0,238
240
+ 01/17/06,5300,5300,2400,239
241
+ 01/17/06,2900,2900,1700,240
242
+ 01/04/06,2900,2900,1700,241
243
+ 01/04/06,5300,5300,2400,242
244
+ 01/11/06,2900,2900,1700,243
245
+ 01/11/06,5300,5300,2400,244
246
+ 01/23/06,2100,2100,900,245
247
+ 01/24/06,10800,16400,4400,246
248
+ 01/24/06,5800,5800,2600,247
249
+ 01/24/06,0,0,0,248
250
+ 04/25/06,0,0,0,249
251
+ 04/25/06,5300,5300,0,250
252
+ 04/25/06,2900,2900,0,251
253
+ 02/28/06,9600,13100,3300,252
254
+ 02/28/06,0,0,0,253
255
+ 04/11/06,4400,4400,0,254
256
+ 03/21/06,2900,2900,1700,255
257
+ 03/21/06,5300,5300,2400,256
258
+ 03/21/06,0,0,0,257
259
+ 04/25/06,3500,3500,0,258
260
+ 04/25/06,4400,4400,0,259
261
+ 04/25/06,0,0,0,260
262
+ 05/17/06,3500,3500,0,261
263
+ 06/14/06,5300,5300,0,262
264
+ 06/14/06,2900,2900,0,263
265
+ 02/08/06,4400,4400,2079,264
266
+ 02/08/06,3500,3500,1829,265
267
+ 01/04/06,0,2900,0,266
268
+ 01/04/06,0,5300,0,267
269
+ 03/07/06,5800,5800,2600,268
270
+ 06/20/06,0,0,0,270
271
+ 06/20/06,4400,4400,0,271
272
+ 06/20/06,3500,3500,0,272
273
+ 03/21/06,5300,5300,2400,273
274
+ 03/21/06,2900,2900,1700,274
275
+ 06/13/06,3500,3500,0,275
276
+ 06/13/06,4400,4400,0,276
277
+ 06/13/06,11600,11600,0,277
278
+ 06/13/06,11600,11600,0,278
279
+ 06/14/06,13100,13100,0,279
280
+ 06/14/06,4400,4400,0,280
281
+ 06/14/06,0,0,0,281
282
+ 06/14/06,0,0,0,282
283
+ 01/24/06,27600,27600,9900,283
284
+ 01/24/06,0,0,0,284
285
+ 01/24/06,0,0,0,285
286
+ 01/24/06,0,7100,0,286
287
+ 02/14/06,27600,27600,0,287
288
+ 02/14/06,0,0,0,288
289
+ 02/14/06,0,7100,0,289
290
+ 04/26/06,4400,4400,0,290
291
+ 04/26/06,16400,16400,0,291
292
+ 04/26/06,0,7100,0,292
293
+ 04/26/06,0,0,0,293
294
+ 04/26/06,0,0,0,294
295
+ 05/10/06,27600,27600,0,295
296
+ 05/10/06,0,0,0,296
297
+ 05/10/06,0,0,0,297
298
+ 05/10/06,0,7100,0,298
299
+ 05/17/06,0,0,0,299
300
+ 01/10/06,4400,4400,1900,300
301
+ 06/20/06,5300,5300,0,301
302
+ 06/20/06,2900,2900,0,302
303
+ 01/04/06,4400,4400,1900,303
304
+ 01/04/06,2900,2900,1700,304
305
+ 01/04/06,5300,5300,2400,305
306
+ 02/08/06,13100,13100,3300,306
307
+ 02/08/06,0,0,0,307
308
+ 04/18/06,5800,5800,0,308
309
+ 04/18/06,15200,15200,0,309
310
+ 04/18/06,0,0,0,310
311
+ 01/24/06,21000,21000,9900,311
312
+ 01/24/06,13100,13100,3300,312
313
+ 01/24/06,0,0,0,313
314
+ 01/24/06,0,7100,0,314
315
+ 01/18/06,3500,3500,1700,315
316
+ 01/18/06,2900,2900,1700,316
317
+ 01/18/06,5300,5300,2400,317
318
+ 03/29/06,2900,2900,2000,318
319
+ 03/29/06,5300,5300,3500,319
320
+ 04/19/06,3500,3500,0,320
321
+ 04/19/06,4400,4400,0,321
322
+ 04/19/06,0,0,0,322
323
+ 06/07/06,3500,3500,0,323
324
+ 06/07/06,4400,4400,0,324
325
+ 06/07/06,0,0,0,325
326
+ 06/20/06,0,0,0,326
327
+ 06/20/06,9500,9500,0,327
328
+ 06/20/06,0,0,0,328
329
+ 01/11/06,4400,4400,2000,329
330
+ 01/11/06,4400,4400,2000,330
331
+ 01/11/06,4400,4400,2000,331
332
+ 01/11/06,13100,13100,3300,332
333
+ 04/18/06,5300,5300,0,333
334
+ 04/18/06,2900,2900,0,334
335
+ 04/18/06,3500,3500,0,335
336
+ 06/06/06,4400,4400,0,336
337
+ 06/06/06,0,0,0,337
338
+ 01/11/06,0,0,0,338
339
+ 01/11/06,0,0,0,339
340
+ 01/24/06,0,0,0,340
341
+ 01/24/06,11600,9600,0,341
342
+ 05/16/06,2900,2900,0,342
343
+ 05/16/06,5300,5300,0,343
344
+ 05/17/06,1800,1800,0,344
345
+ 05/17/06,2100,2100,0,345
346
+ 05/17/06,1800,1800,0,346
347
+ 05/17/06,1800,1800,0,347
348
+ 05/17/06,4400,4400,0,348
349
+ 05/23/06,13100,13100,0,349
350
+ 05/23/06,0,0,0,350
351
+ 05/23/06,0,0,0,351
352
+ 05/23/06,16300,16300,0,352
353
+ 05/23/06,0,0,0,353
354
+ 04/26/06,13100,13100,0,354
355
+ 04/26/06,4400,4400,0,355
356
+ 01/23/06,2900,2900,0,356
357
+ 01/23/06,5300,5300,0,357
358
+ 03/01/06,2900,2900,0,358
359
+ 03/01/06,5300,5300,0,359
360
+ 03/29/06,2900,2900,2800,360
361
+ 03/29/06,5300,5300,5300,361
362
+ 05/24/06,4400,4400,4200,362
363
+ 05/24/06,4400,4400,4200,363
364
+ 05/24/06,0,0,0,364
365
+ 02/21/06,0,0,0,365
366
+ 01/25/06,2900,2900,1700,366
367
+ 01/25/06,7500,7500,2400,367
368
+ 03/01/06,4400,4400,2000,368
369
+ 03/01/06,4400,4400,2000,369
370
+ 02/01/06,13100,13100,3200,370
371
+ 02/01/06,0,0,0,371
372
+ 02/01/06,0,7100,0,372
373
+ 01/25/06,2900,2900,1600,373
374
+ 01/25/06,5300,5300,2300,374
375
+ 02/07/06,4400,4400,1900,375
376
+ 02/07/06,3500,3500,1700,376
377
+ 02/15/06,4400,4400,1900,377
378
+ 02/15/06,4400,4400,1900,378
379
+ 03/07/06,4400,4400,1900,379
380
+ 03/07/06,4400,4400,1900,380
381
+ 03/07/06,2100,2100,900,381
382
+ 03/29/06,5300,5300,2400,382
383
+ 03/29/06,2900,2900,1700,383
384
+ 04/18/06,5300,5300,0,384
385
+ 04/18/06,2900,2900,0,385
386
+ 06/06/06,3500,3500,0,386
387
+ 06/06/06,4400,4400,0,387
388
+ 06/06/06,0,0,0,388
389
+ 01/04/06,11600,13100,3300,389
390
+ 01/04/06,0,0,0,390
391
+ 01/10/06,4400,4400,2000,391
392
+ 06/21/06,0,0,0,392
393
+ 06/21/06,5300,5300,0,393
394
+ 06/21/06,2900,2900,0,394
395
+ 06/06/06,5300,5300,0,395
396
+ 06/06/06,2900,2900,0,396
397
+ 06/21/06,3500,3500,0,397
398
+ 06/21/06,13100,13100,0,398
399
+ 06/21/06,4400,4400,0,399
400
+ 06/21/06,0,0,0,400
401
+ 01/11/06,2900,2900,0,401
402
+ 01/11/06,5300,5300,0,402
403
+ 01/18/06,4400,4400,0,403
404
+ 01/11/06,1800,1800,800,404
405
+ 01/11/06,1800,1800,800,405
406
+ 01/11/06,1800,2100,900,406
407
+ 01/11/06,4400,4400,1900,407
408
+ 01/11/06,3500,3500,0,408
409
+ 01/11/06,0,0,0,409
410
+ 01/11/06,0,0,0,410
411
+ 03/07/06,13100,13100,3300,411
412
+ 03/07/06,0,0,0,412
413
+ 04/04/06,5300,5300,0,413
414
+ 04/04/06,2900,2900,0,414
415
+ 04/11/06,4400,13100,0,415
416
+ 04/12/06,13100,4400,0,416
417
+ 06/06/06,4400,4400,0,417
418
+ 06/06/06,4400,4400,0,418
419
+ 02/28/06,3500,3500,0,419
420
+ 02/28/06,4400,4400,1900,420
421
+ 02/28/06,16400,16400,4400,421
422
+ 02/28/06,0,0,0,422
423
+ 03/21/06,4400,4400,2000,423
424
+ 04/25/06,18700,18700,0,424
425
+ 04/25/06,2100,2100,0,425
426
+ 04/25/06,0,0,0,426
427
+ 04/25/06,0,0,0,427
428
+ 04/25/06,11600,13100,0,428
429
+ 04/25/06,0,0,0,429
430
+ 04/25/06,0,0,0,430
431
+ 05/17/06,13000,0,12232,431
432
+ 05/17/06,0,5300,0,432
433
+ 05/17/06,0,2900,0,433
434
+ 05/23/06,13000,0,0,434
435
+ 05/23/06,0,13100,0,435
436
+ 05/23/06,0,0,0,436
437
+ 05/23/06,0,0,0,437
438
+ 05/30/06,0,13100,0,438
439
+ 05/30/06,0,4400,0,439
440
+ 05/30/06,13000,0,0,440
441
+ 05/30/06,0,3500,0,441
442
+ 05/30/06,0,13100,0,442
443
+ 05/30/06,0,0,0,443
444
+ 05/30/06,0,0,0,444
445
+ 04/18/06,4400,4400,0,445
446
+ 04/18/06,3500,3500,0,446
447
+ 04/18/06,0,0,0,447
448
+ 04/18/06,3500,3500,0,448
449
+ 04/18/06,5300,5300,0,449
450
+ 04/18/06,2900,2900,0,450
451
+ 04/18/06,5300,5300,0,451
452
+ 04/18/06,2900,2900,0,452
453
+ 04/18/06,3500,3500,0,453
454
+ 02/21/06,2900,2900,1600,454
455
+ 02/21/06,5300,5300,2300,455
456
+ 03/01/06,5800,5800,2200,456
457
+ 01/11/06,2900,2900,1700,457
458
+ 01/11/06,5300,5300,2400,458
459
+ 01/25/06,5800,5800,2600,459
460
+ 01/31/06,13100,13100,3300,460
461
+ 01/31/06,4400,4400,2000,461
462
+ 01/31/06,0,0,0,462
463
+ 03/01/06,5800,5800,2600,463
464
+ 03/01/06,2100,2100,900,464
465
+ 03/01/06,16400,16400,4400,465
466
+ 03/01/06,0,0,0,466
467
+ 06/14/06,0,0,0,467
468
+ 06/14/06,4400,4400,0,468
469
+ 06/14/06,3500,3500,0,469
470
+ 05/16/06,4400,4400,0,470
471
+ 05/16/06,3500,3500,0,471
472
+ 05/24/06,4400,4400,0,472
473
+ 05/24/06,4400,4400,0,473
474
+ 05/24/06,0,0,0,474
475
+ 05/24/06,3500,3500,0,475
476
+ 05/24/06,4400,4400,0,476
477
+ 05/24/06,0,0,0,477
478
+ 03/21/06,4400,4400,2000,478
479
+ 03/28/06,4400,4400,2000,479
480
+ 04/05/06,2900,2900,0,480
481
+ 04/05/06,5300,5300,0,481
482
+ 05/23/06,4400,4400,0,482
483
+ 05/23/06,0,0,0,483
484
+ 01/31/06,8000,13100,0,484
485
+ 01/31/06,8000,13100,0,485
486
+ 01/31/06,4400,4400,0,486
487
+ 01/31/06,3500,3500,0,487
488
+ 01/31/06,0,7100,0,488
489
+ 01/31/06,0,0,0,489
490
+ 02/07/06,4400,4400,0,490
491
+ 02/07/06,4400,4400,0,491
492
+ 02/28/06,4400,4400,0,492
493
+ 02/28/06,4400,4400,0,493
494
+ 05/09/06,3500,3500,0,494
495
+ 05/09/06,5300,5300,0,495
496
+ 05/09/06,2900,2900,0,496
497
+ 05/09/06,0,0,0,497
498
+ 02/07/06,22400,22400,0,498
499
+ 02/07/06,0,0,0,499
500
+ 02/07/06,0,0,0,500
501
+ 05/02/06,11600,13100,0,501
502
+ 05/02/06,11600,13100,0,502
503
+ 05/02/06,0,0,0,503
504
+ 05/02/06,0,0,0,504
505
+ 05/02/06,0,7100,0,505
506
+ 05/16/06,4400,4400,0,506
507
+ 05/16/06,4400,4400,0,507
508
+ 05/16/06,4400,4400,0,508
509
+ 05/30/06,2900,2900,0,509
510
+ 05/30/06,5300,5300,0,510
511
+ 05/30/06,0,0,0,511
512
+ 06/13/06,11600,13100,0,512
513
+ 06/13/06,0,7100,0,513
514
+ 06/13/06,0,0,0,514
515
+ 01/24/06,2900,2900,1700,515
516
+ 01/24/06,5300,5300,2400,516
517
+ 06/13/06,13000,0,0,517
518
+ 06/13/06,0,2900,0,518
519
+ 06/13/06,0,5300,0,519
520
+ 06/13/06,0,0,0,520
521
+ 04/25/06,5300,5300,0,521
522
+ 04/25/06,2900,2900,0,522
523
+ 04/25/06,0,0,0,523
524
+ 01/23/06,5300,5300,2495,524
525
+ 01/23/06,2900,2900,1742,525
526
+ 01/23/06,2900,2900,1742,526
527
+ 01/23/06,5300,5300,2495,527
528
+ 03/28/06,5300,5300,2495,528
529
+ 03/28/06,2900,2900,1742,529
530
+ 03/28/06,3500,3500,1829,530
531
+ 04/18/06,16400,16400,0,531
532
+ 04/18/06,4400,4400,0,532
533
+ 04/18/06,0,0,0,533
534
+ 04/18/06,0,0,0,534
535
+ 04/18/06,0,7100,0,535
536
+ 06/06/06,5800,5800,0,536
537
+ 06/06/06,18700,18700,0,537
538
+ 06/06/06,3500,3500,0,538
539
+ 06/06/06,0,0,0,539
540
+ 06/06/06,0,0,0,540
541
+ 06/13/06,5300,5300,0,541
542
+ 06/13/06,2900,2900,0,542
543
+ 05/30/06,5300,5300,0,543
544
+ 05/30/06,2900,2900,0,544
545
+ 05/30/06,0,0,0,545
546
+ 01/24/06,4400,4400,0,546
547
+ 01/24/06,4400,4400,0,547
548
+ 01/31/06,4400,4400,0,548
549
+ 01/31/06,4400,4400,0,549
550
+ 01/18/06,4400,4400,2079,550
551
+ 01/18/06,3500,3500,1829,551
552
+ 01/18/06,10800,16400,3808,552
553
+ 01/18/06,2100,2100,1087,553
554
+ 01/18/06,10800,16400,3808,554
555
+ 01/18/06,0,0,0,555
556
+ 01/11/06,4400,4400,1900,556
557
+ 06/14/06,0,0,0,557
558
+ 06/14/06,5300,5300,0,558
559
+ 06/14/06,2900,2900,0,559
560
+ 04/04/06,5300,5300,0,560
561
+ 04/04/06,2900,2900,0,561
562
+ 04/25/06,5300,5300,5000,562
563
+ 04/25/06,2900,2900,2800,563
564
+ 04/25/06,0,0,0,564
565
+ 05/09/06,18700,9600,3075,565
566
+ 05/09/06,0,0,0,566
567
+ 05/17/06,4400,4400,2500,567
568
+ 05/17/06,13100,13100,4500,568
569
+ 02/01/06,4400,4400,1900,569
570
+ 02/01/06,4400,4400,1900,570
571
+ 02/01/06,4400,4400,1900,571
572
+ 01/24/06,3500,3500,0,572
573
+ 01/24/06,2900,2900,0,573
574
+ 01/24/06,5300,5300,0,574
575
+ 04/11/06,4400,4400,0,575
576
+ 04/11/06,2100,2100,0,576
577
+ 03/07/06,3500,3500,0,577
578
+ 03/07/06,4400,4400,0,578
579
+ 03/15/06,5300,5300,0,579
580
+ 03/15/06,2900,2900,0,580
581
+ 02/21/06,4400,4400,1900,581
582
+ 02/21/06,2100,2100,900,582
583
+ 02/21/06,3500,3500,1700,583
584
+ 03/01/06,2900,2900,1700,584
585
+ 03/01/06,5300,5300,2400,585
586
+ 04/25/06,11600,13100,0,586
587
+ 04/25/06,0,0,0,587
588
+ 04/25/06,0,0,0,588
589
+ 04/25/06,0,0,0,589
590
+ 02/21/06,4400,4400,1900,590
591
+ 02/21/06,3500,3500,1700,591
592
+ 03/01/06,2900,2900,1700,592
593
+ 03/01/06,5300,5300,2400,593
594
+ 01/10/06,5300,5300,2300,594
595
+ 01/10/06,2900,2900,1800,595
596
+ 02/28/06,18700,18700,4300,596
597
+ 02/28/06,5800,5800,2200,597
598
+ 02/28/06,13100,13100,3200,598
599
+ 02/28/06,2100,2100,1000,599
600
+ 02/28/06,0,0,0,600
601
+ 03/07/06,4400,4400,1900,601
602
+ 03/07/06,4400,4400,1900,602
603
+ 04/11/06,8000,14700,4100,603
604
+ 04/11/06,0,0,0,604
605
+ 05/24/06,13100,13100,0,605
606
+ 05/24/06,20000,21000,0,606
607
+ 05/24/06,4400,4400,0,607
608
+ 05/24/06,0,0,0,608
609
+ 05/24/06,0,0,0,609
610
+ 01/17/06,5300,5300,2300,610
611
+ 01/17/06,2900,2900,1600,611
612
+ 01/18/06,2100,2100,1000,612
613
+ 01/18/06,4400,4400,1900,613
614
+ 01/18/06,3500,3500,1700,614
615
+ 01/18/06,0,0,0,615
616
+ 04/25/06,5800,5800,2200,616
617
+ 04/25/06,0,0,0,617
618
+ 05/03/06,4400,4400,1900,618
619
+ 05/03/06,5800,5800,2200,619
620
+ 05/03/06,0,0,0,620
621
+ 05/03/06,0,0,0,621
622
+ 04/19/06,7500,7500,0,622
623
+ 06/20/06,4400,4400,0,623
624
+ 06/20/06,4400,4400,0,624
625
+ 06/20/06,4400,4400,0,625
626
+ 05/02/06,5300,5300,0,626
627
+ 05/02/06,2900,2900,0,627
628
+ 05/23/06,2100,2100,0,628
629
+ 05/23/06,4400,4400,0,629
630
+ 05/23/06,0,0,0,630
631
+ 01/04/06,18700,18700,4600,631
632
+ 01/04/06,0,7100,0,632
633
+ 04/26/06,0,0,0,633
634
+ 01/31/06,4400,4400,1900,634
635
+ 01/31/06,13100,13100,3300,635
636
+ 01/31/06,3500,3500,1700,636
637
+ 01/31/06,11600,11600,4000,637
638
+ 04/04/06,2900,2900,0,638
639
+ 04/04/06,5300,5300,0,639
640
+ 05/24/06,3500,3500,0,640
641
+ 05/24/06,4400,4400,0,641
642
+ 05/24/06,0,0,0,642
643
+ 05/30/06,13100,18700,0,643
644
+ 05/30/06,0,0,0,644
645
+ 05/30/06,0,0,0,645
646
+ 03/15/06,0,3500,0,646
647
+ 03/15/06,13000,0,0,647
648
+ 03/15/06,0,5300,0,648
649
+ 03/15/06,0,2900,0,649
650
+ 03/15/06,13000,0,0,650
651
+ 03/15/06,0,3500,0,651
652
+ 03/15/06,0,2900,0,652
653
+ 03/15/06,0,5300,0,653
654
+ 02/15/06,2900,2900,1742,654
655
+ 02/15/06,5300,5300,2495,655
656
+ 06/21/06,0,0,0,656
657
+ 06/21/06,3500,3500,0,657
658
+ 06/21/06,4400,4400,0,658
659
+ 03/29/06,2900,2900,1700,659
660
+ 03/29/06,5300,5300,2400,660
661
+ 04/12/06,13100,13100,0,661
662
+ 04/12/06,0,0,0,662
663
+ 02/22/06,0,0,0,663
664
+ 01/23/06,2900,2900,1600,664
665
+ 01/23/06,5300,5300,2300,665
666
+ 01/24/06,5800,5800,2600,666
667
+ 04/25/06,4400,4400,0,667
668
+ 04/25/06,3500,3500,0,668
669
+ 04/25/06,0,0,0,669
670
+ 04/25/06,16900,14700,0,670
671
+ 06/21/06,0,0,0,671
672
+ 06/21/06,0,0,0,672
673
+ 03/21/06,4400,4400,1900,673
674
+ 03/21/06,2100,2100,900,674
675
+ 03/21/06,16400,16400,4400,675
676
+ 03/21/06,0,0,0,676
677
+ 04/25/06,5300,5300,0,677
678
+ 04/25/06,2900,2900,0,678
679
+ 04/25/06,0,0,0,679
680
+ 06/21/06,0,0,0,680
681
+ 06/21/06,2100,2100,0,681
682
+ 06/21/06,5800,5800,0,682
683
+ 06/21/06,18700,18700,0,683
684
+ 06/21/06,0,0,0,684
685
+ 04/19/06,4400,4400,1900,685
686
+ 04/19/06,3500,3500,1700,686
687
+ 04/19/06,14700,18700,4300,687
688
+ 04/19/06,0,0,0,688
689
+ 04/19/06,0,0,0,689
690
+ 04/19/06,0,7100,0,690
691
+ 03/01/06,3500,3500,1829,691
692
+ 03/01/06,2900,2900,1742,692
693
+ 03/01/06,5300,5300,2495,693
694
+ 04/19/06,0,0,0,694
695
+ 02/21/06,5300,5300,2400,695
696
+ 02/21/06,2900,2900,1700,696
697
+ 04/12/06,5300,5300,0,697
698
+ 04/12/06,2900,2900,0,698
699
+ 05/03/06,2100,2100,0,699
700
+ 05/03/06,3500,3500,0,700
701
+ 05/03/06,4400,4400,0,701
702
+ 05/03/06,0,0,0,702
703
+ 04/19/06,4400,4400,1900,703
704
+ 04/19/06,3500,3500,1700,704
705
+ 04/19/06,9600,13100,3200,705
706
+ 04/19/06,0,0,0,706
707
+ 04/19/06,0,0,0,707
708
+ 01/17/06,5300,5300,2400,708
709
+ 01/17/06,2900,2900,1700,709
710
+ 05/17/06,4400,4400,0,710
711
+ 05/17/06,3500,3500,0,711
712
+ 05/17/06,18700,14700,0,712
713
+ 05/17/06,18700,14700,0,713
714
+ 06/20/06,0,0,0,714
715
+ 06/20/06,4400,4400,0,715
716
+ 06/20/06,0,0,0,716
717
+ 02/22/06,4400,4400,1900,717
718
+ 02/22/06,5300,5300,2300,718
719
+ 02/22/06,2900,2900,1600,719
720
+ 02/22/06,15200,15200,0,720
721
+ 02/22/06,15200,15200,0,721
722
+ 02/22/06,0,7100,0,722
723
+ 06/07/06,4400,4400,0,723
724
+ 06/07/06,5300,5300,0,724
725
+ 06/07/06,2900,2900,0,725
726
+ 06/07/06,0,0,0,726
727
+ 01/25/06,2900,2900,0,727
728
+ 01/25/06,5300,5300,0,728
729
+ 02/08/06,4400,4400,0,729
730
+ 02/08/06,3500,3500,0,730
731
+ 01/11/06,5800,5800,2600,731
732
+ 01/11/06,0,0,0,732
733
+ 05/16/06,18700,18700,0,733
734
+ 05/31/06,5300,5300,0,734
735
+ 05/31/06,2900,2900,0,735
736
+ 05/31/06,0,0,0,736
737
+ 01/04/06,4400,4400,2000,737
738
+ 01/04/06,4400,4400,2000,738
739
+ 05/10/06,4400,4400,0,739
740
+ 05/10/06,0,0,0,740
741
+ 04/25/06,4400,4400,0,741
742
+ 04/25/06,0,0,0,742
743
+ 05/10/06,5800,5800,0,743
744
+ 05/10/06,2100,2100,0,744
745
+ 05/10/06,0,0,0,745
746
+ 01/18/06,2900,2900,1700,746
747
+ 01/18/06,5300,5300,2400,747
748
+ 01/18/06,3500,3500,0,748
749
+ 02/15/06,4400,4400,1900,749
750
+ 02/15/06,1800,1800,800,750
751
+ 02/15/06,2100,2100,900,751
752
+ 02/28/06,4400,4400,2000,752
753
+ 02/28/06,4400,4400,2000,753
754
+ 03/07/06,4400,4400,2000,754
755
+ 03/07/06,4400,4400,2000,755
756
+ 01/10/06,18700,18700,4600,756
757
+ 01/10/06,0,0,0,757
758
+ 01/17/06,4400,4400,1900,758
759
+ 05/02/06,5800,5800,0,759
760
+ 05/02/06,2100,2100,0,760
761
+ 05/02/06,0,0,0,761
762
+ 06/06/06,5800,5800,0,762
763
+ 06/06/06,0,0,0,763
764
+ 01/11/06,5300,5300,0,764
765
+ 01/11/06,2900,2900,0,765
766
+ 01/17/06,26300,26300,0,766
767
+ 01/17/06,0,0,0,767
768
+ 04/25/06,0,0,0,768
769
+ 04/25/06,0,0,0,769
770
+ 05/03/06,14700,18700,0,770
771
+ 05/03/06,9600,13100,0,771
772
+ 05/03/06,0,0,0,772
773
+ 05/03/06,0,0,0,773
774
+ 05/09/06,4400,4400,0,774
775
+ 05/31/06,5800,5800,0,775
776
+ 05/31/06,2100,2100,0,776
777
+ 05/31/06,11600,15200,0,777
778
+ 05/31/06,0,0,0,778
779
+ 01/11/06,2900,2900,1700,779
780
+ 01/11/06,5300,5300,2400,780
781
+ 02/15/06,5800,5800,2300,781
782
+ 03/21/06,2900,2900,1742,782
783
+ 03/21/06,5300,5300,2495,783
784
+ 05/23/06,3500,3500,0,784
785
+ 05/23/06,2900,2900,0,785
786
+ 05/23/06,5300,5300,0,786
787
+ 05/23/06,0,0,0,787
788
+ 05/30/06,4400,4400,0,788
789
+ 05/30/06,0,0,0,789
790
+ 05/16/06,4400,4400,0,790
791
+ 05/16/06,11600,13100,0,791
792
+ 05/16/06,11600,13100,0,792
793
+ 04/04/06,4400,4400,0,793
794
+ 06/06/06,5300,5300,0,794
795
+ 06/06/06,2900,2900,0,795
796
+ 01/25/06,2900,2900,1600,796
797
+ 01/25/06,5300,5300,2300,797
798
+ 02/21/06,2100,2100,1000,798
799
+ 02/21/06,4400,4400,1900,799
800
+ 01/11/06,18700,18700,4600,800
801
+ 01/11/06,16300,16300,5200,801
802
+ 01/11/06,9500,9500,0,802
803
+ 01/11/06,0,0,0,803
804
+ 01/17/06,4400,4400,1900,804
805
+ 01/17/06,18700,18700,4600,805
806
+ 01/17/06,0,0,0,806
807
+ 01/18/06,2900,2900,1700,807
808
+ 01/18/06,5300,5300,2400,808
809
+ 02/14/06,18700,18700,4600,809
810
+ 02/14/06,0,0,0,810
811
+ 05/09/06,4400,4400,0,811
812
+ 05/09/06,3500,3500,0,812
813
+ 05/09/06,0,0,0,813
814
+ 05/23/06,2900,2900,0,814
815
+ 05/23/06,5300,5300,0,815
816
+ 05/23/06,0,0,0,816
817
+ 05/24/06,4400,4400,0,817
818
+ 05/24/06,18700,13100,0,818
819
+ 05/24/06,0,0,0,819
820
+ 05/24/06,0,0,0,820
821
+ 04/11/06,3500,3500,0,821
822
+ 04/11/06,5800,5800,0,822
823
+ 04/11/06,2100,2100,0,823
824
+ 04/11/06,0,0,0,824
825
+ 04/12/06,5800,5800,0,825
826
+ 04/12/06,0,0,0,826
827
+ 01/11/06,5800,5800,2600,827
828
+ 01/11/06,10800,16400,4400,828
829
+ 01/11/06,2100,2100,900,829
830
+ 01/11/06,0,0,0,830
831
+ 03/28/06,5300,5300,2400,831
832
+ 03/28/06,2900,2900,1700,832
833
+ 04/04/06,4400,4400,0,833
834
+ 04/12/06,3500,3500,0,834
835
+ 04/12/06,4400,4400,0,835
836
+ 06/07/06,2100,2100,0,836
837
+ 06/07/06,5800,5800,0,837
838
+ 06/07/06,0,0,0,838
839
+ 02/22/06,5300,5300,2495,839
840
+ 02/22/06,2900,2900,1742,840
841
+ 04/11/06,13000,0,0,841
842
+ 04/11/06,0,5300,0,842
843
+ 04/11/06,0,2900,0,843
844
+ 04/25/06,4400,4400,0,844
845
+ 04/25/06,3500,3500,0,845
846
+ 04/25/06,1800,2100,0,846
847
+ 04/25/06,1800,1800,0,847
848
+ 04/25/06,0,0,0,848
849
+ 05/03/06,13100,13100,0,849
850
+ 05/03/06,0,0,0,850
851
+ 05/03/06,0,7100,0,851
852
+ 05/03/06,0,0,0,852
853
+ 02/22/06,5300,5300,2495,853
854
+ 02/22/06,2900,2900,1742,854
855
+ 02/22/06,5300,5300,2495,855
856
+ 02/22/06,2900,2900,1742,856
857
+ 01/04/06,2900,2900,1700,857
858
+ 01/04/06,5300,5300,2400,858
859
+ 02/15/06,13100,13100,3300,859
860
+ 02/15/06,13100,13100,3300,860
861
+ 02/15/06,0,7100,0,861
862
+ 02/21/06,5300,5300,2300,862
863
+ 02/21/06,2900,2900,1600,863
864
+ 05/02/06,5300,5300,0,864
865
+ 05/02/06,2900,2900,0,865
866
+ 05/23/06,4400,4400,0,866
867
+ 05/23/06,4400,4400,0,867
868
+ 05/23/06,4400,4400,0,868
869
+ 05/23/06,13100,13100,0,869
870
+ 05/23/06,4400,4400,0,870
871
+ 05/23/06,4400,4400,0,871
872
+ 05/23/06,0,0,0,872
873
+ 05/23/06,0,0,0,873
874
+ 05/02/06,7500,7500,0,874
875
+ 05/02/06,0,0,0,875
876
+ 05/02/06,0,0,0,876
877
+ 02/08/06,4400,4400,0,877
878
+ 02/08/06,3500,3500,0,878
879
+ 02/08/06,18700,18700,0,879
880
+ 03/01/06,4400,4400,2000,880
881
+ 03/01/06,4400,4400,2000,881
882
+ 04/04/06,5300,5300,0,882
883
+ 04/04/06,2900,2900,0,883
884
+ 02/07/06,3500,3500,1700,884
885
+ 02/07/06,2900,2900,1700,885
886
+ 02/07/06,5300,5300,2400,886
887
+ 02/14/06,2100,2100,900,887
888
+ 02/14/06,4400,4400,1900,888
889
+ 02/14/06,13100,13100,0,889
890
+ 02/14/06,0,0,0,890
891
+ 04/11/06,4400,4400,0,891
892
+ 04/11/06,4400,4400,0,892
893
+ 01/31/06,10800,10800,0,893
894
+ 01/31/06,5800,5800,2200,894
895
+ 01/31/06,2100,2100,1000,895
896
+ 01/31/06,0,0,0,896
897
+ 01/31/06,0,7100,0,897
898
+ 05/30/06,4400,4400,0,898
899
+ 05/30/06,0,0,0,899
900
+ 05/31/06,3500,3500,0,900
901
+ 05/31/06,2900,2900,0,901
902
+ 05/31/06,5300,5300,0,902
903
+ 05/31/06,0,0,0,903
904
+ 01/11/06,0,0,0,904
905
+ 06/21/06,4400,4400,0,905
906
+ 06/21/06,0,0,0,906
907
+ 06/21/06,3500,3500,0,907
908
+ 01/23/06,0,0,0,908
909
+ 01/25/06,2900,2900,1600,909
910
+ 01/25/06,5300,5300,2300,910
911
+ 02/08/06,9600,9600,3200,911
912
+ 02/08/06,18700,18700,4300,912
913
+ 02/08/06,0,7100,0,913
914
+ 02/08/06,0,0,0,914
915
+ 03/15/06,1800,1800,800,915
916
+ 03/15/06,2100,2100,900,916
917
+ 03/15/06,4400,4400,0,917
918
+ 03/15/06,11600,11600,4000,918
919
+ 03/28/06,2900,2900,1700,919
920
+ 03/28/06,5300,5300,2400,920
921
+ 05/23/06,14700,14700,0,921
922
+ 05/23/06,0,0,0,922
923
+ 05/23/06,0,0,0,923
924
+ 01/10/06,2900,2900,1700,924
925
+ 01/10/06,5300,5300,2400,925
926
+ 01/17/06,3500,3500,1700,926
927
+ 01/17/06,4400,4400,1900,927
928
+ 01/18/06,0,7100,0,928
929
+ 01/24/06,14700,14700,4328,929
930
+ 01/24/06,0,0,0,930
931
+ 03/07/06,4400,4400,2079,931
932
+ 03/07/06,14700,14700,4328,932
933
+ 03/07/06,2100,2100,1087,933
934
+ 03/07/06,14700,14700,4328,934
935
+ 03/07/06,0,0,0,935
936
+ 03/07/06,0,7100,0,936
937
+ 04/18/06,2900,2900,0,937
938
+ 04/18/06,5300,5300,0,938
939
+ 04/18/06,14700,14700,0,939
940
+ 04/18/06,0,7100,0,940
941
+ 04/18/06,0,0,0,941
942
+ 04/18/06,0,0,0,942
943
+ 01/10/06,4400,4400,2079,943
944
+ 06/13/06,5300,5300,0,944
945
+ 06/13/06,2900,2900,0,945
946
+ 06/20/06,4400,4400,0,946
947
+ 06/20/06,0,0,0,947
948
+ 01/11/06,2100,2100,1000,948
949
+ 01/11/06,10800,16400,3600,949
950
+ 01/11/06,5800,5800,2200,950
951
+ 01/11/06,0,0,0,951
952
+ 02/07/06,4400,4400,1900,952
953
+ 04/18/06,4400,4400,1900,953
954
+ 04/18/06,4400,4400,1900,954
955
+ 04/18/06,0,0,0,955
956
+ 04/19/06,4400,4400,1900,956
957
+ 04/19/06,0,0,0,957
958
+ 05/10/06,21000,21000,21000,958
959
+ 05/10/06,21000,21000,21000,959
960
+ 05/10/06,0,0,0,960
961
+ 05/23/06,2900,2900,0,961
962
+ 05/23/06,5300,5300,0,962
963
+ 01/11/06,4400,4400,1900,963
964
+ 01/11/06,0,0,0,964
965
+ 04/11/06,0,0,0,965
966
+ 01/23/06,2900,2900,1700,966
967
+ 01/23/06,5300,5300,2400,967
968
+ 03/01/06,15200,15200,5400,968
969
+ 03/01/06,11600,11600,4000,969
970
+ 03/01/06,0,0,0,970
971
+ 01/23/06,5300,5300,2495,971
972
+ 01/23/06,2900,2900,1742,972
973
+ 02/21/06,13000,0,12232,973
974
+ 02/21/06,0,13100,0,974
975
+ 02/21/06,0,4400,0,975
976
+ 02/21/06,0,4400,0,976
977
+ 02/21/06,0,4400,0,977
978
+ 02/21/06,0,3500,0,978
979
+ 02/21/06,0,0,0,979
980
+ 01/24/06,2100,2100,900,980
981
+ 01/24/06,5800,5800,2600,981
982
+ 01/24/06,4400,4400,1900,982
983
+ 03/21/06,5300,5300,2300,983
984
+ 03/21/06,2900,2900,1600,984
985
+ 02/21/06,5300,5300,0,985
986
+ 02/21/06,2900,2900,0,986
987
+ 02/01/06,2900,2900,1700,987
988
+ 02/01/06,5300,5300,2400,988
989
+ 02/08/06,7900,7900,2400,989
990
+ 02/08/06,1800,1800,800,990
991
+ 02/08/06,2100,2100,900,991
992
+ 01/18/06,2900,2900,0,992
993
+ 01/18/06,5300,5300,0,993
994
+ 01/11/06,2900,2900,0,994
995
+ 01/11/06,5300,5300,0,995
996
+ 01/25/06,2900,2900,0,996
997
+ 01/25/06,5300,5300,0,997
998
+ 01/24/06,5800,5800,2600,998
999
+ 01/24/06,2100,2100,900,999
1000
+ 01/24/06,0,0,0,1000
1001
+ 05/31/06,4400,4400,0,1001
1002
+ 05/31/06,0,0,0,1002
1003
+ 06/13/06,4400,4400,0,1003
1004
+ 06/13/06,4400,4400,0,1004
1005
+ 01/04/06,4400,4400,0,1005
1006
+ 01/10/06,18700,18700,4300,1006
1007
+ 01/10/06,4400,4400,1900,1007
1008
+ 01/10/06,3500,3500,1700,1008
1009
+ 01/10/06,11600,11600,3700,1009
1010
+ 01/10/06,11600,11600,3700,1010
1011
+ 01/10/06,0,0,0,1011
1012
+ 04/19/06,3500,3500,0,1012
1013
+ 05/10/06,0,0,0,1013
1014
+ 05/10/06,0,7100,0,1014
1015
+ 05/10/06,0,0,0,1015
1016
+ 05/10/06,13100,13100,0,1016
1017
+ 03/29/06,2900,2900,1700,1017
1018
+ 03/29/06,5300,5300,2400,1018
1019
+ 04/19/06,0,0,0,1019
1020
+ 03/29/06,2900,2900,1700,1020
1021
+ 03/29/06,5300,5300,2400,1021
1022
+ 04/19/06,0,0,0,1022
1023
+ 03/29/06,2900,2900,1700,1023
1024
+ 03/29/06,5300,5300,2400,1024
1025
+ 04/19/06,0,0,0,1025
1026
+ 05/17/06,2900,2900,0,1026
1027
+ 05/17/06,5300,5300,0,1027
1028
+ 05/17/06,4400,4400,0,1028
1029
+ 04/18/06,2900,2900,0,1029
1030
+ 04/18/06,5300,5300,0,1030
1031
+ 06/06/06,4400,4400,0,1031
1032
+ 06/06/06,0,0,0,1032
1033
+ 01/04/06,0,0,0,1033
1034
+ 02/14/06,4400,4400,1900,1034
1035
+ 02/14/06,3500,3500,1700,1035
1036
+ 02/14/06,13100,13100,3300,1036
1037
+ 02/14/06,0,0,0,1037
1038
+ 03/07/06,13100,13100,3300,1038
1039
+ 03/07/06,13100,13100,3300,1039
1040
+ 03/07/06,0,0,0,1040
1041
+ 05/09/06,0,0,0,1041
1042
+ 06/21/06,5300,5300,0,1042
1043
+ 06/21/06,2900,2900,0,1043
1044
+ 06/21/06,4400,4400,0,1044
1045
+ 06/21/06,3500,3500,0,1045
1046
+ 06/21/06,0,0,0,1046
1047
+ 01/25/06,0,0,0,1047
1048
+ 01/17/06,5300,5300,2400,1048
1049
+ 01/17/06,2900,2900,1700,1049
1050
+ 04/26/06,4400,4400,1900,1050
1051
+ 04/26/06,0,0,0,1051
1052
+ 05/24/06,4400,4400,0,1052
1053
+ 05/24/06,0,0,0,1053
1054
+ 04/11/06,5800,5800,0,1054
1055
+ 04/11/06,18700,18700,0,1055
1056
+ 04/11/06,2100,2100,0,1056
1057
+ 04/11/06,16300,16300,0,1057
1058
+ 04/11/06,0,0,0,1058
1059
+ 05/23/06,5800,5800,0,1059
1060
+ 05/23/06,3500,3500,0,1060
1061
+ 05/23/06,0,0,0,1061
1062
+ 05/23/06,0,0,0,1062
1063
+ 05/30/06,2900,2900,0,1063
1064
+ 05/30/06,5300,5300,0,1064
1065
+ 05/30/06,0,0,0,1065
1066
+ 06/06/06,3500,3500,0,1066
1067
+ 06/06/06,4400,4400,0,1067
1068
+ 06/06/06,2100,2100,0,1068
1069
+ 06/06/06,0,0,0,1069
1070
+ 02/21/06,0,0,0,1070
1071
+ 01/18/06,2900,2900,1700,1071
1072
+ 01/18/06,5300,5300,2400,1072
1073
+ 01/18/06,3500,3500,1700,1073
1074
+ 01/31/06,4400,4400,1900,1074
1075
+ 02/07/06,4400,4400,0,1075
1076
+ 02/07/06,4400,4400,0,1076
1077
+ 02/28/06,4400,4400,0,1077
1078
+ 02/28/06,4400,4400,0,1078
1079
+ 01/10/06,4400,4400,1900,1079
1080
+ 03/15/06,4400,4400,1900,1080
1081
+ 04/19/06,3500,3500,1700,1081
1082
+ 04/19/06,4400,4400,1900,1082
1083
+ 04/19/06,0,0,0,1083
1084
+ 05/24/06,16900,16900,0,1084
1085
+ 05/24/06,16400,16400,0,1085
1086
+ 05/24/06,0,0,0,1086
1087
+ 05/24/06,0,0,0,1087
1088
+ 05/24/06,0,7100,0,1088
1089
+ 02/28/06,13100,13100,3300,1089
1090
+ 02/28/06,4400,4400,1900,1090
1091
+ 02/28/06,3500,3500,1700,1091
1092
+ 03/01/06,4400,4400,2000,1092
1093
+ 03/01/06,4400,4400,2000,1093
1094
+ 01/17/06,21000,21000,9900,1094
1095
+ 01/17/06,4400,4400,1900,1095
1096
+ 01/17/06,3500,3500,1700,1096
1097
+ 01/17/06,5300,5300,2400,1097
1098
+ 01/17/06,2900,2900,1700,1098
1099
+ 01/17/06,2100,2100,900,1099
1100
+ 01/17/06,16300,16300,5200,1100
1101
+ 01/17/06,0,0,0,1101
1102
+ 01/17/06,0,7100,0,1102
1103
+ 02/21/06,0,0,0,1103
1104
+ 04/18/06,16300,16300,0,1105
1105
+ 04/18/06,21000,21000,0,1106
1106
+ 04/18/06,0,7100,0,1107
1107
+ 04/18/06,0,0,0,1108
1108
+ 04/18/06,0,0,0,1109
1109
+ 01/11/06,4400,4400,0,1110
1110
+ 01/17/06,4400,4400,0,1111
1111
+ 01/17/06,4400,4400,0,1112
1112
+ 05/30/06,4400,4400,0,1113
1113
+ 05/30/06,0,0,0,1114
1114
+ 03/15/06,5300,5300,2495,1115
1115
+ 03/15/06,2900,2900,1742,1116
1116
+ 01/24/06,5300,5300,0,1117
1117
+ 01/24/06,2900,2900,0,1118
1118
+ 04/12/06,5800,5800,0,1119
1119
+ 04/12/06,2100,2100,0,1120
1120
+ 05/16/06,2100,2100,0,1121
1121
+ 05/16/06,5800,5800,0,1122
1122
+ 05/16/06,0,0,0,1123
1123
+ 05/16/06,0,0,0,1124
1124
+ 05/17/06,0,0,0,1125
1125
+ 06/06/06,2100,2100,0,1126
1126
+ 06/06/06,16400,16400,0,1127
1127
+ 06/06/06,0,0,0,1128
1128
+ 06/06/06,0,0,0,1129
1129
+ 05/30/06,5300,5300,0,1130
1130
+ 05/30/06,2900,2900,0,1131
1131
+ 05/30/06,0,0,0,1132
1132
+ 05/16/06,5300,5300,0,1133
1133
+ 05/16/06,2900,2900,0,1134
1134
+ 05/17/06,3500,3500,0,1135
1135
+ 05/17/06,4400,4400,0,1136
1136
+ 04/11/06,3500,3500,0,1137
1137
+ 04/11/06,4400,4400,0,1138
1138
+ 04/11/06,2900,2900,0,1139
1139
+ 04/11/06,5300,5300,0,1140
1140
+ 01/23/06,2900,2900,1700,1141
1141
+ 01/23/06,5300,5300,2400,1142
1142
+ 02/07/06,3500,3500,1700,1143
1143
+ 02/07/06,2100,2100,900,1144
1144
+ 02/07/06,7900,7900,2400,1145
1145
+ 03/01/06,18700,26300,6100,1146
1146
+ 03/01/06,18700,18700,4600,1147
1147
+ 03/01/06,0,7100,0,1148
1148
+ 03/01/06,0,0,0,1149
1149
+ 04/19/06,2100,2100,0,1150
1150
+ 05/10/06,11600,11600,0,1151
1151
+ 05/10/06,0,0,0,1152
1152
+ 05/10/06,4400,4400,0,1153
1153
+ 05/10/06,0,7100,0,1154
1154
+ 01/25/06,2900,2900,1700,1155
1155
+ 01/25/06,5300,5300,2400,1156
1156
+ 05/03/06,5800,5800,0,1157
1157
+ 05/03/06,0,0,0,1158
1158
+ 05/09/06,5800,5800,0,1159
1159
+ 05/09/06,0,0,0,1160
1160
+ 05/09/06,0,0,0,1161
1161
+ 01/25/06,2900,2900,1700,1162
1162
+ 01/25/06,5300,5300,2400,1163
1163
+ 02/01/06,3500,3500,1700,1164
1164
+ 02/01/06,4400,4400,1900,1165
1165
+ 02/07/06,4400,4400,2000,1166
1166
+ 02/07/06,4400,4400,2000,1167
1167
+ 02/15/06,4400,4400,2000,1168
1168
+ 02/28/06,4400,4400,2000,1169
1169
+ 06/20/06,0,0,0,1170
1170
+ 06/20/06,0,0,0,1171
1171
+ 06/20/06,9600,14700,0,1172
1172
+ 01/24/06,5300,5300,2400,1173
1173
+ 02/15/06,2900,2900,0,1174
1174
+ 02/15/06,5300,5300,0,1175
1175
+ 03/15/06,0,0,0,1176
1176
+ 01/23/06,5300,5300,0,1177
1177
+ 01/23/06,2900,2900,0,1178
1178
+ 01/10/06,5300,5300,2400,1179
1179
+ 01/10/06,2900,2900,1700,1180
1180
+ 01/11/06,4400,4400,2000,1181
1181
+ 01/11/06,4400,4400,2000,1182
1182
+ 01/17/06,5800,5800,2600,1183
1183
+ 01/23/06,4400,4400,2000,1184
1184
+ 01/23/06,4400,4400,2000,1185
1185
+ 03/28/06,5300,5300,2400,1186
1186
+ 03/28/06,2900,2900,1700,1187
1187
+ 03/29/06,3500,3500,1700,1188
1188
+ 05/30/06,2100,2100,0,1189
1189
+ 05/30/06,7900,7900,0,1190
1190
+ 05/30/06,0,0,0,1191
1191
+ 05/30/06,0,0,0,1192
1192
+ 01/23/06,2900,2900,1700,1193
1193
+ 01/23/06,5300,5300,2400,1194
1194
+ 05/31/06,3500,3500,0,1195
1195
+ 05/31/06,4400,4400,0,1196
1196
+ 05/31/06,4400,4400,0,1197
1197
+ 06/06/06,11600,11600,0,1198
1198
+ 06/06/06,13100,13100,0,1199
1199
+ 06/06/06,0,0,0,1200
1200
+ 06/14/06,4400,4400,0,1201
1201
+ 06/14/06,0,0,0,1202
1202
+ 03/01/06,2900,2900,0,1203
1203
+ 03/01/06,5300,5300,0,1204
1204
+ 01/11/06,2100,2100,1087,1205
1205
+ 01/11/06,3500,3500,1829,1206
1206
+ 01/11/06,4400,4400,2079,1207
1207
+ 04/11/06,19000,16900,0,1208
1208
+ 04/11/06,0,7100,0,1209
1209
+ 04/11/06,0,0,0,1210
1210
+ 05/16/06,5300,5300,0,1211
1211
+ 05/16/06,2900,2900,0,1212
1212
+ 05/16/06,4400,4400,0,1213
1213
+ 01/18/06,4400,4400,1900,1214
1214
+ 01/18/06,3500,3500,0,1215
1215
+ 01/18/06,2100,2100,900,1216
1216
+ 01/18/06,16400,16400,4400,1217
1217
+ 01/18/06,0,0,0,1218
1218
+ 01/23/06,5300,5300,0,1219
1219
+ 01/23/06,2900,2900,1700,1220
1220
+ 06/13/06,5800,5800,0,1221
1221
+ 06/13/06,0,0,0,1222
1222
+ 06/13/06,0,0,0,1223
1223
+ 02/14/06,4400,4400,1900,1224
1224
+ 01/23/06,5300,5300,2495,1225
1225
+ 01/23/06,2900,2900,1742,1226
1226
+ 03/01/06,13100,13100,3418,1227
1227
+ 03/01/06,0,0,0,1228
1228
+ 06/12/06,18700,18700,0,1229
1229
+ 06/12/06,0,0,0,1230
1230
+ 06/13/06,3500,3500,0,1231
1231
+ 06/13/06,2900,2900,0,1232
1232
+ 06/13/06,7900,7900,0,1233
1233
+ 06/13/06,2100,2100,0,1234
1234
+ 06/13/06,1800,1800,0,1235
1235
+ 06/13/06,5300,5300,0,1236
1236
+ 06/13/06,0,0,0,1237
1237
+ 06/13/06,3500,3500,0,1238
1238
+ 06/13/06,7900,7900,0,1239
1239
+ 06/13/06,2100,2100,0,1240
1240
+ 06/13/06,1800,1800,0,1241
1241
+ 02/01/06,5300,5300,2400,1242
1242
+ 02/01/06,2900,2900,1700,1243
1243
+ 02/08/06,2100,2100,900,1244
1244
+ 02/08/06,1800,1800,800,1245
1245
+ 02/08/06,7900,7900,2400,1246
1246
+ 02/08/06,3500,3500,1700,1247
1247
+ 03/21/06,15200,11600,0,1248
1248
+ 03/21/06,15200,11600,0,1249
1249
+ 03/21/06,0,7100,0,1250
1250
+ 01/23/06,5300,5300,3800,1251
1251
+ 01/23/06,2900,2900,2300,1252
1252
+ 01/31/06,3500,3500,2500,1253
1253
+ 02/15/06,5300,5300,2300,1254
1254
+ 05/01/06,16400,16400,0,1255
1255
+ 05/01/06,0,7100,0,1256
1256
+ 05/01/06,0,0,0,1257
1257
+ 05/01/06,0,0,0,1258
1258
+ 05/01/06,0,0,0,1259
1259
+ 01/31/06,5300,5300,2400,1260
1260
+ 02/07/06,15200,18700,4300,1261
1261
+ 02/07/06,4400,4400,1900,1262
1262
+ 02/07/06,0,7100,0,1263
1263
+ 02/07/06,0,0,0,1264
1264
+ 02/21/06,4400,4400,1900,1265
1265
+ 02/21/06,15200,18700,4300,1266
1266
+ 02/21/06,0,0,0,1267
1267
+ 02/21/06,0,7100,0,1268
1268
+ 02/22/06,11600,11600,3700,1269
1269
+ 02/22/06,13100,13100,3200,1270
1270
+ 02/22/06,4400,4400,1900,1271
1271
+ 02/22/06,4400,4400,1900,1272
1272
+ 02/22/06,0,0,0,1273
1273
+ 02/22/06,0,7100,0,1274
1274
+ 01/31/06,5300,5300,2400,1275
1275
+ 01/31/06,2900,2900,1700,1276
1276
+ 04/11/06,5800,5800,0,1277
1277
+ 01/10/06,4400,4400,2000,1278
1278
+ 01/10/06,4400,4400,2000,1279
1279
+ 01/23/06,5300,5300,0,1280
1280
+ 01/23/06,2900,2900,0,1281
1281
+ 06/14/06,18700,13100,0,1282
1282
+ 06/14/06,4400,4400,0,1283
1283
+ 06/14/06,0,0,0,1284
1284
+ 06/14/06,4400,4400,0,1285
1285
+ 06/14/06,0,0,0,1286
1286
+ 04/11/06,4400,4400,0,1287
1287
+ 04/11/06,4400,4400,0,1288
1288
+ 05/23/06,5300,5300,0,1289
1289
+ 05/23/06,2900,2900,0,1290
1290
+ 06/14/06,0,0,0,1291
1291
+ 06/14/06,4400,4400,0,1292
1292
+ 04/12/06,3500,3500,0,1293
1293
+ 04/12/06,7900,7900,0,1294
1294
+ 04/12/06,1800,2100,0,1295
1295
+ 04/12/06,1800,1800,0,1296
1296
+ 05/23/06,4400,4400,0,1297
1297
+ 05/23/06,4400,4400,0,1298
1298
+ 05/24/06,4400,4400,0,1299
1299
+ 05/24/06,0,0,0,1300
1300
+ 05/30/06,4400,4400,0,1301
1301
+ 05/31/06,13100,13100,0,1302
1302
+ 05/31/06,0,0,0,1303
1303
+ 05/31/06,0,0,0,1304
1304
+ 01/04/06,5300,5300,0,1305
1305
+ 01/04/06,2900,2900,0,1306
1306
+ 06/06/06,4400,4400,0,1307
1307
+ 06/06/06,0,0,0,1308
1308
+ 01/18/06,18700,18700,4600,1309
1309
+ 01/18/06,13100,18700,4600,1310
1310
+ 01/18/06,0,0,0,1311
1311
+ 01/18/06,0,7100,0,1312
1312
+ 02/07/06,13100,13100,3300,1313
1313
+ 02/07/06,0,7100,0,1314
1314
+ 02/07/06,0,0,0,1315
1315
+ 06/07/06,5800,5800,0,1316
1316
+ 06/07/06,2100,2100,0,1317
1317
+ 06/07/06,4400,4400,0,1318
1318
+ 06/07/06,4400,4400,0,1319
1319
+ 06/07/06,0,0,0,1320
1320
+ 06/14/06,4400,4400,0,1321
1321
+ 06/14/06,13100,13100,0,1322
1322
+ 06/14/06,0,7100,0,1323
1323
+ 06/14/06,0,0,0,1324
1324
+ 06/14/06,0,0,0,1325
1325
+ 06/21/06,5300,5300,0,1326
1326
+ 06/21/06,2900,2900,0,1327
1327
+ 06/21/06,0,0,0,1328
1328
+ 06/06/06,7900,7900,0,1329
1329
+ 06/06/06,0,0,0,1330
1330
+ 06/06/06,4400,4400,0,1331
1331
+ 06/06/06,0,0,0,1332
1332
+ 06/14/06,5300,5300,0,1333
1333
+ 06/14/06,2900,2900,0,1334
1334
+ 06/14/06,0,0,0,1335
1335
+ 01/23/06,5300,5300,0,1336
1336
+ 01/23/06,2900,2900,0,1337
1337
+ 05/24/06,3800,3800,0,1338
1338
+ 05/24/06,5300,5300,0,1339
1339
+ 05/24/06,2900,2900,0,1340
1340
+ 05/24/06,0,0,0,1341
1341
+ 06/07/06,0,0,0,1342
1342
+ 04/05/06,5300,5300,0,1343
1343
+ 04/05/06,2900,2900,0,1344
1344
+ 05/10/06,4400,4400,0,1345
1345
+ 06/07/06,0,0,0,1346
1346
+ 02/15/06,2900,2900,1700,1347
1347
+ 02/15/06,5300,5300,2400,1348
1348
+ 03/07/06,1800,1800,800,1349
1349
+ 03/07/06,7900,7900,2400,1350
1350
+ 03/07/06,2100,2100,900,1351
1351
+ 03/07/06,3500,3500,1700,1352
1352
+ 06/20/06,0,0,0,1353
1353
+ 06/20/06,0,0,0,1354
1354
+ 06/20/06,18700,18700,0,1355
1355
+ 01/04/06,5300,5300,2300,1356
1356
+ 01/04/06,2900,2900,1600,1357
1357
+ 02/07/06,11600,13100,3200,1358
1358
+ 02/07/06,16400,16400,3600,1359
1359
+ 02/07/06,0,0,0,1360
1360
+ 02/15/06,5300,5300,2300,1361
1361
+ 02/15/06,2900,2900,1600,1362
1362
+ 03/07/06,7900,7900,2600,1363
1363
+ 03/07/06,2100,2100,1000,1364
1364
+ 03/07/06,1800,1800,500,1365
1365
+ 03/07/06,3500,3500,1700,1366
1366
+ 04/05/06,4400,4400,1900,1367
1367
+ 04/05/06,4400,4400,1900,1368
1368
+ 04/11/06,4400,4400,1900,1369
1369
+ 04/11/06,4400,4400,1900,1370
1370
+ 01/18/06,7900,7900,0,1371
1371
+ 01/18/06,3500,3500,0,1372
1372
+ 01/23/06,5300,5300,0,1373
1373
+ 01/23/06,2900,2900,0,1374
1374
+ 01/24/06,4400,4400,0,1375
1375
+ 01/24/06,4400,4400,0,1376
1376
+ 02/22/06,5300,5300,0,1377
1377
+ 02/22/06,5300,5300,0,1378
1378
+ 02/21/06,1800,1800,0,1379
1379
+ 02/21/06,7900,7900,0,1380
1380
+ 02/21/06,2100,2100,0,1381
1381
+ 04/19/06,3500,3500,1700,1382
1382
+ 04/19/06,2100,2100,1000,1383
1383
+ 04/19/06,1800,1800,500,1384
1384
+ 04/19/06,7900,7900,2600,1385
1385
+ 04/19/06,0,0,0,1386
1386
+ 05/24/06,5300,5300,0,1387
1387
+ 05/24/06,2900,2900,0,1388
1388
+ 05/24/06,0,7100,0,1389
1389
+ 04/11/06,3500,3500,0,1390
1390
+ 04/11/06,5300,5300,0,1391
1391
+ 04/11/06,2900,2900,0,1392
1392
+ 05/31/06,7900,7900,0,1393
1393
+ 05/31/06,0,0,0,1394
1394
+ 05/31/06,0,3500,0,1395
1395
+ 05/31/06,13000,0,0,1396
1396
+ 05/31/06,0,7900,0,1397
1397
+ 05/31/06,0,2100,0,1398
1398
+ 05/31/06,0,1800,0,1399
1399
+ 05/31/06,0,0,0,1400
1400
+ 06/06/06,4400,4400,0,1401
1401
+ 06/06/06,4400,4400,0,1402
1402
+ 06/13/06,14700,14700,0,1403
1403
+ 06/13/06,0,0,0,1404
1404
+ 06/13/06,0,0,0,1405
1405
+ 06/13/06,3500,3500,0,1406
1406
+ 06/13/06,2100,2100,0,1407
1407
+ 06/13/06,1800,1800,0,1408
1408
+ 06/13/06,7900,7900,0,1409
1409
+ 06/13/06,0,0,0,1410