The SELECT DISTINCT function returns particular queries indicated in the rows and columns from a database.
Conditions:
Operator | Description |
---|---|
\(=\) | Equal |
\(>\) | Greater than |
\(<\) | Less than |
\(\geq\) | Greater than or equal to |
\(\leq\) | Less than or equal to |
\(\neq\) | Not equal |
AND | Logical operator AND |
OR | Logical operator OR |
Syntax:
-- Select particular rows in a database with specific conditions
SELECT column_1, column_2
FROM table_name
WHERE conditions;
Example: Select all customers whose first names are Jamie
-- Select all customers whose first names are Jamie
SELECT last_name, first_name
FROM customer
WHERE first_name = 'Jamie';
## last_name first_name
## 1 Rice Jamie
## 2 Waugh Jamie
Example : Select the customer whose first name is Jamie and last name is Rice
-- Select the customer whose first name is Jamie and last name is Rice
SELECT last_name, first_name
FROM customer
WHERE first_name = 'Jamie' AND last_name = 'Rice';
## last_name first_name
## 1 Rice Jamie
Example: Who paid the rental with amount is either less than $1 or greater than $8
-- Select the customer who paid the rental with amount is either less than $1 or greater than $8
SELECT customer_id, amount, payment_date
FROM payment
WHERE amount <= 1 OR amount >= 8;
## customer_id amount payment_date
## 1 343 0.99 2007-02-17 01:26:00
## 2 343 0.99 2007-02-17 04:32:51
## 3 343 8.99 2007-02-20 07:03:29
## 4 343 0.99 2007-02-21 14:42:28
## 5 344 0.99 2007-02-16 14:00:38
## 6 345 0.99 2007-02-15 01:26:17
## 7 345 0.99 2007-02-16 00:27:01
## 8 347 8.99 2007-02-16 12:40:18
## 9 347 0.99 2007-02-18 04:59:41
## 10 347 8.99 2007-02-20 14:33:08
## 11 348 8.99 2007-02-17 12:47:26
## 12 348 0.99 2007-02-18 21:30:02
## 13 349 0.99 2007-02-15 22:47:06
## 14 349 8.99 2007-02-20 12:27:47
## 15 350 0.99 2007-02-19 06:31:38
## 16 350 0.99 2007-02-20 23:08:05
## 17 351 0.99 2007-02-17 00:36:26
## 18 352 0.99 2007-02-15 20:26:26
## 19 354 0.99 2007-02-15 20:16:44
## 20 355 0.99 2007-02-15 20:08:20
## 21 356 0.99 2007-02-15 15:28:12
## 22 358 0.99 2007-02-17 03:39:02
## 23 359 0.99 2007-02-18 14:50:29
## 24 360 0.99 2007-02-15 20:17:01
## 25 365 0.99 2007-02-20 19:32:12
## 26 366 0.99 2007-02-18 01:13:03
## 27 367 0.99 2007-02-20 13:38:14
## 28 368 0.99 2007-02-14 23:25:11
## 29 368 9.99 2007-02-15 21:21:56
## 30 369 0.99 2007-02-15 02:12:51
## 31 371 0.99 2007-02-19 20:32:16
## 32 371 0.99 2007-02-21 13:51:34
## 33 376 0.99 2007-02-15 00:58:29
## 34 376 0.99 2007-02-19 16:47:33
## 35 377 0.99 2007-02-20 14:11:06
## 36 379 8.99 2007-02-15 13:48:32
## 37 382 0.99 2007-02-18 13:56:13
## 38 384 0.99 2007-02-17 07:31:24
## 39 384 0.99 2007-02-17 11:08:16
## 40 384 9.99 2007-02-20 14:24:31
## 41 385 0.99 2007-02-17 05:45:12
## 42 385 0.99 2007-02-20 15:40:12
## 43 386 0.99 2007-02-19 13:48:05
## 44 387 0.99 2007-02-15 19:06:40
## 45 387 0.99 2007-02-15 19:11:34
## 46 387 0.99 2007-02-17 14:40:12
## 47 387 0.99 2007-02-17 17:21:47
## 48 388 0.99 2007-02-17 20:39:02
## 49 391 0.99 2007-02-15 02:46:36
## 50 391 0.99 2007-02-17 05:20:22
## 51 395 0.99 2007-02-15 05:58:48
## 52 395 0.99 2007-02-16 01:14:53
## 53 395 0.99 2007-02-16 04:42:29
## 54 395 0.99 2007-02-21 06:33:17
## 55 398 9.99 2007-02-20 18:24:13
## 56 400 0.99 2007-02-15 12:33:58
## 57 403 8.99 2007-02-15 04:06:35
## 58 405 0.99 2007-02-17 02:27:02
## 59 406 0.99 2007-02-18 08:36:33
## 60 406 0.99 2007-02-19 03:33:29
## 61 407 0.99 2007-02-19 04:22:12
## 62 409 8.99 2007-02-18 07:14:25
## 63 410 0.99 2007-02-20 06:24:26
## 64 411 0.99 2007-02-17 09:00:03
## 65 411 0.99 2007-02-19 12:48:39
## 66 414 9.99 2007-02-19 01:38:12
## 67 416 0.99 2007-02-16 00:31:10
## 68 416 0.99 2007-02-16 16:40:43
## 69 420 0.99 2007-02-19 11:57:37
## 70 420 0.99 2007-02-19 13:30:46
## 71 422 0.99 2007-02-16 22:31:10
## 72 423 0.99 2007-02-16 20:23:06
## 73 423 8.99 2007-02-20 12:49:57
## 74 424 0.99 2007-02-21 14:26:18
## 75 426 0.99 2007-02-19 17:53:20
## 76 426 0.99 2007-02-21 01:28:37
## 77 427 0.99 2007-02-18 18:47:08
## 78 428 0.99 2007-02-21 12:19:38
## 79 430 0.99 2007-02-15 00:55:34
## 80 430 0.99 2007-02-20 00:35:05
## 81 430 0.99 2007-02-20 19:12:41
## 82 431 8.99 2007-02-21 11:48:57
## 83 434 0.99 2007-02-15 02:14:01
## 84 435 0.99 2007-02-15 17:26:17
## 85 435 0.99 2007-02-20 07:12:10
## 86 436 9.99 2007-02-18 06:05:12
## 87 438 0.99 2007-02-16 17:23:37
## 88 438 0.99 2007-02-18 00:43:11
## 89 438 0.99 2007-02-21 11:47:04
## 90 439 0.99 2007-02-16 00:57:01
## 91 442 0.99 2007-02-15 11:57:14
## 92 442 8.99 2007-02-16 02:23:05
## 93 444 0.99 2007-02-15 03:21:27
## 94 446 0.99 2007-02-19 12:32:22
## 95 446 0.99 2007-02-20 20:14:27
## 96 447 0.99 2007-02-15 02:32:35
## 97 448 0.99 2007-02-19 11:57:34
## 98 449 0.99 2007-02-18 10:44:09
## 99 450 0.99 2007-02-16 14:38:04
## 100 450 0.99 2007-02-18 05:06:23
## 101 451 0.99 2007-02-15 00:36:30
## 102 451 0.99 2007-02-16 23:00:52
## 103 451 0.99 2007-02-20 02:37:01
## 104 452 0.99 2007-02-18 04:26:13
## 105 452 0.99 2007-02-18 21:48:19
## 106 452 0.99 2007-02-19 09:19:18
## 107 454 9.99 2007-02-19 09:45:38
## 108 455 0.99 2007-02-18 11:27:49
## 109 456 0.99 2007-02-16 11:46:49
## 110 456 0.99 2007-02-18 15:02:14
## 111 457 0.99 2007-02-16 13:50:13
## 112 457 0.99 2007-02-17 11:41:53
## 113 457 0.99 2007-02-19 18:21:56
## 114 458 0.99 2007-02-21 07:11:03
## 115 459 0.99 2007-02-17 01:19:17
## 116 459 0.99 2007-02-20 01:07:47
## 117 459 0.99 2007-02-20 11:10:26
## 118 459 9.99 2007-02-21 01:08:10
## 119 460 0.99 2007-02-15 14:40:53
## 120 462 9.99 2007-02-17 04:52:56
## 121 465 8.99 2007-02-17 22:05:55
## 122 465 0.99 2007-02-18 23:16:37
## 123 466 8.99 2007-02-18 17:33:07
## 124 467 8.99 2007-02-16 14:28:10
## 125 467 9.99 2007-02-19 22:46:12
## 126 468 8.99 2007-02-16 06:19:35
## 127 468 0.99 2007-02-19 19:45:32
## 128 469 0.99 2007-02-15 14:58:17
## 129 469 9.99 2007-02-16 09:45:48
## 130 470 0.99 2007-02-15 04:42:23
## 131 470 0.99 2007-02-15 06:55:56
## 132 472 0.99 2007-02-20 06:28:50
## 133 472 0.99 2007-02-21 01:55:36
## 134 473 0.99 2007-02-16 15:22:29
## 135 474 8.99 2007-02-16 16:08:05
## 136 476 0.99 2007-02-17 15:28:06
## 137 477 10.99 2007-02-18 07:01:49
## 138 478 0.99 2007-02-16 12:37:10
## 139 478 8.99 2007-02-19 06:01:26
## 140 480 0.99 2007-02-15 11:42:02
## 141 480 0.99 2007-02-16 14:05:33
## 142 481 0.99 2007-02-21 05:27:59
## 143 482 0.99 2007-02-21 02:08:18
## 144 483 0.99 2007-02-19 22:37:04
## 145 483 8.99 2007-02-21 12:27:12
## 146 485 8.99 2007-02-16 13:30:02
## 147 489 0.99 2007-02-18 00:36:53
## 148 492 9.99 2007-02-21 05:38:10
## 149 493 0.99 2007-02-19 03:09:10
## 150 497 8.99 2007-02-17 23:16:09
## 151 498 0.99 2007-02-20 15:05:27
## 152 498 0.99 2007-02-21 10:41:07
## 153 502 0.99 2007-02-18 15:50:54
## 154 502 0.99 2007-02-20 02:01:03
## 155 503 0.99 2007-02-21 17:14:34
## 156 506 0.99 2007-02-16 01:41:35
## 157 506 9.99 2007-02-19 15:24:57
## 158 510 0.99 2007-02-16 16:00:50
## 159 510 0.99 2007-02-17 04:45:13
## 160 510 8.99 2007-02-19 13:34:41
## 161 510 0.99 2007-02-19 17:59:14
## 162 510 0.99 2007-02-19 18:33:48
## 163 510 8.99 2007-02-21 09:54:55
## 164 511 10.99 2007-02-20 06:07:59
## 165 514 0.99 2007-02-18 11:59:41
## 166 514 0.99 2007-02-19 17:16:47
## 167 514 0.99 2007-02-21 12:45:14
## 168 515 0.99 2007-02-18 22:21:41
## 169 516 10.99 2007-02-16 13:20:28
## 170 516 0.99 2007-02-17 11:01:56
## 171 516 0.99 2007-02-20 12:30:48
## 172 517 8.99 2007-02-16 19:28:46
## 173 517 0.99 2007-02-20 16:25:06
## 174 518 0.99 2007-02-21 06:33:53
## 175 519 8.99 2007-02-18 21:56:53
## 176 520 0.99 2007-02-15 15:34:02
## 177 521 0.99 2007-02-16 16:18:23
## 178 521 0.99 2007-02-17 13:48:00
## 179 522 8.99 2007-02-20 15:24:21
## 180 522 0.99 2007-02-20 22:15:05
## 181 523 8.99 2007-02-18 17:39:21
## 182 523 0.99 2007-02-19 09:57:18
## 183 526 0.99 2007-02-16 22:35:33
## 184 527 0.99 2007-02-18 15:57:23
## 185 527 0.99 2007-02-18 20:48:37
## 186 529 0.99 2007-02-16 10:36:46
## 187 529 0.99 2007-02-21 09:58:15
## 188 530 0.99 2007-02-15 21:39:36
## 189 533 0.99 2007-02-16 08:00:03
## 190 533 0.99 2007-02-16 23:42:04
## 191 533 0.99 2007-02-20 05:15:49
## 192 534 0.99 2007-02-18 16:41:58
## 193 537 8.99 2007-02-19 03:33:37
## 194 537 8.99 2007-02-20 17:57:35
## 195 539 0.99 2007-02-15 09:40:05
## 196 542 10.99 2007-02-20 05:22:13
## 197 544 10.99 2007-02-15 16:59:12
## 198 544 0.99 2007-02-18 13:06:23
## 199 546 0.99 2007-02-15 15:00:25
## 200 547 8.99 2007-02-17 11:13:05
## 201 548 0.99 2007-02-20 06:53:42
## 202 550 9.99 2007-02-21 01:16:09
## 203 550 10.99 2007-02-21 03:46:53
## 204 552 0.99 2007-02-18 07:53:16
## 205 553 8.99 2007-02-18 18:22:39
## 206 556 0.99 2007-02-20 07:18:54
## 207 557 0.99 2007-02-16 08:45:45
## 208 558 10.99 2007-02-21 19:39:05
## 209 559 0.99 2007-02-19 12:25:17
## 210 561 0.99 2007-02-19 01:14:01
## 211 561 0.99 2007-02-21 16:59:35
## 212 563 0.99 2007-02-19 02:51:44
## 213 566 0.99 2007-02-18 12:28:57
## 214 568 0.99 2007-02-19 09:57:13
## 215 571 10.99 2007-02-20 06:43:53
## 216 572 10.99 2007-02-17 02:33:38
## 217 572 0.99 2007-02-17 10:15:43
## 218 572 0.99 2007-02-18 18:07:31
## 219 574 0.99 2007-02-16 01:03:29
## 220 574 0.99 2007-02-16 19:49:18
## 221 574 0.99 2007-02-19 07:20:13
## 222 576 0.99 2007-02-18 07:11:50
## 223 576 8.99 2007-02-18 17:26:38
## 224 580 0.99 2007-02-15 19:21:02
## 225 582 0.99 2007-02-20 12:49:08
## 226 583 9.99 2007-02-18 16:16:54
## 227 583 0.99 2007-02-21 16:11:17
## 228 585 0.99 2007-02-15 10:58:07
## 229 585 0.99 2007-02-19 10:16:25
## 230 586 0.99 2007-02-15 23:43:22
## 231 589 8.99 2007-02-19 09:03:52
## 232 589 8.99 2007-02-19 12:25:34
## 233 590 9.99 2007-02-20 06:01:55
## 234 591 0.99 2007-02-15 16:19:53
## 235 592 0.99 2007-02-19 07:00:26
## 236 594 0.99 2007-02-19 17:15:09
## 237 597 0.99 2007-02-18 13:28:05
## 238 202 0.99 2007-02-20 08:51:51
## 239 202 0.99 2007-02-20 18:55:44
## 240 205 0.99 2007-02-16 16:30:02
## 241 206 0.99 2007-02-17 00:55:29
## 242 208 0.99 2007-02-16 19:04:26
## 243 208 0.99 2007-02-19 04:05:20
## 244 208 0.99 2007-02-20 01:43:35
## 245 1 0.99 2007-02-15 16:31:19
## 246 1 9.99 2007-02-15 19:37:12
## 247 1 0.99 2007-02-18 12:02:25
## 248 3 8.99 2007-02-16 00:02:31
## 249 4 0.99 2007-02-16 06:37:06
## 250 4 0.99 2007-02-16 14:20:18
## 251 4 0.99 2007-02-17 12:59:38
## 252 6 0.99 2007-02-17 07:48:11
## 253 6 0.99 2007-02-18 10:31:49
## 254 7 0.99 2007-02-16 19:34:26
## 255 7 0.99 2007-02-19 12:28:52
## 256 7 0.99 2007-02-20 08:40:19
## 257 10 0.99 2007-02-19 18:30:25
## 258 10 0.99 2007-02-19 22:29:21
## 259 11 0.99 2007-02-20 22:17:38
## 260 12 0.99 2007-02-21 14:59:53
## 261 13 8.99 2007-02-20 11:13:59
## 262 15 0.99 2007-02-20 21:20:44
## 263 16 0.99 2007-02-21 09:45:08
## 264 17 8.99 2007-02-19 10:57:34
## 265 18 8.99 2007-02-20 07:31:17
## 266 20 0.99 2007-02-16 01:02:19
## 267 21 10.99 2007-02-20 23:33:01
## 268 23 0.99 2007-02-19 19:18:27
## 269 25 8.99 2007-02-19 06:51:37
## 270 26 9.99 2007-02-17 16:42:34
## 271 28 0.99 2007-02-19 04:58:36
## 272 28 0.99 2007-02-21 00:53:26
## 273 29 0.99 2007-02-19 09:07:08
## 274 29 0.99 2007-02-19 10:10:46
## 275 31 0.99 2007-02-18 02:26:02
## 276 31 0.99 2007-02-18 17:02:47
## 277 31 0.99 2007-02-18 23:48:26
## 278 31 0.99 2007-02-20 23:07:13
## 279 32 0.99 2007-02-17 22:07:37
## 280 33 10.99 2007-02-15 08:14:59
## 281 33 8.99 2007-02-20 20:49:36
## 282 34 0.99 2007-02-20 19:03:54
## 283 35 0.99 2007-02-16 02:37:34
## 284 35 0.99 2007-02-18 02:20:40
## 285 36 0.99 2007-02-19 14:34:07
## 286 39 0.99 2007-02-17 19:42:28
## 287 40 0.99 2007-02-21 17:08:00
## 288 42 0.99 2007-02-15 23:17:58
## 289 45 0.99 2007-02-21 19:08:05
## 290 46 0.99 2007-02-17 20:34:06
## 291 46 8.99 2007-02-20 06:02:04
## 292 48 9.99 2007-02-16 10:47:07
## 293 48 0.99 2007-02-19 18:57:50
## 294 49 0.99 2007-02-14 21:44:52
## 295 49 9.99 2007-02-15 03:12:36
## 296 49 0.99 2007-02-16 10:39:46
## 297 50 0.99 2007-02-20 08:00:59
## 298 51 0.99 2007-02-15 19:39:44
## 299 52 0.99 2007-02-18 02:22:57
## 300 53 0.99 2007-02-17 07:38:35
## 301 53 0.99 2007-02-21 01:29:36
## 302 56 0.99 2007-02-17 20:08:55
## 303 56 0.99 2007-02-20 07:28:03
## 304 57 0.99 2007-02-17 17:44:11
## 305 57 0.99 2007-02-21 10:24:08
## 306 58 0.99 2007-02-19 00:42:37
## 307 58 0.99 2007-02-20 01:33:22
## 308 62 0.99 2007-02-15 19:53:56
## 309 62 0.99 2007-02-16 03:20:54
## 310 62 0.99 2007-02-21 05:01:05
## 311 63 0.99 2007-02-16 19:59:00
## 312 64 0.99 2007-02-15 10:19:56
## 313 67 0.99 2007-02-19 18:12:38
## 314 68 8.99 2007-02-17 07:19:24
## 315 73 0.99 2007-02-16 08:48:46
## 316 74 0.99 2007-02-18 22:39:52
## 317 76 0.99 2007-02-15 19:56:08
## 318 76 0.99 2007-02-17 18:15:47
## 319 76 0.99 2007-02-20 00:51:08
## 320 76 0.99 2007-02-21 15:33:55
## 321 77 8.99 2007-02-18 17:57:47
## 322 77 0.99 2007-02-21 01:16:47
## 323 80 8.99 2007-02-19 17:57:43
## 324 82 0.99 2007-02-15 17:07:17
## 325 82 0.99 2007-02-16 01:49:59
## 326 82 8.99 2007-02-18 21:58:19
## 327 82 8.99 2007-02-19 18:41:59
## 328 82 0.99 2007-02-21 08:23:38
## 329 84 0.99 2007-02-15 00:06:04
## 330 84 0.99 2007-02-16 19:44:33
## 331 84 0.99 2007-02-17 12:59:28
## 332 84 0.99 2007-02-18 15:21:59
## 333 85 0.99 2007-02-19 17:21:31
## 334 86 0.99 2007-02-16 20:12:11
## 335 86 0.99 2007-02-20 23:11:42
## 336 87 9.99 2007-02-20 16:54:23
## 337 89 8.99 2007-02-15 04:33:44
## 338 89 0.99 2007-02-18 23:14:22
## 339 90 0.99 2007-02-17 11:53:09
## 340 90 0.99 2007-02-20 17:38:12
## 341 91 0.99 2007-02-20 01:45:18
## 342 92 0.99 2007-02-18 23:09:34
## 343 92 8.99 2007-02-19 14:27:30
## 344 93 0.99 2007-02-20 16:02:21
## 345 95 0.99 2007-02-21 16:40:36
## 346 96 0.99 2007-02-15 17:05:30
## 347 96 0.99 2007-02-18 13:06:03
## 348 96 0.99 2007-02-21 06:27:02
## 349 96 0.99 2007-02-21 20:28:26
## 350 97 0.99 2007-02-21 20:14:13
## 351 98 0.99 2007-02-18 17:30:37
## 352 102 8.99 2007-02-18 15:49:50
## 353 103 0.99 2007-02-17 18:56:55
## 354 103 0.99 2007-02-18 00:18:53
## 355 103 0.99 2007-02-19 13:26:20
## 356 104 0.99 2007-02-17 17:59:42
## 357 104 0.99 2007-02-20 03:12:11
## 358 107 0.99 2007-02-20 16:47:55
## 359 107 0.99 2007-02-20 20:52:26
## 360 108 8.99 2007-02-17 14:15:26
## 361 110 8.99 2007-02-15 23:01:18
## 362 113 0.99 2007-02-20 08:33:02
## 363 113 8.99 2007-02-20 16:56:45
## 364 115 0.99 2007-02-15 12:06:04
## 365 116 0.99 2007-02-15 10:04:27
## 366 116 0.99 2007-02-15 23:14:28
## 367 118 0.99 2007-02-18 01:40:55
## 368 120 9.99 2007-02-19 17:46:53
## 369 122 0.99 2007-02-15 01:29:46
## 370 122 0.99 2007-02-18 03:40:09
## 371 123 0.99 2007-02-16 15:28:40
## 372 123 0.99 2007-02-17 06:59:01
## 373 128 0.99 2007-02-19 02:12:29
## 374 129 0.99 2007-02-16 14:03:07
## 375 129 0.99 2007-02-19 16:15:18
## 376 131 9.99 2007-02-16 07:41:19
## 377 132 0.99 2007-02-16 22:22:08
## 378 132 0.99 2007-02-18 13:47:15
## 379 133 0.99 2007-02-20 08:38:55
## 380 133 0.99 2007-02-21 11:24:14
## 381 134 9.99 2007-02-16 05:37:04
## 382 134 0.99 2007-02-16 17:53:58
## 383 134 0.99 2007-02-17 01:38:22
## 384 135 0.99 2007-02-15 06:11:24
## 385 138 0.99 2007-02-15 08:54:49
## 386 138 0.99 2007-02-17 12:29:17
## 387 139 0.99 2007-02-19 09:16:08
## 388 140 0.99 2007-02-20 20:44:13
## 389 143 0.99 2007-02-19 02:52:18
## 390 144 0.99 2007-02-17 06:17:43
## 391 145 0.99 2007-02-19 05:56:37
## 392 146 0.99 2007-02-19 17:44:22
## 393 147 0.99 2007-02-17 22:34:30
## 394 149 0.99 2007-02-19 15:12:44
## 395 151 0.99 2007-02-20 14:25:27
## 396 153 0.99 2007-02-18 02:02:24
## 397 153 0.99 2007-02-19 08:48:35
## 398 154 0.99 2007-02-17 07:37:57
## 399 156 9.99 2007-02-17 16:13:35
## 400 156 0.99 2007-02-18 01:53:22
## 401 156 0.99 2007-02-19 16:53:33
## 402 157 0.99 2007-02-18 09:59:22
## 403 158 0.99 2007-02-15 13:41:36
## 404 158 8.99 2007-02-20 23:03:22
## 405 159 0.99 2007-02-16 11:08:54
## 406 159 0.99 2007-02-19 02:49:52
## 407 162 0.99 2007-02-18 12:15:05
## 408 162 0.99 2007-02-20 11:02:39
## 409 162 0.99 2007-02-20 21:17:10
## 410 163 0.99 2007-02-20 21:06:25
## 411 164 8.99 2007-02-20 14:00:37
## 412 166 0.99 2007-02-20 14:10:59
## 413 170 0.99 2007-02-17 18:52:26
## 414 170 8.99 2007-02-18 15:28:00
## 415 171 0.99 2007-02-16 09:34:35
## 416 172 0.99 2007-02-15 20:53:52
## 417 172 0.99 2007-02-17 13:43:09
## 418 173 0.99 2007-02-21 00:40:02
## 419 174 0.99 2007-02-16 05:03:25
## 420 175 0.99 2007-02-15 20:22:57
## 421 176 8.99 2007-02-17 23:16:57
## 422 177 0.99 2007-02-16 14:35:53
## 423 178 9.99 2007-02-20 01:06:32
## 424 182 0.99 2007-02-18 02:29:54
## 425 183 0.99 2007-02-15 06:42:23
## 426 184 0.99 2007-02-18 07:24:12
## 427 187 0.99 2007-02-16 03:43:03
## 428 187 0.99 2007-02-17 19:23:14
## 429 187 0.99 2007-02-19 00:02:52
## 430 188 0.99 2007-02-17 05:16:45
## 431 189 0.99 2007-02-15 23:44:25
## 432 189 0.99 2007-02-16 21:17:34
## 433 191 0.99 2007-02-15 06:37:38
## 434 193 8.99 2007-02-21 05:36:45
## 435 194 0.99 2007-02-15 16:53:21
## 436 196 0.99 2007-02-16 04:32:38
## 437 196 0.99 2007-02-19 10:43:53
## 438 197 0.99 2007-02-15 12:33:37
## 439 197 8.99 2007-02-16 04:46:21
## 440 198 0.99 2007-02-17 23:40:48
## 441 199 0.99 2007-02-21 05:52:00
## 442 210 0.99 2007-02-19 21:41:30
## 443 211 8.99 2007-02-19 18:26:42
## 444 212 0.99 2007-02-15 11:45:27
## 445 212 0.99 2007-02-15 13:33:36
## 446 212 9.99 2007-02-19 14:27:04
## 447 213 0.99 2007-02-15 20:10:04
## 448 213 0.99 2007-02-18 22:12:34
## 449 216 0.99 2007-02-16 08:43:46
## 450 216 0.99 2007-02-18 10:56:23
## 451 218 0.99 2007-02-18 04:18:12
## 452 218 0.99 2007-02-18 04:38:49
## 453 219 0.99 2007-02-19 03:12:56
## 454 220 0.99 2007-02-16 21:03:46
## 455 221 0.99 2007-02-15 12:57:40
## 456 221 10.99 2007-02-19 09:18:28
## 457 222 8.99 2007-02-15 12:56:13
## 458 227 0.99 2007-02-20 12:22:19
## 459 229 0.99 2007-02-20 23:18:29
## 460 229 0.99 2007-02-21 04:36:38
## 461 230 0.99 2007-02-16 18:35:53
## 462 230 8.99 2007-02-18 17:54:13
## 463 230 0.99 2007-02-19 10:20:41
## 464 230 0.99 2007-02-19 16:44:52
## 465 231 0.99 2007-02-18 16:00:34
## 466 232 0.99 2007-02-16 05:42:39
## 467 232 8.99 2007-02-19 20:03:20
## 468 234 0.99 2007-02-16 07:38:32
## 469 235 0.99 2007-02-16 19:34:46
## 470 236 0.99 2007-02-15 05:23:19
## 471 236 8.99 2007-02-17 19:58:00
## 472 237 0.99 2007-02-15 20:29:11
## 473 237 0.99 2007-02-15 22:05:03
## 474 241 0.99 2007-02-18 16:16:00
## 475 241 0.99 2007-02-18 18:01:32
## 476 241 0.99 2007-02-21 02:22:24
## 477 243 0.99 2007-02-15 18:01:18
## 478 246 0.99 2007-02-19 13:29:49
## 479 248 0.99 2007-02-18 13:03:55
## 480 249 0.99 2007-02-15 00:50:12
## 481 252 0.99 2007-02-20 06:10:13
## 482 254 0.99 2007-02-15 14:34:55
## 483 256 0.99 2007-02-17 07:46:05
## 484 257 0.99 2007-02-19 01:37:17
## 485 258 0.99 2007-02-19 10:40:49
## 486 258 8.99 2007-02-20 03:19:11
## 487 260 10.99 2007-02-17 16:37:30
## 488 260 0.99 2007-02-17 23:07:01
## 489 260 0.99 2007-02-20 22:20:56
## 490 261 8.99 2007-02-17 09:11:00
## 491 261 0.99 2007-02-18 14:02:44
## 492 261 0.99 2007-02-21 10:53:33
## 493 262 8.99 2007-02-19 21:34:54
## 494 263 8.99 2007-02-17 19:23:02
## 495 264 0.99 2007-02-20 10:19:18
## 496 267 0.99 2007-02-20 14:28:45
## 497 267 0.99 2007-03-02 16:42:38
## 498 267 9.99 2007-03-19 14:46:50
## 499 267 0.99 2007-03-23 11:43:13
## 500 268 0.99 2007-03-22 02:00:31
## 501 270 0.99 2007-03-17 10:25:14
## 502 270 0.99 2007-03-21 16:38:17
## 503 271 0.99 2007-03-21 03:35:38
## 504 272 8.99 2007-03-17 01:31:22
## 505 272 0.99 2007-03-17 13:00:22
## 506 273 8.99 2007-03-01 01:43:00
## 507 273 0.99 2007-03-18 18:37:45
## 508 274 0.99 2007-03-01 22:35:03
## 509 274 8.99 2007-03-19 10:33:30
## 510 274 8.99 2007-03-20 02:27:07
## 511 274 0.99 2007-03-20 19:10:38
## 512 275 0.99 2007-03-20 14:35:34
## 513 275 0.99 2007-03-20 21:05:06
## 514 276 0.99 2007-03-01 16:38:19
## 515 277 0.99 2007-03-17 00:06:45
## 516 277 10.99 2007-03-22 06:52:58
## 517 278 0.99 2007-03-16 22:58:30
## 518 278 0.99 2007-03-18 22:36:24
## 519 278 0.99 2007-03-20 14:28:22
## 520 278 0.99 2007-03-20 17:30:42
## 521 278 0.99 2007-03-21 23:17:36
## 522 280 9.99 2007-03-01 22:17:59
## 523 280 9.99 2007-03-19 14:41:15
## 524 283 0.99 2007-03-17 03:05:05
## 525 283 0.99 2007-03-17 16:08:30
## 526 285 8.99 2007-03-17 18:29:38
## 527 285 0.99 2007-03-18 09:21:38
## 528 285 0.99 2007-03-18 09:31:30
## 529 285 9.99 2007-03-18 18:26:05
## 530 285 0.99 2007-03-22 16:32:23
## 531 286 0.99 2007-03-17 04:17:25
## 532 286 0.99 2007-03-18 14:55:34
## 533 286 0.99 2007-03-18 17:27:01
## 534 286 0.99 2007-03-22 03:02:48
## 535 287 0.99 2007-03-22 11:24:55
## 536 288 9.99 2007-03-02 00:59:41
## 537 288 0.99 2007-03-19 14:34:04
## 538 288 0.99 2007-03-20 23:31:56
## 539 288 0.99 2007-03-21 21:49:49
## 540 289 0.99 2007-03-17 23:34:36
## 541 289 0.99 2007-03-19 12:02:36
## 542 289 0.99 2007-03-19 13:52:07
## 543 289 9.99 2007-03-19 15:22:38
## 544 289 0.99 2007-03-20 22:22:06
## 545 291 0.99 2007-03-02 08:11:50
## 546 292 10.99 2007-03-18 20:43:44
## 547 292 0.99 2007-03-21 12:39:45
## 548 293 8.99 2007-03-22 21:46:07
## 549 295 0.99 2007-03-18 07:04:29
## 550 295 0.99 2007-03-21 04:46:48
## 551 297 0.99 2007-03-02 12:40:07
## 552 297 0.99 2007-03-02 18:03:45
## 553 297 0.99 2007-03-17 09:16:31
## 554 297 10.99 2007-03-18 10:27:14
## 555 298 0.99 2007-03-02 05:39:05
## 556 298 0.99 2007-03-17 20:26:45
## 557 298 8.99 2007-03-18 21:50:16
## 558 298 0.99 2007-03-19 12:17:33
## 559 298 0.99 2007-03-21 11:47:29
## 560 299 0.99 2007-03-17 17:14:47
## 561 299 0.99 2007-03-21 02:37:44
## 562 300 0.99 2007-03-19 17:12:19
## 563 300 9.99 2007-03-21 19:36:25
## 564 301 0.99 2007-03-01 23:15:45
## 565 301 10.99 2007-03-22 14:53:08
## 566 302 0.99 2007-03-01 03:24:39
## 567 302 0.99 2007-03-23 10:08:34
## 568 303 0.99 2007-03-17 21:39:38
## 569 303 0.99 2007-03-18 06:23:35
## 570 304 0.99 2007-03-01 14:03:40
## 571 304 0.99 2007-03-20 19:38:58
## 572 305 0.99 2007-03-19 00:31:52
## 573 306 0.99 2007-03-02 18:52:28
## 574 306 0.99 2007-03-17 08:55:45
## 575 306 0.99 2007-03-20 13:39:37
## 576 307 0.99 2007-03-01 04:53:53
## 577 307 0.99 2007-03-21 03:33:00
## 578 308 0.99 2007-03-01 20:31:17
## 579 309 0.99 2007-03-01 17:43:35
## 580 309 0.99 2007-03-20 00:26:41
## 581 311 0.99 2007-03-19 17:33:42
## 582 311 9.99 2007-03-23 13:43:28
## 583 311 8.99 2007-03-23 20:02:59
## 584 312 0.99 2007-03-02 12:04:00
## 585 312 0.99 2007-03-19 04:20:12
## 586 313 0.99 2007-03-22 19:24:22
## 587 314 0.99 2007-03-18 09:06:34
## 588 315 0.99 2007-03-02 12:12:15
## 589 316 0.99 2007-03-17 18:32:13
## 590 316 0.99 2007-03-18 00:25:37
## 591 317 0.99 2007-03-21 08:31:21
## 592 319 0.99 2007-03-17 00:18:52
## 593 319 0.99 2007-03-17 01:31:33
## 594 319 8.99 2007-03-18 08:45:23
## 595 320 0.99 2007-03-02 10:31:03
## 596 320 0.99 2007-03-21 01:29:08
## 597 322 0.99 2007-03-02 19:42:30
## 598 322 9.99 2007-03-20 06:17:32
## 599 322 0.99 2007-03-22 23:24:27
## 600 322 8.99 2007-03-23 08:52:14
## 601 323 0.99 2007-03-01 02:34:29
## 602 323 0.99 2007-03-16 23:28:13
## 603 323 0.99 2007-03-23 09:58:58
## 604 324 0.99 2007-03-19 19:30:47
## 605 324 8.99 2007-03-21 04:36:39
## 606 325 0.99 2007-03-01 06:25:42
## 607 325 0.99 2007-03-22 06:55:53
## 608 326 0.99 2007-03-01 17:32:59
## 609 326 0.99 2007-03-02 03:34:53
## 610 327 0.99 2007-03-01 04:48:55
## 611 327 0.99 2007-03-17 18:01:50
## 612 327 0.99 2007-03-19 22:41:09
## 613 327 9.99 2007-03-23 16:24:27
## 614 328 0.99 2007-03-18 23:52:24
## 615 328 0.99 2007-03-23 14:45:35
## 616 329 0.99 2007-03-01 09:05:37
## 617 329 0.99 2007-03-17 05:37:45
## 618 329 8.99 2007-03-20 05:27:26
## 619 330 0.99 2007-03-19 01:08:37
## 620 331 0.99 2007-03-20 11:00:35
## 621 332 0.99 2007-03-01 02:50:20
## 622 332 0.99 2007-03-01 07:22:52
## 623 332 0.99 2007-03-22 14:36:00
## 624 333 0.99 2007-03-18 17:38:36
## 625 334 0.99 2007-03-21 17:41:13
## 626 334 0.99 2007-03-23 02:54:46
## 627 335 0.99 2007-03-19 16:00:02
## 628 335 0.99 2007-03-22 10:24:28
## 629 336 8.99 2007-03-18 05:04:48
## 630 336 0.99 2007-03-18 22:49:03
## 631 336 0.99 2007-03-19 08:19:05
## 632 336 10.99 2007-03-22 09:29:41
## 633 337 0.99 2007-03-01 15:19:41
## 634 337 0.99 2007-03-01 19:03:17
## 635 338 0.99 2007-03-01 23:52:08
## 636 338 0.99 2007-03-22 10:29:59
## 637 339 0.99 2007-03-18 16:21:17
## 638 339 0.99 2007-03-20 17:41:32
## 639 340 8.99 2007-03-01 15:26:48
## 640 340 0.99 2007-03-01 21:07:53
## 641 340 0.99 2007-03-02 03:16:26
## 642 340 0.99 2007-03-21 20:07:51
## 643 340 9.99 2007-03-22 20:53:43
## 644 341 0.99 2007-03-01 13:04:52
## 645 341 0.99 2007-03-19 08:10:27
## 646 341 8.99 2007-03-19 08:35:19
## 647 341 0.99 2007-03-22 07:38:47
## 648 342 0.99 2007-03-02 19:02:03
## 649 342 0.99 2007-03-16 23:58:27
## 650 342 0.99 2007-03-21 05:47:23
## 651 342 8.99 2007-03-21 18:56:10
## 652 343 0.99 2007-03-01 21:22:54
## 653 343 0.99 2007-03-02 10:46:55
## 654 343 0.99 2007-03-20 13:33:55
## 655 344 0.99 2007-03-21 16:46:25
## 656 344 0.99 2007-03-21 17:01:08
## 657 345 10.99 2007-03-21 19:28:29
## 658 346 0.99 2007-03-01 10:14:43
## 659 346 0.99 2007-03-23 02:26:28
## 660 346 8.99 2007-03-23 07:20:29
## 661 346 0.99 2007-03-23 13:43:45
## 662 347 8.99 2007-03-17 07:14:21
## 663 347 10.99 2007-03-18 07:42:08
## 664 348 0.99 2007-03-20 07:24:19
## 665 348 0.99 2007-03-23 13:28:17
## 666 349 8.99 2007-03-02 21:15:13
## 667 350 0.99 2007-03-16 21:45:12
## 668 350 0.99 2007-03-17 09:58:18
## 669 350 0.99 2007-03-19 09:00:54
## 670 350 0.99 2007-03-23 13:03:36
## 671 351 0.99 2007-03-02 07:29:25
## 672 352 0.99 2007-03-17 16:50:24
## 673 352 0.99 2007-03-22 00:54:19
## 674 353 0.99 2007-03-02 09:40:34
## 675 353 0.99 2007-03-20 04:31:59
## 676 353 0.99 2007-03-23 06:58:19
## 677 354 0.99 2007-03-21 03:59:20
## 678 354 0.99 2007-03-23 17:47:47
## 679 355 0.99 2007-03-01 09:25:14
## 680 355 0.99 2007-03-02 20:17:29
## 681 356 0.99 2007-03-19 02:54:05
## 682 357 0.99 2007-03-01 19:01:08
## 683 357 0.99 2007-03-22 03:47:10
## 684 360 0.99 2007-03-18 22:50:18
## 685 361 0.99 2007-03-01 06:32:21
## 686 361 0.99 2007-03-02 02:39:51
## 687 361 0.99 2007-03-19 10:51:18
## 688 361 0.99 2007-03-20 19:52:50
## 689 361 0.99 2007-03-21 09:50:12
## 690 362 11.99 2007-03-21 21:57:24
## 691 363 9.99 2007-03-20 08:01:22
## 692 364 0.99 2007-03-20 15:51:01
## 693 364 0.99 2007-03-22 16:16:36
## 694 365 8.99 2007-03-18 23:01:41
## 695 366 0.99 2007-03-20 03:01:57
## 696 367 0.99 2007-03-18 06:16:31
## 697 367 8.99 2007-03-18 06:35:51
## 698 367 10.99 2007-03-21 12:09:40
## 699 368 8.99 2007-03-01 17:50:08
## 700 368 0.99 2007-03-17 11:44:30
## 701 368 8.99 2007-03-19 12:55:42
## 702 368 0.99 2007-03-19 20:02:01
## 703 369 0.99 2007-03-01 02:36:30
## 704 369 0.99 2007-03-18 12:11:33
## 705 370 0.99 2007-03-17 14:51:30
## 706 370 0.99 2007-03-19 07:23:45
## 707 371 10.99 2007-03-02 06:07:10
## 708 371 9.99 2007-03-18 07:41:18
## 709 371 0.99 2007-03-23 12:17:00
## 710 372 10.99 2007-03-02 07:47:48
## 711 372 0.99 2007-03-18 01:27:35
## 712 372 8.99 2007-03-20 13:38:39
## 713 372 9.99 2007-03-20 20:04:24
## 714 372 0.99 2007-03-22 08:11:44
## 715 373 0.99 2007-03-18 22:16:42
## 716 374 0.99 2007-03-17 02:31:52
## 717 374 8.99 2007-03-21 13:33:53
## 718 375 0.99 2007-03-01 01:45:17
## 719 375 0.99 2007-03-01 14:13:17
## 720 375 9.99 2007-03-17 21:49:11
## 721 375 0.99 2007-03-18 17:39:18
## 722 376 0.99 2007-03-19 06:19:01
## 723 376 0.99 2007-03-19 11:10:07
## 724 377 0.99 2007-03-19 16:22:04
## 725 377 0.99 2007-03-22 09:56:52
## 726 377 0.99 2007-03-23 18:58:22
## 727 379 0.99 2007-03-19 18:30:59
## 728 379 0.99 2007-03-19 23:48:40
## 729 379 0.99 2007-03-21 11:38:07
## 730 380 0.99 2007-03-17 15:14:00
## 731 380 0.99 2007-03-17 15:33:59
## 732 381 0.99 2007-03-01 13:17:07
## 733 381 0.99 2007-03-01 17:07:20
## 734 381 8.99 2007-03-19 13:26:56
## 735 381 0.99 2007-03-19 21:54:09
## 736 381 0.99 2007-03-20 04:57:03
## 737 382 0.99 2007-03-18 01:36:49
## 738 382 0.99 2007-03-18 12:22:02
## 739 383 0.99 2007-03-02 03:13:27
## 740 383 0.99 2007-03-02 07:17:35
## 741 384 0.99 2007-03-22 00:31:56
## 742 385 0.99 2007-03-01 11:27:50
## 743 385 8.99 2007-03-18 18:23:35
## 744 385 0.99 2007-03-19 10:01:46
## 745 386 0.99 2007-03-23 17:34:30
## 746 387 0.99 2007-03-01 11:36:00
## 747 387 0.99 2007-03-20 06:15:31
## 748 387 0.99 2007-03-22 05:45:02
## 749 388 0.99 2007-03-17 01:56:53
## 750 388 0.99 2007-03-17 19:08:03
## 751 388 10.99 2007-03-21 04:55:14
## 752 389 9.99 2007-03-23 19:39:59
## 753 390 0.99 2007-03-20 00:24:46
## 754 390 8.99 2007-03-22 18:13:25
## 755 391 0.99 2007-03-17 20:50:09
## 756 391 0.99 2007-03-21 08:24:13
## 757 392 0.99 2007-03-02 19:53:51
## 758 392 0.99 2007-03-18 13:27:17
## 759 392 0.99 2007-03-21 08:02:10
## 760 393 0.99 2007-03-18 18:03:06
## 761 393 0.99 2007-03-23 02:13:17
## 762 394 0.99 2007-03-01 12:59:01
## 763 394 0.99 2007-03-01 17:24:04
## 764 394 9.99 2007-03-18 11:50:51
## 765 394 0.99 2007-03-19 07:53:15
## 766 394 0.99 2007-03-21 16:24:32
## 767 395 0.99 2007-03-17 13:36:53
## 768 395 0.99 2007-03-21 20:12:19
## 769 395 0.99 2007-03-23 14:27:38
## 770 396 0.99 2007-03-01 13:18:07
## 771 397 0.99 2007-03-01 10:43:37
## 772 397 0.99 2007-03-18 03:11:48
## 773 397 0.99 2007-03-18 18:53:12
## 774 399 0.99 2007-03-22 18:12:26
## 775 400 0.99 2007-03-01 17:13:35
## 776 401 0.99 2007-03-21 07:44:45
## 777 401 0.99 2007-03-23 13:49:45
## 778 401 0.99 2007-03-23 16:51:37
## 779 402 0.99 2007-03-02 04:36:20
## 780 402 0.99 2007-03-17 14:38:45
## 781 403 9.99 2007-03-02 17:08:38
## 782 403 0.99 2007-03-02 19:56:29
## 783 403 0.99 2007-03-16 23:48:18
## 784 403 0.99 2007-03-21 18:13:53
## 785 404 8.99 2007-03-18 13:15:54
## 786 404 0.99 2007-03-21 19:10:55
## 787 404 0.99 2007-03-22 09:52:35
## 788 404 10.99 2007-03-22 17:56:28
## 789 405 0.99 2007-03-17 19:23:51
## 790 405 0.99 2007-03-19 20:37:14
## 791 405 0.99 2007-03-21 13:52:50
## 792 407 8.99 2007-03-02 10:48:16
## 793 407 0.99 2007-03-17 04:34:52
## 794 407 0.99 2007-03-18 13:41:30
## 795 407 0.99 2007-03-20 11:09:14
## 796 407 0.99 2007-03-22 18:46:15
## 797 408 0.99 2007-03-19 02:32:15
## 798 409 0.99 2007-03-19 00:08:51
## 799 409 8.99 2007-03-19 20:31:48
## 800 410 0.99 2007-03-02 06:48:04
## 801 410 10.99 2007-03-02 09:44:45
## 802 410 8.99 2007-03-19 04:34:24
## 803 411 0.99 2007-03-20 05:45:11
## 804 411 0.99 2007-03-23 17:11:37
## 805 412 8.99 2007-03-23 12:09:31
## 806 413 0.99 2007-03-02 20:15:52
## 807 413 0.99 2007-03-16 23:02:40
## 808 414 0.99 2007-03-17 05:52:12
## 809 414 0.99 2007-03-19 07:34:34
## 810 414 0.99 2007-03-19 20:47:08
## 811 414 0.99 2007-03-23 00:27:40
## 812 415 8.99 2007-03-20 08:45:34
## 813 415 0.99 2007-03-23 17:55:30
## 814 416 8.99 2007-03-18 20:02:19
## 815 416 0.99 2007-03-23 11:24:17
## 816 417 0.99 2007-03-01 08:37:32
## 817 417 0.99 2007-03-02 14:07:44
## 818 417 0.99 2007-03-17 20:19:23
## 819 417 0.99 2007-03-23 12:36:22
## 820 418 0.99 2007-03-01 17:12:23
## 821 418 0.99 2007-03-17 14:13:03
## 822 418 0.99 2007-03-19 17:37:40
## 823 418 0.99 2007-03-20 17:12:00
## 824 418 0.99 2007-03-21 12:15:55
## 825 419 0.99 2007-03-21 06:11:47
## 826 420 10.99 2007-03-01 12:54:06
## 827 420 0.99 2007-03-21 13:35:15
## 828 420 0.99 2007-03-23 04:49:46
## 829 421 9.99 2007-03-19 23:17:30
## 830 422 9.99 2007-03-19 02:44:39
## 831 422 0.99 2007-03-20 08:03:17
## 832 423 0.99 2007-03-22 20:56:41
## 833 424 0.99 2007-03-18 20:21:25
## 834 424 0.99 2007-03-22 10:52:25
## 835 424 9.99 2007-03-23 17:15:10
## 836 425 0.99 2007-03-01 11:06:12
## 837 425 0.99 2007-03-19 07:32:50
## 838 425 0.99 2007-03-22 09:10:24
## 839 426 0.99 2007-03-02 11:52:27
## 840 426 0.99 2007-03-17 12:46:47
## 841 428 0.99 2007-03-16 23:08:29
## 842 430 0.99 2007-03-18 20:02:42
## 843 430 0.99 2007-03-19 06:16:09
## 844 430 0.99 2007-03-19 22:48:33
## 845 431 0.99 2007-03-01 09:51:53
## 846 432 0.99 2007-03-17 12:39:54
## 847 434 9.99 2007-03-19 19:33:15
## 848 435 0.99 2007-03-17 09:45:13
## 849 435 0.99 2007-03-17 19:16:12
## 850 435 0.99 2007-03-19 13:47:21
## 851 435 0.99 2007-03-22 00:45:21
## 852 436 0.99 2007-03-02 08:33:56
## 853 436 0.99 2007-03-18 03:48:23
## 854 436 9.99 2007-03-19 09:23:45
## 855 436 0.99 2007-03-20 11:35:49
## 856 437 0.99 2007-03-01 01:04:05
## 857 437 8.99 2007-03-18 00:49:34
## 858 438 0.99 2007-03-18 17:25:06
## 859 439 9.99 2007-03-22 08:20:20
## 860 439 0.99 2007-03-23 19:56:01
## 861 440 0.99 2007-03-19 00:36:32
## 862 440 0.99 2007-03-21 14:31:28
## 863 440 0.99 2007-03-22 16:56:04
## 864 442 0.99 2007-03-01 07:40:02
## 865 442 0.99 2007-03-19 04:23:40
## 866 442 0.99 2007-03-19 06:08:34
## 867 442 0.99 2007-03-21 02:17:09
## 868 442 0.99 2007-03-21 11:31:39
## 869 443 0.99 2007-03-01 04:21:19
## 870 443 0.99 2007-03-22 14:15:31
## 871 443 0.99 2007-03-23 01:51:58
## 872 444 0.99 2007-03-02 16:03:11
## 873 444 0.99 2007-03-19 23:57:08
## 874 444 0.99 2007-03-20 15:33:44
## 875 444 0.99 2007-03-23 03:20:43
## 876 445 0.99 2007-03-01 03:38:28
## 877 445 9.99 2007-03-02 01:23:30
## 878 445 0.99 2007-03-20 04:08:59
## 879 446 0.99 2007-03-18 02:29:16
## 880 446 8.99 2007-03-18 10:55:09
## 881 446 0.99 2007-03-23 17:38:58
## 882 447 0.99 2007-03-02 06:48:27
## 883 447 0.99 2007-03-18 11:51:45
## 884 447 0.99 2007-03-19 09:53:03
## 885 448 8.99 2007-03-17 02:05:18
## 886 448 9.99 2007-03-17 09:50:09
## 887 448 9.99 2007-03-22 19:57:40
## 888 450 0.99 2007-03-18 23:22:28
## 889 450 0.99 2007-03-20 11:28:04
## 890 450 0.99 2007-03-22 07:21:19
## 891 451 8.99 2007-03-01 03:30:12
## 892 451 0.99 2007-03-19 20:05:24
## 893 451 0.99 2007-03-21 12:39:56
## 894 452 0.99 2007-03-18 06:04:49
## 895 452 0.99 2007-03-21 18:11:47
## 896 452 0.99 2007-03-23 16:11:08
## 897 453 0.99 2007-03-22 16:32:48
## 898 454 0.99 2007-03-18 05:46:36
## 899 454 0.99 2007-03-18 13:15:20
## 900 454 8.99 2007-03-20 00:10:55
## 901 454 8.99 2007-03-20 07:41:49
## 902 454 0.99 2007-03-21 23:13:23
## 903 455 0.99 2007-03-01 07:19:25
## 904 456 8.99 2007-03-19 11:14:21
## 905 457 0.99 2007-03-19 09:04:37
## 906 457 0.99 2007-03-20 15:47:14
## 907 457 10.99 2007-03-21 06:46:44
## 908 458 0.99 2007-03-18 21:54:37
## 909 459 10.99 2007-03-20 16:44:52
## 910 459 0.99 2007-03-23 13:21:16
## 911 460 10.99 2007-03-01 18:40:59
## 912 460 0.99 2007-03-19 01:07:16
## 913 460 8.99 2007-03-19 14:04:04
## 914 460 0.99 2007-03-22 01:25:32
## 915 461 0.99 2007-03-02 05:22:14
## 916 461 0.99 2007-03-02 10:58:46
## 917 462 0.99 2007-03-18 14:19:38
## 918 462 8.99 2007-03-18 22:56:07
## 919 462 8.99 2007-03-19 07:34:04
## 920 462 0.99 2007-03-23 19:45:43
## 921 463 0.99 2007-03-01 06:03:51
## 922 463 0.99 2007-03-21 19:01:26
## 923 464 8.99 2007-03-20 06:14:56
## 924 464 0.99 2007-03-23 14:26:31
## 925 466 0.99 2007-03-02 15:40:56
## 926 467 0.99 2007-03-01 00:37:48
## 927 467 9.99 2007-03-18 09:11:09
## 928 467 0.99 2007-03-21 10:50:10
## 929 467 0.99 2007-03-22 07:42:35
## 930 468 10.99 2007-03-02 12:13:31
## 931 468 0.99 2007-03-19 21:20:05
## 932 468 9.99 2007-03-21 06:12:43
## 933 468 9.99 2007-03-21 16:32:17
## 934 468 0.99 2007-03-23 20:53:05
## 935 469 0.99 2007-03-02 09:33:01
## 936 469 0.99 2007-03-17 18:46:32
## 937 469 9.99 2007-03-23 03:30:57
## 938 470 0.99 2007-03-01 00:34:00
## 939 470 0.99 2007-03-17 07:17:09
## 940 470 8.99 2007-03-18 08:43:18
## 941 470 10.99 2007-03-18 21:06:05
## 942 471 0.99 2007-03-22 14:19:38
## 943 472 0.99 2007-03-01 14:01:29
## 944 472 8.99 2007-03-19 12:55:29
## 945 473 0.99 2007-03-02 15:27:22
## 946 473 0.99 2007-03-17 07:17:05
## 947 473 0.99 2007-03-21 02:20:18
## 948 473 0.99 2007-03-21 14:25:05
## 949 474 0.99 2007-03-02 07:04:29
## 950 474 0.99 2007-03-18 09:16:01
## 951 474 0.99 2007-03-21 20:44:02
## 952 475 0.99 2007-03-01 04:18:15
## 953 476 9.99 2007-03-01 13:34:18
## 954 476 0.99 2007-03-22 22:06:27
## 955 477 0.99 2007-03-02 00:28:29
## 956 477 0.99 2007-03-19 06:06:24
## 957 479 0.99 2007-03-18 07:49:17
## 958 479 8.99 2007-03-19 08:45:09
## 959 480 0.99 2007-03-02 03:48:17
## 960 480 0.99 2007-03-19 09:09:35
## 961 480 9.99 2007-03-19 10:36:39
## 962 481 0.99 2007-03-02 10:29:56
## 963 481 0.99 2007-03-21 15:43:59
## 964 482 0.99 2007-03-21 20:50:55
## 965 482 0.99 2007-03-22 21:30:11
## 966 483 0.99 2007-03-01 15:53:01
## 967 484 0.99 2007-03-17 18:26:00
## 968 484 0.99 2007-03-19 11:49:30
## 969 485 8.99 2007-03-18 02:44:32
## 970 485 0.99 2007-03-18 11:13:50
## 971 486 0.99 2007-03-18 10:03:28
## 972 486 0.99 2007-03-20 11:14:43
## 973 487 9.99 2007-03-02 02:40:53
## 974 488 0.99 2007-03-01 19:05:49
## 975 488 0.99 2007-03-22 16:51:49
## 976 489 9.99 2007-03-02 07:13:10
## 977 489 0.99 2007-03-22 15:00:49
## 978 491 0.99 2007-03-17 00:56:59
## 979 491 0.99 2007-03-21 22:34:59
## 980 492 0.99 2007-03-23 13:34:25
## 981 493 0.99 2007-03-22 19:47:50
## 982 494 0.99 2007-03-01 05:59:11
## 983 494 0.99 2007-03-19 09:16:24
## 984 494 9.99 2007-03-22 12:57:37
## 985 495 0.99 2007-03-19 00:19:35
## 986 496 0.99 2007-03-21 07:22:52
## 987 497 0.99 2007-03-17 21:50:44
## 988 497 0.99 2007-03-21 00:14:20
## 989 497 0.99 2007-03-23 05:59:36
## 990 497 0.99 2007-03-23 16:29:57
## 991 498 0.99 2007-03-01 00:07:06
## 992 499 0.99 2007-03-01 03:26:58
## 993 499 0.99 2007-03-17 02:01:09
## 994 499 8.99 2007-03-17 17:25:19
## 995 500 0.99 2007-03-21 09:15:17
## 996 501 0.99 2007-03-20 14:08:32
## 997 502 0.99 2007-03-02 01:33:48
## 998 502 0.99 2007-03-02 14:06:25
## 999 502 0.99 2007-03-02 18:42:49
## 1000 502 0.99 2007-03-17 02:34:48
## 1001 502 9.99 2007-03-19 08:00:08
## 1002 503 0.99 2007-03-21 23:53:08
## 1003 503 0.99 2007-03-23 12:42:13
## 1004 504 0.99 2007-03-01 05:39:53
## 1005 504 8.99 2007-03-23 09:45:52
## 1006 505 0.99 2007-03-02 08:37:06
## 1007 506 0.99 2007-03-02 11:54:16
## 1008 506 0.99 2007-03-19 05:54:36
## 1009 506 0.99 2007-03-20 10:12:02
## 1010 506 9.99 2007-03-23 08:31:12
## 1011 508 8.99 2007-03-01 18:27:15
## 1012 510 0.99 2007-03-18 04:45:32
## 1013 512 9.99 2007-03-17 10:50:30
## 1014 512 8.99 2007-03-19 04:41:10
## 1015 512 0.99 2007-03-20 10:15:47
## 1016 514 0.99 2007-03-18 14:15:37
## 1017 514 0.99 2007-03-20 20:40:12
## 1018 515 0.99 2007-03-01 17:22:14
## 1019 515 8.99 2007-03-18 11:11:16
## 1020 515 0.99 2007-03-21 09:36:43
## 1021 516 0.99 2007-03-17 14:53:28
## 1022 516 8.99 2007-03-19 16:22:08
## 1023 516 0.99 2007-03-22 04:09:05
## 1024 516 0.99 2007-03-23 02:12:56
## 1025 516 0.99 2007-03-23 08:50:47
## 1026 517 0.99 2007-03-18 19:12:40
## 1027 517 0.99 2007-03-19 20:34:35
## 1028 518 0.99 2007-03-22 05:45:11
## 1029 520 0.99 2007-03-16 23:57:01
## 1030 520 0.99 2007-03-19 17:35:35
## 1031 520 0.99 2007-03-21 13:08:24
## 1032 520 0.99 2007-03-22 23:44:59
## 1033 521 0.99 2007-03-21 09:52:25
## 1034 525 0.99 2007-03-22 13:00:51
## 1035 526 10.99 2007-03-16 21:39:00
## 1036 526 0.99 2007-03-18 15:32:15
## 1037 526 8.99 2007-03-19 14:20:39
## 1038 526 0.99 2007-03-20 03:52:00
## 1039 526 8.99 2007-03-20 05:03:56
## 1040 526 9.99 2007-03-23 20:49:29
## 1041 527 0.99 2007-03-01 13:24:40
## 1042 527 0.99 2007-03-17 02:46:08
## 1043 528 0.99 2007-03-01 15:40:17
## 1044 529 10.99 2007-03-01 04:22:15
## 1045 529 9.99 2007-03-20 16:12:58
## 1046 529 0.99 2007-03-21 22:06:13
## 1047 530 0.99 2007-03-02 15:02:55
## 1048 530 0.99 2007-03-22 09:17:32
## 1049 531 10.99 2007-03-02 12:34:08
## 1050 531 8.99 2007-03-19 17:15:22
## 1051 531 0.99 2007-03-22 20:05:17
## 1052 532 8.99 2007-03-19 12:58:32
## 1053 532 0.99 2007-03-22 14:11:23
## 1054 533 8.99 2007-03-17 08:01:28
## 1055 533 0.99 2007-03-18 15:18:16
## 1056 533 0.99 2007-03-23 19:29:35
## 1057 534 0.99 2007-03-01 20:25:07
## 1058 534 0.99 2007-03-19 17:05:01
## 1059 535 8.99 2007-03-17 07:09:21
## 1060 535 0.99 2007-03-18 01:45:20
## 1061 535 0.99 2007-03-18 20:26:16
## 1062 535 0.99 2007-03-20 13:13:49
## 1063 535 0.99 2007-03-23 19:55:37
## 1064 536 8.99 2007-03-17 19:25:28
## 1065 536 8.99 2007-03-23 18:36:44
## 1066 536 0.99 2007-03-23 18:36:52
## 1067 537 0.99 2007-03-21 13:00:53
## 1068 537 0.99 2007-03-21 18:22:37
## 1069 537 8.99 2007-03-23 13:50:01
## 1070 538 0.99 2007-03-21 15:58:35
## 1071 540 8.99 2007-03-02 00:48:45
## 1072 540 8.99 2007-03-17 19:36:07
## 1073 540 0.99 2007-03-22 03:19:18
## 1074 541 0.99 2007-03-02 12:49:21
## 1075 541 0.99 2007-03-20 05:51:19
## 1076 541 0.99 2007-03-22 22:25:03
## 1077 542 0.99 2007-03-17 00:36:39
## 1078 542 0.99 2007-03-18 23:33:31
## 1079 542 0.99 2007-03-19 22:38:02
## 1080 542 9.99 2007-03-22 05:49:21
## 1081 543 0.99 2007-03-01 01:18:09
## 1082 543 9.99 2007-03-02 11:57:50
## 1083 543 0.99 2007-03-19 12:53:14
## 1084 544 0.99 2007-03-01 17:58:11
## 1085 544 8.99 2007-03-21 17:59:35
## 1086 545 10.99 2007-03-18 17:40:11
## 1087 545 0.99 2007-03-23 04:23:48
## 1088 546 0.99 2007-03-01 04:46:30
## 1089 547 0.99 2007-03-02 16:15:00
## 1090 547 0.99 2007-03-18 14:16:15
## 1091 547 9.99 2007-03-21 13:13:07
## 1092 548 0.99 2007-03-01 03:05:19
## 1093 548 0.99 2007-03-21 02:00:30
## 1094 549 0.99 2007-03-01 01:56:59
## 1095 549 0.99 2007-03-21 10:09:12
## 1096 550 0.99 2007-03-02 14:41:54
## 1097 550 10.99 2007-03-19 09:55:58
## 1098 550 9.99 2007-03-22 22:55:13
## 1099 550 0.99 2007-03-23 15:13:22
## 1100 551 0.99 2007-03-02 16:45:58
## 1101 551 0.99 2007-03-19 01:15:45
## 1102 551 0.99 2007-03-21 09:44:41
## 1103 552 0.99 2007-03-20 07:40:08
## 1104 553 0.99 2007-03-23 01:16:50
## 1105 554 9.99 2007-03-17 00:56:48
## 1106 554 0.99 2007-03-17 12:43:05
## 1107 554 8.99 2007-03-17 17:46:20
## 1108 554 0.99 2007-03-17 17:58:10
## 1109 554 0.99 2007-03-21 11:35:50
## 1110 557 0.99 2007-03-02 09:23:29
## 1111 557 0.99 2007-03-22 16:12:53
## 1112 557 0.99 2007-03-23 16:17:52
## 1113 558 0.99 2007-03-01 17:10:00
## 1114 558 0.99 2007-03-02 12:39:05
## 1115 559 8.99 2007-03-01 15:31:54
## 1116 559 0.99 2007-03-01 23:00:24
## 1117 561 0.99 2007-03-21 00:32:59
## 1118 561 0.99 2007-03-23 03:57:02
## 1119 562 10.99 2007-03-19 18:57:14
## 1120 562 0.99 2007-03-20 05:50:33
## 1121 563 0.99 2007-03-17 11:20:30
## 1122 563 9.99 2007-03-20 13:26:16
## 1123 563 0.99 2007-03-23 01:16:52
## 1124 564 0.99 2007-03-19 18:19:26
## 1125 564 0.99 2007-03-20 02:41:43
## 1126 564 0.99 2007-03-20 07:55:31
## 1127 564 0.99 2007-03-21 16:01:44
## 1128 564 8.99 2007-03-22 08:50:26
## 1129 565 10.99 2007-03-01 19:28:24
## 1130 565 0.99 2007-03-19 19:36:20
## 1131 565 8.99 2007-03-20 15:34:00
## 1132 566 0.99 2007-03-17 06:12:35
## 1133 566 8.99 2007-03-18 07:00:59
## 1134 567 10.99 2007-03-23 04:47:09
## 1135 568 0.99 2007-03-01 16:32:44
## 1136 568 0.99 2007-03-01 22:55:20
## 1137 569 0.99 2007-03-01 23:15:59
## 1138 569 0.99 2007-03-18 04:17:19
## 1139 569 9.99 2007-03-20 02:37:05
## 1140 569 0.99 2007-03-21 09:02:11
## 1141 569 8.99 2007-03-22 02:49:21
## 1142 569 0.99 2007-03-23 05:35:48
## 1143 571 0.99 2007-03-22 04:54:42
## 1144 572 0.99 2007-03-02 06:55:11
## 1145 573 0.99 2007-03-01 02:33:03
## 1146 573 0.99 2007-03-02 04:33:10
## 1147 573 0.99 2007-03-18 22:45:35
## 1148 575 8.99 2007-03-18 03:33:54
## 1149 575 0.99 2007-03-23 14:28:17
## 1150 576 0.99 2007-03-21 14:02:58
## 1151 576 0.99 2007-03-23 06:02:44
## 1152 577 0.99 2007-03-01 08:55:00
## 1153 577 0.99 2007-03-02 20:10:33
## 1154 577 0.99 2007-03-18 17:48:25
## 1155 578 0.99 2007-03-23 07:02:36
## 1156 579 0.99 2007-03-21 01:57:03
## 1157 579 0.99 2007-03-23 05:01:52
## 1158 580 8.99 2007-03-02 08:39:22
## 1159 581 0.99 2007-03-20 05:12:10
## 1160 581 8.99 2007-03-20 21:25:00
## 1161 581 0.99 2007-03-22 21:46:36
## 1162 582 0.99 2007-03-21 14:59:14
## 1163 582 0.99 2007-03-23 02:37:29
## 1164 583 0.99 2007-03-21 04:28:48
## 1165 584 0.99 2007-03-02 02:29:13
## 1166 584 8.99 2007-03-18 11:47:39
## 1167 584 0.99 2007-03-23 05:34:26
## 1168 585 0.99 2007-03-01 11:55:50
## 1169 585 9.99 2007-03-02 13:12:28
## 1170 585 0.99 2007-03-20 15:56:27
## 1171 586 0.99 2007-03-17 08:20:05
## 1172 586 0.99 2007-03-19 02:23:00
## 1173 586 0.99 2007-03-23 08:08:30
## 1174 587 0.99 2007-03-22 19:42:17
## 1175 589 8.99 2007-03-19 03:46:46
## 1176 589 0.99 2007-03-21 14:09:27
## 1177 589 0.99 2007-03-21 19:33:08
## 1178 589 0.99 2007-03-23 18:56:58
## 1179 591 9.99 2007-03-20 13:34:08
## 1180 592 0.99 2007-03-01 05:05:42
## 1181 592 8.99 2007-03-02 17:57:27
## 1182 592 0.99 2007-03-17 19:06:47
## 1183 592 0.99 2007-03-18 15:52:41
## 1184 593 0.99 2007-03-21 18:04:25
## 1185 594 8.99 2007-03-01 17:06:28
## 1186 595 0.99 2007-03-17 07:32:28
## 1187 595 0.99 2007-03-18 01:46:16
## 1188 595 0.99 2007-03-21 07:00:58
## 1189 595 0.99 2007-03-23 18:57:36
## 1190 596 0.99 2007-03-01 20:50:37
## 1191 596 0.99 2007-03-17 15:08:26
## 1192 596 0.99 2007-03-21 09:42:01
## 1193 596 0.99 2007-03-22 21:49:07
## 1194 597 0.99 2007-03-19 05:51:32
## 1195 598 0.99 2007-03-02 15:51:25
## 1196 598 0.99 2007-03-21 07:09:41
## 1197 599 8.99 2007-03-23 04:38:10
## 1198 202 8.99 2007-03-18 22:55:45
## 1199 202 0.99 2007-03-22 10:10:01
## 1200 203 0.99 2007-03-18 12:10:40
## 1201 204 0.99 2007-03-17 13:27:17
## 1202 204 0.99 2007-03-19 08:55:51
## 1203 204 0.99 2007-03-22 01:51:50
## 1204 204 11.99 2007-03-22 22:17:22
## 1205 205 0.99 2007-03-21 07:04:29
## 1206 205 0.99 2007-03-22 22:22:40
## 1207 206 10.99 2007-03-19 15:55:21
## 1208 206 9.99 2007-03-20 02:27:17
## 1209 206 0.99 2007-03-20 07:44:41
## 1210 206 0.99 2007-03-21 19:15:13
## 1211 207 0.99 2007-03-01 02:36:37
## 1212 207 0.99 2007-03-02 12:20:45
## 1213 207 8.99 2007-03-20 11:24:29
## 1214 207 9.99 2007-03-20 15:00:36
## 1215 1 0.99 2007-03-02 16:30:04
## 1216 1 0.99 2007-03-18 02:25:55
## 1217 1 0.99 2007-03-19 08:23:42
## 1218 1 0.99 2007-03-21 22:02:23
## 1219 2 0.99 2007-03-01 08:13:52
## 1220 2 0.99 2007-03-02 00:39:22
## 1221 3 8.99 2007-03-19 20:46:33
## 1222 3 8.99 2007-03-21 19:19:14
## 1223 3 0.99 2007-03-22 08:05:53
## 1224 4 0.99 2007-03-02 05:38:00
## 1225 4 8.99 2007-03-18 03:43:10
## 1226 5 0.99 2007-03-01 13:55:36
## 1227 5 9.99 2007-03-17 22:38:30
## 1228 5 0.99 2007-03-20 13:44:44
## 1229 5 0.99 2007-03-22 16:05:28
## 1230 6 0.99 2007-03-17 06:40:46
## 1231 6 0.99 2007-03-17 12:07:58
## 1232 6 0.99 2007-03-23 05:09:58
## 1233 7 8.99 2007-03-18 06:25:40
## 1234 7 0.99 2007-03-20 04:21:57
## 1235 8 9.99 2007-03-02 11:32:38
## 1236 8 0.99 2007-03-20 23:35:37
## 1237 9 0.99 2007-03-01 07:39:51
## 1238 9 0.99 2007-03-16 23:40:19
## 1239 10 8.99 2007-03-01 15:38:25
## 1240 10 0.99 2007-03-02 17:42:05
## 1241 11 0.99 2007-03-16 21:34:56
## 1242 11 0.99 2007-03-20 03:35:53
## 1243 11 0.99 2007-03-22 11:11:13
## 1244 12 10.99 2007-03-01 05:18:52
## 1245 12 0.99 2007-03-16 21:20:56
## 1246 12 0.99 2007-03-20 01:05:33
## 1247 12 0.99 2007-03-23 18:57:10
## 1248 13 0.99 2007-03-02 14:33:43
## 1249 13 0.99 2007-03-19 13:54:14
## 1250 13 0.99 2007-03-19 23:01:45
## 1251 13 9.99 2007-03-21 04:12:33
## 1252 14 0.99 2007-03-22 20:36:37
## 1253 14 0.99 2007-03-23 20:53:52
## 1254 15 8.99 2007-03-19 18:47:02
## 1255 15 0.99 2007-03-21 14:59:48
## 1256 15 8.99 2007-03-22 01:52:07
## 1257 15 0.99 2007-03-22 14:04:30
## 1258 16 0.99 2007-03-02 14:19:10
## 1259 16 8.99 2007-03-21 13:14:00
## 1260 18 0.99 2007-03-18 05:20:05
## 1261 18 0.99 2007-03-19 23:57:55
## 1262 19 8.99 2007-03-16 21:56:02
## 1263 19 9.99 2007-03-18 00:59:44
## 1264 19 8.99 2007-03-20 08:22:10
## 1265 19 8.99 2007-03-20 11:14:58
## 1266 19 0.99 2007-03-23 02:15:13
## 1267 20 0.99 2007-03-17 10:56:21
## 1268 20 0.99 2007-03-17 23:56:41
## 1269 20 0.99 2007-03-22 16:21:32
## 1270 21 0.99 2007-03-01 17:57:13
## 1271 21 0.99 2007-03-02 05:39:23
## 1272 21 0.99 2007-03-17 16:21:35
## 1273 21 8.99 2007-03-19 23:19:20
## 1274 21 9.99 2007-03-20 07:54:40
## 1275 21 8.99 2007-03-20 21:52:33
## 1276 22 0.99 2007-03-18 23:10:50
## 1277 22 9.99 2007-03-19 08:11:51
## 1278 23 0.99 2007-03-20 00:50:06
## 1279 23 0.99 2007-03-20 02:41:07
## 1280 24 8.99 2007-03-17 23:22:03
## 1281 24 0.99 2007-03-19 15:14:25
## 1282 25 0.99 2007-03-17 03:16:31
## 1283 25 0.99 2007-03-19 03:17:14
## 1284 25 0.99 2007-03-23 01:25:56
## 1285 26 0.99 2007-03-02 15:28:38
## 1286 26 8.99 2007-03-21 02:06:08
## 1287 27 0.99 2007-03-02 11:40:43
## 1288 27 8.99 2007-03-17 03:54:23
## 1289 27 0.99 2007-03-18 09:56:40
## 1290 27 0.99 2007-03-22 08:28:30
## 1291 28 0.99 2007-03-18 06:12:31
## 1292 29 0.99 2007-03-19 22:04:51
## 1293 29 0.99 2007-03-21 01:30:11
## 1294 30 0.99 2007-03-18 21:27:00
## 1295 30 0.99 2007-03-19 22:04:10
## 1296 30 0.99 2007-03-21 07:05:41
## 1297 31 0.99 2007-03-18 06:54:31
## 1298 32 9.99 2007-03-18 08:19:06
## 1299 32 8.99 2007-03-20 08:59:49
## 1300 32 0.99 2007-03-20 21:47:20
## 1301 33 0.99 2007-03-20 18:40:45
## 1302 33 0.99 2007-03-21 16:57:39
## 1303 34 0.99 2007-03-01 10:20:58
## 1304 34 0.99 2007-03-02 06:33:45
## 1305 34 0.99 2007-03-18 17:04:42
## 1306 35 0.99 2007-03-20 23:21:35
## 1307 36 0.99 2007-03-02 02:16:43
## 1308 36 9.99 2007-03-21 17:43:59
## 1309 37 0.99 2007-03-19 22:28:50
## 1310 37 8.99 2007-03-20 19:48:02
## 1311 37 0.99 2007-03-20 22:11:12
## 1312 37 0.99 2007-03-23 16:00:45
## 1313 37 0.99 2007-03-23 20:36:30
## 1314 38 0.99 2007-03-17 20:56:41
## 1315 39 0.99 2007-03-01 14:03:12
## 1316 39 9.99 2007-03-01 14:13:09
## 1317 39 0.99 2007-03-18 02:55:20
## 1318 40 0.99 2007-03-17 14:37:15
## 1319 40 9.99 2007-03-18 07:39:49
## 1320 40 0.99 2007-03-19 20:00:11
## 1321 41 0.99 2007-03-18 23:35:28
## 1322 45 8.99 2007-03-02 03:32:44
## 1323 45 10.99 2007-03-23 13:15:52
## 1324 46 0.99 2007-03-17 06:17:43
## 1325 46 0.99 2007-03-19 14:34:02
## 1326 46 0.99 2007-03-23 09:04:17
## 1327 47 0.99 2007-03-02 07:27:30
## 1328 47 0.99 2007-03-21 08:54:22
## 1329 49 0.99 2007-03-01 01:34:25
## 1330 51 0.99 2007-03-01 23:41:01
## 1331 51 0.99 2007-03-18 00:04:26
## 1332 51 0.99 2007-03-20 13:34:52
## 1333 52 0.99 2007-03-01 12:40:55
## 1334 52 0.99 2007-03-01 14:06:24
## 1335 52 0.99 2007-03-02 05:36:33
## 1336 52 0.99 2007-03-18 12:11:11
## 1337 53 0.99 2007-03-20 22:39:43
## 1338 53 0.99 2007-03-21 23:37:30
## 1339 54 0.99 2007-03-19 01:26:03
## 1340 54 0.99 2007-03-20 14:09:26
## 1341 54 10.99 2007-03-22 15:48:43
## 1342 56 0.99 2007-03-01 15:54:50
## 1343 56 8.99 2007-03-20 02:45:42
## 1344 56 0.99 2007-03-21 13:44:55
## 1345 57 0.99 2007-03-19 11:58:12
## 1346 57 0.99 2007-03-20 09:19:53
## 1347 57 9.99 2007-03-20 15:42:14
## 1348 57 0.99 2007-03-23 03:54:56
## 1349 57 9.99 2007-03-23 14:52:50
## 1350 58 0.99 2007-03-01 15:28:53
## 1351 58 8.99 2007-03-18 03:37:20
## 1352 60 0.99 2007-03-01 15:56:31
## 1353 60 8.99 2007-03-02 17:41:06
## 1354 60 0.99 2007-03-23 05:58:52
## 1355 61 0.99 2007-03-01 11:15:05
## 1356 61 9.99 2007-03-17 20:18:51
## 1357 61 0.99 2007-03-19 22:46:41
## 1358 61 0.99 2007-03-20 12:26:25
## 1359 62 0.99 2007-03-17 16:52:16
## 1360 62 8.99 2007-03-20 00:55:39
## 1361 62 0.99 2007-03-23 04:40:18
## 1362 63 0.99 2007-03-18 12:07:52
## 1363 63 0.99 2007-03-19 09:07:22
## 1364 63 8.99 2007-03-20 05:19:28
## 1365 64 0.99 2007-03-18 08:12:24
## 1366 64 0.99 2007-03-20 17:13:19
## 1367 64 0.99 2007-03-21 06:28:13
## 1368 65 8.99 2007-03-02 11:16:31
## 1369 65 0.99 2007-03-20 07:36:18
## 1370 65 0.99 2007-03-21 07:37:17
## 1371 66 0.99 2007-03-01 06:41:48
## 1372 66 0.99 2007-03-17 15:10:39
## 1373 66 0.99 2007-03-18 18:49:25
## 1374 66 0.99 2007-03-21 09:58:09
## 1375 66 8.99 2007-03-23 04:51:52
## 1376 67 8.99 2007-03-02 13:38:32
## 1377 67 8.99 2007-03-17 13:43:27
## 1378 68 0.99 2007-03-21 03:54:25
## 1379 69 0.99 2007-03-21 18:59:51
## 1380 70 9.99 2007-03-02 12:52:34
## 1381 70 0.99 2007-03-22 16:14:38
## 1382 71 0.99 2007-03-23 19:13:02
## 1383 72 0.99 2007-03-01 01:35:52
## 1384 72 0.99 2007-03-18 09:27:30
## 1385 72 0.99 2007-03-18 14:46:20
## 1386 72 0.99 2007-03-19 11:22:19
## 1387 72 0.99 2007-03-20 04:27:31
## 1388 72 0.99 2007-03-20 19:28:09
## 1389 72 0.99 2007-03-22 10:45:12
## 1390 73 0.99 2007-03-02 08:23:54
## 1391 73 0.99 2007-03-23 07:30:29
## 1392 74 0.99 2007-03-01 13:55:31
## 1393 74 0.99 2007-03-19 18:31:44
## 1394 74 0.99 2007-03-20 01:10:12
## 1395 74 0.99 2007-03-23 01:08:03
## 1396 74 0.99 2007-03-23 20:55:13
## 1397 75 0.99 2007-03-02 15:13:59
## 1398 75 0.99 2007-03-18 01:55:08
## 1399 75 0.99 2007-03-18 17:39:07
## 1400 76 10.99 2007-03-23 03:45:49
## 1401 77 0.99 2007-03-01 23:45:25
## 1402 77 0.99 2007-03-02 03:09:38
## 1403 77 9.99 2007-03-20 09:46:11
## 1404 78 10.99 2007-03-02 01:44:57
## 1405 78 8.99 2007-03-18 10:38:29
## 1406 78 0.99 2007-03-19 21:57:32
## 1407 78 0.99 2007-03-21 19:58:21
## 1408 79 0.99 2007-03-21 01:42:53
## 1409 80 0.99 2007-03-01 02:57:55
## 1410 80 8.99 2007-03-01 16:34:20
## 1411 80 0.99 2007-03-17 11:37:11
## 1412 80 0.99 2007-03-19 20:34:06
## 1413 80 0.99 2007-03-20 13:12:48
## 1414 80 0.99 2007-03-22 03:25:23
## 1415 80 8.99 2007-03-23 06:56:23
## 1416 81 0.99 2007-03-01 07:45:47
## 1417 82 0.99 2007-03-19 07:00:16
## 1418 82 0.99 2007-03-21 13:27:24
## 1419 83 0.99 2007-03-02 17:53:39
## 1420 84 0.99 2007-03-01 10:53:08
## 1421 84 0.99 2007-03-17 13:57:38
## 1422 85 0.99 2007-03-01 11:12:58
## 1423 85 8.99 2007-03-02 05:31:50
## 1424 85 0.99 2007-03-17 18:47:32
## 1425 85 0.99 2007-03-20 08:53:38
## 1426 86 8.99 2007-03-01 01:08:05
## 1427 86 0.99 2007-03-17 14:34:17
## 1428 87 0.99 2007-03-18 01:42:40
## 1429 87 8.99 2007-03-18 02:39:29
## 1430 87 0.99 2007-03-19 23:37:37
## 1431 87 0.99 2007-03-20 14:44:29
## 1432 87 10.99 2007-03-20 19:42:24
## 1433 88 0.99 2007-03-01 06:51:20
## 1434 90 0.99 2007-03-16 22:23:13
## 1435 90 0.99 2007-03-17 18:17:21
## 1436 90 0.99 2007-03-22 08:58:10
## 1437 90 0.99 2007-03-22 15:26:57
## 1438 91 0.99 2007-03-02 18:13:59
## 1439 91 0.99 2007-03-19 00:32:33
## 1440 91 0.99 2007-03-21 00:12:24
## 1441 92 0.99 2007-03-20 00:08:51
## 1442 92 0.99 2007-03-21 23:12:34
## 1443 93 8.99 2007-03-20 16:26:26
## 1444 93 0.99 2007-03-21 02:09:01
## 1445 93 0.99 2007-03-23 08:32:43
## 1446 94 0.99 2007-03-22 05:41:41
## 1447 94 0.99 2007-03-23 08:28:50
## 1448 95 0.99 2007-03-01 07:30:43
## 1449 96 0.99 2007-03-20 00:56:35
## 1450 97 0.99 2007-03-22 06:48:41
## 1451 98 0.99 2007-03-02 03:34:19
## 1452 99 0.99 2007-03-18 06:55:14
## 1453 99 8.99 2007-03-19 01:19:02
## 1454 100 0.99 2007-03-02 08:01:20
## 1455 100 0.99 2007-03-18 17:30:42
## 1456 100 0.99 2007-03-22 13:11:39
## 1457 101 0.99 2007-03-01 06:06:33
## 1458 101 0.99 2007-03-21 11:59:33
## 1459 102 9.99 2007-03-19 21:25:51
## 1460 103 0.99 2007-03-20 07:01:47
## 1461 103 8.99 2007-03-22 21:41:36
## 1462 103 0.99 2007-03-23 07:55:55
## 1463 103 8.99 2007-03-23 21:11:33
## 1464 104 0.99 2007-03-19 06:14:08
## 1465 104 0.99 2007-03-22 14:21:23
## 1466 105 0.99 2007-03-18 01:13:10
## 1467 105 0.99 2007-03-20 20:31:44
## 1468 106 8.99 2007-03-01 07:30:06
## 1469 106 0.99 2007-03-02 18:44:32
## 1470 106 0.99 2007-03-22 03:37:24
## 1471 108 8.99 2007-03-23 03:20:42
## 1472 109 0.99 2007-03-01 00:37:59
## 1473 111 0.99 2007-03-22 04:40:42
## 1474 112 8.99 2007-03-20 04:49:08
## 1475 112 0.99 2007-03-21 07:42:54
## 1476 112 0.99 2007-03-23 07:36:42
## 1477 112 8.99 2007-03-23 08:14:59
## 1478 113 0.99 2007-03-01 04:58:30
## 1479 114 0.99 2007-03-18 05:10:25
## 1480 114 0.99 2007-03-23 00:33:23
## 1481 114 0.99 2007-03-23 21:11:14
## 1482 115 0.99 2007-03-02 00:39:29
## 1483 115 0.99 2007-03-18 06:23:40
## 1484 115 0.99 2007-03-20 17:31:00
## 1485 115 0.99 2007-03-22 23:25:38
## 1486 116 0.99 2007-03-19 19:48:13
## 1487 116 0.99 2007-03-19 23:32:58
## 1488 116 11.99 2007-03-21 22:02:26
## 1489 117 0.99 2007-03-21 22:51:39
## 1490 118 0.99 2007-03-23 10:01:51
## 1491 119 0.99 2007-03-21 18:11:02
## 1492 120 0.99 2007-03-02 07:44:11
## 1493 120 9.99 2007-03-21 11:17:14
## 1494 121 8.99 2007-03-17 06:15:20
## 1495 121 0.99 2007-03-19 02:15:00
## 1496 121 9.99 2007-03-21 09:30:35
## 1497 121 0.99 2007-03-22 20:26:32
## 1498 123 8.99 2007-03-01 02:22:15
## 1499 124 0.99 2007-03-21 20:55:37
## 1500 124 0.99 2007-03-23 20:13:28
## 1501 125 0.99 2007-03-17 17:15:33
## 1502 126 9.99 2007-03-02 10:11:06
## 1503 126 0.99 2007-03-17 09:58:37
## 1504 126 0.99 2007-03-19 12:25:24
## 1505 127 10.99 2007-03-01 20:03:27
## 1506 127 0.99 2007-03-02 11:41:47
## 1507 128 0.99 2007-03-19 02:51:39
## 1508 128 0.99 2007-03-19 06:53:42
## 1509 128 0.99 2007-03-20 00:42:42
## 1510 128 0.99 2007-03-21 01:11:41
## 1511 128 8.99 2007-03-22 03:44:42
## 1512 128 8.99 2007-03-23 13:53:53
## 1513 129 0.99 2007-03-01 08:16:55
## 1514 129 10.99 2007-03-20 06:23:20
## 1515 129 0.99 2007-03-20 16:45:00
## 1516 129 0.99 2007-03-21 07:36:16
## 1517 130 0.99 2007-03-20 23:27:27
## 1518 131 0.99 2007-03-17 16:22:08
## 1519 131 0.99 2007-03-18 01:05:33
## 1520 131 0.99 2007-03-18 02:44:44
## 1521 131 9.99 2007-03-18 06:33:01
## 1522 131 0.99 2007-03-19 20:54:52
## 1523 132 0.99 2007-03-02 07:56:11
## 1524 132 0.99 2007-03-17 10:29:20
## 1525 132 0.99 2007-03-17 22:15:42
## 1526 133 0.99 2007-03-01 15:24:43
## 1527 133 0.99 2007-03-22 09:40:17
## 1528 135 0.99 2007-03-01 08:21:03
## 1529 135 0.99 2007-03-19 07:15:11
## 1530 135 0.99 2007-03-20 18:47:31
## 1531 136 10.99 2007-03-17 16:55:48
## 1532 136 0.99 2007-03-18 12:38:35
## 1533 136 0.99 2007-03-21 08:21:29
## 1534 137 0.99 2007-03-19 11:23:56
## 1535 137 0.99 2007-03-22 11:46:09
## 1536 137 9.99 2007-03-23 20:24:30
## 1537 138 0.99 2007-03-02 06:16:57
## 1538 138 0.99 2007-03-02 20:06:02
## 1539 138 0.99 2007-03-23 01:08:22
## 1540 139 9.99 2007-03-22 15:27:31
## 1541 139 0.99 2007-03-23 10:40:31
## 1542 140 10.99 2007-03-19 08:00:14
## 1543 141 0.99 2007-03-19 06:05:08
## 1544 141 0.99 2007-03-22 18:23:18
## 1545 142 0.99 2007-03-19 04:57:39
## 1546 142 0.99 2007-03-19 07:42:57
## 1547 142 0.99 2007-03-20 09:22:15
## 1548 142 0.99 2007-03-20 16:44:47
## 1549 142 0.99 2007-03-21 23:40:03
## 1550 144 0.99 2007-03-01 02:40:34
## 1551 145 0.99 2007-03-19 16:17:39
## 1552 146 0.99 2007-03-02 16:34:27
## 1553 147 8.99 2007-03-01 18:37:15
## 1554 147 0.99 2007-03-21 01:03:42
## 1555 147 0.99 2007-03-21 17:33:49
## 1556 147 8.99 2007-03-23 10:01:01
## 1557 148 10.99 2007-03-02 16:11:15
## 1558 148 0.99 2007-03-17 18:56:52
## 1559 148 0.99 2007-03-20 20:46:26
## 1560 148 0.99 2007-03-21 19:55:50
## 1561 148 8.99 2007-03-22 20:54:39
## 1562 149 0.99 2007-03-02 02:30:42
## 1563 150 0.99 2007-03-19 02:10:34
## 1564 150 8.99 2007-03-19 15:22:38
## 1565 150 0.99 2007-03-21 01:27:43
## 1566 150 9.99 2007-03-21 13:29:15
## 1567 150 0.99 2007-03-21 18:16:21
## 1568 151 0.99 2007-03-19 14:40:33
## 1569 152 0.99 2007-03-17 09:07:50
## 1570 152 0.99 2007-03-19 23:45:18
## 1571 152 0.99 2007-03-20 17:41:49
## 1572 152 0.99 2007-03-21 01:29:27
## 1573 153 0.99 2007-03-22 17:06:14
## 1574 154 0.99 2007-03-18 05:37:53
## 1575 154 0.99 2007-03-22 19:44:12
## 1576 155 8.99 2007-03-21 06:39:22
## 1577 155 0.99 2007-03-22 03:17:10
## 1578 155 0.99 2007-03-22 10:30:14
## 1579 156 0.99 2007-03-20 01:41:09
## 1580 156 0.99 2007-03-22 03:22:01
## 1581 157 0.99 2007-03-19 02:55:31
## 1582 158 0.99 2007-03-02 12:48:53
## 1583 158 0.99 2007-03-20 19:51:29
## 1584 159 0.99 2007-03-20 15:45:33
## 1585 159 8.99 2007-03-21 15:20:00
## 1586 159 0.99 2007-03-22 14:42:51
## 1587 160 0.99 2007-03-01 20:05:36
## 1588 161 0.99 2007-03-01 04:16:03
## 1589 161 0.99 2007-03-02 01:34:46
## 1590 161 0.99 2007-03-21 00:51:29
## 1591 161 0.99 2007-03-22 06:23:24
## 1592 162 0.99 2007-03-02 03:38:08
## 1593 163 0.99 2007-03-01 00:52:35
## 1594 163 8.99 2007-03-23 01:59:11
## 1595 163 0.99 2007-03-23 14:08:04
## 1596 167 0.99 2007-03-22 08:36:18
## 1597 167 0.99 2007-03-23 00:18:57
## 1598 168 0.99 2007-03-01 01:38:50
## 1599 168 0.99 2007-03-16 23:32:15
## 1600 168 10.99 2007-03-17 02:54:13
## 1601 168 8.99 2007-03-19 06:33:16
## 1602 168 0.99 2007-03-20 11:28:56
## 1603 169 0.99 2007-03-21 10:13:03
## 1604 169 0.99 2007-03-23 02:24:20
## 1605 170 0.99 2007-03-02 04:29:19
## 1606 170 0.99 2007-03-19 08:47:32
## 1607 170 8.99 2007-03-20 19:37:15
## 1608 171 0.99 2007-03-19 17:03:58
## 1609 171 0.99 2007-03-19 21:59:19
## 1610 171 9.99 2007-03-21 16:34:58
## 1611 171 0.99 2007-03-23 13:11:41
## 1612 172 0.99 2007-03-01 13:38:52
## 1613 172 8.99 2007-03-18 16:40:05
## 1614 172 0.99 2007-03-19 18:50:02
## 1615 173 0.99 2007-03-23 00:31:19
## 1616 173 8.99 2007-03-23 11:54:10
## 1617 174 8.99 2007-03-01 11:31:24
## 1618 174 0.99 2007-03-16 22:43:57
## 1619 174 0.99 2007-03-19 12:50:56
## 1620 175 0.99 2007-03-01 23:00:10
## 1621 175 0.99 2007-03-18 11:50:18
## 1622 176 0.99 2007-03-01 07:24:22
## 1623 177 0.99 2007-03-01 17:13:02
## 1624 177 0.99 2007-03-02 10:10:49
## 1625 177 0.99 2007-03-20 22:49:55
## 1626 177 0.99 2007-03-21 06:12:58
## 1627 177 0.99 2007-03-22 02:23:28
## 1628 178 0.99 2007-03-01 11:34:18
## 1629 179 0.99 2007-03-02 15:40:01
## 1630 179 0.99 2007-03-19 14:50:40
## 1631 179 0.99 2007-03-20 16:37:30
## 1632 179 0.99 2007-03-21 15:57:21
## 1633 180 8.99 2007-03-02 03:09:43
## 1634 180 8.99 2007-03-18 04:35:57
## 1635 180 0.99 2007-03-20 23:21:24
## 1636 181 0.99 2007-03-18 08:16:23
## 1637 183 0.99 2007-03-18 09:33:08
## 1638 184 9.99 2007-03-17 23:25:32
## 1639 184 0.99 2007-03-19 10:42:40
## 1640 184 0.99 2007-03-23 05:24:44
## 1641 185 0.99 2007-03-02 16:06:09
## 1642 185 0.99 2007-03-19 02:05:51
## 1643 186 0.99 2007-03-02 02:58:45
## 1644 186 0.99 2007-03-17 16:41:33
## 1645 186 8.99 2007-03-18 09:11:18
## 1646 186 0.99 2007-03-22 06:29:15
## 1647 186 0.99 2007-03-23 04:48:17
## 1648 187 8.99 2007-03-18 04:16:49
## 1649 187 9.99 2007-03-18 11:17:11
## 1650 187 8.99 2007-03-20 15:57:23
## 1651 187 8.99 2007-03-22 00:55:58
## 1652 188 0.99 2007-03-01 09:13:47
## 1653 188 0.99 2007-03-22 21:54:58
## 1654 189 9.99 2007-03-01 01:02:32
## 1655 190 0.99 2007-03-17 07:35:26
## 1656 190 9.99 2007-03-17 15:41:42
## 1657 190 0.99 2007-03-18 07:00:09
## 1658 190 0.99 2007-03-20 21:09:13
## 1659 190 0.99 2007-03-21 17:53:17
## 1660 192 0.99 2007-03-01 00:36:31
## 1661 193 0.99 2007-03-18 07:05:24
## 1662 193 0.99 2007-03-20 04:39:10
## 1663 194 0.99 2007-03-20 00:58:13
## 1664 195 0.99 2007-03-17 21:07:20
## 1665 195 0.99 2007-03-19 04:07:52
## 1666 195 0.99 2007-03-20 09:17:13
## 1667 195 11.99 2007-03-23 20:47:59
## 1668 196 0.99 2007-03-18 09:01:07
## 1669 196 0.99 2007-03-18 18:19:53
## 1670 196 0.99 2007-03-19 00:16:59
## 1671 196 8.99 2007-03-20 11:05:08
## 1672 196 0.99 2007-03-23 18:38:39
## 1673 197 0.99 2007-03-01 15:25:02
## 1674 197 0.99 2007-03-18 22:55:27
## 1675 197 9.99 2007-03-20 21:19:51
## 1676 197 0.99 2007-03-22 16:10:19
## 1677 197 8.99 2007-03-23 02:41:18
## 1678 198 0.99 2007-03-01 15:56:24
## 1679 199 8.99 2007-03-01 22:22:11
## 1680 199 0.99 2007-03-18 07:14:23
## 1681 199 0.99 2007-03-22 22:05:37
## 1682 200 8.99 2007-03-02 16:11:06
## 1683 200 10.99 2007-03-20 20:00:18
## 1684 201 0.99 2007-03-01 23:38:21
## 1685 201 0.99 2007-03-17 10:19:41
## 1686 201 9.99 2007-03-20 04:52:19
## 1687 208 0.99 2007-03-17 10:53:43
## 1688 209 0.99 2007-03-17 18:27:32
## 1689 209 8.99 2007-03-20 11:00:58
## 1690 209 9.99 2007-03-23 01:19:53
## 1691 210 8.99 2007-03-18 08:13:59
## 1692 210 0.99 2007-03-23 07:37:44
## 1693 210 8.99 2007-03-23 17:17:06
## 1694 211 8.99 2007-03-02 05:53:13
## 1695 211 0.99 2007-03-18 04:35:26
## 1696 211 0.99 2007-03-21 22:45:46
## 1697 212 0.99 2007-03-01 11:44:27
## 1698 212 0.99 2007-03-18 10:08:35
## 1699 213 0.99 2007-03-19 21:43:26
## 1700 214 9.99 2007-03-19 19:12:26
## 1701 214 0.99 2007-03-20 03:07:18
## 1702 214 0.99 2007-03-20 08:37:06
## 1703 214 0.99 2007-03-21 14:55:51
## 1704 215 0.99 2007-03-19 08:56:48
## 1705 215 0.99 2007-03-21 00:00:43
## 1706 215 0.99 2007-03-23 14:05:57
## 1707 216 0.99 2007-03-02 03:33:49
## 1708 216 0.99 2007-03-19 21:38:35
## 1709 217 0.99 2007-03-22 11:04:06
## 1710 218 0.99 2007-03-19 05:19:28
## 1711 218 0.99 2007-03-23 03:58:45
## 1712 219 0.99 2007-03-17 09:29:37
## 1713 219 0.99 2007-03-20 19:51:37
## 1714 220 0.99 2007-03-02 04:26:38
## 1715 221 0.99 2007-03-18 05:06:46
## 1716 221 0.99 2007-03-21 08:05:42
## 1717 221 8.99 2007-03-22 11:21:48
## 1718 223 0.99 2007-03-20 03:48:22
## 1719 224 0.99 2007-03-17 10:42:42
## 1720 224 0.99 2007-03-20 22:59:29
## 1721 224 0.99 2007-03-22 15:46:58
## 1722 225 0.99 2007-03-02 16:51:27
## 1723 226 0.99 2007-03-21 19:51:22
## 1724 226 0.99 2007-03-21 21:01:48
## 1725 227 0.99 2007-03-17 13:41:47
## 1726 227 0.99 2007-03-22 21:49:48
## 1727 228 0.99 2007-03-18 04:12:55
## 1728 229 0.99 2007-03-19 17:25:55
## 1729 230 0.99 2007-03-18 12:49:37
## 1730 230 0.99 2007-03-20 19:23:58
## 1731 231 0.99 2007-03-18 01:02:48
## 1732 231 8.99 2007-03-18 01:39:30
## 1733 231 0.99 2007-03-20 19:49:34
## 1734 232 0.99 2007-03-17 12:22:13
## 1735 232 0.99 2007-03-21 13:36:08
## 1736 232 0.99 2007-03-22 01:11:05
## 1737 233 0.99 2007-03-23 13:32:24
## 1738 234 0.99 2007-03-01 10:53:20
## 1739 234 0.99 2007-03-02 05:41:29
## 1740 234 0.99 2007-03-18 01:29:14
## 1741 235 0.99 2007-03-19 08:24:49
## 1742 235 0.99 2007-03-19 23:28:02
## 1743 237 11.99 2007-03-02 20:46:39
## 1744 237 0.99 2007-03-18 10:21:33
## 1745 237 8.99 2007-03-22 12:06:37
## 1746 237 0.99 2007-03-22 19:18:17
## 1747 238 8.99 2007-03-21 07:08:47
## 1748 238 0.99 2007-03-22 23:33:26
## 1749 239 0.99 2007-03-01 18:42:40
## 1750 239 0.99 2007-03-17 16:16:00
## 1751 240 8.99 2007-03-20 06:40:59
## 1752 240 0.99 2007-03-23 06:35:15
## 1753 241 0.99 2007-03-22 04:19:52
## 1754 242 0.99 2007-03-01 04:40:45
## 1755 242 9.99 2007-03-01 14:47:11
## 1756 242 0.99 2007-03-02 03:58:14
## 1757 242 0.99 2007-03-17 02:04:32
## 1758 242 9.99 2007-03-19 16:10:32
## 1759 242 0.99 2007-03-20 03:17:47
## 1760 242 0.99 2007-03-21 13:20:40
## 1761 242 0.99 2007-03-22 06:34:26
## 1762 243 0.99 2007-03-20 23:21:11
## 1763 244 0.99 2007-03-02 08:26:41
## 1764 244 9.99 2007-03-02 12:37:34
## 1765 244 9.99 2007-03-17 08:16:32
## 1766 244 0.99 2007-03-20 10:22:27
## 1767 244 0.99 2007-03-20 15:40:54
## 1768 244 0.99 2007-03-21 08:00:10
## 1769 244 0.99 2007-03-21 18:08:09
## 1770 245 0.99 2007-03-02 05:18:44
## 1771 245 0.99 2007-03-02 06:41:57
## 1772 245 0.99 2007-03-02 10:45:14
## 1773 245 0.99 2007-03-19 16:56:33
## 1774 247 0.99 2007-03-16 21:19:46
## 1775 248 0.99 2007-03-18 02:01:43
## 1776 248 0.99 2007-03-20 15:15:58
## 1777 248 0.99 2007-03-21 19:30:48
## 1778 249 0.99 2007-03-17 04:15:58
## 1779 249 0.99 2007-03-21 05:19:14
## 1780 250 0.99 2007-03-18 06:15:57
## 1781 250 0.99 2007-03-18 23:12:36
## 1782 251 0.99 2007-03-17 06:59:29
## 1783 251 0.99 2007-03-21 05:34:46
## 1784 252 0.99 2007-03-01 02:59:44
## 1785 252 0.99 2007-03-17 08:20:20
## 1786 253 0.99 2007-03-18 14:01:20
## 1787 254 0.99 2007-03-02 09:50:00
## 1788 254 0.99 2007-03-17 22:41:41
## 1789 254 0.99 2007-03-18 00:50:46
## 1790 254 0.99 2007-03-19 01:36:23
## 1791 254 0.99 2007-03-23 11:53:34
## 1792 255 0.99 2007-03-19 16:02:16
## 1793 255 0.99 2007-03-20 07:23:21
## 1794 255 8.99 2007-03-20 09:49:52
## 1795 256 8.99 2007-03-17 02:55:44
## 1796 256 0.99 2007-03-19 23:01:48
## 1797 256 0.99 2007-03-20 06:18:34
## 1798 257 0.99 2007-03-02 17:13:11
## 1799 257 0.99 2007-03-19 14:08:05
## 1800 257 0.99 2007-03-20 23:38:55
## 1801 257 0.99 2007-03-22 07:25:50
## 1802 257 0.99 2007-03-23 18:19:55
## 1803 258 0.99 2007-03-01 05:21:16
## 1804 259 10.99 2007-03-22 22:34:23
## 1805 260 8.99 2007-03-02 02:35:12
## 1806 260 0.99 2007-03-19 00:41:06
## 1807 260 0.99 2007-03-20 17:31:51
## 1808 262 0.99 2007-03-01 06:42:36
## 1809 262 0.99 2007-03-01 19:14:05
## 1810 262 0.99 2007-03-22 23:35:27
## 1811 263 0.99 2007-03-17 11:01:05
## 1812 263 9.99 2007-03-17 19:33:01
## 1813 264 0.99 2007-03-16 23:03:19
## 1814 265 8.99 2007-03-20 07:54:43
## 1815 266 0.99 2007-03-17 02:54:08
## 1816 266 0.99 2007-03-17 06:39:36
## 1817 266 0.99 2007-03-18 06:54:39
## 1818 266 8.99 2007-03-19 23:25:10
## 1819 266 0.99 2007-03-22 02:08:22
## 1820 269 9.99 2007-04-07 05:48:55
## 1821 269 0.99 2007-04-08 15:25:56
## 1822 270 9.99 2007-04-06 21:56:50
## 1823 270 0.99 2007-04-10 00:47:54
## 1824 271 0.99 2007-04-29 11:02:24
## 1825 272 10.99 2007-04-30 08:54:45
## 1826 273 8.99 2007-04-12 05:48:01
## 1827 273 0.99 2007-04-30 18:17:07
## 1828 273 0.99 2007-04-30 07:12:09
## 1829 274 0.99 2007-04-28 23:33:42
## 1830 275 0.99 2007-04-07 19:42:45
## 1831 275 0.99 2007-04-08 07:08:28
## 1832 275 9.99 2007-04-08 19:54:37
## 1833 275 0.99 2007-04-12 18:18:42
## 1834 276 0.99 2007-04-08 10:44:03
## 1835 276 0.99 2007-04-30 06:09:05
## 1836 276 8.99 2007-04-30 12:06:43
## 1837 277 0.99 2007-04-10 16:42:48
## 1838 277 0.99 2007-04-30 12:49:25
## 1839 278 8.99 2007-04-08 17:38:25
## 1840 278 0.99 2007-04-27 08:48:53
## 1841 278 0.99 2007-04-28 07:15:09
## 1842 279 9.99 2007-04-09 16:43:58
## 1843 279 0.99 2007-04-11 09:16:47
## 1844 280 0.99 2007-04-12 18:00:40
## 1845 280 0.99 2007-04-28 09:40:38
## 1846 280 0.99 2007-04-29 02:13:18
## 1847 280 0.99 2007-04-29 03:39:26
## 1848 280 0.99 2007-04-29 23:59:51
## 1849 280 0.99 2007-04-30 07:17:52
## 1850 281 0.99 2007-04-08 05:43:40
## 1851 281 0.99 2007-04-12 16:56:38
## 1852 281 0.99 2007-04-28 18:23:47
## 1853 282 0.99 2007-04-09 05:34:44
## 1854 282 8.99 2007-04-09 14:46:10
## 1855 282 0.99 2007-04-29 17:25:27
## 1856 282 9.99 2007-04-30 04:29:18
## 1857 283 0.99 2007-04-06 07:30:22
## 1858 283 0.99 2007-04-11 03:31:29
## 1859 283 0.99 2007-04-11 16:58:18
## 1860 283 0.99 2007-04-27 18:52:57
## 1861 283 0.99 2007-04-28 06:42:38
## 1862 284 0.99 2007-04-06 02:01:49
## 1863 284 8.99 2007-04-28 03:01:41
## 1864 284 0.99 2007-04-30 09:02:34
## 1865 285 9.99 2007-04-10 07:20:39
## 1866 285 0.99 2007-04-11 00:20:54
## 1867 285 0.99 2007-04-12 09:08:05
## 1868 285 9.99 2007-04-27 16:55:05
## 1869 285 9.99 2007-04-28 04:14:54
## 1870 285 0.99 2007-04-29 06:53:13
## 1871 286 9.99 2007-04-07 22:28:09
## 1872 286 0.99 2007-04-27 13:34:31
## 1873 286 0.99 2007-04-29 04:48:44
## 1874 287 0.99 2007-04-10 11:14:02
## 1875 288 0.99 2007-04-08 13:06:28
## 1876 288 0.99 2007-04-28 04:06:46
## 1877 288 0.99 2007-04-30 07:24:34
## 1878 289 0.99 2007-04-08 06:31:08
## 1879 289 8.99 2007-04-09 15:48:29
## 1880 289 0.99 2007-04-10 09:46:38
## 1881 289 0.99 2007-04-27 12:15:21
## 1882 290 0.99 2007-04-07 03:17:39
## 1883 290 0.99 2007-04-07 20:33:02
## 1884 290 0.99 2007-04-30 19:13:05
## 1885 291 0.99 2007-04-27 20:59:43
## 1886 291 0.99 2007-04-29 15:07:54
## 1887 292 0.99 2007-04-06 01:17:05
## 1888 292 0.99 2007-04-09 12:25:09
## 1889 292 8.99 2007-04-11 14:27:36
## 1890 292 8.99 2007-04-30 03:10:08
## 1891 293 0.99 2007-04-07 17:17:20
## 1892 293 9.99 2007-04-11 22:38:07
## 1893 294 0.99 2007-04-30 02:19:32
## 1894 294 0.99 2007-04-30 22:41:02
## 1895 295 9.99 2007-04-06 16:49:39
## 1896 295 0.99 2007-04-28 16:49:42
## 1897 295 9.99 2007-04-29 21:24:04
## 1898 295 8.99 2007-04-30 05:39:30
## 1899 295 0.99 2007-04-30 23:46:08
## 1900 296 0.99 2007-04-09 04:16:48
## 1901 296 0.99 2007-04-28 20:01:23
## 1902 297 0.99 2007-04-06 02:39:01
## 1903 297 8.99 2007-04-10 10:26:04
## 1904 297 0.99 2007-04-28 08:37:20
## 1905 297 0.99 2007-04-28 10:55:53
## 1906 297 0.99 2007-04-30 20:58:36
## 1907 298 0.99 2007-04-05 21:37:19
## 1908 298 0.99 2007-04-12 15:42:43
## 1909 298 0.99 2007-04-28 06:20:23
## 1910 299 0.99 2007-04-05 22:28:29
## 1911 299 0.99 2007-04-12 12:27:17
## 1912 299 9.99 2007-04-28 08:30:51
## 1913 299 0.99 2007-04-30 23:10:44
## 1914 300 0.99 2007-04-06 11:55:59
## 1915 300 0.99 2007-04-07 00:54:08
## 1916 300 10.99 2007-04-10 08:37:43
## 1917 300 0.99 2007-04-30 06:29:26
## 1918 300 0.99 2007-04-30 09:03:48
## 1919 302 0.99 2007-04-09 22:55:47
## 1920 302 0.99 2007-04-10 09:00:18
## 1921 302 0.99 2007-04-27 06:47:04
## 1922 302 0.99 2007-04-29 13:17:14
## 1923 302 8.99 2007-04-30 17:38:29
## 1924 303 0.99 2007-04-29 05:09:48
## 1925 303 0.99 2007-04-29 18:07:30
## 1926 304 8.99 2007-04-08 15:35:37
## 1927 304 0.99 2007-04-10 13:04:55
## 1928 304 0.99 2007-04-11 05:35:35
## 1929 304 0.99 2007-04-30 13:46:29
## 1930 305 0.99 2007-04-09 01:47:17
## 1931 305 8.99 2007-04-10 10:38:37
## 1932 305 0.99 2007-04-12 07:19:14
## 1933 306 0.99 2007-04-29 12:19:46
## 1934 306 0.99 2007-04-29 15:33:03
## 1935 306 0.99 2007-04-30 08:26:17
## 1936 307 0.99 2007-04-11 13:47:48
## 1937 307 10.99 2007-04-26 23:31:32
## 1938 307 0.99 2007-04-28 10:45:06
## 1939 308 8.99 2007-04-07 14:03:01
## 1940 308 0.99 2007-04-29 22:34:58
## 1941 309 8.99 2007-04-09 14:24:02
## 1942 309 0.99 2007-04-30 14:18:36
## 1943 310 10.99 2007-04-06 14:29:42
## 1944 310 0.99 2007-04-07 03:16:28
## 1945 310 0.99 2007-04-10 15:17:28
## 1946 311 8.99 2007-04-30 12:21:59
## 1947 313 0.99 2007-04-27 11:06:40
## 1948 314 0.99 2007-04-05 23:21:01
## 1949 314 0.99 2007-04-06 13:44:01
## 1950 314 0.99 2007-04-07 19:23:45
## 1951 314 0.99 2007-04-10 16:25:58
## 1952 314 0.99 2007-04-28 17:28:12
## 1953 315 9.99 2007-04-30 07:26:15
## 1954 317 0.99 2007-04-07 06:45:39
## 1955 317 8.99 2007-04-07 08:41:02
## 1956 317 0.99 2007-04-08 10:05:47
## 1957 317 0.99 2007-04-10 01:25:11
## 1958 317 8.99 2007-04-30 08:21:06
## 1959 318 8.99 2007-04-07 17:49:48
## 1960 318 0.99 2007-04-28 00:05:52
## 1961 318 0.99 2007-04-28 08:05:04
## 1962 319 8.99 2007-04-10 12:44:48
## 1963 319 0.99 2007-04-30 05:03:47
## 1964 320 0.99 2007-04-05 23:25:55
## 1965 320 0.99 2007-04-28 22:58:32
## 1966 320 0.99 2007-04-30 22:51:08
## 1967 321 8.99 2007-04-10 17:07:27
## 1968 321 0.99 2007-04-30 15:36:57
## 1969 322 0.99 2007-04-05 21:34:10
## 1970 322 0.99 2007-04-12 10:19:22
## 1971 323 0.99 2007-04-29 07:05:22
## 1972 323 0.99 2007-04-29 19:20:07
## 1973 324 0.99 2007-04-07 09:36:18
## 1974 324 0.99 2007-04-10 12:10:03
## 1975 325 0.99 2007-04-12 07:32:37
## 1976 325 9.99 2007-04-27 08:10:53
## 1977 325 0.99 2007-04-29 09:16:50
## 1978 326 0.99 2007-04-06 17:12:50
## 1979 326 0.99 2007-04-30 11:28:59
## 1980 326 0.99 2007-04-30 19:30:40
## 1981 327 0.99 2007-04-08 01:26:22
## 1982 329 0.99 2007-04-30 01:27:47
## 1983 329 0.99 2007-04-30 11:43:47
## 1984 329 0.99 2007-04-30 17:51:30
## 1985 330 0.99 2007-04-12 09:38:13
## 1986 331 8.99 2007-04-06 16:27:17
## 1987 331 10.99 2007-04-07 16:29:48
## 1988 331 0.99 2007-04-28 22:43:03
## 1989 332 0.99 2007-04-09 17:53:51
## 1990 332 0.99 2007-04-09 20:13:43
## 1991 332 8.99 2007-04-27 21:24:33
## 1992 332 8.99 2007-04-28 11:01:36
## 1993 332 0.99 2007-04-30 13:27:47
## 1994 333 0.99 2007-04-09 01:08:13
## 1995 333 0.99 2007-04-11 14:40:37
## 1996 333 0.99 2007-04-26 22:31:07
## 1997 333 0.99 2007-04-27 08:59:07
## 1998 333 10.99 2007-04-30 16:31:39
## 1999 334 0.99 2007-04-09 19:53:46
## 2000 335 0.99 2007-04-06 03:58:35
## 2001 335 0.99 2007-04-06 23:34:16
## 2002 335 8.99 2007-04-07 19:25:13
## 2003 335 0.99 2007-04-09 12:09:10
## 2004 335 0.99 2007-04-12 20:31:28
## 2005 335 0.99 2007-04-30 19:47:03
## 2006 336 0.99 2007-04-10 06:39:29
## 2007 336 8.99 2007-04-30 01:46:50
## 2008 336 0.99 2007-04-30 15:15:43
## 2009 336 0.99 2007-04-30 17:44:24
## 2010 337 0.99 2007-04-11 11:09:14
## 2011 337 8.99 2007-04-30 00:25:29
## 2012 338 0.99 2007-04-05 23:18:56
## 2013 338 0.99 2007-04-29 18:09:30
## 2014 339 0.99 2007-04-07 22:42:18
## 2015 339 0.99 2007-04-11 22:23:18
## 2016 339 0.99 2007-04-30 02:25:58
## 2017 340 0.99 2007-04-08 12:03:49
## 2018 340 0.99 2007-04-29 09:23:27
## 2019 341 0.99 2007-04-10 20:32:45
## 2020 341 9.99 2007-04-29 16:41:15
## 2021 342 0.99 2007-04-10 03:57:16
## 2022 342 8.99 2007-04-11 22:31:16
## 2023 342 0.99 2007-04-26 23:42:28
## 2024 342 0.99 2007-04-30 23:30:48
## 2025 342 0.99 2007-04-30 14:29:52
## 2026 343 9.99 2007-04-28 16:52:15
## 2027 345 8.99 2007-04-29 15:13:14
## 2028 345 8.99 2007-04-30 23:32:54
## 2029 346 8.99 2007-04-08 21:48:18
## 2030 346 8.99 2007-04-12 19:15:01
## 2031 346 0.99 2007-04-29 09:30:23
## 2032 346 8.99 2007-04-29 16:53:29
## 2033 347 0.99 2007-04-06 03:55:41
## 2034 347 0.99 2007-04-09 21:40:18
## 2035 347 0.99 2007-04-28 06:34:27
## 2036 348 9.99 2007-04-08 03:17:07
## 2037 348 0.99 2007-04-08 07:08:05
## 2038 348 0.99 2007-04-08 10:05:22
## 2039 348 8.99 2007-04-08 15:30:14
## 2040 348 0.99 2007-04-10 22:20:18
## 2041 349 0.99 2007-04-08 18:09:00
## 2042 349 0.99 2007-04-30 07:23:13
## 2043 350 0.99 2007-04-05 23:43:52
## 2044 350 0.99 2007-04-09 11:43:14
## 2045 351 0.99 2007-04-08 02:39:30
## 2046 351 0.99 2007-04-09 13:23:33
## 2047 351 0.99 2007-04-30 19:49:25
## 2048 352 0.99 2007-04-30 20:59:23
## 2049 354 0.99 2007-04-07 01:04:59
## 2050 354 0.99 2007-04-11 02:27:05
## 2051 354 0.99 2007-04-26 21:21:11
## 2052 354 0.99 2007-04-27 05:32:35
## 2053 354 0.99 2007-04-27 08:54:15
## 2054 354 8.99 2007-04-29 07:09:02
## 2055 354 0.99 2007-04-30 00:32:28
## 2056 355 0.99 2007-04-11 06:35:25
## 2057 356 0.99 2007-04-09 23:34:07
## 2058 356 0.99 2007-04-12 09:14:56
## 2059 356 0.99 2007-04-28 09:42:45
## 2060 357 0.99 2007-04-07 23:07:34
## 2061 357 0.99 2007-04-10 18:44:22
## 2062 357 8.99 2007-04-11 15:30:18
## 2063 357 0.99 2007-04-12 17:31:45
## 2064 358 0.99 2007-04-30 05:51:43
## 2065 358 0.99 2007-04-30 01:06:10
## 2066 359 9.99 2007-04-11 22:18:03
## 2067 359 0.99 2007-04-12 12:52:42
## 2068 359 0.99 2007-04-27 03:29:34
## 2069 359 0.99 2007-04-27 04:11:24
## 2070 360 0.99 2007-04-11 22:58:11
## 2071 360 9.99 2007-04-27 21:51:57
## 2072 360 0.99 2007-04-30 16:57:52
## 2073 361 0.99 2007-04-11 07:54:18
## 2074 361 0.99 2007-04-12 20:43:00
## 2075 362 8.99 2007-04-08 07:51:52
## 2076 362 0.99 2007-04-29 13:59:59
## 2077 363 8.99 2007-04-30 15:27:08
## 2078 364 0.99 2007-04-07 01:57:15
## 2079 364 10.99 2007-04-10 17:22:31
## 2080 364 0.99 2007-04-30 18:56:35
## 2081 366 0.99 2007-04-09 16:53:14
## 2082 366 0.99 2007-04-12 17:36:21
## 2083 367 8.99 2007-04-07 12:40:21
## 2084 367 0.99 2007-04-12 12:03:24
## 2085 367 0.99 2007-04-29 07:27:51
## 2086 368 0.99 2007-04-07 03:02:35
## 2087 368 0.99 2007-04-08 04:39:28
## 2088 368 8.99 2007-04-08 19:56:14
## 2089 368 0.99 2007-04-28 15:18:04
## 2090 369 0.99 2007-04-30 06:52:05
## 2091 369 0.99 2007-04-30 00:12:00
## 2092 370 0.99 2007-04-12 11:57:32
## 2093 370 0.99 2007-04-26 22:45:11
## 2094 370 0.99 2007-04-28 06:09:33
## 2095 370 0.99 2007-04-28 23:32:08
## 2096 370 0.99 2007-04-30 19:07:01
## 2097 371 8.99 2007-04-07 05:20:49
## 2098 371 0.99 2007-04-10 03:45:22
## 2099 371 0.99 2007-04-12 21:08:14
## 2100 371 8.99 2007-04-30 07:49:25
## 2101 371 0.99 2007-04-30 03:40:53
## 2102 372 0.99 2007-04-29 03:29:24
## 2103 372 0.99 2007-04-29 16:33:47
## 2104 372 8.99 2007-04-29 21:17:26
## 2105 373 0.99 2007-04-11 16:47:18
## 2106 373 0.99 2007-04-27 03:15:59
## 2107 373 0.99 2007-04-27 22:43:50
## 2108 373 8.99 2007-04-30 15:59:29
## 2109 373 0.99 2007-04-30 21:54:29
## 2110 374 0.99 2007-04-11 17:11:15
## 2111 374 0.99 2007-04-28 07:26:58
## 2112 374 0.99 2007-04-30 07:37:29
## 2113 376 0.99 2007-04-07 07:47:54
## 2114 376 8.99 2007-04-07 08:01:56
## 2115 376 8.99 2007-04-12 03:24:56
## 2116 376 0.99 2007-04-30 11:56:21
## 2117 377 0.99 2007-04-07 02:07:48
## 2118 377 0.99 2007-04-07 03:22:06
## 2119 377 0.99 2007-04-07 10:53:03
## 2120 377 10.99 2007-04-28 14:05:14
## 2121 377 0.99 2007-04-30 01:00:03
## 2122 377 8.99 2007-04-30 22:36:27
## 2123 378 0.99 2007-04-08 12:52:07
## 2124 378 0.99 2007-04-28 09:08:50
## 2125 380 0.99 2007-04-09 15:37:43
## 2126 380 8.99 2007-04-27 00:55:04
## 2127 380 0.99 2007-04-27 16:07:10
## 2128 380 0.99 2007-04-30 05:41:46
## 2129 380 10.99 2007-04-30 06:33:57
## 2130 381 0.99 2007-04-06 13:50:45
## 2131 381 0.99 2007-04-08 11:40:53
## 2132 381 0.99 2007-04-10 07:52:43
## 2133 381 0.99 2007-04-29 14:59:58
## 2134 381 0.99 2007-04-30 08:50:41
## 2135 382 0.99 2007-04-10 14:17:13
## 2136 382 0.99 2007-04-27 23:16:22
## 2137 382 0.99 2007-04-29 18:38:47
## 2138 382 9.99 2007-04-29 22:41:07
## 2139 382 0.99 2007-04-30 00:39:42
## 2140 383 0.99 2007-04-11 13:22:04
## 2141 383 0.99 2007-04-29 12:51:14
## 2142 383 0.99 2007-04-30 04:24:04
## 2143 383 0.99 2007-04-30 05:09:13
## 2144 384 0.99 2007-04-07 20:43:09
## 2145 384 0.99 2007-04-09 12:03:58
## 2146 384 0.99 2007-04-11 20:44:22
## 2147 384 0.99 2007-04-28 06:10:35
## 2148 385 8.99 2007-04-06 16:55:35
## 2149 385 0.99 2007-04-06 20:23:21
## 2150 385 0.99 2007-04-28 05:33:02
## 2151 386 8.99 2007-04-07 09:19:33
## 2152 386 0.99 2007-04-10 00:17:50
## 2153 386 0.99 2007-04-30 02:11:17
## 2154 387 0.99 2007-04-27 18:33:53
## 2155 388 0.99 2007-04-30 11:35:37
## 2156 388 0.99 2007-04-30 13:57:32
## 2157 389 0.99 2007-04-05 23:39:34
## 2158 389 0.99 2007-04-09 12:02:19
## 2159 389 8.99 2007-04-28 09:29:24
## 2160 390 0.99 2007-04-11 22:32:00
## 2161 390 0.99 2007-04-29 07:32:57
## 2162 391 0.99 2007-04-08 10:47:17
## 2163 391 0.99 2007-04-08 12:47:07
## 2164 391 0.99 2007-04-28 14:04:07
## 2165 391 0.99 2007-04-29 23:54:31
## 2166 391 0.99 2007-04-30 11:58:13
## 2167 392 0.99 2007-04-11 02:34:51
## 2168 392 0.99 2007-04-28 23:27:57
## 2169 392 9.99 2007-04-29 11:56:46
## 2170 392 0.99 2007-04-30 18:40:28
## 2171 393 8.99 2007-04-08 02:47:02
## 2172 393 0.99 2007-04-12 02:13:09
## 2173 393 8.99 2007-04-26 21:28:27
## 2174 393 0.99 2007-04-27 17:57:50
## 2175 393 0.99 2007-04-29 06:10:20
## 2176 394 0.99 2007-04-06 00:29:34
## 2177 394 0.99 2007-04-30 09:07:25
## 2178 394 0.99 2007-04-30 11:35:20
## 2179 395 0.99 2007-04-06 07:57:48
## 2180 395 0.99 2007-04-09 04:12:54
## 2181 395 0.99 2007-04-09 06:23:27
## 2182 396 0.99 2007-04-27 05:24:05
## 2183 396 0.99 2007-04-30 20:00:15
## 2184 397 0.99 2007-04-07 01:16:26
## 2185 397 0.99 2007-04-30 22:22:52
## 2186 399 0.99 2007-04-08 21:47:14
## 2187 399 0.99 2007-04-09 23:17:30
## 2188 401 0.99 2007-04-07 02:32:52
## 2189 401 0.99 2007-04-10 20:08:32
## 2190 401 8.99 2007-04-29 16:27:24
## 2191 401 0.99 2007-04-30 21:57:31
## 2192 402 0.99 2007-04-27 23:32:07
## 2193 402 0.99 2007-04-30 08:36:59
## 2194 404 8.99 2007-04-08 06:15:19
## 2195 404 0.99 2007-04-12 14:39:16
## 2196 405 0.99 2007-04-07 10:52:20
## 2197 405 0.99 2007-04-07 19:54:53
## 2198 405 0.99 2007-04-09 11:03:28
## 2199 405 0.99 2007-04-28 04:57:11
## 2200 405 0.99 2007-04-30 01:08:04
## 2201 406 0.99 2007-04-09 12:39:02
## 2202 406 0.99 2007-04-10 11:35:57
## 2203 406 0.99 2007-04-29 12:36:25
## 2204 406 0.99 2007-04-29 23:36:32
## 2205 406 0.99 2007-04-30 11:54:03
## 2206 406 8.99 2007-04-30 04:31:43
## 2207 407 0.99 2007-04-07 14:44:29
## 2208 407 9.99 2007-04-10 02:51:37
## 2209 407 0.99 2007-04-12 12:22:51
## 2210 407 9.99 2007-04-28 21:32:36
## 2211 407 0.99 2007-04-29 10:17:05
## 2212 408 0.99 2007-04-09 03:31:01
## 2213 408 0.99 2007-04-11 02:40:24
## 2214 408 0.99 2007-04-30 05:34:34
## 2215 409 0.99 2007-04-09 19:24:13
## 2216 409 0.99 2007-04-28 11:15:13
## 2217 409 0.99 2007-04-30 13:27:31
## 2218 410 0.99 2007-04-07 02:50:53
## 2219 410 0.99 2007-04-07 13:03:56
## 2220 410 0.99 2007-04-29 22:52:31
## 2221 411 0.99 2007-04-07 06:58:42
## 2222 411 0.99 2007-04-27 14:31:37
## 2223 411 0.99 2007-04-28 14:21:55
## 2224 411 0.99 2007-04-30 02:50:11
## 2225 412 0.99 2007-04-06 17:22:46
## 2226 412 0.99 2007-04-07 03:18:15
## 2227 412 0.99 2007-04-28 14:56:09
## 2228 412 8.99 2007-04-29 02:37:33
## 2229 412 8.99 2007-04-29 05:12:49
## 2230 412 0.99 2007-04-29 14:22:48
## 2231 413 0.99 2007-04-07 23:59:12
## 2232 413 0.99 2007-04-27 23:36:37
## 2233 413 0.99 2007-04-28 03:29:44
## 2234 414 10.99 2007-04-06 20:34:13
## 2235 414 0.99 2007-04-12 12:25:14
## 2236 414 0.99 2007-04-12 17:49:07
## 2237 414 0.99 2007-04-27 00:14:10
## 2238 415 8.99 2007-04-08 20:30:14
## 2239 415 0.99 2007-04-10 06:38:34
## 2240 415 0.99 2007-04-10 10:05:50
## 2241 415 0.99 2007-04-27 23:06:10
## 2242 416 0.99 2007-04-28 09:11:47
## 2243 417 9.99 2007-04-07 20:36:21
## 2244 418 0.99 2007-04-06 13:37:08
## 2245 418 0.99 2007-04-08 21:01:19
## 2246 418 0.99 2007-04-29 11:00:59
## 2247 418 10.99 2007-04-29 23:04:57
## 2248 419 0.99 2007-04-06 03:31:37
## 2249 419 0.99 2007-04-07 10:52:47
## 2250 419 0.99 2007-04-10 16:53:49
## 2251 419 0.99 2007-04-10 20:35:14
## 2252 419 0.99 2007-04-11 09:01:37
## 2253 420 0.99 2007-04-10 19:20:08
## 2254 420 0.99 2007-04-29 07:21:35
## 2255 420 0.99 2007-04-30 17:12:42
## 2256 421 8.99 2007-04-06 21:59:08
## 2257 421 0.99 2007-04-11 11:50:32
## 2258 421 0.99 2007-04-30 12:06:07
## 2259 422 0.99 2007-04-08 00:47:53
## 2260 422 0.99 2007-04-28 07:05:48
## 2261 423 0.99 2007-04-07 04:59:26
## 2262 423 0.99 2007-04-07 12:36:37
## 2263 423 0.99 2007-04-27 10:57:11
## 2264 423 9.99 2007-04-27 20:08:08
## 2265 423 9.99 2007-04-28 07:58:28
## 2266 423 9.99 2007-04-29 11:16:09
## 2267 424 0.99 2007-04-06 10:39:17
## 2268 424 0.99 2007-04-08 01:07:22
## 2269 424 0.99 2007-04-08 03:25:15
## 2270 424 0.99 2007-04-10 02:05:22
## 2271 424 8.99 2007-04-30 23:09:24
## 2272 425 8.99 2007-04-07 23:31:38
## 2273 425 0.99 2007-04-30 02:37:42
## 2274 425 0.99 2007-04-30 10:03:50
## 2275 425 0.99 2007-04-30 19:53:19
## 2276 425 0.99 2007-04-30 21:41:00
## 2277 426 10.99 2007-04-27 19:42:54
## 2278 426 10.99 2007-04-30 21:58:17
## 2279 428 0.99 2007-04-07 07:17:28
## 2280 429 0.99 2007-04-30 11:13:00
## 2281 430 0.99 2007-04-11 01:46:36
## 2282 431 0.99 2007-04-08 17:31:41
## 2283 432 0.99 2007-04-28 01:35:35
## 2284 433 0.99 2007-04-07 07:34:08
## 2285 433 0.99 2007-04-09 21:01:40
## 2286 433 8.99 2007-04-10 22:31:48
## 2287 433 0.99 2007-04-12 17:52:33
## 2288 434 10.99 2007-04-08 21:55:42
## 2289 434 0.99 2007-04-26 22:59:51
## 2290 434 0.99 2007-04-28 21:47:14
## 2291 435 0.99 2007-04-06 08:14:29
## 2292 435 8.99 2007-04-06 18:54:41
## 2293 435 0.99 2007-04-30 13:30:59
## 2294 436 0.99 2007-04-08 07:42:22
## 2295 436 0.99 2007-04-10 22:04:02
## 2296 436 9.99 2007-04-28 17:01:15
## 2297 436 9.99 2007-04-30 16:42:17
## 2298 436 0.99 2007-04-30 00:04:45
## 2299 437 8.99 2007-04-30 16:28:54
## 2300 438 8.99 2007-04-27 13:49:23
## 2301 438 0.99 2007-04-27 22:04:27
## 2302 438 0.99 2007-04-30 08:42:52
## 2303 439 0.99 2007-04-30 13:37:41
## 2304 440 0.99 2007-04-10 03:02:02
## 2305 440 0.99 2007-04-10 12:21:22
## 2306 440 0.99 2007-04-27 22:43:04
## 2307 440 9.99 2007-04-28 06:26:43
## 2308 441 0.99 2007-04-06 04:51:48
## 2309 441 8.99 2007-04-07 03:44:26
## 2310 441 0.99 2007-04-07 10:02:48
## 2311 441 0.99 2007-04-10 13:55:30
## 2312 441 0.99 2007-04-29 00:14:26
## 2313 441 10.99 2007-04-30 04:09:01
## 2314 442 0.99 2007-04-27 17:10:01
## 2315 443 8.99 2007-04-28 01:05:48
## 2316 443 9.99 2007-04-28 13:05:18
## 2317 444 0.99 2007-04-06 00:07:34
## 2318 445 0.99 2007-04-07 01:31:59
## 2319 445 0.99 2007-04-07 09:25:47
## 2320 445 0.99 2007-04-11 18:37:00
## 2321 445 8.99 2007-04-29 21:54:45
## 2322 445 0.99 2007-04-29 23:59:23
## 2323 445 0.99 2007-04-30 16:23:24
## 2324 446 0.99 2007-04-11 23:28:38
## 2325 446 0.99 2007-04-12 03:12:09
## 2326 446 0.99 2007-04-27 03:12:08
## 2327 446 0.99 2007-04-29 15:09:49
## 2328 446 9.99 2007-04-30 00:36:51
## 2329 446 0.99 2007-04-30 07:48:07
## 2330 447 0.99 2007-04-10 10:05:54
## 2331 447 0.99 2007-04-12 09:25:54
## 2332 447 8.99 2007-04-29 09:13:20
## 2333 448 0.99 2007-04-07 00:39:49
## 2334 448 10.99 2007-04-30 10:27:16
## 2335 449 0.99 2007-04-05 22:45:50
## 2336 449 8.99 2007-04-06 21:29:15
## 2337 450 0.99 2007-04-27 22:40:01
## 2338 450 0.99 2007-04-27 23:17:27
## 2339 451 8.99 2007-04-08 14:58:37
## 2340 451 8.99 2007-04-09 23:43:37
## 2341 452 0.99 2007-04-07 17:30:31
## 2342 452 0.99 2007-04-08 11:03:00
## 2343 452 0.99 2007-04-09 22:17:33
## 2344 453 0.99 2007-04-06 19:21:05
## 2345 453 8.99 2007-04-07 01:04:12
## 2346 453 0.99 2007-04-27 20:54:02
## 2347 454 0.99 2007-04-12 11:16:25
## 2348 454 0.99 2007-04-29 20:05:00
## 2349 454 0.99 2007-04-30 05:01:02
## 2350 454 9.99 2007-04-30 17:32:56
## 2351 455 8.99 2007-04-08 17:25:56
## 2352 456 0.99 2007-04-10 22:15:44
## 2353 456 0.99 2007-04-11 00:44:23
## 2354 457 0.99 2007-04-09 22:56:43
## 2355 458 0.99 2007-04-10 02:17:26
## 2356 458 0.99 2007-04-28 19:37:12
## 2357 459 0.99 2007-04-10 08:12:06
## 2358 459 0.99 2007-04-11 11:00:40
## 2359 459 9.99 2007-04-29 00:51:50
## 2360 459 10.99 2007-04-29 09:48:25
## 2361 461 0.99 2007-04-06 08:37:46
## 2362 461 0.99 2007-04-10 05:45:27
## 2363 461 0.99 2007-04-28 18:29:32
## 2364 461 0.99 2007-04-28 19:45:45
## 2365 461 0.99 2007-04-30 12:27:58
## 2366 462 0.99 2007-04-12 07:58:31
## 2367 462 8.99 2007-04-27 11:07:13
## 2368 462 8.99 2007-04-28 05:02:49
## 2369 462 0.99 2007-04-29 00:17:30
## 2370 462 0.99 2007-04-30 12:34:10
## 2371 463 0.99 2007-04-09 20:39:40
## 2372 463 0.99 2007-04-11 15:54:21
## 2373 463 0.99 2007-04-27 00:31:47
## 2374 463 0.99 2007-04-27 13:22:21
## 2375 465 0.99 2007-04-08 13:25:58
## 2376 466 0.99 2007-04-09 02:14:59
## 2377 466 0.99 2007-04-29 00:07:09
## 2378 467 0.99 2007-04-07 10:30:00
## 2379 467 8.99 2007-04-29 07:13:12
## 2380 468 0.99 2007-04-11 20:53:45
## 2381 468 0.99 2007-04-28 01:41:26
## 2382 468 0.99 2007-04-30 01:59:07
## 2383 469 10.99 2007-04-05 23:31:55
## 2384 469 0.99 2007-04-07 05:44:45
## 2385 469 0.99 2007-04-09 06:11:48
## 2386 469 0.99 2007-04-11 00:44:19
## 2387 469 0.99 2007-04-29 19:21:49
## 2388 470 10.99 2007-04-26 21:24:26
## 2389 470 8.99 2007-04-29 07:07:38
## 2390 471 0.99 2007-04-06 18:47:55
## 2391 471 8.99 2007-04-11 17:58:39
## 2392 471 0.99 2007-04-28 21:38:51
## 2393 471 0.99 2007-04-30 22:30:36
## 2394 473 0.99 2007-04-06 21:19:06
## 2395 473 0.99 2007-04-08 17:51:58
## 2396 473 8.99 2007-04-30 07:54:34
## 2397 474 0.99 2007-04-08 02:00:27
## 2398 474 0.99 2007-04-08 14:38:45
## 2399 474 0.99 2007-04-09 12:04:36
## 2400 475 0.99 2007-04-09 17:36:29
## 2401 475 0.99 2007-04-09 18:44:33
## 2402 475 9.99 2007-04-09 18:58:29
## 2403 476 0.99 2007-04-27 17:13:41
## 2404 476 0.99 2007-04-28 19:06:02
## 2405 477 10.99 2007-04-28 09:54:05
## 2406 477 8.99 2007-04-30 20:21:27
## 2407 478 0.99 2007-04-30 20:08:14
## 2408 479 0.99 2007-04-06 13:26:19
## 2409 479 8.99 2007-04-07 08:56:59
## 2410 479 0.99 2007-04-09 22:20:23
## 2411 479 0.99 2007-04-12 06:05:28
## 2412 479 8.99 2007-04-12 17:57:45
## 2413 479 8.99 2007-04-30 20:06:38
## 2414 480 9.99 2007-04-28 10:13:22
## 2415 481 0.99 2007-04-06 16:08:44
## 2416 481 0.99 2007-04-08 01:59:05
## 2417 481 10.99 2007-04-08 08:40:11
## 2418 481 0.99 2007-04-11 01:47:05
## 2419 482 8.99 2007-04-10 13:50:30
## 2420 482 8.99 2007-04-11 19:24:55
## 2421 483 9.99 2007-04-12 20:12:42
## 2422 483 0.99 2007-04-27 05:09:07
## 2423 484 0.99 2007-04-10 16:11:56
## 2424 484 0.99 2007-04-29 08:03:04
## 2425 484 9.99 2007-04-30 19:14:28
## 2426 484 8.99 2007-04-30 21:50:46
## 2427 485 0.99 2007-04-06 02:16:13
## 2428 485 0.99 2007-04-06 17:59:23
## 2429 485 0.99 2007-04-30 01:00:26
## 2430 486 8.99 2007-04-29 05:34:47
## 2431 486 0.99 2007-04-30 08:49:29
## 2432 487 0.99 2007-04-28 05:50:21
## 2433 487 0.99 2007-04-30 19:59:12
## 2434 488 8.99 2007-04-09 06:33:40
## 2435 488 0.99 2007-04-28 15:24:13
## 2436 488 0.99 2007-04-30 23:51:26
## 2437 489 0.99 2007-04-30 12:10:41
## 2438 490 0.99 2007-04-09 22:35:29
## 2439 490 8.99 2007-04-12 21:09:14
## 2440 490 0.99 2007-04-30 00:35:15
## 2441 491 8.99 2007-04-07 01:56:25
## 2442 492 8.99 2007-04-07 06:03:51
## 2443 492 0.99 2007-04-09 15:04:13
## 2444 492 0.99 2007-04-10 03:38:12
## 2445 494 0.99 2007-04-05 23:10:27
## 2446 494 0.99 2007-04-06 18:39:26
## 2447 494 8.99 2007-04-27 20:18:35
## 2448 495 0.99 2007-04-28 19:19:18
## 2449 495 9.99 2007-04-30 17:55:31
## 2450 496 0.99 2007-04-07 13:06:59
## 2451 497 0.99 2007-04-08 04:28:43
## 2452 497 0.99 2007-04-08 15:01:20
## 2453 497 9.99 2007-04-30 13:34:02
## 2454 498 0.99 2007-04-06 14:25:56
## 2455 498 0.99 2007-04-10 18:00:04
## 2456 498 0.99 2007-04-30 04:02:50
## 2457 499 0.99 2007-04-28 06:19:25
## 2458 499 0.99 2007-04-28 07:12:47
## 2459 499 0.99 2007-04-30 01:41:39
## 2460 500 0.99 2007-04-08 03:31:09
## 2461 500 0.99 2007-04-28 08:18:06
## 2462 500 0.99 2007-04-30 00:37:40
## 2463 501 0.99 2007-04-27 17:03:19
## 2464 502 8.99 2007-04-12 13:44:26
## 2465 502 8.99 2007-04-26 21:20:19
## 2466 502 0.99 2007-04-30 12:11:26
## 2467 503 0.99 2007-04-30 07:03:44
## 2468 504 9.99 2007-04-06 09:16:01
## 2469 504 0.99 2007-04-08 13:05:17
## 2470 504 9.99 2007-04-29 04:30:37
## 2471 505 9.99 2007-04-10 22:45:01
## 2472 505 0.99 2007-04-11 22:55:34
## 2473 506 8.99 2007-04-08 15:29:28
## 2474 506 0.99 2007-04-10 23:20:24
## 2475 506 0.99 2007-04-27 00:52:53
## 2476 506 9.99 2007-04-28 17:01:12
## 2477 506 0.99 2007-04-29 07:52:18
## 2478 507 0.99 2007-04-07 21:29:24
## 2479 507 0.99 2007-04-08 12:12:23
## 2480 507 0.99 2007-04-10 22:13:48
## 2481 508 9.99 2007-04-10 06:02:09
## 2482 508 0.99 2007-04-12 09:10:00
## 2483 508 8.99 2007-04-26 21:27:45
## 2484 509 8.99 2007-04-28 17:42:32
## 2485 509 0.99 2007-04-28 23:01:58
## 2486 510 8.99 2007-04-28 01:26:42
## 2487 510 9.99 2007-04-28 05:56:29
## 2488 510 0.99 2007-04-30 20:13:54
## 2489 511 0.99 2007-04-06 15:26:15
## 2490 511 0.99 2007-04-10 03:25:21
## 2491 511 0.99 2007-04-11 01:42:52
## 2492 511 0.99 2007-04-11 17:19:21
## 2493 511 0.99 2007-04-30 07:07:02
## 2494 512 0.99 2007-04-08 15:17:53
## 2495 512 0.99 2007-04-27 19:00:14
## 2496 513 0.99 2007-04-06 16:28:45
## 2497 513 0.99 2007-04-28 00:29:37
## 2498 513 9.99 2007-04-29 14:44:09
## 2499 515 0.99 2007-04-06 12:25:29
## 2500 515 0.99 2007-04-09 10:23:24
## 2501 517 0.99 2007-04-08 20:47:08
## 2502 517 0.99 2007-04-12 20:26:41
## 2503 518 0.99 2007-04-06 06:12:56
## 2504 519 0.99 2007-04-08 03:38:04
## 2505 519 0.99 2007-04-09 11:24:55
## 2506 519 0.99 2007-04-11 02:45:17
## 2507 519 0.99 2007-04-30 04:11:15
## 2508 519 0.99 2007-04-30 13:05:29
## 2509 520 10.99 2007-04-10 13:30:43
## 2510 520 0.99 2007-04-28 11:01:47
## 2511 520 0.99 2007-04-30 18:19:03
## 2512 521 0.99 2007-04-07 14:00:23
## 2513 521 0.99 2007-04-10 07:34:29
## 2514 522 0.99 2007-04-06 03:11:13
## 2515 522 9.99 2007-04-08 03:37:21
## 2516 522 0.99 2007-04-10 20:42:56
## 2517 522 0.99 2007-04-30 23:51:41
## 2518 523 0.99 2007-04-28 18:49:45
## 2519 524 8.99 2007-04-27 00:43:06
## 2520 525 0.99 2007-04-28 13:50:53
## 2521 525 0.99 2007-04-30 06:02:33
## 2522 526 0.99 2007-04-27 12:55:39
## 2523 527 0.99 2007-04-08 18:32:53
## 2524 527 0.99 2007-04-09 16:55:26
## 2525 527 8.99 2007-04-27 18:57:00
## 2526 527 0.99 2007-04-29 22:08:33
## 2527 527 0.99 2007-04-30 07:48:12
## 2528 528 0.99 2007-04-06 06:44:23
## 2529 528 9.99 2007-04-07 02:03:59
## 2530 528 0.99 2007-04-12 03:52:28
## 2531 528 8.99 2007-04-30 22:11:08
## 2532 529 0.99 2007-04-07 01:54:40
## 2533 529 0.99 2007-04-07 12:42:18
## 2534 529 0.99 2007-04-08 03:12:07
## 2535 529 0.99 2007-04-30 17:38:43
## 2536 530 0.99 2007-04-10 06:29:59
## 2537 530 0.99 2007-04-29 16:59:41
## 2538 531 0.99 2007-04-10 16:04:53
## 2539 531 0.99 2007-04-30 01:35:14
## 2540 532 8.99 2007-04-10 13:37:07
## 2541 533 8.99 2007-04-07 05:17:35
## 2542 533 0.99 2007-04-12 17:22:03
## 2543 533 9.99 2007-04-12 17:28:11
## 2544 533 8.99 2007-04-28 16:57:42
## 2545 534 0.99 2007-04-29 12:48:19
## 2546 535 0.99 2007-04-10 02:49:36
## 2547 535 8.99 2007-04-10 18:28:51
## 2548 535 0.99 2007-04-30 20:08:41
## 2549 536 0.99 2007-04-05 23:15:20
## 2550 536 0.99 2007-04-09 09:12:00
## 2551 536 8.99 2007-04-30 19:06:48
## 2552 537 0.99 2007-04-06 01:14:01
## 2553 537 0.99 2007-04-06 15:27:46
## 2554 537 0.99 2007-04-12 13:01:27
## 2555 538 8.99 2007-04-09 06:21:48
## 2556 538 0.99 2007-04-11 17:47:32
## 2557 538 0.99 2007-04-26 21:42:00
## 2558 538 0.99 2007-04-28 02:07:51
## 2559 538 0.99 2007-04-29 18:08:34
## 2560 538 0.99 2007-04-30 15:21:09
## 2561 538 8.99 2007-04-30 13:57:26
## 2562 539 0.99 2007-04-07 12:20:20
## 2563 539 0.99 2007-04-30 12:46:42
## 2564 540 0.99 2007-04-12 21:00:43
## 2565 541 8.99 2007-04-28 17:42:26
## 2566 541 0.99 2007-04-30 02:12:09
## 2567 542 0.99 2007-04-09 13:45:49
## 2568 542 9.99 2007-04-12 19:28:49
## 2569 542 8.99 2007-04-28 01:18:07
## 2570 543 0.99 2007-04-30 16:09:19
## 2571 544 0.99 2007-04-07 19:41:48
## 2572 544 9.99 2007-04-30 02:14:52
## 2573 545 8.99 2007-04-06 08:24:35
## 2574 545 0.99 2007-04-09 12:39:54
## 2575 546 0.99 2007-04-08 08:29:54
## 2576 546 0.99 2007-04-08 11:40:38
## 2577 546 0.99 2007-04-10 04:30:51
## 2578 546 9.99 2007-04-12 13:42:15
## 2579 547 0.99 2007-04-12 06:29:33
## 2580 549 0.99 2007-04-07 21:43:54
## 2581 549 0.99 2007-04-28 23:00:05
## 2582 549 9.99 2007-04-30 22:53:31
## 2583 549 0.99 2007-04-30 12:28:58
## 2584 550 0.99 2007-04-27 01:30:06
## 2585 550 8.99 2007-04-30 02:04:15
## 2586 550 0.99 2007-04-30 07:46:22
## 2587 551 0.99 2007-04-10 00:37:47
## 2588 551 0.99 2007-04-11 01:43:24
## 2589 551 9.99 2007-04-27 03:19:41
## 2590 551 0.99 2007-04-30 03:05:46
## 2591 552 8.99 2007-04-30 16:38:22
## 2592 553 0.99 2007-04-08 08:27:20
## 2593 553 0.99 2007-04-12 09:40:02
## 2594 555 0.99 2007-04-28 19:39:26
## 2595 556 0.99 2007-04-08 16:57:31
## 2596 556 0.99 2007-04-10 09:38:30
## 2597 557 0.99 2007-04-08 08:08:05
## 2598 557 0.99 2007-04-11 23:40:29
## 2599 557 0.99 2007-04-12 20:07:30
## 2600 557 0.99 2007-04-30 16:29:41
## 2601 558 9.99 2007-04-06 10:02:02
## 2602 558 0.99 2007-04-06 20:26:10
## 2603 558 9.99 2007-04-12 00:17:26
## 2604 558 0.99 2007-04-12 13:38:14
## 2605 558 0.99 2007-04-27 15:42:45
## 2606 559 0.99 2007-04-30 08:28:47
## 2607 560 9.99 2007-04-07 18:48:55
## 2608 560 0.99 2007-04-07 22:01:05
## 2609 560 0.99 2007-04-30 13:23:51
## 2610 561 0.99 2007-04-11 22:44:45
## 2611 561 0.99 2007-04-12 07:25:56
## 2612 561 0.99 2007-04-28 02:12:40
## 2613 561 10.99 2007-04-29 07:48:42
## 2614 562 0.99 2007-04-09 16:42:29
## 2615 562 8.99 2007-04-12 06:37:16
## 2616 562 0.99 2007-04-28 18:25:57
## 2617 563 0.99 2007-04-07 21:20:30
## 2618 563 0.99 2007-04-08 18:15:24
## 2619 563 0.99 2007-04-09 18:41:49
## 2620 563 0.99 2007-04-27 22:40:21
## 2621 564 0.99 2007-04-07 19:17:04
## 2622 564 10.99 2007-04-27 17:29:29
## 2623 564 0.99 2007-04-29 22:43:11
## 2624 565 0.99 2007-04-05 21:17:50
## 2625 565 0.99 2007-04-09 00:36:22
## 2626 565 0.99 2007-04-12 11:13:47
## 2627 566 0.99 2007-04-06 19:50:43
## 2628 566 9.99 2007-04-09 03:49:06
## 2629 566 0.99 2007-04-28 11:15:46
## 2630 566 0.99 2007-04-29 15:54:29
## 2631 567 0.99 2007-04-07 22:14:04
## 2632 567 0.99 2007-04-08 04:19:45
## 2633 567 0.99 2007-04-12 03:32:09
## 2634 568 0.99 2007-04-10 04:08:03
## 2635 568 0.99 2007-04-28 20:52:15
## 2636 568 0.99 2007-04-30 07:32:40
## 2637 569 0.99 2007-04-08 23:47:29
## 2638 570 0.99 2007-04-06 21:51:02
## 2639 570 0.99 2007-04-07 03:03:32
## 2640 570 0.99 2007-04-08 09:47:57
## 2641 570 0.99 2007-04-12 03:38:42
## 2642 570 0.99 2007-04-30 18:37:26
## 2643 570 0.99 2007-04-30 16:19:49
## 2644 571 8.99 2007-04-12 10:22:06
## 2645 571 8.99 2007-04-12 15:05:54
## 2646 572 0.99 2007-04-29 03:13:31
## 2647 572 0.99 2007-04-29 05:41:59
## 2648 573 0.99 2007-04-06 11:35:56
## 2649 573 0.99 2007-04-07 03:54:05
## 2650 573 0.99 2007-04-08 05:50:55
## 2651 573 9.99 2007-04-10 00:14:55
## 2652 573 10.99 2007-04-30 10:42:45
## 2653 575 8.99 2007-04-10 17:35:13
## 2654 575 0.99 2007-04-27 02:57:05
## 2655 575 0.99 2007-04-29 23:36:59
## 2656 576 0.99 2007-04-06 17:24:51
## 2657 576 8.99 2007-04-30 02:47:44
## 2658 576 0.99 2007-04-30 14:39:02
## 2659 577 0.99 2007-04-06 03:45:02
## 2660 577 0.99 2007-04-27 07:17:58
## 2661 577 8.99 2007-04-28 08:52:48
## 2662 578 0.99 2007-04-09 20:28:07
## 2663 578 0.99 2007-04-12 17:11:21
## 2664 579 9.99 2007-04-08 06:29:35
## 2665 579 8.99 2007-04-26 22:52:20
## 2666 579 0.99 2007-04-29 03:24:52
## 2667 579 0.99 2007-04-29 22:43:35
## 2668 579 0.99 2007-04-30 03:21:49
## 2669 579 9.99 2007-04-30 16:48:34
## 2670 580 0.99 2007-04-27 22:55:43
## 2671 580 0.99 2007-04-30 11:06:26
## 2672 580 0.99 2007-04-30 11:39:11
## 2673 581 0.99 2007-04-08 06:13:15
## 2674 581 8.99 2007-04-08 15:41:17
## 2675 582 0.99 2007-04-06 11:35:53
## 2676 582 9.99 2007-04-30 08:17:07
## 2677 583 9.99 2007-04-06 22:02:07
## 2678 583 0.99 2007-04-09 21:25:19
## 2679 584 0.99 2007-04-07 20:16:42
## 2680 584 0.99 2007-04-08 22:44:16
## 2681 584 0.99 2007-04-26 22:23:39
## 2682 585 9.99 2007-04-08 09:09:32
## 2683 585 8.99 2007-04-30 18:53:50
## 2684 587 0.99 2007-04-06 21:16:25
## 2685 587 0.99 2007-04-12 08:29:10
## 2686 587 8.99 2007-04-27 18:45:25
## 2687 588 0.99 2007-04-07 04:53:37
## 2688 589 0.99 2007-04-10 21:42:55
## 2689 589 0.99 2007-04-27 09:12:35
## 2690 589 9.99 2007-04-28 11:34:42
## 2691 589 0.99 2007-04-28 15:32:41
## 2692 590 0.99 2007-04-09 07:37:19
## 2693 590 0.99 2007-04-30 08:12:41
## 2694 591 0.99 2007-04-06 05:32:18
## 2695 591 11.99 2007-04-07 19:14:17
## 2696 591 8.99 2007-04-27 04:22:16
## 2697 591 0.99 2007-04-28 03:54:21
## 2698 591 0.99 2007-04-30 05:16:59
## 2699 592 11.99 2007-04-06 21:26:57
## 2700 592 9.99 2007-04-07 06:55:05
## 2701 592 0.99 2007-04-07 22:18:40
## 2702 592 0.99 2007-04-26 21:44:16
## 2703 592 0.99 2007-04-27 06:27:50
## 2704 592 0.99 2007-04-29 18:24:00
## 2705 593 0.99 2007-04-08 06:31:48
## 2706 593 0.99 2007-04-08 17:39:18
## 2707 594 0.99 2007-04-05 21:28:19
## 2708 594 8.99 2007-04-27 19:52:59
## 2709 595 9.99 2007-04-06 12:30:52
## 2710 595 0.99 2007-04-27 11:27:36
## 2711 595 0.99 2007-04-30 22:25:20
## 2712 595 10.99 2007-04-30 10:20:12
## 2713 596 0.99 2007-04-11 00:33:58
## 2714 597 0.99 2007-04-09 04:27:38
## 2715 597 0.99 2007-04-30 23:32:41
## 2716 598 0.99 2007-04-06 05:59:07
## 2717 598 0.99 2007-04-12 04:41:19
## 2718 598 0.99 2007-04-27 13:10:37
## 2719 598 0.99 2007-04-28 13:37:14
## 2720 598 0.99 2007-04-29 05:49:46
## 2721 599 0.99 2007-04-09 03:10:26
## 2722 599 9.99 2007-04-12 15:32:22
## 2723 202 8.99 2007-04-06 15:53:15
## 2724 202 0.99 2007-04-30 00:57:04
## 2725 202 8.99 2007-04-30 21:14:00
## 2726 203 0.99 2007-04-28 15:03:42
## 2727 203 10.99 2007-04-30 03:49:58
## 2728 204 0.99 2007-04-07 01:38:16
## 2729 204 0.99 2007-04-09 06:41:51
## 2730 204 0.99 2007-04-12 08:00:09
## 2731 204 0.99 2007-04-30 03:33:24
## 2732 206 0.99 2007-04-06 14:35:01
## 2733 207 9.99 2007-04-06 08:06:59
## 2734 207 0.99 2007-04-08 15:42:40
## 2735 207 0.99 2007-04-08 23:54:48
## 2736 207 0.99 2007-04-09 12:25:22
## 2737 207 0.99 2007-04-10 20:58:31
## 2738 207 0.99 2007-04-12 03:14:56
## 2739 208 0.99 2007-04-27 11:43:22
## 2740 1 0.99 2007-04-28 16:02:05
## 2741 1 0.99 2007-04-28 17:48:33
## 2742 2 10.99 2007-04-30 12:16:09
## 2743 2 0.99 2007-04-30 12:42:37
## 2744 3 10.99 2007-04-27 18:51:38
## 2745 5 0.99 2007-04-10 09:38:01
## 2746 5 8.99 2007-04-11 01:45:30
## 2747 5 0.99 2007-04-27 11:05:54
## 2748 5 0.99 2007-04-28 00:18:55
## 2749 6 0.99 2007-04-06 21:42:47
## 2750 6 0.99 2007-04-10 01:32:01
## 2751 6 0.99 2007-04-12 10:47:04
## 2752 6 0.99 2007-04-28 17:15:49
## 2753 7 8.99 2007-04-09 20:20:31
## 2754 8 0.99 2007-04-06 22:37:28
## 2755 8 0.99 2007-04-12 09:12:19
## 2756 8 0.99 2007-04-30 20:36:55
## 2757 9 0.99 2007-04-08 12:28:04
## 2758 9 0.99 2007-04-27 22:43:52
## 2759 10 0.99 2007-04-09 20:27:23
## 2760 11 0.99 2007-04-29 16:02:11
## 2761 11 9.99 2007-04-30 01:45:39
## 2762 12 0.99 2007-04-09 03:29:05
## 2763 12 0.99 2007-04-09 03:34:50
## 2764 12 0.99 2007-04-09 05:30:45
## 2765 12 0.99 2007-04-27 00:12:29
## 2766 12 0.99 2007-04-27 10:19:13
## 2767 12 0.99 2007-04-30 03:03:17
## 2768 13 8.99 2007-04-11 06:11:34
## 2769 13 0.99 2007-04-12 18:42:11
## 2770 13 11.99 2007-04-29 21:06:07
## 2771 13 9.99 2007-04-30 13:06:48
## 2772 13 0.99 2007-04-30 19:58:07
## 2773 13 0.99 2007-04-30 04:40:34
## 2774 14 0.99 2007-04-08 21:28:33
## 2775 14 0.99 2007-04-09 05:05:33
## 2776 14 0.99 2007-04-28 15:13:37
## 2777 15 0.99 2007-04-28 21:19:16
## 2778 401 0.99 2007-04-12 04:54:36
## 2779 16 0.99 2007-04-06 00:52:05
## 2780 16 0.99 2007-04-27 18:08:04
## 2781 16 0.99 2007-04-30 09:40:29
## 2782 17 8.99 2007-04-28 16:14:24
## 2783 17 8.99 2007-04-30 06:59:22
## 2784 17 8.99 2007-04-30 17:52:10
## 2785 17 0.99 2007-04-30 22:11:58
## 2786 18 0.99 2007-04-12 17:49:11
## 2787 19 0.99 2007-04-30 12:57:55
## 2788 19 9.99 2007-04-30 18:29:32
## 2789 21 0.99 2007-04-28 13:25:20
## 2790 21 0.99 2007-04-30 09:13:38
## 2791 22 0.99 2007-04-30 19:06:31
## 2792 23 0.99 2007-04-29 16:09:40
## 2793 23 9.99 2007-04-30 12:55:12
## 2794 24 0.99 2007-04-09 14:29:00
## 2795 24 0.99 2007-04-10 05:37:47
## 2796 24 0.99 2007-04-30 06:59:44
## 2797 24 0.99 2007-04-30 13:37:13
## 2798 25 0.99 2007-04-07 16:18:53
## 2799 25 0.99 2007-04-29 22:44:23
## 2800 25 8.99 2007-04-30 08:40:27
## 2801 26 0.99 2007-04-07 19:57:12
## 2802 26 0.99 2007-04-27 12:23:44
## 2803 26 0.99 2007-04-30 22:00:06
## 2804 27 0.99 2007-04-07 01:21:19
## 2805 27 0.99 2007-04-10 01:29:45
## 2806 27 0.99 2007-04-11 06:05:16
## 2807 27 0.99 2007-04-30 12:35:19
## 2808 28 0.99 2007-04-06 15:06:40
## 2809 28 0.99 2007-04-08 10:14:01
## 2810 28 0.99 2007-04-11 01:17:27
## 2811 28 0.99 2007-04-12 00:06:14
## 2812 28 9.99 2007-04-27 21:36:06
## 2813 29 0.99 2007-04-07 16:05:22
## 2814 29 0.99 2007-04-08 02:09:12
## 2815 29 10.99 2007-04-09 20:23:45
## 2816 29 0.99 2007-04-27 16:55:39
## 2817 30 9.99 2007-04-09 05:12:56
## 2818 30 0.99 2007-04-09 13:42:34
## 2819 30 0.99 2007-04-11 13:30:28
## 2820 30 0.99 2007-04-30 00:33:24
## 2821 30 0.99 2007-04-30 04:02:14
## 2822 31 9.99 2007-04-08 11:53:24
## 2823 31 0.99 2007-04-30 03:22:22
## 2824 32 0.99 2007-04-08 19:05:37
## 2825 32 9.99 2007-04-09 14:25:41
## 2826 32 0.99 2007-04-10 11:41:44
## 2827 33 0.99 2007-04-09 19:17:38
## 2828 33 0.99 2007-04-11 15:04:43
## 2829 34 0.99 2007-04-27 19:49:18
## 2830 35 0.99 2007-04-08 23:17:15
## 2831 35 0.99 2007-04-09 15:02:33
## 2832 35 0.99 2007-04-10 22:15:34
## 2833 36 0.99 2007-04-07 06:43:29
## 2834 36 0.99 2007-04-09 18:35:35
## 2835 36 0.99 2007-04-11 01:06:17
## 2836 36 0.99 2007-04-28 00:03:43
## 2837 36 0.99 2007-04-28 17:03:38
## 2838 36 0.99 2007-04-30 09:39:36
## 2839 37 0.99 2007-04-28 11:14:13
## 2840 37 9.99 2007-04-29 05:23:14
## 2841 38 0.99 2007-04-26 22:39:15
## 2842 38 0.99 2007-04-28 05:56:42
## 2843 38 0.99 2007-04-30 11:39:45
## 2844 38 0.99 2007-04-30 13:53:45
## 2845 39 8.99 2007-04-08 09:36:25
## 2846 39 0.99 2007-04-30 20:04:33
## 2847 40 0.99 2007-04-12 01:44:11
## 2848 40 0.99 2007-04-28 01:40:20
## 2849 40 0.99 2007-04-28 14:44:15
## 2850 40 8.99 2007-04-30 05:28:21
## 2851 41 9.99 2007-04-07 14:24:49
## 2852 41 0.99 2007-04-28 17:02:46
## 2853 42 0.99 2007-04-26 21:20:58
## 2854 42 0.99 2007-04-28 15:20:24
## 2855 43 0.99 2007-04-12 10:30:22
## 2856 44 0.99 2007-04-07 19:27:32
## 2857 44 9.99 2007-04-08 11:13:25
## 2858 44 8.99 2007-04-10 12:37:15
## 2859 44 0.99 2007-04-27 19:20:15
## 2860 45 0.99 2007-04-08 16:55:54
## 2861 45 0.99 2007-04-10 05:00:03
## 2862 45 0.99 2007-04-10 23:53:10
## 2863 45 9.99 2007-04-26 22:44:01
## 2864 46 0.99 2007-04-27 12:40:11
## 2865 46 8.99 2007-04-30 05:05:23
## 2866 47 0.99 2007-04-09 08:00:25
## 2867 47 9.99 2007-04-11 07:59:30
## 2868 47 0.99 2007-04-11 08:44:49
## 2869 49 0.99 2007-04-06 04:16:13
## 2870 49 8.99 2007-04-28 04:01:42
## 2871 49 10.99 2007-04-29 09:44:02
## 2872 49 0.99 2007-04-30 03:34:58
## 2873 50 9.99 2007-04-10 07:17:05
## 2874 50 0.99 2007-04-12 08:05:44
## 2875 50 8.99 2007-04-12 10:04:48
## 2876 50 0.99 2007-04-28 16:55:13
## 2877 50 0.99 2007-04-28 23:39:31
## 2878 50 0.99 2007-04-30 10:31:07
## 2879 50 10.99 2007-04-30 05:38:21
## 2880 50 0.99 2007-04-30 21:49:49
## 2881 51 9.99 2007-04-05 23:31:05
## 2882 51 0.99 2007-04-29 15:12:39
## 2883 51 0.99 2007-04-29 22:45:21
## 2884 51 0.99 2007-04-30 04:15:20
## 2885 52 0.99 2007-04-09 14:27:04
## 2886 52 0.99 2007-04-27 10:40:30
## 2887 54 0.99 2007-04-12 16:32:16
## 2888 56 0.99 2007-04-28 11:18:10
## 2889 56 0.99 2007-04-29 00:28:44
## 2890 57 0.99 2007-04-10 08:09:04
## 2891 57 0.99 2007-04-30 06:47:12
## 2892 57 0.99 2007-04-30 08:35:46
## 2893 57 0.99 2007-04-30 06:03:18
## 2894 58 9.99 2007-04-27 02:20:53
## 2895 58 0.99 2007-04-29 22:02:47
## 2896 59 8.99 2007-04-09 09:07:57
## 2897 59 8.99 2007-04-30 21:25:00
## 2898 60 0.99 2007-04-27 02:23:36
## 2899 60 0.99 2007-04-27 18:24:57
## 2900 62 0.99 2007-04-30 18:35:36
## 2901 63 8.99 2007-04-06 19:02:36
## 2902 63 8.99 2007-04-12 17:51:03
## 2903 63 0.99 2007-04-30 03:37:58
## 2904 63 0.99 2007-04-30 09:15:45
## 2905 63 0.99 2007-04-30 20:47:42
## 2906 64 0.99 2007-04-06 21:42:42
## 2907 64 0.99 2007-04-09 19:49:51
## 2908 64 0.99 2007-04-11 23:35:01
## 2909 64 0.99 2007-04-12 12:58:54
## 2910 64 0.99 2007-04-27 01:56:01
## 2911 64 0.99 2007-04-30 22:40:37
## 2912 65 0.99 2007-04-12 02:51:32
## 2913 66 0.99 2007-04-10 19:40:42
## 2914 66 8.99 2007-04-11 15:41:08
## 2915 67 0.99 2007-04-28 09:25:41
## 2916 68 0.99 2007-04-06 03:39:30
## 2917 68 0.99 2007-04-06 16:10:08
## 2918 69 8.99 2007-04-06 17:08:04
## 2919 69 0.99 2007-04-07 12:56:17
## 2920 69 0.99 2007-04-07 20:57:17
## 2921 69 0.99 2007-04-30 18:25:42
## 2922 70 0.99 2007-04-07 02:42:01
## 2923 70 0.99 2007-04-29 09:41:03
## 2924 71 8.99 2007-04-10 01:16:29
## 2925 71 0.99 2007-04-11 00:37:21
## 2926 71 0.99 2007-04-27 05:54:32
## 2927 71 0.99 2007-04-30 02:00:55
## 2928 72 0.99 2007-04-06 08:40:45
## 2929 72 0.99 2007-04-09 19:27:35
## 2930 72 0.99 2007-04-11 03:39:35
## 2931 73 9.99 2007-04-12 02:16:10
## 2932 75 0.99 2007-04-06 09:14:41
## 2933 75 0.99 2007-04-08 01:04:47
## 2934 75 0.99 2007-04-11 02:19:53
## 2935 75 0.99 2007-04-12 00:38:02
## 2936 75 0.99 2007-04-12 03:01:45
## 2937 75 0.99 2007-04-28 07:38:48
## 2938 75 9.99 2007-04-30 08:44:12
## 2939 76 0.99 2007-04-10 02:16:46
## 2940 76 0.99 2007-04-12 15:03:06
## 2941 76 0.99 2007-04-30 01:07:11
## 2942 76 0.99 2007-04-30 18:37:58
## 2943 77 0.99 2007-04-08 20:34:07
## 2944 77 0.99 2007-04-11 08:50:04
## 2945 77 0.99 2007-04-28 02:52:33
## 2946 77 0.99 2007-04-30 09:52:11
## 2947 78 0.99 2007-04-08 14:20:17
## 2948 78 0.99 2007-04-10 03:33:26
## 2949 78 0.99 2007-04-11 00:05:08
## 2950 79 0.99 2007-04-06 05:45:35
## 2951 79 9.99 2007-04-27 08:04:20
## 2952 79 0.99 2007-04-30 15:51:05
## 2953 80 8.99 2007-04-07 13:04:31
## 2954 80 0.99 2007-04-27 20:47:34
## 2955 81 9.99 2007-04-08 23:02:42
## 2956 81 0.99 2007-04-09 21:34:35
## 2957 81 0.99 2007-04-28 02:50:40
## 2958 82 9.99 2007-04-28 03:33:13
## 2959 82 0.99 2007-04-28 08:48:12
## 2960 82 8.99 2007-04-30 15:14:22
## 2961 83 0.99 2007-04-09 10:25:38
## 2962 83 0.99 2007-04-28 03:11:24
## 2963 84 0.99 2007-04-09 11:25:24
## 2964 84 9.99 2007-04-11 21:56:18
## 2965 84 8.99 2007-04-29 13:32:53
## 2966 85 0.99 2007-04-07 21:58:20
## 2967 85 0.99 2007-04-09 23:46:58
## 2968 85 0.99 2007-04-28 10:00:08
## 2969 86 0.99 2007-04-06 04:05:44
## 2970 86 9.99 2007-04-08 04:03:07
## 2971 86 0.99 2007-04-09 13:53:32
## 2972 86 8.99 2007-04-10 10:56:04
## 2973 86 10.99 2007-04-28 08:50:18
## 2974 87 0.99 2007-04-30 05:49:02
## 2975 87 8.99 2007-04-30 17:13:10
## 2976 88 0.99 2007-04-05 23:30:17
## 2977 88 0.99 2007-04-06 04:30:16
## 2978 88 8.99 2007-04-27 23:02:32
## 2979 89 0.99 2007-04-07 23:50:49
## 2980 89 8.99 2007-04-08 13:29:51
## 2981 89 0.99 2007-04-30 02:34:51
## 2982 89 0.99 2007-04-30 08:15:15
## 2983 90 0.99 2007-04-09 12:54:27
## 2984 90 0.99 2007-04-29 05:09:06
## 2985 90 9.99 2007-04-29 22:36:34
## 2986 91 0.99 2007-04-06 13:34:35
## 2987 91 0.99 2007-04-10 08:24:50
## 2988 91 0.99 2007-04-27 05:24:57
## 2989 91 0.99 2007-04-27 23:40:51
## 2990 91 0.99 2007-04-29 02:02:47
## 2991 91 0.99 2007-04-29 22:42:58
## 2992 92 8.99 2007-04-06 03:28:15
## 2993 92 0.99 2007-04-11 08:18:50
## 2994 93 0.99 2007-04-28 22:44:49
## 2995 94 0.99 2007-04-07 01:50:49
## 2996 94 8.99 2007-04-07 14:05:57
## 2997 94 0.99 2007-04-28 12:44:56
## 2998 95 0.99 2007-04-30 20:12:56
## 2999 96 0.99 2007-04-10 01:40:34
## 3000 97 0.99 2007-04-06 01:31:24
## 3001 97 0.99 2007-04-12 03:24:41
## 3002 97 0.99 2007-04-12 12:16:40
## 3003 97 0.99 2007-04-28 10:37:19
## 3004 98 0.99 2007-04-27 19:47:24
## 3005 99 0.99 2007-04-08 04:54:30
## 3006 99 0.99 2007-04-28 15:56:25
## 3007 99 0.99 2007-04-29 08:21:59
## 3008 100 8.99 2007-04-06 13:29:53
## 3009 100 8.99 2007-04-08 22:22:55
## 3010 100 0.99 2007-04-28 21:43:22
## 3011 101 8.99 2007-04-28 08:36:27
## 3012 101 0.99 2007-04-29 01:28:34
## 3013 101 0.99 2007-04-30 23:38:10
## 3014 102 0.99 2007-04-27 04:23:58
## 3015 102 0.99 2007-04-27 09:01:24
## 3016 102 0.99 2007-04-28 20:58:53
## 3017 102 0.99 2007-04-30 14:47:05
## 3018 103 0.99 2007-04-27 11:29:21
## 3019 103 0.99 2007-04-29 01:29:50
## 3020 105 9.99 2007-04-30 11:25:10
## 3021 106 0.99 2007-04-26 23:33:11
## 3022 106 8.99 2007-04-30 23:31:44
## 3023 107 0.99 2007-04-11 06:53:48
## 3024 108 0.99 2007-04-06 16:44:05
## 3025 108 0.99 2007-04-08 12:48:27
## 3026 108 0.99 2007-04-12 17:32:50
## 3027 109 0.99 2007-04-27 05:29:26
## 3028 109 0.99 2007-04-30 12:08:08
## 3029 110 0.99 2007-04-27 17:35:43
## 3030 110 0.99 2007-04-27 20:11:30
## 3031 111 9.99 2007-04-06 20:47:43
## 3032 111 0.99 2007-04-07 14:05:10
## 3033 111 0.99 2007-04-29 08:48:45
## 3034 111 0.99 2007-04-30 13:53:12
## 3035 113 0.99 2007-04-11 00:46:39
## 3036 113 0.99 2007-04-12 17:26:31
## 3037 114 0.99 2007-04-07 00:41:50
## 3038 114 0.99 2007-04-09 19:10:01
## 3039 114 10.99 2007-04-29 11:00:46
## 3040 115 0.99 2007-04-06 00:34:58
## 3041 115 0.99 2007-04-06 04:34:53
## 3042 115 0.99 2007-04-11 20:03:46
## 3043 115 0.99 2007-04-30 01:22:57
## 3044 116 0.99 2007-04-07 00:47:27
## 3045 116 0.99 2007-04-27 08:42:07
## 3046 117 0.99 2007-04-10 06:50:20
## 3047 117 9.99 2007-04-11 04:21:16
## 3048 118 0.99 2007-04-08 22:15:51
## 3049 118 0.99 2007-04-11 20:09:42
## 3050 119 8.99 2007-04-08 16:46:42
## 3051 119 0.99 2007-04-09 12:51:09
## 3052 119 0.99 2007-04-11 17:44:08
## 3053 119 0.99 2007-04-30 19:15:55
## 3054 120 0.99 2007-04-07 17:15:29
## 3055 120 9.99 2007-04-08 08:33:28
## 3056 120 0.99 2007-04-12 01:46:33
## 3057 120 0.99 2007-04-28 15:18:07
## 3058 120 0.99 2007-04-30 21:38:07
## 3059 121 0.99 2007-04-10 06:43:18
## 3060 121 0.99 2007-04-27 04:10:39
## 3061 121 0.99 2007-04-27 06:52:20
## 3062 121 8.99 2007-04-30 02:28:45
## 3063 122 0.99 2007-04-11 12:31:02
## 3064 122 0.99 2007-04-11 22:26:00
## 3065 122 0.99 2007-04-11 22:47:08
## 3066 122 0.99 2007-04-28 20:12:20
## 3067 123 8.99 2007-04-08 17:22:33
## 3068 123 0.99 2007-04-28 05:12:29
## 3069 124 8.99 2007-04-28 02:22:40
## 3070 124 0.99 2007-04-29 08:48:33
## 3071 125 0.99 2007-04-11 02:27:34
## 3072 125 0.99 2007-04-28 08:56:12
## 3073 125 0.99 2007-04-28 10:33:51
## 3074 125 9.99 2007-04-30 08:19:47
## 3075 125 0.99 2007-04-30 22:37:33
## 3076 126 0.99 2007-04-08 09:33:19
## 3077 126 0.99 2007-04-09 06:29:00
## 3078 126 0.99 2007-04-10 16:59:31
## 3079 126 0.99 2007-04-12 13:01:47
## 3080 126 0.99 2007-04-28 12:16:35
## 3081 128 0.99 2007-04-06 10:52:07
## 3082 129 0.99 2007-04-06 08:11:27
## 3083 129 0.99 2007-04-06 19:43:29
## 3084 129 0.99 2007-04-08 05:21:06
## 3085 129 0.99 2007-04-08 23:28:12
## 3086 129 0.99 2007-04-09 05:54:13
## 3087 130 0.99 2007-04-28 03:24:59
## 3088 130 0.99 2007-04-30 20:47:42
## 3089 131 0.99 2007-04-28 15:56:14
## 3090 131 8.99 2007-04-29 10:08:34
## 3091 132 0.99 2007-04-06 08:46:27
## 3092 132 0.99 2007-04-08 19:18:31
## 3093 132 0.99 2007-04-10 08:32:41
## 3094 132 0.99 2007-04-27 16:00:06
## 3095 133 0.99 2007-04-27 14:45:03
## 3096 133 0.99 2007-04-30 10:16:14
## 3097 133 0.99 2007-04-30 05:02:07
## 3098 134 0.99 2007-04-12 09:46:31
## 3099 135 0.99 2007-04-07 04:53:45
## 3100 135 0.99 2007-04-10 01:12:53
## 3101 135 0.99 2007-04-27 16:07:44
## 3102 135 0.99 2007-04-28 03:37:10
## 3103 135 0.99 2007-04-29 02:05:33
## 3104 136 0.99 2007-04-08 20:34:01
## 3105 136 8.99 2007-04-12 05:19:18
## 3106 136 0.99 2007-04-30 15:43:53
## 3107 137 0.99 2007-04-11 10:45:08
## 3108 137 8.99 2007-04-28 14:39:41
## 3109 138 0.99 2007-04-09 17:34:22
## 3110 138 0.99 2007-04-12 19:38:30
## 3111 138 0.99 2007-04-30 02:45:28
## 3112 138 9.99 2007-04-30 14:18:06
## 3113 138 0.99 2007-04-30 19:34:38
## 3114 139 0.99 2007-04-08 08:23:13
## 3115 139 0.99 2007-04-12 12:50:34
## 3116 139 0.99 2007-04-27 13:36:24
## 3117 140 9.99 2007-04-11 21:30:45
## 3118 140 0.99 2007-04-12 04:20:13
## 3119 140 0.99 2007-04-30 18:50:01
## 3120 141 0.99 2007-04-07 14:52:35
## 3121 141 0.99 2007-04-10 11:46:24
## 3122 142 0.99 2007-04-12 02:40:24
## 3123 143 0.99 2007-04-07 10:47:23
## 3124 143 0.99 2007-04-29 02:01:04
## 3125 143 0.99 2007-04-29 02:46:51
## 3126 143 0.99 2007-04-30 19:44:57
## 3127 144 0.99 2007-04-09 02:22:38
## 3128 144 8.99 2007-04-09 17:20:34
## 3129 144 9.99 2007-04-12 15:03:33
## 3130 144 0.99 2007-04-28 07:12:15
## 3131 144 0.99 2007-04-30 02:59:34
## 3132 144 0.99 2007-04-30 06:43:58
## 3133 145 8.99 2007-04-07 09:48:17
## 3134 145 0.99 2007-04-11 20:13:49
## 3135 145 0.99 2007-04-28 11:53:31
## 3136 145 0.99 2007-04-29 03:59:55
## 3137 145 0.99 2007-04-30 01:21:25
## 3138 146 0.99 2007-04-26 23:31:12
## 3139 147 0.99 2007-04-08 14:58:04
## 3140 147 0.99 2007-04-09 01:58:51
## 3141 147 0.99 2007-04-10 15:43:09
## 3142 147 0.99 2007-04-11 18:20:01
## 3143 147 0.99 2007-04-27 01:55:55
## 3144 147 0.99 2007-04-28 03:14:03
## 3145 147 0.99 2007-04-30 08:24:33
## 3146 148 0.99 2007-04-06 06:13:39
## 3147 148 0.99 2007-04-07 03:38:20
## 3148 148 8.99 2007-04-12 08:55:45
## 3149 148 10.99 2007-04-12 15:06:21
## 3150 148 0.99 2007-04-28 00:35:45
## 3151 148 9.99 2007-04-28 08:35:30
## 3152 149 0.99 2007-04-08 16:37:38
## 3153 149 10.99 2007-04-09 14:04:43
## 3154 151 0.99 2007-04-12 12:09:42
## 3155 151 0.99 2007-04-12 18:07:23
## 3156 151 0.99 2007-04-27 07:03:28
## 3157 152 0.99 2007-04-11 14:37:07
## 3158 153 0.99 2007-04-06 13:06:07
## 3159 153 0.99 2007-04-06 20:15:02
## 3160 153 0.99 2007-04-10 07:06:58
## 3161 153 0.99 2007-04-10 11:55:11
## 3162 153 9.99 2007-04-12 16:49:20
## 3163 153 0.99 2007-04-30 13:56:07
## 3164 154 0.99 2007-04-06 18:38:29
## 3165 154 0.99 2007-04-09 04:49:55
## 3166 154 0.99 2007-04-11 02:00:49
## 3167 155 0.99 2007-04-30 19:09:43
## 3168 156 0.99 2007-04-10 19:12:40
## 3169 156 0.99 2007-04-30 05:42:12
## 3170 157 0.99 2007-04-06 10:22:44
## 3171 157 0.99 2007-04-08 20:10:20
## 3172 157 0.99 2007-04-28 19:40:14
## 3173 157 0.99 2007-04-29 03:00:21
## 3174 157 0.99 2007-04-29 03:17:51
## 3175 157 0.99 2007-04-29 15:50:24
## 3176 158 8.99 2007-04-07 05:26:40
## 3177 158 0.99 2007-04-28 03:31:58
## 3178 159 0.99 2007-04-10 05:59:33
## 3179 159 0.99 2007-04-29 06:57:16
## 3180 159 0.99 2007-04-30 08:24:26
## 3181 160 0.99 2007-04-08 16:49:56
## 3182 160 0.99 2007-04-27 18:44:29
## 3183 160 0.99 2007-04-30 05:10:35
## 3184 161 0.99 2007-04-07 09:09:57
## 3185 161 0.99 2007-04-30 19:36:58
## 3186 162 0.99 2007-04-30 08:28:26
## 3187 163 10.99 2007-04-10 02:23:04
## 3188 163 0.99 2007-04-11 05:49:23
## 3189 163 0.99 2007-04-28 15:08:09
## 3190 164 0.99 2007-04-11 20:56:38
## 3191 164 0.99 2007-04-12 11:16:29
## 3192 165 0.99 2007-04-07 15:29:45
## 3193 165 0.99 2007-04-10 22:37:43
## 3194 165 0.99 2007-04-29 11:47:18
## 3195 166 0.99 2007-04-08 08:19:37
## 3196 166 0.99 2007-04-11 12:47:38
## 3197 166 8.99 2007-04-30 03:40:27
## 3198 167 0.99 2007-04-08 00:08:50
## 3199 167 0.99 2007-04-09 06:03:29
## 3200 167 0.99 2007-04-09 08:55:14
## 3201 167 0.99 2007-04-29 19:25:48
## 3202 167 0.99 2007-04-29 22:20:38
## 3203 168 0.99 2007-04-09 21:12:22
## 3204 168 0.99 2007-04-11 23:04:28
## 3205 169 8.99 2007-04-05 22:14:45
## 3206 169 9.99 2007-04-12 00:48:35
## 3207 169 0.99 2007-04-27 22:04:15
## 3208 169 0.99 2007-04-30 11:12:06
## 3209 170 0.99 2007-04-07 22:46:25
## 3210 170 0.99 2007-04-09 03:40:33
## 3211 170 9.99 2007-04-30 19:17:36
## 3212 171 0.99 2007-04-06 04:32:21
## 3213 171 0.99 2007-04-12 14:24:34
## 3214 172 0.99 2007-04-11 20:24:06
## 3215 173 0.99 2007-04-06 09:22:00
## 3216 173 0.99 2007-04-27 23:55:59
## 3217 173 8.99 2007-04-29 21:02:00
## 3218 175 0.99 2007-04-28 05:20:38
## 3219 177 0.99 2007-04-08 13:16:33
## 3220 177 9.99 2007-04-11 11:42:11
## 3221 177 0.99 2007-04-28 18:44:56
## 3222 178 10.99 2007-04-09 04:28:13
## 3223 178 0.99 2007-04-28 15:52:12
## 3224 178 0.99 2007-04-30 20:01:29
## 3225 179 0.99 2007-04-06 15:06:24
## 3226 179 8.99 2007-04-29 16:52:23
## 3227 179 0.99 2007-04-30 12:35:47
## 3228 180 9.99 2007-04-08 20:23:51
## 3229 180 0.99 2007-04-09 17:46:12
## 3230 180 0.99 2007-04-10 11:59:35
## 3231 180 0.99 2007-04-30 17:34:02
## 3232 181 8.99 2007-04-26 22:08:33
## 3233 181 0.99 2007-04-27 14:31:18
## 3234 181 9.99 2007-04-29 11:31:57
## 3235 181 8.99 2007-04-30 17:05:26
## 3236 182 0.99 2007-04-07 17:31:03
## 3237 182 0.99 2007-04-08 14:38:22
## 3238 182 0.99 2007-04-27 08:29:20
## 3239 182 0.99 2007-04-28 08:34:12
## 3240 182 8.99 2007-04-28 15:18:52
## 3241 183 0.99 2007-04-07 06:42:50
## 3242 183 0.99 2007-04-10 11:07:54
## 3243 183 0.99 2007-04-27 13:19:30
## 3244 184 0.99 2007-04-07 16:06:57
## 3245 184 0.99 2007-04-10 18:29:43
## 3246 184 0.99 2007-04-30 09:50:22
## 3247 185 9.99 2007-04-07 09:00:51
## 3248 185 0.99 2007-04-29 06:01:33
## 3249 185 8.99 2007-04-29 14:44:59
## 3250 185 0.99 2007-04-30 12:40:57
## 3251 186 0.99 2007-04-28 03:50:17
## 3252 186 0.99 2007-04-29 22:42:20
## 3253 187 10.99 2007-04-06 08:55:22
## 3254 187 0.99 2007-04-09 16:57:03
## 3255 187 8.99 2007-04-10 10:19:17
## 3256 188 0.99 2007-04-27 01:48:44
## 3257 189 0.99 2007-04-06 11:24:57
## 3258 189 0.99 2007-04-07 09:52:40
## 3259 189 0.99 2007-04-30 17:54:47
## 3260 190 0.99 2007-04-29 07:36:04
## 3261 191 0.99 2007-04-29 10:33:16
## 3262 192 0.99 2007-04-11 11:55:35
## 3263 192 0.99 2007-04-12 10:55:04
## 3264 192 0.99 2007-04-28 15:24:42
## 3265 195 0.99 2007-04-10 00:58:08
## 3266 195 0.99 2007-04-29 07:10:30
## 3267 196 0.99 2007-04-28 23:48:42
## 3268 196 0.99 2007-04-29 15:24:27
## 3269 196 10.99 2007-04-30 19:57:54
## 3270 197 8.99 2007-04-07 23:37:35
## 3271 197 0.99 2007-04-09 15:55:31
## 3272 197 0.99 2007-04-30 21:35:06
## 3273 198 0.99 2007-04-08 12:35:29
## 3274 198 0.99 2007-04-27 10:52:38
## 3275 198 0.99 2007-04-27 23:06:00
## 3276 198 0.99 2007-04-30 17:56:25
## 3277 199 8.99 2007-04-08 04:32:49
## 3278 199 0.99 2007-04-29 15:54:20
## 3279 200 0.99 2007-04-11 06:30:53
## 3280 201 0.99 2007-04-27 03:49:50
## 3281 201 0.99 2007-04-30 17:03:51
## 3282 209 0.99 2007-04-11 11:05:09
## 3283 209 8.99 2007-04-29 17:51:03
## 3284 209 0.99 2007-04-30 13:28:41
## 3285 210 0.99 2007-04-07 13:07:07
## 3286 210 0.99 2007-04-07 17:00:30
## 3287 210 0.99 2007-04-10 21:52:28
## 3288 210 0.99 2007-04-28 10:06:34
## 3289 210 8.99 2007-04-29 02:49:08
## 3290 210 0.99 2007-04-29 17:01:13
## 3291 211 8.99 2007-04-06 19:44:04
## 3292 211 0.99 2007-04-11 22:51:27
## 3293 211 0.99 2007-04-27 17:56:43
## 3294 211 0.99 2007-04-30 14:25:01
## 3295 212 10.99 2007-04-08 10:27:45
## 3296 213 8.99 2007-04-08 08:17:48
## 3297 213 0.99 2007-04-09 19:49:37
## 3298 213 0.99 2007-04-27 19:43:51
## 3299 214 0.99 2007-04-07 10:19:07
## 3300 215 8.99 2007-04-08 21:04:32
## 3301 215 8.99 2007-04-10 22:30:45
## 3302 215 0.99 2007-04-30 23:11:52
## 3303 216 8.99 2007-04-29 22:13:09
## 3304 216 0.99 2007-04-30 07:07:49
## 3305 217 0.99 2007-04-30 09:45:03
## 3306 218 0.99 2007-04-09 10:39:10
## 3307 218 0.99 2007-04-10 10:18:30
## 3308 218 8.99 2007-04-27 08:38:05
## 3309 218 0.99 2007-04-30 19:41:24
## 3310 219 0.99 2007-04-08 08:59:06
## 3311 219 0.99 2007-04-09 05:48:56
## 3312 219 0.99 2007-04-29 05:40:43
## 3313 220 0.99 2007-04-10 16:30:28
## 3314 220 0.99 2007-04-11 21:47:47
## 3315 220 8.99 2007-04-12 17:20:07
## 3316 220 9.99 2007-04-28 04:23:56
## 3317 220 10.99 2007-04-30 20:48:55
## 3318 221 0.99 2007-04-27 04:46:27
## 3319 221 8.99 2007-04-27 19:48:00
## 3320 221 0.99 2007-04-29 07:22:04
## 3321 221 0.99 2007-04-30 11:26:46
## 3322 222 8.99 2007-04-09 09:51:05
## 3323 222 0.99 2007-04-12 01:32:55
## 3324 222 0.99 2007-04-28 05:46:52
## 3325 223 0.99 2007-04-06 08:46:25
## 3326 224 0.99 2007-04-28 23:30:56
## 3327 224 0.99 2007-04-30 10:34:24
## 3328 226 9.99 2007-04-12 11:53:13
## 3329 227 0.99 2007-04-28 22:47:46
## 3330 227 0.99 2007-04-29 04:07:09
## 3331 228 0.99 2007-04-06 00:05:33
## 3332 228 8.99 2007-04-06 08:57:19
## 3333 228 0.99 2007-04-06 13:13:48
## 3334 228 0.99 2007-04-08 19:35:50
## 3335 228 0.99 2007-04-10 18:59:50
## 3336 228 8.99 2007-04-27 19:05:45
## 3337 228 0.99 2007-04-27 22:16:41
## 3338 229 0.99 2007-04-08 09:36:03
## 3339 229 0.99 2007-04-27 11:25:32
## 3340 229 0.99 2007-04-27 23:28:35
## 3341 230 0.99 2007-04-08 20:49:22
## 3342 230 0.99 2007-04-09 02:59:16
## 3343 230 0.99 2007-04-29 13:32:49
## 3344 230 9.99 2007-04-30 17:48:44
## 3345 231 9.99 2007-04-06 01:22:59
## 3346 231 0.99 2007-04-07 14:14:24
## 3347 231 0.99 2007-04-08 22:19:52
## 3348 231 0.99 2007-04-12 18:26:35
## 3349 231 0.99 2007-04-29 09:46:53
## 3350 232 0.99 2007-04-28 02:36:13
## 3351 232 0.99 2007-04-30 13:31:42
## 3352 232 10.99 2007-04-30 16:12:50
## 3353 233 8.99 2007-04-27 02:14:53
## 3354 233 0.99 2007-04-29 11:17:20
## 3355 233 0.99 2007-04-30 01:17:46
## 3356 234 0.99 2007-04-08 09:22:05
## 3357 235 0.99 2007-04-28 17:52:50
## 3358 235 0.99 2007-04-29 18:48:42
## 3359 235 0.99 2007-04-30 21:00:09
## 3360 236 0.99 2007-04-06 05:50:35
## 3361 236 0.99 2007-04-08 21:50:49
## 3362 236 0.99 2007-04-11 02:00:58
## 3363 236 0.99 2007-04-27 09:15:03
## 3364 237 8.99 2007-04-28 11:49:42
## 3365 237 0.99 2007-04-30 17:47:39
## 3366 238 0.99 2007-04-07 06:50:33
## 3367 238 0.99 2007-04-11 21:14:51
## 3368 238 8.99 2007-04-29 01:54:22
## 3369 238 0.99 2007-04-29 06:49:15
## 3370 239 0.99 2007-04-06 00:46:32
## 3371 239 0.99 2007-04-10 22:07:00
## 3372 239 0.99 2007-04-12 04:32:06
## 3373 239 8.99 2007-04-27 00:29:29
## 3374 239 0.99 2007-04-27 15:48:12
## 3375 239 0.99 2007-04-30 05:07:39
## 3376 240 0.99 2007-04-10 03:11:40
## 3377 240 0.99 2007-04-11 14:32:15
## 3378 240 0.99 2007-04-11 23:58:07
## 3379 240 8.99 2007-04-27 17:20:20
## 3380 241 0.99 2007-04-06 14:09:41
## 3381 241 0.99 2007-04-08 11:36:44
## 3382 241 0.99 2007-04-09 09:55:16
## 3383 241 0.99 2007-04-27 12:02:01
## 3384 242 0.99 2007-04-06 03:53:48
## 3385 243 0.99 2007-04-08 16:28:40
## 3386 243 0.99 2007-04-09 23:02:41
## 3387 243 0.99 2007-04-27 06:05:12
## 3388 244 0.99 2007-04-09 21:16:30
## 3389 244 0.99 2007-04-10 08:00:48
## 3390 244 0.99 2007-04-29 06:17:30
## 3391 245 0.99 2007-04-26 22:39:24
## 3392 245 0.99 2007-04-27 13:18:10
## 3393 245 10.99 2007-04-29 20:14:47
## 3394 245 0.99 2007-04-30 06:49:28
## 3395 246 0.99 2007-04-09 15:59:58
## 3396 248 0.99 2007-04-06 18:33:44
## 3397 248 0.99 2007-04-08 16:46:49
## 3398 249 9.99 2007-04-07 17:44:24
## 3399 250 0.99 2007-04-10 01:12:47
## 3400 250 0.99 2007-04-30 07:14:14
## 3401 251 8.99 2007-04-27 12:42:00
## 3402 251 0.99 2007-04-30 02:59:28
## 3403 251 0.99 2007-04-30 12:34:51
## 3404 252 0.99 2007-04-07 18:37:27
## 3405 252 0.99 2007-04-11 19:27:17
## 3406 252 0.99 2007-04-11 19:52:02
## 3407 252 0.99 2007-04-27 04:26:58
## 3408 252 0.99 2007-04-27 06:19:37
## 3409 252 0.99 2007-04-28 01:12:51
## 3410 252 0.99 2007-04-29 23:33:56
## 3411 253 0.99 2007-04-28 08:00:24
## 3412 253 0.99 2007-04-30 02:19:12
## 3413 254 0.99 2007-04-10 01:04:07
## 3414 254 0.99 2007-04-27 00:27:00
## 3415 255 0.99 2007-04-08 02:48:45
## 3416 255 0.99 2007-04-10 21:16:39
## 3417 255 8.99 2007-04-27 17:36:09
## 3418 255 0.99 2007-04-29 10:00:39
## 3419 256 0.99 2007-04-07 06:20:19
## 3420 256 0.99 2007-04-07 08:56:26
## 3421 256 0.99 2007-04-11 16:10:59
## 3422 258 0.99 2007-04-08 18:53:37
## 3423 258 0.99 2007-04-10 06:54:52
## 3424 258 9.99 2007-04-10 20:39:30
## 3425 259 0.99 2007-04-11 03:28:22
## 3426 260 0.99 2007-04-07 02:10:33
## 3427 260 0.99 2007-04-27 02:30:59
## 3428 260 0.99 2007-04-29 16:09:11
## 3429 260 0.99 2007-04-30 01:04:32
## 3430 261 0.99 2007-04-12 12:57:51
## 3431 262 0.99 2007-04-08 00:40:26
## 3432 262 0.99 2007-04-09 23:04:03
## 3433 262 0.99 2007-04-11 15:45:06
## 3434 263 0.99 2007-04-08 07:18:20
## 3435 264 0.99 2007-04-08 02:29:28
## 3436 264 8.99 2007-04-11 18:14:31
## 3437 264 0.99 2007-04-11 20:51:35
## 3438 264 0.99 2007-04-12 03:22:58
## 3439 264 8.99 2007-04-27 00:10:46
## 3440 264 0.99 2007-04-30 23:03:31
## 3441 265 0.99 2007-04-08 05:56:31
## 3442 265 9.99 2007-04-10 09:01:18
## 3443 265 0.99 2007-04-29 14:07:55
## 3444 266 0.99 2007-04-06 02:51:02
## 3445 267 0.99 2007-04-11 03:16:08
## 3446 267 0.00 2007-05-14 13:44:29
## 3447 269 0.00 2007-05-14 13:44:29
## 3448 274 0.99 2007-05-14 13:44:29
## 3449 282 0.99 2007-05-14 13:44:29
## 3450 284 0.00 2007-05-14 13:44:29
## 3451 287 0.99 2007-05-14 13:44:29
## 3452 295 0.99 2007-05-14 13:44:29
## 3453 317 0.99 2007-05-14 13:44:29
## 3454 334 0.99 2007-05-14 13:44:29
## 3455 335 0.99 2007-05-14 13:44:29
## 3456 336 0.99 2007-05-14 13:44:29
## 3457 337 0.99 2007-05-14 13:44:29
## 3458 354 0.00 2007-05-14 13:44:29
## 3459 355 0.99 2007-05-14 13:44:29
## 3460 361 0.00 2007-05-14 13:44:29
## 3461 369 0.99 2007-05-14 13:44:29
## 3462 373 0.99 2007-05-14 13:44:29
## 3463 388 0.99 2007-05-14 13:44:29
## 3464 405 0.99 2007-05-14 13:44:29
## 3465 412 0.99 2007-05-14 13:44:29
## 3466 421 0.99 2007-05-14 13:44:29
## 3467 424 0.99 2007-05-14 13:44:29
## 3468 438 0.99 2007-05-14 13:44:29
## 3469 448 0.00 2007-05-14 13:44:29
## 3470 450 0.99 2007-05-14 13:44:29
## 3471 457 0.00 2007-05-14 13:44:29
## 3472 474 0.99 2007-05-14 13:44:29
## 3473 476 0.99 2007-05-14 13:44:29
## 3474 479 0.99 2007-05-14 13:44:29
## 3475 495 0.99 2007-05-14 13:44:29
## 3476 508 0.99 2007-05-14 13:44:29
## 3477 512 0.99 2007-05-14 13:44:29
## 3478 516 0.00 2007-05-14 13:44:29
## 3479 532 0.99 2007-05-14 13:44:29
## 3480 548 0.99 2007-05-14 13:44:29
## 3481 560 0.00 2007-05-14 13:44:29
## 3482 561 0.99 2007-05-14 13:44:29
## 3483 570 0.99 2007-05-14 13:44:29
## 3484 576 0.00 2007-05-14 13:44:29
## 3485 579 0.99 2007-05-14 13:44:29
## 3486 587 0.99 2007-05-14 13:44:29
## 3487 592 0.99 2007-05-14 13:44:29
## 3488 596 0.99 2007-05-14 13:44:29
## 3489 5 0.99 2007-05-14 13:44:29
## 3490 11 0.99 2007-05-14 13:44:29
## 3491 15 0.00 2007-05-14 13:44:29
## 3492 29 0.99 2007-05-14 13:44:29
## 3493 33 0.99 2007-05-14 13:44:29
## 3494 42 0.00 2007-05-14 13:44:29
## 3495 43 0.00 2007-05-14 13:44:29
## 3496 53 0.00 2007-05-14 13:44:29
## 3497 58 0.99 2007-05-14 13:44:29
## 3498 60 9.98 2007-05-14 13:44:29
## 3499 60 0.00 2007-05-14 13:44:29
## 3500 69 0.99 2007-05-14 13:44:29
## 3501 75 8.97 2007-05-14 13:44:29
## 3502 75 0.00 2007-05-14 13:44:29
## 3503 75 0.00 2007-05-14 13:44:29
## 3504 99 0.99 2007-05-14 13:44:29
## 3505 100 0.99 2007-05-14 13:44:29
## 3506 101 0.99 2007-05-14 13:44:29
## 3507 107 0.00 2007-05-14 13:44:29
## 3508 135 0.99 2007-05-14 13:44:29
## 3509 142 0.99 2007-05-14 13:44:29
## 3510 155 0.00 2007-05-14 13:44:29
## 3511 162 0.99 2007-05-14 13:44:29
## 3512 163 0.00 2007-05-14 13:44:29
## 3513 168 0.99 2007-05-14 13:44:29
## 3514 175 0.00 2007-05-14 13:44:29
## 3515 191 0.99 2007-05-14 13:44:29
## 3516 208 0.00 2007-05-14 13:44:29
## 3517 215 0.99 2007-05-14 13:44:29
## 3518 216 0.00 2007-05-14 13:44:29
## 3519 228 0.00 2007-05-14 13:44:29
## 3520 229 0.99 2007-05-14 13:44:29
## 3521 234 0.99 2007-05-14 13:44:29
## 3522 236 0.99 2007-05-14 13:44:29
## 3523 251 0.99 2007-05-14 13:44:29
## 3524 263 0.99 2007-05-14 13:44:29
Examples: Various SELECT WHERE examples
-- Select all rows and columns from the customer table
SELECT *
FROM customer;
## customer_id store_id first_name last_name email address_id activebool create_date last_update active
## 1 524 1 Jared Ely jared.ely@sakilacustomer.org 530 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 2 1 1 Mary Smith mary.smith@sakilacustomer.org 5 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 3 2 1 Patricia Johnson patricia.johnson@sakilacustomer.org 6 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 4 3 1 Linda Williams linda.williams@sakilacustomer.org 7 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 5 4 2 Barbara Jones barbara.jones@sakilacustomer.org 8 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 6 5 1 Elizabeth Brown elizabeth.brown@sakilacustomer.org 9 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 7 6 2 Jennifer Davis jennifer.davis@sakilacustomer.org 10 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 8 7 1 Maria Miller maria.miller@sakilacustomer.org 11 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 9 8 2 Susan Wilson susan.wilson@sakilacustomer.org 12 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 10 9 2 Margaret Moore margaret.moore@sakilacustomer.org 13 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 11 10 1 Dorothy Taylor dorothy.taylor@sakilacustomer.org 14 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 12 11 2 Lisa Anderson lisa.anderson@sakilacustomer.org 15 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 13 12 1 Nancy Thomas nancy.thomas@sakilacustomer.org 16 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 14 13 2 Karen Jackson karen.jackson@sakilacustomer.org 17 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 15 14 2 Betty White betty.white@sakilacustomer.org 18 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 16 15 1 Helen Harris helen.harris@sakilacustomer.org 19 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 17 16 2 Sandra Martin sandra.martin@sakilacustomer.org 20 TRUE 2006-02-14 2013-05-26 14:49:45 0
## 18 17 1 Donna Thompson donna.thompson@sakilacustomer.org 21 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 19 18 2 Carol Garcia carol.garcia@sakilacustomer.org 22 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 20 19 1 Ruth Martinez ruth.martinez@sakilacustomer.org 23 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 21 20 2 Sharon Robinson sharon.robinson@sakilacustomer.org 24 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 22 21 1 Michelle Clark michelle.clark@sakilacustomer.org 25 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 23 22 1 Laura Rodriguez laura.rodriguez@sakilacustomer.org 26 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 24 23 2 Sarah Lewis sarah.lewis@sakilacustomer.org 27 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 25 24 2 Kimberly Lee kimberly.lee@sakilacustomer.org 28 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 26 25 1 Deborah Walker deborah.walker@sakilacustomer.org 29 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 27 26 2 Jessica Hall jessica.hall@sakilacustomer.org 30 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 28 27 2 Shirley Allen shirley.allen@sakilacustomer.org 31 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 29 28 1 Cynthia Young cynthia.young@sakilacustomer.org 32 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 30 29 2 Angela Hernandez angela.hernandez@sakilacustomer.org 33 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 31 30 1 Melissa King melissa.king@sakilacustomer.org 34 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 32 31 2 Brenda Wright brenda.wright@sakilacustomer.org 35 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 33 32 1 Amy Lopez amy.lopez@sakilacustomer.org 36 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 34 33 2 Anna Hill anna.hill@sakilacustomer.org 37 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 35 34 2 Rebecca Scott rebecca.scott@sakilacustomer.org 38 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 36 35 2 Virginia Green virginia.green@sakilacustomer.org 39 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 37 36 2 Kathleen Adams kathleen.adams@sakilacustomer.org 40 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 38 37 1 Pamela Baker pamela.baker@sakilacustomer.org 41 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 39 38 1 Martha Gonzalez martha.gonzalez@sakilacustomer.org 42 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 40 39 1 Debra Nelson debra.nelson@sakilacustomer.org 43 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 41 40 2 Amanda Carter amanda.carter@sakilacustomer.org 44 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 42 41 1 Stephanie Mitchell stephanie.mitchell@sakilacustomer.org 45 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 43 42 2 Carolyn Perez carolyn.perez@sakilacustomer.org 46 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 44 43 2 Christine Roberts christine.roberts@sakilacustomer.org 47 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 45 44 1 Marie Turner marie.turner@sakilacustomer.org 48 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 46 45 1 Janet Phillips janet.phillips@sakilacustomer.org 49 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 47 46 2 Catherine Campbell catherine.campbell@sakilacustomer.org 50 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 48 47 1 Frances Parker frances.parker@sakilacustomer.org 51 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 49 48 1 Ann Evans ann.evans@sakilacustomer.org 52 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 50 49 2 Joyce Edwards joyce.edwards@sakilacustomer.org 53 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 51 50 1 Diane Collins diane.collins@sakilacustomer.org 54 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 52 51 1 Alice Stewart alice.stewart@sakilacustomer.org 55 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 53 52 1 Julie Sanchez julie.sanchez@sakilacustomer.org 56 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 54 53 1 Heather Morris heather.morris@sakilacustomer.org 57 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 55 54 1 Teresa Rogers teresa.rogers@sakilacustomer.org 58 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 56 55 2 Doris Reed doris.reed@sakilacustomer.org 59 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 57 56 1 Gloria Cook gloria.cook@sakilacustomer.org 60 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 58 57 2 Evelyn Morgan evelyn.morgan@sakilacustomer.org 61 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 59 58 1 Jean Bell jean.bell@sakilacustomer.org 62 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 60 59 1 Cheryl Murphy cheryl.murphy@sakilacustomer.org 63 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 61 60 1 Mildred Bailey mildred.bailey@sakilacustomer.org 64 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 62 61 2 Katherine Rivera katherine.rivera@sakilacustomer.org 65 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 63 62 1 Joan Cooper joan.cooper@sakilacustomer.org 66 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 64 63 1 Ashley Richardson ashley.richardson@sakilacustomer.org 67 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 65 64 2 Judith Cox judith.cox@sakilacustomer.org 68 TRUE 2006-02-14 2013-05-26 14:49:45 0
## 66 65 2 Rose Howard rose.howard@sakilacustomer.org 69 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 67 66 2 Janice Ward janice.ward@sakilacustomer.org 70 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 68 67 1 Kelly Torres kelly.torres@sakilacustomer.org 71 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 69 68 1 Nicole Peterson nicole.peterson@sakilacustomer.org 72 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 70 69 2 Judy Gray judy.gray@sakilacustomer.org 73 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 71 70 2 Christina Ramirez christina.ramirez@sakilacustomer.org 74 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 72 71 1 Kathy James kathy.james@sakilacustomer.org 75 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 73 72 2 Theresa Watson theresa.watson@sakilacustomer.org 76 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 74 73 2 Beverly Brooks beverly.brooks@sakilacustomer.org 77 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 75 74 1 Denise Kelly denise.kelly@sakilacustomer.org 78 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 76 75 2 Tammy Sanders tammy.sanders@sakilacustomer.org 79 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 77 76 2 Irene Price irene.price@sakilacustomer.org 80 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 78 77 2 Jane Bennett jane.bennett@sakilacustomer.org 81 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 79 78 1 Lori Wood lori.wood@sakilacustomer.org 82 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 80 79 1 Rachel Barnes rachel.barnes@sakilacustomer.org 83 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 81 80 1 Marilyn Ross marilyn.ross@sakilacustomer.org 84 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 82 81 1 Andrea Henderson andrea.henderson@sakilacustomer.org 85 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 83 82 1 Kathryn Coleman kathryn.coleman@sakilacustomer.org 86 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 84 83 1 Louise Jenkins louise.jenkins@sakilacustomer.org 87 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 85 84 2 Sara Perry sara.perry@sakilacustomer.org 88 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 86 85 2 Anne Powell anne.powell@sakilacustomer.org 89 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 87 86 2 Jacqueline Long jacqueline.long@sakilacustomer.org 90 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 88 87 1 Wanda Patterson wanda.patterson@sakilacustomer.org 91 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 89 88 2 Bonnie Hughes bonnie.hughes@sakilacustomer.org 92 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 90 89 1 Julia Flores julia.flores@sakilacustomer.org 93 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 91 90 2 Ruby Washington ruby.washington@sakilacustomer.org 94 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 92 91 2 Lois Butler lois.butler@sakilacustomer.org 95 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 93 92 2 Tina Simmons tina.simmons@sakilacustomer.org 96 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 94 93 1 Phyllis Foster phyllis.foster@sakilacustomer.org 97 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 95 94 1 Norma Gonzales norma.gonzales@sakilacustomer.org 98 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 96 95 2 Paula Bryant paula.bryant@sakilacustomer.org 99 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 97 96 1 Diana Alexander diana.alexander@sakilacustomer.org 100 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 98 97 2 Annie Russell annie.russell@sakilacustomer.org 101 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 99 98 1 Lillian Griffin lillian.griffin@sakilacustomer.org 102 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 100 99 2 Emily Diaz emily.diaz@sakilacustomer.org 103 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 101 100 1 Robin Hayes robin.hayes@sakilacustomer.org 104 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 102 101 1 Peggy Myers peggy.myers@sakilacustomer.org 105 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 103 102 1 Crystal Ford crystal.ford@sakilacustomer.org 106 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 104 103 1 Gladys Hamilton gladys.hamilton@sakilacustomer.org 107 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 105 104 1 Rita Graham rita.graham@sakilacustomer.org 108 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 106 105 1 Dawn Sullivan dawn.sullivan@sakilacustomer.org 109 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 107 106 1 Connie Wallace connie.wallace@sakilacustomer.org 110 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 108 107 1 Florence Woods florence.woods@sakilacustomer.org 111 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 109 108 1 Tracy Cole tracy.cole@sakilacustomer.org 112 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 110 109 2 Edna West edna.west@sakilacustomer.org 113 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 111 110 2 Tiffany Jordan tiffany.jordan@sakilacustomer.org 114 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 112 111 1 Carmen Owens carmen.owens@sakilacustomer.org 115 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 113 112 2 Rosa Reynolds rosa.reynolds@sakilacustomer.org 116 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 114 113 2 Cindy Fisher cindy.fisher@sakilacustomer.org 117 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 115 114 2 Grace Ellis grace.ellis@sakilacustomer.org 118 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 116 115 1 Wendy Harrison wendy.harrison@sakilacustomer.org 119 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 117 116 1 Victoria Gibson victoria.gibson@sakilacustomer.org 120 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 118 117 1 Edith Mcdonald edith.mcdonald@sakilacustomer.org 121 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 119 118 1 Kim Cruz kim.cruz@sakilacustomer.org 122 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 120 119 1 Sherry Marshall sherry.marshall@sakilacustomer.org 123 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 121 120 2 Sylvia Ortiz sylvia.ortiz@sakilacustomer.org 124 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 122 121 1 Josephine Gomez josephine.gomez@sakilacustomer.org 125 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 123 122 1 Thelma Murray thelma.murray@sakilacustomer.org 126 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 124 123 2 Shannon Freeman shannon.freeman@sakilacustomer.org 127 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 125 124 1 Sheila Wells sheila.wells@sakilacustomer.org 128 TRUE 2006-02-14 2013-05-26 14:49:45 0
## 126 125 1 Ethel Webb ethel.webb@sakilacustomer.org 129 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 127 126 1 Ellen Simpson ellen.simpson@sakilacustomer.org 130 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 128 127 2 Elaine Stevens elaine.stevens@sakilacustomer.org 131 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 129 128 1 Marjorie Tucker marjorie.tucker@sakilacustomer.org 132 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 130 129 1 Carrie Porter carrie.porter@sakilacustomer.org 133 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 131 130 1 Charlotte Hunter charlotte.hunter@sakilacustomer.org 134 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 132 131 2 Monica Hicks monica.hicks@sakilacustomer.org 135 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 133 132 2 Esther Crawford esther.crawford@sakilacustomer.org 136 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 134 133 1 Pauline Henry pauline.henry@sakilacustomer.org 137 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 135 134 1 Emma Boyd emma.boyd@sakilacustomer.org 138 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 136 135 2 Juanita Mason juanita.mason@sakilacustomer.org 139 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 137 136 2 Anita Morales anita.morales@sakilacustomer.org 140 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 138 137 2 Rhonda Kennedy rhonda.kennedy@sakilacustomer.org 141 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 139 138 1 Hazel Warren hazel.warren@sakilacustomer.org 142 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 140 139 1 Amber Dixon amber.dixon@sakilacustomer.org 143 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 141 140 1 Eva Ramos eva.ramos@sakilacustomer.org 144 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 142 141 1 Debbie Reyes debbie.reyes@sakilacustomer.org 145 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 143 142 1 April Burns april.burns@sakilacustomer.org 146 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 144 143 1 Leslie Gordon leslie.gordon@sakilacustomer.org 147 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 145 144 1 Clara Shaw clara.shaw@sakilacustomer.org 148 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 146 145 1 Lucille Holmes lucille.holmes@sakilacustomer.org 149 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 147 146 1 Jamie Rice jamie.rice@sakilacustomer.org 150 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 148 147 2 Joanne Robertson joanne.robertson@sakilacustomer.org 151 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 149 148 1 Eleanor Hunt eleanor.hunt@sakilacustomer.org 152 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 150 149 1 Valerie Black valerie.black@sakilacustomer.org 153 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 151 150 2 Danielle Daniels danielle.daniels@sakilacustomer.org 154 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 152 151 2 Megan Palmer megan.palmer@sakilacustomer.org 155 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 153 152 1 Alicia Mills alicia.mills@sakilacustomer.org 156 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 154 153 2 Suzanne Nichols suzanne.nichols@sakilacustomer.org 157 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 155 154 2 Michele Grant michele.grant@sakilacustomer.org 158 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 156 155 1 Gail Knight gail.knight@sakilacustomer.org 159 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 157 156 1 Bertha Ferguson bertha.ferguson@sakilacustomer.org 160 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 158 157 2 Darlene Rose darlene.rose@sakilacustomer.org 161 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 159 158 1 Veronica Stone veronica.stone@sakilacustomer.org 162 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 160 159 1 Jill Hawkins jill.hawkins@sakilacustomer.org 163 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 161 160 2 Erin Dunn erin.dunn@sakilacustomer.org 164 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 162 161 1 Geraldine Perkins geraldine.perkins@sakilacustomer.org 165 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 163 162 2 Lauren Hudson lauren.hudson@sakilacustomer.org 166 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 164 163 1 Cathy Spencer cathy.spencer@sakilacustomer.org 167 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 165 164 2 Joann Gardner joann.gardner@sakilacustomer.org 168 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 166 165 2 Lorraine Stephens lorraine.stephens@sakilacustomer.org 169 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 167 166 1 Lynn Payne lynn.payne@sakilacustomer.org 170 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 168 167 2 Sally Pierce sally.pierce@sakilacustomer.org 171 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 169 168 1 Regina Berry regina.berry@sakilacustomer.org 172 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 170 169 2 Erica Matthews erica.matthews@sakilacustomer.org 173 TRUE 2006-02-14 2013-05-26 14:49:45 0
## 171 170 1 Beatrice Arnold beatrice.arnold@sakilacustomer.org 174 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 172 171 2 Dolores Wagner dolores.wagner@sakilacustomer.org 175 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 173 172 1 Bernice Willis bernice.willis@sakilacustomer.org 176 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 174 173 1 Audrey Ray audrey.ray@sakilacustomer.org 177 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 175 174 2 Yvonne Watkins yvonne.watkins@sakilacustomer.org 178 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 176 175 1 Annette Olson annette.olson@sakilacustomer.org 179 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 177 176 1 June Carroll june.carroll@sakilacustomer.org 180 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 178 177 2 Samantha Duncan samantha.duncan@sakilacustomer.org 181 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 179 178 2 Marion Snyder marion.snyder@sakilacustomer.org 182 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 180 179 1 Dana Hart dana.hart@sakilacustomer.org 183 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 181 180 2 Stacy Cunningham stacy.cunningham@sakilacustomer.org 184 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 182 181 2 Ana Bradley ana.bradley@sakilacustomer.org 185 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 183 182 1 Renee Lane renee.lane@sakilacustomer.org 186 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 184 183 2 Ida Andrews ida.andrews@sakilacustomer.org 187 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 185 184 1 Vivian Ruiz vivian.ruiz@sakilacustomer.org 188 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 186 185 1 Roberta Harper roberta.harper@sakilacustomer.org 189 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 187 186 2 Holly Fox holly.fox@sakilacustomer.org 190 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 188 187 2 Brittany Riley brittany.riley@sakilacustomer.org 191 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 189 188 1 Melanie Armstrong melanie.armstrong@sakilacustomer.org 192 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 190 189 1 Loretta Carpenter loretta.carpenter@sakilacustomer.org 193 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 191 190 2 Yolanda Weaver yolanda.weaver@sakilacustomer.org 194 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 192 191 1 Jeanette Greene jeanette.greene@sakilacustomer.org 195 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 193 192 1 Laurie Lawrence laurie.lawrence@sakilacustomer.org 196 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 194 193 2 Katie Elliott katie.elliott@sakilacustomer.org 197 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 195 194 2 Kristen Chavez kristen.chavez@sakilacustomer.org 198 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 196 195 1 Vanessa Sims vanessa.sims@sakilacustomer.org 199 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 197 196 1 Alma Austin alma.austin@sakilacustomer.org 200 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 198 197 2 Sue Peters sue.peters@sakilacustomer.org 201 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 199 198 2 Elsie Kelley elsie.kelley@sakilacustomer.org 202 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 200 199 2 Beth Franklin beth.franklin@sakilacustomer.org 203 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 201 200 2 Jeanne Lawson jeanne.lawson@sakilacustomer.org 204 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 202 201 1 Vicki Fields vicki.fields@sakilacustomer.org 205 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 203 202 2 Carla Gutierrez carla.gutierrez@sakilacustomer.org 206 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 204 203 1 Tara Ryan tara.ryan@sakilacustomer.org 207 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 205 204 1 Rosemary Schmidt rosemary.schmidt@sakilacustomer.org 208 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 206 205 2 Eileen Carr eileen.carr@sakilacustomer.org 209 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 207 206 1 Terri Vasquez terri.vasquez@sakilacustomer.org 210 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 208 207 1 Gertrude Castillo gertrude.castillo@sakilacustomer.org 211 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 209 208 1 Lucy Wheeler lucy.wheeler@sakilacustomer.org 212 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 210 209 2 Tonya Chapman tonya.chapman@sakilacustomer.org 213 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 211 210 2 Ella Oliver ella.oliver@sakilacustomer.org 214 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 212 211 1 Stacey Montgomery stacey.montgomery@sakilacustomer.org 215 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 213 212 2 Wilma Richards wilma.richards@sakilacustomer.org 216 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 214 213 1 Gina Williamson gina.williamson@sakilacustomer.org 217 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 215 214 1 Kristin Johnston kristin.johnston@sakilacustomer.org 218 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 216 215 2 Jessie Banks jessie.banks@sakilacustomer.org 219 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 217 216 1 Natalie Meyer natalie.meyer@sakilacustomer.org 220 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 218 217 2 Agnes Bishop agnes.bishop@sakilacustomer.org 221 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 219 218 1 Vera Mccoy vera.mccoy@sakilacustomer.org 222 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 220 219 2 Willie Howell willie.howell@sakilacustomer.org 223 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 221 220 2 Charlene Alvarez charlene.alvarez@sakilacustomer.org 224 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 222 221 1 Bessie Morrison bessie.morrison@sakilacustomer.org 225 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 223 222 2 Delores Hansen delores.hansen@sakilacustomer.org 226 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 224 223 1 Melinda Fernandez melinda.fernandez@sakilacustomer.org 227 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 225 224 2 Pearl Garza pearl.garza@sakilacustomer.org 228 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 226 225 1 Arlene Harvey arlene.harvey@sakilacustomer.org 229 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 227 226 2 Maureen Little maureen.little@sakilacustomer.org 230 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 228 227 1 Colleen Burton colleen.burton@sakilacustomer.org 231 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 229 228 2 Allison Stanley allison.stanley@sakilacustomer.org 232 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 230 229 1 Tamara Nguyen tamara.nguyen@sakilacustomer.org 233 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 231 230 2 Joy George joy.george@sakilacustomer.org 234 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 232 231 1 Georgia Jacobs georgia.jacobs@sakilacustomer.org 235 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 233 232 2 Constance Reid constance.reid@sakilacustomer.org 236 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 234 233 2 Lillie Kim lillie.kim@sakilacustomer.org 237 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 235 234 1 Claudia Fuller claudia.fuller@sakilacustomer.org 238 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 236 235 1 Jackie Lynch jackie.lynch@sakilacustomer.org 239 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 237 236 1 Marcia Dean marcia.dean@sakilacustomer.org 240 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 238 237 1 Tanya Gilbert tanya.gilbert@sakilacustomer.org 241 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 239 238 1 Nellie Garrett nellie.garrett@sakilacustomer.org 242 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 240 239 2 Minnie Romero minnie.romero@sakilacustomer.org 243 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 241 240 1 Marlene Welch marlene.welch@sakilacustomer.org 244 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 242 241 2 Heidi Larson heidi.larson@sakilacustomer.org 245 TRUE 2006-02-14 2013-05-26 14:49:45 0
## 243 242 1 Glenda Frazier glenda.frazier@sakilacustomer.org 246 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 244 243 1 Lydia Burke lydia.burke@sakilacustomer.org 247 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 245 244 2 Viola Hanson viola.hanson@sakilacustomer.org 248 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 246 245 1 Courtney Day courtney.day@sakilacustomer.org 249 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 247 246 1 Marian Mendoza marian.mendoza@sakilacustomer.org 250 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 248 247 1 Stella Moreno stella.moreno@sakilacustomer.org 251 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 249 248 1 Caroline Bowman caroline.bowman@sakilacustomer.org 252 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 250 249 2 Dora Medina dora.medina@sakilacustomer.org 253 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 251 250 2 Jo Fowler jo.fowler@sakilacustomer.org 254 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 252 251 2 Vickie Brewer vickie.brewer@sakilacustomer.org 255 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 253 252 2 Mattie Hoffman mattie.hoffman@sakilacustomer.org 256 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 254 253 1 Terry Carlson terry.carlson@sakilacustomer.org 258 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 255 254 2 Maxine Silva maxine.silva@sakilacustomer.org 259 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 256 255 2 Irma Pearson irma.pearson@sakilacustomer.org 260 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 257 256 2 Mabel Holland mabel.holland@sakilacustomer.org 261 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 258 257 2 Marsha Douglas marsha.douglas@sakilacustomer.org 262 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 259 258 1 Myrtle Fleming myrtle.fleming@sakilacustomer.org 263 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 260 259 2 Lena Jensen lena.jensen@sakilacustomer.org 264 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 261 260 1 Christy Vargas christy.vargas@sakilacustomer.org 265 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 262 261 1 Deanna Byrd deanna.byrd@sakilacustomer.org 266 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 263 262 2 Patsy Davidson patsy.davidson@sakilacustomer.org 267 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 264 263 1 Hilda Hopkins hilda.hopkins@sakilacustomer.org 268 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 265 264 1 Gwendolyn May gwendolyn.may@sakilacustomer.org 269 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 266 265 2 Jennie Terry jennie.terry@sakilacustomer.org 270 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 267 266 2 Nora Herrera nora.herrera@sakilacustomer.org 271 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 268 267 1 Margie Wade margie.wade@sakilacustomer.org 272 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 269 268 1 Nina Soto nina.soto@sakilacustomer.org 273 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 270 269 1 Cassandra Walters cassandra.walters@sakilacustomer.org 274 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 271 270 1 Leah Curtis leah.curtis@sakilacustomer.org 275 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 272 271 1 Penny Neal penny.neal@sakilacustomer.org 276 TRUE 2006-02-14 2013-05-26 14:49:45 0
## 273 272 1 Kay Caldwell kay.caldwell@sakilacustomer.org 277 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 274 273 2 Priscilla Lowe priscilla.lowe@sakilacustomer.org 278 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 275 274 1 Naomi Jennings naomi.jennings@sakilacustomer.org 279 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 276 275 2 Carole Barnett carole.barnett@sakilacustomer.org 280 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 277 276 1 Brandy Graves brandy.graves@sakilacustomer.org 281 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 278 277 2 Olga Jimenez olga.jimenez@sakilacustomer.org 282 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 279 278 2 Billie Horton billie.horton@sakilacustomer.org 283 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 280 279 2 Dianne Shelton dianne.shelton@sakilacustomer.org 284 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 281 280 2 Tracey Barrett tracey.barrett@sakilacustomer.org 285 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 282 281 2 Leona Obrien leona.obrien@sakilacustomer.org 286 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 283 282 2 Jenny Castro jenny.castro@sakilacustomer.org 287 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 284 283 1 Felicia Sutton felicia.sutton@sakilacustomer.org 288 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 285 284 1 Sonia Gregory sonia.gregory@sakilacustomer.org 289 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 286 285 1 Miriam Mckinney miriam.mckinney@sakilacustomer.org 290 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 287 286 1 Velma Lucas velma.lucas@sakilacustomer.org 291 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 288 287 2 Becky Miles becky.miles@sakilacustomer.org 292 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 289 288 1 Bobbie Craig bobbie.craig@sakilacustomer.org 293 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 290 289 1 Violet Rodriquez violet.rodriquez@sakilacustomer.org 294 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 291 290 1 Kristina Chambers kristina.chambers@sakilacustomer.org 295 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 292 291 1 Toni Holt toni.holt@sakilacustomer.org 296 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 293 292 2 Misty Lambert misty.lambert@sakilacustomer.org 297 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 294 293 2 Mae Fletcher mae.fletcher@sakilacustomer.org 298 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 295 294 2 Shelly Watts shelly.watts@sakilacustomer.org 299 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 296 295 1 Daisy Bates daisy.bates@sakilacustomer.org 300 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 297 296 2 Ramona Hale ramona.hale@sakilacustomer.org 301 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 298 297 1 Sherri Rhodes sherri.rhodes@sakilacustomer.org 302 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 299 298 1 Erika Pena erika.pena@sakilacustomer.org 303 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 300 299 2 James Gannon james.gannon@sakilacustomer.org 304 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 301 300 1 John Farnsworth john.farnsworth@sakilacustomer.org 305 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 302 301 2 Robert Baughman robert.baughman@sakilacustomer.org 306 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 303 302 1 Michael Silverman michael.silverman@sakilacustomer.org 307 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 304 303 2 William Satterfield william.satterfield@sakilacustomer.org 308 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 305 304 2 David Royal david.royal@sakilacustomer.org 309 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 306 305 1 Richard Mccrary richard.mccrary@sakilacustomer.org 310 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 307 306 1 Charles Kowalski charles.kowalski@sakilacustomer.org 311 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 308 307 2 Joseph Joy joseph.joy@sakilacustomer.org 312 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 309 308 1 Thomas Grigsby thomas.grigsby@sakilacustomer.org 313 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 310 309 1 Christopher Greco christopher.greco@sakilacustomer.org 314 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 311 310 2 Daniel Cabral daniel.cabral@sakilacustomer.org 315 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 312 311 2 Paul Trout paul.trout@sakilacustomer.org 316 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 313 312 2 Mark Rinehart mark.rinehart@sakilacustomer.org 317 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 314 313 2 Donald Mahon donald.mahon@sakilacustomer.org 318 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 315 314 1 George Linton george.linton@sakilacustomer.org 319 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 316 315 2 Kenneth Gooden kenneth.gooden@sakilacustomer.org 320 TRUE 2006-02-14 2013-05-26 14:49:45 0
## 317 316 1 Steven Curley steven.curley@sakilacustomer.org 321 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 318 317 2 Edward Baugh edward.baugh@sakilacustomer.org 322 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 319 318 1 Brian Wyman brian.wyman@sakilacustomer.org 323 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 320 319 2 Ronald Weiner ronald.weiner@sakilacustomer.org 324 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 321 320 2 Anthony Schwab anthony.schwab@sakilacustomer.org 325 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 322 321 1 Kevin Schuler kevin.schuler@sakilacustomer.org 326 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 323 322 1 Jason Morrissey jason.morrissey@sakilacustomer.org 327 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 324 323 2 Matthew Mahan matthew.mahan@sakilacustomer.org 328 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 325 324 2 Gary Coy gary.coy@sakilacustomer.org 329 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 326 325 1 Timothy Bunn timothy.bunn@sakilacustomer.org 330 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 327 326 1 Jose Andrew jose.andrew@sakilacustomer.org 331 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 328 327 2 Larry Thrasher larry.thrasher@sakilacustomer.org 332 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 329 328 2 Jeffrey Spear jeffrey.spear@sakilacustomer.org 333 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 330 329 2 Frank Waggoner frank.waggoner@sakilacustomer.org 334 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 331 330 1 Scott Shelley scott.shelley@sakilacustomer.org 335 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 332 331 1 Eric Robert eric.robert@sakilacustomer.org 336 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 333 332 1 Stephen Qualls stephen.qualls@sakilacustomer.org 337 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 334 333 2 Andrew Purdy andrew.purdy@sakilacustomer.org 338 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 335 334 2 Raymond Mcwhorter raymond.mcwhorter@sakilacustomer.org 339 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 336 335 1 Gregory Mauldin gregory.mauldin@sakilacustomer.org 340 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 337 336 1 Joshua Mark joshua.mark@sakilacustomer.org 341 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 338 337 1 Jerry Jordon jerry.jordon@sakilacustomer.org 342 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 339 338 1 Dennis Gilman dennis.gilman@sakilacustomer.org 343 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 340 339 2 Walter Perryman walter.perryman@sakilacustomer.org 344 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 341 340 1 Patrick Newsom patrick.newsom@sakilacustomer.org 345 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 342 341 1 Peter Menard peter.menard@sakilacustomer.org 346 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 343 342 1 Harold Martino harold.martino@sakilacustomer.org 347 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 344 343 1 Douglas Graf douglas.graf@sakilacustomer.org 348 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 345 344 1 Henry Billingsley henry.billingsley@sakilacustomer.org 349 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 346 345 1 Carl Artis carl.artis@sakilacustomer.org 350 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 347 346 1 Arthur Simpkins arthur.simpkins@sakilacustomer.org 351 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 348 347 2 Ryan Salisbury ryan.salisbury@sakilacustomer.org 352 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 349 348 2 Roger Quintanilla roger.quintanilla@sakilacustomer.org 353 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 350 349 2 Joe Gilliland joe.gilliland@sakilacustomer.org 354 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 351 350 1 Juan Fraley juan.fraley@sakilacustomer.org 355 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 352 351 1 Jack Foust jack.foust@sakilacustomer.org 356 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 353 352 1 Albert Crouse albert.crouse@sakilacustomer.org 357 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 354 353 1 Jonathan Scarborough jonathan.scarborough@sakilacustomer.org 358 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 355 354 2 Justin Ngo justin.ngo@sakilacustomer.org 359 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 356 355 2 Terry Grissom terry.grissom@sakilacustomer.org 360 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 357 356 2 Gerald Fultz gerald.fultz@sakilacustomer.org 361 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 358 357 1 Keith Rico keith.rico@sakilacustomer.org 362 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 359 358 2 Samuel Marlow samuel.marlow@sakilacustomer.org 363 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 360 359 2 Willie Markham willie.markham@sakilacustomer.org 364 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 361 360 2 Ralph Madrigal ralph.madrigal@sakilacustomer.org 365 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 362 361 2 Lawrence Lawton lawrence.lawton@sakilacustomer.org 366 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 363 362 1 Nicholas Barfield nicholas.barfield@sakilacustomer.org 367 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 364 363 2 Roy Whiting roy.whiting@sakilacustomer.org 368 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 365 364 1 Benjamin Varney benjamin.varney@sakilacustomer.org 369 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 366 365 2 Bruce Schwarz bruce.schwarz@sakilacustomer.org 370 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 367 366 1 Brandon Huey brandon.huey@sakilacustomer.org 371 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 368 367 1 Adam Gooch adam.gooch@sakilacustomer.org 372 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 369 368 1 Harry Arce harry.arce@sakilacustomer.org 373 TRUE 2006-02-14 2013-05-26 14:49:45 0
## 370 369 2 Fred Wheat fred.wheat@sakilacustomer.org 374 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 371 370 2 Wayne Truong wayne.truong@sakilacustomer.org 375 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 372 371 1 Billy Poulin billy.poulin@sakilacustomer.org 376 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 373 372 2 Steve Mackenzie steve.mackenzie@sakilacustomer.org 377 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 374 373 1 Louis Leone louis.leone@sakilacustomer.org 378 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 375 374 2 Jeremy Hurtado jeremy.hurtado@sakilacustomer.org 379 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 376 375 2 Aaron Selby aaron.selby@sakilacustomer.org 380 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 377 376 1 Randy Gaither randy.gaither@sakilacustomer.org 381 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 378 377 1 Howard Fortner howard.fortner@sakilacustomer.org 382 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 379 378 1 Eugene Culpepper eugene.culpepper@sakilacustomer.org 383 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 380 379 1 Carlos Coughlin carlos.coughlin@sakilacustomer.org 384 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 381 380 1 Russell Brinson russell.brinson@sakilacustomer.org 385 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 382 381 2 Bobby Boudreau bobby.boudreau@sakilacustomer.org 386 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 383 382 2 Victor Barkley victor.barkley@sakilacustomer.org 387 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 384 383 1 Martin Bales martin.bales@sakilacustomer.org 388 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 385 384 2 Ernest Stepp ernest.stepp@sakilacustomer.org 389 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 386 385 1 Phillip Holm phillip.holm@sakilacustomer.org 390 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 387 386 1 Todd Tan todd.tan@sakilacustomer.org 391 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 388 387 2 Jesse Schilling jesse.schilling@sakilacustomer.org 392 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 389 388 2 Craig Morrell craig.morrell@sakilacustomer.org 393 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 390 389 1 Alan Kahn alan.kahn@sakilacustomer.org 394 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 391 390 1 Shawn Heaton shawn.heaton@sakilacustomer.org 395 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 392 391 1 Clarence Gamez clarence.gamez@sakilacustomer.org 396 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 393 392 2 Sean Douglass sean.douglass@sakilacustomer.org 397 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 394 393 1 Philip Causey philip.causey@sakilacustomer.org 398 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 395 394 2 Chris Brothers chris.brothers@sakilacustomer.org 399 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 396 395 2 Johnny Turpin johnny.turpin@sakilacustomer.org 400 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 397 396 1 Earl Shanks earl.shanks@sakilacustomer.org 401 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 398 397 1 Jimmy Schrader jimmy.schrader@sakilacustomer.org 402 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 399 398 1 Antonio Meek antonio.meek@sakilacustomer.org 403 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 400 399 1 Danny Isom danny.isom@sakilacustomer.org 404 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 401 400 2 Bryan Hardison bryan.hardison@sakilacustomer.org 405 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 402 401 2 Tony Carranza tony.carranza@sakilacustomer.org 406 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 403 402 1 Luis Yanez luis.yanez@sakilacustomer.org 407 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 404 403 1 Mike Way mike.way@sakilacustomer.org 408 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 405 404 2 Stanley Scroggins stanley.scroggins@sakilacustomer.org 409 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 406 405 1 Leonard Schofield leonard.schofield@sakilacustomer.org 410 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 407 406 1 Nathan Runyon nathan.runyon@sakilacustomer.org 411 TRUE 2006-02-14 2013-05-26 14:49:45 0
## 408 407 1 Dale Ratcliff dale.ratcliff@sakilacustomer.org 412 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 409 408 1 Manuel Murrell manuel.murrell@sakilacustomer.org 413 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 410 409 2 Rodney Moeller rodney.moeller@sakilacustomer.org 414 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 411 410 2 Curtis Irby curtis.irby@sakilacustomer.org 415 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 412 411 1 Norman Currier norman.currier@sakilacustomer.org 416 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 413 412 2 Allen Butterfield allen.butterfield@sakilacustomer.org 417 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 414 413 2 Marvin Yee marvin.yee@sakilacustomer.org 418 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 415 414 1 Vincent Ralston vincent.ralston@sakilacustomer.org 419 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 416 415 1 Glenn Pullen glenn.pullen@sakilacustomer.org 420 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 417 416 2 Jeffery Pinson jeffery.pinson@sakilacustomer.org 421 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 418 417 1 Travis Estep travis.estep@sakilacustomer.org 422 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 419 418 2 Jeff East jeff.east@sakilacustomer.org 423 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 420 419 1 Chad Carbone chad.carbone@sakilacustomer.org 424 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 421 420 1 Jacob Lance jacob.lance@sakilacustomer.org 425 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 422 421 1 Lee Hawks lee.hawks@sakilacustomer.org 426 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 423 422 1 Melvin Ellington melvin.ellington@sakilacustomer.org 427 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 424 423 2 Alfred Casillas alfred.casillas@sakilacustomer.org 428 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 425 424 2 Kyle Spurlock kyle.spurlock@sakilacustomer.org 429 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 426 425 2 Francis Sikes francis.sikes@sakilacustomer.org 430 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 427 426 1 Bradley Motley bradley.motley@sakilacustomer.org 431 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 428 427 2 Jesus Mccartney jesus.mccartney@sakilacustomer.org 432 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 429 428 2 Herbert Kruger herbert.kruger@sakilacustomer.org 433 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 430 429 2 Frederick Isbell frederick.isbell@sakilacustomer.org 434 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 431 430 1 Ray Houle ray.houle@sakilacustomer.org 435 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 432 431 2 Joel Francisco joel.francisco@sakilacustomer.org 436 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 433 432 1 Edwin Burk edwin.burk@sakilacustomer.org 437 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 434 433 1 Don Bone don.bone@sakilacustomer.org 438 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 435 434 1 Eddie Tomlin eddie.tomlin@sakilacustomer.org 439 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 436 435 2 Ricky Shelby ricky.shelby@sakilacustomer.org 440 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 437 436 1 Troy Quigley troy.quigley@sakilacustomer.org 441 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 438 437 2 Randall Neumann randall.neumann@sakilacustomer.org 442 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 439 438 1 Barry Lovelace barry.lovelace@sakilacustomer.org 443 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 440 439 2 Alexander Fennell alexander.fennell@sakilacustomer.org 444 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 441 440 1 Bernard Colby bernard.colby@sakilacustomer.org 445 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 442 441 1 Mario Cheatham mario.cheatham@sakilacustomer.org 446 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 443 442 1 Leroy Bustamante leroy.bustamante@sakilacustomer.org 447 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 444 443 2 Francisco Skidmore francisco.skidmore@sakilacustomer.org 448 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 445 444 2 Marcus Hidalgo marcus.hidalgo@sakilacustomer.org 449 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 446 445 1 Micheal Forman micheal.forman@sakilacustomer.org 450 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 447 446 2 Theodore Culp theodore.culp@sakilacustomer.org 451 TRUE 2006-02-14 2013-05-26 14:49:45 0
## 448 447 1 Clifford Bowens clifford.bowens@sakilacustomer.org 452 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 449 448 1 Miguel Betancourt miguel.betancourt@sakilacustomer.org 453 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 450 449 2 Oscar Aquino oscar.aquino@sakilacustomer.org 454 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 451 450 1 Jay Robb jay.robb@sakilacustomer.org 455 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 452 451 1 Jim Rea jim.rea@sakilacustomer.org 456 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 453 452 1 Tom Milner tom.milner@sakilacustomer.org 457 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 454 453 1 Calvin Martel calvin.martel@sakilacustomer.org 458 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 455 454 2 Alex Gresham alex.gresham@sakilacustomer.org 459 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 456 455 2 Jon Wiles jon.wiles@sakilacustomer.org 460 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 457 456 2 Ronnie Ricketts ronnie.ricketts@sakilacustomer.org 461 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 458 457 2 Bill Gavin bill.gavin@sakilacustomer.org 462 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 459 458 1 Lloyd Dowd lloyd.dowd@sakilacustomer.org 463 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 460 459 1 Tommy Collazo tommy.collazo@sakilacustomer.org 464 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 461 460 1 Leon Bostic leon.bostic@sakilacustomer.org 465 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 462 461 1 Derek Blakely derek.blakely@sakilacustomer.org 466 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 463 462 2 Warren Sherrod warren.sherrod@sakilacustomer.org 467 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 464 463 2 Darrell Power darrell.power@sakilacustomer.org 468 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 465 464 1 Jerome Kenyon jerome.kenyon@sakilacustomer.org 469 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 466 465 1 Floyd Gandy floyd.gandy@sakilacustomer.org 470 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 467 466 1 Leo Ebert leo.ebert@sakilacustomer.org 471 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 468 467 2 Alvin Deloach alvin.deloach@sakilacustomer.org 472 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 469 468 1 Tim Cary tim.cary@sakilacustomer.org 473 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 470 469 2 Wesley Bull wesley.bull@sakilacustomer.org 474 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 471 470 1 Gordon Allard gordon.allard@sakilacustomer.org 475 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 472 471 1 Dean Sauer dean.sauer@sakilacustomer.org 476 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 473 472 1 Greg Robins greg.robins@sakilacustomer.org 477 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 474 473 2 Jorge Olivares jorge.olivares@sakilacustomer.org 478 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 475 474 2 Dustin Gillette dustin.gillette@sakilacustomer.org 479 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 476 475 2 Pedro Chestnut pedro.chestnut@sakilacustomer.org 480 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 477 476 1 Derrick Bourque derrick.bourque@sakilacustomer.org 481 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 478 477 1 Dan Paine dan.paine@sakilacustomer.org 482 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 479 478 1 Lewis Lyman lewis.lyman@sakilacustomer.org 483 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 480 479 1 Zachary Hite zachary.hite@sakilacustomer.org 484 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 481 480 1 Corey Hauser corey.hauser@sakilacustomer.org 485 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 482 481 1 Herman Devore herman.devore@sakilacustomer.org 486 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 483 482 1 Maurice Crawley maurice.crawley@sakilacustomer.org 487 TRUE 2006-02-14 2013-05-26 14:49:45 0
## 484 483 2 Vernon Chapa vernon.chapa@sakilacustomer.org 488 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 485 484 1 Roberto Vu roberto.vu@sakilacustomer.org 489 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 486 485 1 Clyde Tobias clyde.tobias@sakilacustomer.org 490 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 487 486 1 Glen Talbert glen.talbert@sakilacustomer.org 491 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 488 487 2 Hector Poindexter hector.poindexter@sakilacustomer.org 492 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 489 488 2 Shane Millard shane.millard@sakilacustomer.org 493 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 490 489 1 Ricardo Meador ricardo.meador@sakilacustomer.org 494 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 491 490 1 Sam Mcduffie sam.mcduffie@sakilacustomer.org 495 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 492 491 2 Rick Mattox rick.mattox@sakilacustomer.org 496 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 493 492 2 Lester Kraus lester.kraus@sakilacustomer.org 497 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 494 493 1 Brent Harkins brent.harkins@sakilacustomer.org 498 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 495 494 2 Ramon Choate ramon.choate@sakilacustomer.org 499 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 496 495 2 Charlie Bess charlie.bess@sakilacustomer.org 500 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 497 496 2 Tyler Wren tyler.wren@sakilacustomer.org 501 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 498 497 2 Gilbert Sledge gilbert.sledge@sakilacustomer.org 502 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 499 498 1 Gene Sanborn gene.sanborn@sakilacustomer.org 503 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 500 499 2 Marc Outlaw marc.outlaw@sakilacustomer.org 504 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 501 500 1 Reginald Kinder reginald.kinder@sakilacustomer.org 505 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 502 501 1 Ruben Geary ruben.geary@sakilacustomer.org 506 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 503 502 1 Brett Cornwell brett.cornwell@sakilacustomer.org 507 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 504 503 1 Angel Barclay angel.barclay@sakilacustomer.org 508 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 505 504 1 Nathaniel Adam nathaniel.adam@sakilacustomer.org 509 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 506 505 1 Rafael Abney rafael.abney@sakilacustomer.org 510 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 507 506 2 Leslie Seward leslie.seward@sakilacustomer.org 511 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 508 507 2 Edgar Rhoads edgar.rhoads@sakilacustomer.org 512 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 509 508 2 Milton Howland milton.howland@sakilacustomer.org 513 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 510 509 1 Raul Fortier raul.fortier@sakilacustomer.org 514 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 511 510 2 Ben Easter ben.easter@sakilacustomer.org 515 TRUE 2006-02-14 2013-05-26 14:49:45 0
## 512 511 1 Chester Benner chester.benner@sakilacustomer.org 516 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 513 512 1 Cecil Vines cecil.vines@sakilacustomer.org 517 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 514 513 2 Duane Tubbs duane.tubbs@sakilacustomer.org 519 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 515 514 2 Franklin Troutman franklin.troutman@sakilacustomer.org 520 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 516 515 1 Andre Rapp andre.rapp@sakilacustomer.org 521 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 517 516 2 Elmer Noe elmer.noe@sakilacustomer.org 522 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 518 517 2 Brad Mccurdy brad.mccurdy@sakilacustomer.org 523 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 519 518 1 Gabriel Harder gabriel.harder@sakilacustomer.org 524 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 520 519 2 Ron Deluca ron.deluca@sakilacustomer.org 525 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 521 520 2 Mitchell Westmoreland mitchell.westmoreland@sakilacustomer.org 526 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 522 521 2 Roland South roland.south@sakilacustomer.org 527 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 523 522 2 Arnold Havens arnold.havens@sakilacustomer.org 528 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 524 523 1 Harvey Guajardo harvey.guajardo@sakilacustomer.org 529 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 525 525 2 Adrian Clary adrian.clary@sakilacustomer.org 531 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 526 526 2 Karl Seal karl.seal@sakilacustomer.org 532 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 527 527 1 Cory Meehan cory.meehan@sakilacustomer.org 533 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 528 528 1 Claude Herzog claude.herzog@sakilacustomer.org 534 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 529 529 2 Erik Guillen erik.guillen@sakilacustomer.org 535 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 530 530 2 Darryl Ashcraft darryl.ashcraft@sakilacustomer.org 536 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 531 531 2 Jamie Waugh jamie.waugh@sakilacustomer.org 537 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 532 532 2 Neil Renner neil.renner@sakilacustomer.org 538 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 533 533 1 Jessie Milam jessie.milam@sakilacustomer.org 539 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 534 534 1 Christian Jung christian.jung@sakilacustomer.org 540 TRUE 2006-02-14 2013-05-26 14:49:45 0
## 535 535 1 Javier Elrod javier.elrod@sakilacustomer.org 541 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 536 536 2 Fernando Churchill fernando.churchill@sakilacustomer.org 542 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 537 537 2 Clinton Buford clinton.buford@sakilacustomer.org 543 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 538 538 2 Ted Breaux ted.breaux@sakilacustomer.org 544 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 539 539 1 Mathew Bolin mathew.bolin@sakilacustomer.org 545 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 540 540 1 Tyrone Asher tyrone.asher@sakilacustomer.org 546 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 541 541 2 Darren Windham darren.windham@sakilacustomer.org 547 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 542 542 2 Lonnie Tirado lonnie.tirado@sakilacustomer.org 548 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 543 543 1 Lance Pemberton lance.pemberton@sakilacustomer.org 549 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 544 544 2 Cody Nolen cody.nolen@sakilacustomer.org 550 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 545 545 2 Julio Noland julio.noland@sakilacustomer.org 551 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 546 546 1 Kelly Knott kelly.knott@sakilacustomer.org 552 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 547 547 1 Kurt Emmons kurt.emmons@sakilacustomer.org 553 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 548 548 1 Allan Cornish allan.cornish@sakilacustomer.org 554 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 549 549 1 Nelson Christenson nelson.christenson@sakilacustomer.org 555 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 550 550 2 Guy Brownlee guy.brownlee@sakilacustomer.org 556 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 551 551 2 Clayton Barbee clayton.barbee@sakilacustomer.org 557 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 552 552 2 Hugh Waldrop hugh.waldrop@sakilacustomer.org 558 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 553 553 1 Max Pitt max.pitt@sakilacustomer.org 559 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 554 554 1 Dwayne Olvera dwayne.olvera@sakilacustomer.org 560 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 555 555 1 Dwight Lombardi dwight.lombardi@sakilacustomer.org 561 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 556 556 2 Armando Gruber armando.gruber@sakilacustomer.org 562 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 557 557 1 Felix Gaffney felix.gaffney@sakilacustomer.org 563 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 558 558 1 Jimmie Eggleston jimmie.eggleston@sakilacustomer.org 564 TRUE 2006-02-14 2013-05-26 14:49:45 0
## 559 559 2 Everett Banda everett.banda@sakilacustomer.org 565 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 560 560 1 Jordan Archuleta jordan.archuleta@sakilacustomer.org 566 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 561 561 2 Ian Still ian.still@sakilacustomer.org 567 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 562 562 1 Wallace Slone wallace.slone@sakilacustomer.org 568 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 563 563 2 Ken Prewitt ken.prewitt@sakilacustomer.org 569 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 564 564 2 Bob Pfeiffer bob.pfeiffer@sakilacustomer.org 570 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 565 565 2 Jaime Nettles jaime.nettles@sakilacustomer.org 571 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 566 566 1 Casey Mena casey.mena@sakilacustomer.org 572 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 567 567 2 Alfredo Mcadams alfredo.mcadams@sakilacustomer.org 573 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 568 568 2 Alberto Henning alberto.henning@sakilacustomer.org 574 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 569 569 2 Dave Gardiner dave.gardiner@sakilacustomer.org 575 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 570 570 2 Ivan Cromwell ivan.cromwell@sakilacustomer.org 576 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 571 571 2 Johnnie Chisholm johnnie.chisholm@sakilacustomer.org 577 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 572 572 1 Sidney Burleson sidney.burleson@sakilacustomer.org 578 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 573 573 1 Byron Box byron.box@sakilacustomer.org 579 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 574 574 2 Julian Vest julian.vest@sakilacustomer.org 580 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 575 575 2 Isaac Oglesby isaac.oglesby@sakilacustomer.org 581 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 576 576 2 Morris Mccarter morris.mccarter@sakilacustomer.org 582 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 577 577 2 Clifton Malcolm clifton.malcolm@sakilacustomer.org 583 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 578 578 2 Willard Lumpkin willard.lumpkin@sakilacustomer.org 584 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 579 579 2 Daryl Larue daryl.larue@sakilacustomer.org 585 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 580 580 1 Ross Grey ross.grey@sakilacustomer.org 586 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 581 581 1 Virgil Wofford virgil.wofford@sakilacustomer.org 587 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 582 582 2 Andy Vanhorn andy.vanhorn@sakilacustomer.org 588 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 583 583 1 Marshall Thorn marshall.thorn@sakilacustomer.org 589 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 584 584 2 Salvador Teel salvador.teel@sakilacustomer.org 590 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 585 585 1 Perry Swafford perry.swafford@sakilacustomer.org 591 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 586 586 1 Kirk Stclair kirk.stclair@sakilacustomer.org 592 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 587 587 1 Sergio Stanfield sergio.stanfield@sakilacustomer.org 593 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 588 588 1 Marion Ocampo marion.ocampo@sakilacustomer.org 594 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 589 589 1 Tracy Herrmann tracy.herrmann@sakilacustomer.org 595 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 590 590 2 Seth Hannon seth.hannon@sakilacustomer.org 596 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 591 591 1 Kent Arsenault kent.arsenault@sakilacustomer.org 597 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 592 592 1 Terrance Roush terrance.roush@sakilacustomer.org 598 TRUE 2006-02-14 2013-05-26 14:49:45 0
## 593 593 2 Rene Mcalister rene.mcalister@sakilacustomer.org 599 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 594 594 1 Eduardo Hiatt eduardo.hiatt@sakilacustomer.org 600 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 595 595 1 Terrence Gunderson terrence.gunderson@sakilacustomer.org 601 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 596 596 1 Enrique Forsythe enrique.forsythe@sakilacustomer.org 602 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 597 597 1 Freddie Duggan freddie.duggan@sakilacustomer.org 603 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 598 598 1 Wade Delvalle wade.delvalle@sakilacustomer.org 604 TRUE 2006-02-14 2013-05-26 14:49:45 1
## 599 599 2 Austin Cintron austin.cintron@sakilacustomer.org 605 TRUE 2006-02-14 2013-05-26 14:49:45 1
-- Select queries from the customer table where the first name is Jared
SELECT *
FROM customer
WHERE first_name = 'Jared';
## customer_id store_id first_name last_name email address_id activebool create_date last_update active
## 1 524 1 Jared Ely jared.ely@sakilacustomer.org 530 TRUE 2006-02-14 2013-05-26 14:49:45 1
Problem: What’s the email for the customer with the name Nancy Thomas?
-- Select the email for the customer with the name Nancy Thomas
SELECT email
FROM customer
WHERE first_name = 'Nancy' AND last_name = 'Thomas';
## email
## 1 nancy.thomas@sakilacustomer.org
Problem: Could you provide a description for the movie “Outlaw Hanky”?
-- Select the description for the movie "Outlaw Hanky"
SELECT description
FROM film
WHERE title = 'Outlaw Hanky';
## description
## 1 A Thoughtful Story of a Astronaut And a Composer who must Conquer a Dog in The Sahara Desert
Problem: Could you provide the phone number for the customer who lives at “259 Ipoh Drive”?
-- Select the customer's phone number who lives at "259 Ipoh Drive"
SELECT phone
FROM address
WHERE address = '259 Ipoh Drive';
## phone
## 1 419009857119