Download and extract data from preset online sources, specifying the name of the dataset.

download_data(dataset = NULL)

Arguments

dataset

String containing the name of the dataset. Valid values include: - "hk_accidents" - "hk_casualties" - "hk_vehicles"

Value

A data frame is returned.

Details

This supersedes the method for pulling hk_accidents, hk_casualties, and hk_vehicles due to the size of the data file. Refer to https://hong-kong-districts-info.github.io/hkdatasets/ to access the data documentation for three datsets.

Examples

# \donttest{ # You can download and return a dataset with the following code: download_data(dataset = "hk_vehicles")
#> OBJECTID Serial_No_ Year Vehicle_Class #> 1 1 1 2014 Private car #> 2 2 2 2014 Public franchised bus #> 3 3 3 2014 Taxi #> 4 4 4 2014 Taxi #> 5 5 4 2014 Taxi #> 6 6 4 2014 Taxi #> 7 7 5 2014 Motorcycle #> 8 8 6 2014 Private car #> 9 9 7 2014 Light goods vehicle #> 10 10 7 2014 Motorcycle #> 11 11 8 2014 Taxi #> 12 12 8 2014 Private car #> 13 13 9 2014 Bicycle #> 14 14 10 2014 Light goods vehicle #> 15 15 11 2014 Heavy goods vehicle #> 16 16 12 2014 Private car #> 17 17 13 2014 Taxi #> 18 18 13 2014 Motorcycle #> 19 19 14 2014 Motorcycle #> 20 20 15 2014 Motorcycle #> 21 21 16 2014 Medium goods vehicle #> 22 22 16 2014 Tram #> 23 23 17 2014 Motorcycle #> 24 24 18 2014 Motorcycle #> 25 25 18 2014 Light goods vehicle #> 26 26 19 2014 Motorcycle #> 27 27 20 2014 Public light bus #> 28 28 20 2014 Public franchised bus #> 29 29 21 2014 Private car #> 30 30 22 2014 Private car #> 31 31 22 2014 Taxi #> 32 32 23 2014 Light goods vehicle #> 33 33 24 2014 Public franchised bus #> 34 34 25 2014 Public franchised bus #> 35 35 26 2014 Private car #> 36 36 27 2014 Taxi #> 37 37 28 2014 Motorcycle #> 38 38 29 2014 Public franchised bus #> 39 39 30 2014 Public franchised bus #> 40 40 31 2014 Taxi #> 41 41 32 2014 Private car #> 42 42 32 2014 Taxi #> 43 43 32 2014 Private car #> 44 44 33 2014 Motorcycle #> 45 45 33 2014 Private car #> 46 46 34 2014 Others (incl. unknown) #> 47 47 34 2014 Taxi #> 48 48 35 2014 Public franchised bus #> 49 49 36 2014 Heavy goods vehicle #> 50 50 36 2014 Private car #> 51 51 37 2014 Taxi #> 52 52 37 2014 Public franchised bus #> 53 53 38 2014 Tram #> 54 54 39 2014 Motorcycle #> 55 55 40 2014 Public light bus #> 56 56 41 2014 Public franchised bus #> 57 57 42 2014 Public franchised bus #> 58 58 43 2014 Taxi #> 59 59 43 2014 Motorcycle #> 60 60 43 2014 Private car #> 61 61 44 2014 Light goods vehicle #> 62 62 45 2014 Public franchised bus #> 63 63 46 2014 Motorcycle #> 64 64 46 2014 Motorcycle #> 65 65 47 2014 Others (incl. unknown) #> 66 66 47 2014 Public franchised bus #> 67 67 48 2014 Motorcycle #> 68 68 49 2014 Light goods vehicle #> 69 69 49 2014 Light goods vehicle #> 70 70 50 2014 Taxi #> 71 71 50 2014 Public franchised bus #> 72 72 51 2014 Public franchised bus #> 73 73 52 2014 Private car #> 74 74 53 2014 Taxi #> 75 75 53 2014 Private car #> 76 76 54 2014 Private car #> 77 77 54 2014 Taxi #> 78 78 55 2014 Motorcycle #> 79 79 56 2014 Motorcycle #> 80 80 57 2014 Light goods vehicle #> 81 81 57 2014 Private car #> 82 82 58 2014 Motorcycle #> 83 83 58 2014 Motorcycle #> 84 84 59 2014 Tram #> 85 85 60 2014 Taxi #> 86 86 61 2014 Private car #> 87 87 62 2014 Taxi #> 88 88 63 2014 Taxi #> 89 89 63 2014 Motorcycle #> 90 90 64 2014 Public franchised bus #> 91 91 65 2014 Private car #> 92 92 66 2014 Private car #> 93 93 67 2014 Public franchised bus #> 94 94 68 2014 Public franchised bus #> 95 95 69 2014 Public non-franchised bus #> 96 96 69 2014 Taxi #> 97 97 70 2014 Light goods vehicle #> 98 98 71 2014 Private car #> 99 99 71 2014 Light goods vehicle #> 100 100 72 2014 Private car #> 101 101 73 2014 Private car #> 102 102 74 2014 Motorcycle #> 103 103 75 2014 Medium goods vehicle #> 104 104 76 2014 Private car #> 105 105 77 2014 Medium goods vehicle #> 106 106 78 2014 Public franchised bus #> 107 107 79 2014 Taxi #> 108 108 80 2014 Taxi #> 109 109 81 2014 Public franchised bus #> 110 110 82 2014 Motorcycle #> 111 111 82 2014 Private car #> 112 112 83 2014 Motorcycle #> 113 113 84 2014 Private car #> 114 114 85 2014 Private car #> 115 115 85 2014 Taxi #> 116 116 86 2014 Public franchised bus #> 117 117 87 2014 Private car #> 118 118 88 2014 Motorcycle #> 119 119 89 2014 Taxi #> 120 120 89 2014 Taxi #> 121 121 89 2014 Taxi #> 122 122 89 2014 Taxi #> 123 123 90 2014 Taxi #> 124 124 90 2014 Taxi #> 125 125 91 2014 Bicycle #> 126 126 92 2014 Private car #> 127 127 92 2014 Taxi #> 128 128 92 2014 Taxi #> 129 129 92 2014 Light goods vehicle #> 130 130 92 2014 Taxi #> 131 131 93 2014 Public franchised bus #> 132 132 94 2014 Private car #> 133 133 94 2014 Public franchised bus #> 134 134 95 2014 Public franchised bus #> 135 135 96 2014 Bicycle #> 136 136 97 2014 Private car #> 137 137 98 2014 Private car #> 138 138 98 2014 Others (incl. unknown) #> 139 139 99 2014 Public light bus #> 140 140 99 2014 Taxi #> 141 141 100 2014 Light goods vehicle #> 142 142 101 2014 Public franchised bus #> 143 143 101 2014 Taxi #> 144 144 102 2014 Public franchised bus #> 145 145 103 2014 Taxi #> 146 146 103 2014 Light goods vehicle #> 147 147 104 2014 Public franchised bus #> 148 148 105 2014 Public franchised bus #> 149 149 106 2014 Private car #> 150 150 106 2014 Taxi #> 151 151 107 2014 Private car #> 152 152 107 2014 Taxi #> 153 153 108 2014 Private car #> 154 154 109 2014 Public franchised bus #> 155 155 110 2014 Public franchised bus #> 156 156 111 2014 Motorcycle #> 157 157 112 2014 Motorcycle #> 158 158 112 2014 Private car #> 159 159 113 2014 Private car #> 160 160 114 2014 Private car #> 161 161 115 2014 Public franchised bus #> 162 162 116 2014 Motorcycle #> 163 163 116 2014 Taxi #> 164 164 117 2014 Private car #> 165 165 117 2014 Taxi #> 166 166 118 2014 Private car #> 167 167 118 2014 Private car #> 168 168 119 2014 Motorcycle #> 169 169 120 2014 Taxi #> 170 170 120 2014 Taxi #> 171 171 121 2014 Motorcycle #> 172 172 122 2014 Taxi #> 173 173 123 2014 Public light bus #> 174 174 124 2014 Public franchised bus #> 175 175 124 2014 Private car #> 176 176 125 2014 Taxi #> 177 177 125 2014 Taxi #> 178 178 126 2014 Private car #> 179 179 126 2014 Private car #> 180 180 127 2014 Private car #> 181 181 127 2014 Light goods vehicle #> 182 182 127 2014 Private car #> 183 183 127 2014 Private car #> 184 184 127 2014 Private car #> 185 185 128 2014 Motorcycle #> 186 186 129 2014 Taxi #> 187 187 129 2014 Taxi #> 188 188 130 2014 Motorcycle #> 189 189 130 2014 Motorcycle #> 190 190 130 2014 Private car #> 191 191 131 2014 Public franchised bus #> 192 192 132 2014 Private car #> 193 193 132 2014 Others (incl. unknown) #> 194 194 133 2014 Public franchised bus #> 195 195 134 2014 Private car #> 196 196 134 2014 Public franchised bus #> 197 197 135 2014 Public franchised bus #> 198 198 136 2014 Light goods vehicle #> 199 199 136 2014 Private car #> 200 200 136 2014 Taxi #> 201 201 136 2014 Motorcycle #> 202 202 137 2014 Private car #> 203 203 138 2014 Public franchised bus #> 204 204 139 2014 Private car #> 205 205 140 2014 Private car #> 206 206 140 2014 Taxi #> 207 207 140 2014 Taxi #> 208 208 141 2014 Public franchised bus #> 209 209 142 2014 Light goods vehicle #> 210 210 142 2014 Private car #> 211 211 143 2014 Motorcycle #> 212 212 144 2014 Light goods vehicle #> 213 213 145 2014 Private car #> 214 214 146 2014 Private car #> 215 215 147 2014 Taxi #> 216 216 147 2014 Taxi #> 217 217 148 2014 Private car #> 218 218 149 2014 Taxi #> 219 219 150 2014 Public franchised bus #> 220 220 151 2014 Taxi #> 221 221 151 2014 Taxi #> 222 222 152 2014 Public franchised bus #> 223 223 152 2014 Public franchised bus #> 224 224 153 2014 Public franchised bus #> 225 225 154 2014 Public franchised bus #> 226 226 155 2014 Private car #> 227 227 156 2014 Public franchised bus #> 228 228 157 2014 Motorcycle #> 229 229 158 2014 Bicycle #> 230 230 159 2014 Taxi #> 231 231 160 2014 Taxi #> 232 232 161 2014 Public franchised bus #> 233 233 162 2014 Public franchised bus #> 234 234 163 2014 Public franchised bus #> 235 235 164 2014 Public franchised bus #> 236 236 164 2014 Heavy goods vehicle #> 237 237 165 2014 Taxi #> 238 238 165 2014 Motorcycle #> 239 239 166 2014 Public franchised bus #> 240 240 166 2014 Taxi #> 241 241 167 2014 Public franchised bus #> 242 242 168 2014 Motorcycle #> 243 243 169 2014 Public franchised bus #> 244 244 169 2014 Bicycle #> 245 245 170 2014 Private car #> 246 246 170 2014 Private car #> 247 247 171 2014 Public franchised bus #> 248 248 172 2014 Public franchised bus #> 249 249 173 2014 Light goods vehicle #> 250 250 173 2014 Private car #> 251 251 174 2014 Taxi #> 252 252 175 2014 Motorcycle #> 253 253 175 2014 Light goods vehicle #> 254 254 176 2014 Taxi #> 255 255 176 2014 Public franchised bus #> 256 256 177 2014 Public franchised bus #> 257 257 178 2014 Private car #> 258 258 179 2014 Private car #> 259 259 180 2014 Private car #> 260 260 180 2014 Public non-franchised bus #> 261 261 181 2014 Taxi #> 262 262 181 2014 Light goods vehicle #> 263 263 182 2014 Public franchised bus #> 264 264 182 2014 Medium goods vehicle #> 265 265 183 2014 Light goods vehicle #> 266 266 184 2014 Light goods vehicle #> 267 267 184 2014 Taxi #> 268 268 184 2014 Light goods vehicle #> 269 269 184 2014 Taxi #> 270 270 185 2014 Taxi #> 271 271 186 2014 Private car #> 272 272 186 2014 Private car #> 273 273 187 2014 Private car #> 274 274 187 2014 Taxi #> 275 275 188 2014 Private car #> 276 276 188 2014 Heavy goods vehicle #> 277 277 189 2014 Public franchised bus #> 278 278 190 2014 Public light bus #> 279 279 191 2014 Public franchised bus #> 280 280 192 2014 Light goods vehicle #> 281 281 192 2014 Private car #> 282 282 193 2014 Public franchised bus #> 283 283 194 2014 Public franchised bus #> 284 284 195 2014 Private car #> 285 285 195 2014 Public franchised bus #> 286 286 195 2014 Heavy goods vehicle #> 287 287 196 2014 Others (incl. unknown) #> 288 288 197 2014 Taxi #> 289 289 197 2014 Taxi #> 290 290 198 2014 Public non-franchised bus #> 291 291 198 2014 Public franchised bus #> 292 292 199 2014 Public franchised bus #> 293 293 200 2014 Public franchised bus #> 294 294 201 2014 Motorcycle #> 295 295 202 2014 Private car #> 296 296 203 2014 Motorcycle #> 297 297 204 2014 Private car #> 298 298 205 2014 Private car #> 299 299 206 2014 Public franchised bus #> 300 300 207 2014 Taxi #> 301 301 208 2014 Private car #> 302 302 208 2014 Taxi #> 303 303 209 2014 Public franchised bus #> 304 304 210 2014 Public franchised bus #> 305 305 210 2014 Tram #> 306 306 211 2014 Bicycle #> 307 307 212 2014 Light goods vehicle #> 308 308 213 2014 Public franchised bus #> 309 309 214 2014 Bicycle #> 310 310 214 2014 Private car #> 311 311 215 2014 Private car #> 312 312 215 2014 Taxi #> 313 313 216 2014 Medium goods vehicle #> 314 314 216 2014 Public light bus #> 315 315 217 2014 Bicycle #> 316 316 218 2014 Private car #> 317 317 218 2014 Light goods vehicle #> 318 318 219 2014 Bicycle #> 319 319 220 2014 Public franchised bus #> 320 320 221 2014 Public light bus #> 321 321 221 2014 Taxi #> 322 322 222 2014 Taxi #> 323 323 222 2014 Motorcycle #> 324 324 223 2014 Taxi #> 325 325 224 2014 Bicycle #> 326 326 225 2014 Light goods vehicle #> 327 327 225 2014 Public franchised bus #> 328 328 226 2014 Private car #> 329 329 227 2014 Private car #> 330 330 228 2014 Taxi #> 331 331 229 2014 Private car #> 332 332 230 2014 Public franchised bus #> 333 333 231 2014 Taxi #> 334 334 232 2014 Motorcycle #> 335 335 233 2014 Tram #> 336 336 234 2014 Medium goods vehicle #> 337 337 234 2014 Private car #> 338 338 235 2014 Motorcycle #> 339 339 236 2014 Private car #> 340 340 236 2014 Private car #> 341 341 237 2014 Public franchised bus #> 342 342 237 2014 Light goods vehicle #> 343 343 238 2014 Public franchised bus #> 344 344 239 2014 Private car #> 345 345 240 2014 Private car #> 346 346 241 2014 Private car #> 347 347 242 2014 Light goods vehicle #> 348 348 242 2014 Private car #> 349 349 243 2014 Private car #> 350 350 243 2014 Private car #> 351 351 244 2014 Public franchised bus #> 352 352 245 2014 Public franchised bus #> 353 353 246 2014 Bicycle #> 354 354 247 2014 Taxi #> 355 355 247 2014 Light goods vehicle #> 356 356 248 2014 Private car #> 357 357 249 2014 Private car #> 358 358 249 2014 Motorcycle #> 359 359 250 2014 Private car #> 360 360 251 2014 Public light bus #> 361 361 251 2014 Private car #> 362 362 252 2014 Private car #> 363 363 253 2014 Private car #> 364 364 253 2014 Private car #> 365 365 254 2014 Public light bus #> 366 366 254 2014 Motorcycle #> 367 367 255 2014 Public non-franchised bus #> 368 368 256 2014 Motorcycle #> 369 369 257 2014 Motorcycle #> 370 370 258 2014 Private car #> 371 371 259 2014 Light goods vehicle #> 372 372 259 2014 Private car #> 373 373 259 2014 Private car #> 374 374 259 2014 Private car #> 375 375 260 2014 Private car #> 376 376 260 2014 Public franchised bus #> 377 377 261 2014 Public franchised bus #> 378 378 262 2014 Public franchised bus #> 379 379 263 2014 Private car #> 380 380 263 2014 Light goods vehicle #> 381 381 263 2014 Light goods vehicle #> 382 382 264 2014 Public franchised bus #> 383 383 264 2014 Taxi #> 384 384 265 2014 Motorcycle #> 385 385 266 2014 Motorcycle #> 386 386 266 2014 Light goods vehicle #> 387 387 267 2014 Public franchised bus #> 388 388 268 2014 Public franchised bus #> 389 389 269 2014 Private car #> 390 390 270 2014 Public franchised bus #> 391 391 270 2014 Taxi #> 392 392 271 2014 Motorcycle #> 393 393 272 2014 Public franchised bus #> 394 394 272 2014 Private car #> 395 395 273 2014 Public franchised bus #> 396 396 274 2014 Public franchised bus #> 397 397 275 2014 Public light bus #> 398 398 276 2014 Public franchised bus #> 399 399 276 2014 Taxi #> 400 400 277 2014 Public franchised bus #> 401 401 278 2014 Private car #> 402 402 279 2014 Public light bus #> 403 403 279 2014 Light goods vehicle #> 404 404 280 2014 Private car #> 405 405 280 2014 Private car #> 406 406 281 2014 Public non-franchised bus #> 407 407 281 2014 Private car #> 408 408 282 2014 Private car #> 409 409 283 2014 Taxi #> 410 410 284 2014 Private car #> 411 411 284 2014 Private car #> 412 412 285 2014 Bicycle #> 413 413 286 2014 Private car #> 414 414 287 2014 Taxi #> 415 415 287 2014 Private car #> 416 416 287 2014 Taxi #> 417 417 288 2014 Public franchised bus #> 418 418 289 2014 Private car #> 419 419 289 2014 Medium goods vehicle #> 420 420 290 2014 Taxi #> 421 421 291 2014 Light goods vehicle #> 422 422 292 2014 Bicycle #> 423 423 293 2014 Public franchised bus #> 424 424 294 2014 Private car #> 425 425 295 2014 Taxi #> 426 426 295 2014 Private car #> 427 427 296 2014 Taxi #> 428 428 296 2014 Taxi #> 429 429 297 2014 Motorcycle #> 430 430 298 2014 Taxi #> 431 431 299 2014 Private car #> 432 432 300 2014 Taxi #> 433 433 300 2014 Light goods vehicle #> 434 434 301 2014 Private car #> 435 435 302 2014 Motorcycle #> 436 436 303 2014 Public franchised bus #> 437 437 304 2014 Public franchised bus #> 438 438 305 2014 Public franchised bus #> 439 439 306 2014 Motorcycle #> 440 440 306 2014 Taxi #> 441 441 307 2014 Taxi #> 442 442 307 2014 Taxi #> 443 443 307 2014 Taxi #> 444 444 308 2014 Private car #> 445 445 308 2014 Private car #> 446 446 309 2014 Taxi #> 447 447 309 2014 Private car #> 448 448 310 2014 Taxi #> 449 449 311 2014 Motorcycle #> 450 450 312 2014 Taxi #> 451 451 313 2014 Public franchised bus #> 452 452 314 2014 Motorcycle #> 453 453 315 2014 Private car #> 454 454 315 2014 Private car #> 455 455 316 2014 Private car #> 456 456 316 2014 Light goods vehicle #> 457 457 317 2014 Private car #> 458 458 317 2014 Taxi #> 459 459 318 2014 Taxi #> 460 460 319 2014 Public light bus #> 461 461 320 2014 Taxi #> 462 462 320 2014 Public non-franchised bus #> 463 463 321 2014 Taxi #> 464 464 322 2014 Private car #> 465 465 322 2014 Private car #> 466 466 323 2014 Public franchised bus #> 467 467 324 2014 Private car #> 468 468 325 2014 Public franchised bus #> 469 469 326 2014 Motorcycle #> 470 470 327 2014 Taxi #> 471 471 327 2014 Motorcycle #> 472 472 328 2014 Public light bus #> 473 473 329 2014 Private car #> 474 474 329 2014 Private car #> 475 475 330 2014 Public franchised bus #> 476 476 331 2014 Motorcycle #> 477 477 331 2014 Taxi #> 478 478 332 2014 Motorcycle #> 479 479 332 2014 Private car #> 480 480 333 2014 Private car #> 481 481 334 2014 Light goods vehicle #> 482 482 335 2014 Private car #> 483 483 336 2014 Light goods vehicle #> 484 484 337 2014 Public franchised bus #> 485 485 338 2014 Motorcycle #> 486 486 338 2014 Taxi #> 487 487 339 2014 Public franchised bus #> 488 488 340 2014 Taxi #> 489 489 341 2014 Public franchised bus #> 490 490 342 2014 Medium goods vehicle #> 491 491 343 2014 Public franchised bus #> 492 492 344 2014 Light goods vehicle #> 493 493 344 2014 Taxi #> 494 494 344 2014 Light goods vehicle #> 495 495 345 2014 Taxi #> 496 496 345 2014 Private car #> 497 497 346 2014 Public franchised bus #> 498 498 347 2014 Motorcycle #> 499 499 348 2014 Private car #> 500 500 348 2014 Light goods vehicle #> 501 501 349 2014 Public franchised bus #> 502 502 350 2014 Public franchised bus #> 503 503 351 2014 Private car #> 504 504 352 2014 Light goods vehicle #> 505 505 353 2014 Public franchised bus #> 506 506 354 2014 Private car #> 507 507 355 2014 Private car #> 508 508 355 2014 Public franchised bus #> 509 509 355 2014 Public light bus #> 510 510 356 2014 Private car #> 511 511 357 2014 Public franchised bus #> 512 512 358 2014 Light goods vehicle #> 513 513 359 2014 Light goods vehicle #> 514 514 359 2014 Private car #> 515 515 360 2014 Public franchised bus #> 516 516 361 2014 Public franchised bus #> 517 517 362 2014 Private car #> 518 518 362 2014 Motorcycle #> 519 519 363 2014 Taxi #> 520 520 363 2014 Taxi #> 521 521 363 2014 Private car #> 522 522 363 2014 Taxi #> 523 523 364 2014 Private car #> 524 524 364 2014 Taxi #> 525 525 365 2014 Public light bus #> 526 526 366 2014 Motorcycle #> 527 527 367 2014 Public light bus #> 528 528 368 2014 Public franchised bus #> 529 529 369 2014 Medium goods vehicle #> 530 530 369 2014 Motorcycle #> 531 531 370 2014 Private car #> 532 532 371 2014 Motorcycle #> 533 533 371 2014 Private car #> 534 534 372 2014 Motorcycle #> 535 535 373 2014 Private car #> 536 536 374 2014 Private car #> 537 537 375 2014 Taxi #> 538 538 375 2014 Taxi #> 539 539 376 2014 Motorcycle #> 540 540 377 2014 Private car #> 541 541 377 2014 Private car #> 542 542 378 2014 Private car #> 543 543 378 2014 Public light bus #> 544 544 379 2014 Private car #> 545 545 380 2014 Private car #> 546 546 380 2014 Private car #> 547 547 381 2014 Motorcycle #> 548 548 382 2014 Private car #> 549 549 382 2014 Private car #> 550 550 382 2014 Private car #> 551 551 383 2014 Motorcycle #> 552 552 384 2014 Light goods vehicle #> 553 553 385 2014 Private car #> 554 554 386 2014 Public light bus #> 555 555 387 2014 Light goods vehicle #> 556 556 388 2014 Private car #> 557 557 388 2014 Light goods vehicle #> 558 558 388 2014 Taxi #> 559 559 389 2014 Public franchised bus #> 560 560 390 2014 Public franchised bus #> 561 561 391 2014 Public light bus #> 562 562 391 2014 Motorcycle #> 563 563 392 2014 Public franchised bus #> 564 564 393 2014 Public franchised bus #> 565 565 394 2014 Taxi #> 566 566 394 2014 Taxi #> 567 567 395 2014 Private car #> 568 568 395 2014 Taxi #> 569 569 396 2014 Private car #> 570 570 396 2014 Light goods vehicle #> 571 571 397 2014 Private car #> 572 572 397 2014 Private car #> 573 573 398 2014 Public light bus #> 574 574 398 2014 Motorcycle #> 575 575 399 2014 Taxi #> 576 576 400 2014 Public franchised bus #> 577 577 400 2014 Private car #> 578 578 400 2014 Motorcycle #> 579 579 400 2014 Private car #> 580 580 401 2014 Public franchised bus #> 581 581 402 2014 Private car #> 582 582 402 2014 Public light bus #> 583 583 403 2014 Taxi #> 584 584 404 2014 Public franchised bus #> 585 585 405 2014 Motorcycle #> 586 586 405 2014 Private car #> 587 587 406 2014 Private car #> 588 588 406 2014 Private car #> 589 589 406 2014 Private car #> 590 590 406 2014 Private car #> 591 591 406 2014 Private car #> 592 592 407 2014 Motorcycle #> 593 593 408 2014 Taxi #> 594 594 408 2014 Public non-franchised bus #> 595 595 409 2014 Public franchised bus #> 596 596 410 2014 Taxi #> 597 597 411 2014 Light goods vehicle #> 598 598 411 2014 Taxi #> 599 599 412 2014 Public franchised bus #> 600 600 412 2014 Private car #> 601 601 413 2014 Light goods vehicle #> 602 602 414 2014 Motorcycle #> 603 603 415 2014 Private car #> 604 604 416 2014 Private car #> 605 605 417 2014 Taxi #> 606 606 417 2014 Motorcycle #> 607 607 418 2014 Taxi #> 608 608 419 2014 Motorcycle #> 609 609 420 2014 Public franchised bus #> 610 610 421 2014 Taxi #> 611 611 422 2014 Taxi #> 612 612 422 2014 Private car #> 613 613 422 2014 Public franchised bus #> 614 614 423 2014 Public franchised bus #> 615 615 424 2014 Private car #> 616 616 425 2014 Taxi #> 617 617 425 2014 Taxi #> 618 618 425 2014 Private car #> 619 619 426 2014 Motorcycle #> 620 620 427 2014 Taxi #> 621 621 428 2014 Public franchised bus #> 622 622 429 2014 Motorcycle #> 623 623 430 2014 Private car #> 624 624 430 2014 Public franchised bus #> 625 625 431 2014 Motorcycle #> 626 626 431 2014 Taxi #> 627 627 432 2014 Public franchised bus #> 628 628 433 2014 Private car #> 629 629 433 2014 Public franchised bus #> 630 630 434 2014 Private car #> 631 631 434 2014 Private car #> 632 632 435 2014 Public franchised bus #> 633 633 436 2014 Public franchised bus #> 634 634 437 2014 Public non-franchised bus #> 635 635 437 2014 Motorcycle #> 636 636 438 2014 Motorcycle #> 637 637 439 2014 Public franchised bus #> 638 638 440 2014 Light goods vehicle #> 639 639 440 2014 Private car #> 640 640 441 2014 Private car #> 641 641 441 2014 Private car #> 642 642 442 2014 Public light bus #> 643 643 443 2014 Public franchised bus #> 644 644 444 2014 Public non-franchised bus #> 645 645 444 2014 Motorcycle #> 646 646 445 2014 Taxi #> 647 647 445 2014 Public non-franchised bus #> 648 648 446 2014 Public franchised bus #> 649 649 447 2014 Public non-franchised bus #> 650 650 447 2014 Public franchised bus #> 651 651 448 2014 Motorcycle #> 652 652 448 2014 Light goods vehicle #> 653 653 449 2014 Private car #> 654 654 449 2014 Public franchised bus #> 655 655 450 2014 Taxi #> 656 656 451 2014 Public franchised bus #> 657 657 452 2014 Taxi #> 658 658 453 2014 Taxi #> 659 659 454 2014 Taxi #> 660 660 455 2014 Light goods vehicle #> 661 661 455 2014 Private car #> 662 662 455 2014 Motorcycle #> 663 663 456 2014 Taxi #> 664 664 457 2014 Private car #> 665 665 458 2014 Private car #> 666 666 459 2014 Public light bus #> 667 667 460 2014 Public franchised bus #> 668 668 461 2014 Private car #> 669 669 462 2014 Taxi #> 670 670 463 2014 Taxi #> 671 671 463 2014 Bicycle #> 672 672 464 2014 Public franchised bus #> 673 673 465 2014 Public franchised bus #> 674 674 466 2014 Light goods vehicle #> 675 675 467 2014 Private car #> 676 676 467 2014 Private car #> 677 677 468 2014 Taxi #> 678 678 468 2014 Private car #> 679 679 469 2014 Motorcycle #> 680 680 470 2014 Bicycle #> 681 681 471 2014 Public franchised bus #> 682 682 472 2014 Taxi #> 683 683 473 2014 Private car #> 684 684 474 2014 Bicycle #> 685 685 475 2014 Private car #> 686 686 476 2014 Taxi #> 687 687 476 2014 Taxi #> 688 688 476 2014 Taxi #> 689 689 476 2014 Taxi #> 690 690 477 2014 Public light bus #> 691 691 477 2014 Private car #> 692 692 477 2014 Public light bus #> 693 693 478 2014 Taxi #> 694 694 478 2014 Taxi #> 695 695 479 2014 Taxi #> 696 696 479 2014 Private car #> 697 697 479 2014 Taxi #> 698 698 480 2014 Private car #> 699 699 480 2014 Public non-franchised bus #> 700 700 481 2014 Light goods vehicle #> 701 701 482 2014 Others (incl. unknown) #> 702 702 482 2014 Light goods vehicle #> 703 703 482 2014 Light goods vehicle #> 704 704 483 2014 Private car #> 705 705 484 2014 Public franchised bus #> 706 706 485 2014 Public franchised bus #> 707 707 486 2014 Private car #> 708 708 486 2014 Private car #> 709 709 486 2014 Motorcycle #> 710 710 486 2014 Private car #> 711 711 487 2014 Taxi #> 712 712 487 2014 Private car #> 713 713 488 2014 Taxi #> 714 714 488 2014 Private car #> 715 715 489 2014 Bicycle #> 716 716 490 2014 Private car #> 717 717 491 2014 Bicycle #> 718 718 491 2014 Private car #> 719 719 492 2014 Taxi #> 720 720 493 2014 Private car #> 721 721 494 2014 Bicycle #> 722 722 494 2014 Private car #> 723 723 495 2014 Motorcycle #> 724 724 495 2014 Public non-franchised bus #> 725 725 496 2014 Bicycle #> 726 726 496 2014 Private car #> 727 727 497 2014 Bicycle #> 728 728 498 2014 Light goods vehicle #> 729 729 498 2014 Private car #> 730 730 499 2014 Light goods vehicle #> 731 731 499 2014 Public light bus #> 732 732 500 2014 Taxi #> 733 733 500 2014 Motorcycle #> 734 734 501 2014 Taxi #> 735 735 501 2014 Private car #> 736 736 502 2014 Public franchised bus #> 737 737 503 2014 Taxi #> 738 738 504 2014 Private car #> 739 739 505 2014 Light goods vehicle #> 740 740 506 2014 Private car #> 741 741 506 2014 Taxi #> 742 742 507 2014 Motorcycle #> 743 743 508 2014 Light goods vehicle #> 744 744 509 2014 Private car #> 745 745 510 2014 Light goods vehicle #> 746 746 510 2014 Taxi #> 747 747 511 2014 Private car #> 748 748 512 2014 Bicycle #> 749 749 512 2014 Private car #> 750 750 513 2014 Taxi #> 751 751 514 2014 Taxi #> 752 752 515 2014 Public franchised bus #> 753 753 516 2014 Private car #> 754 754 517 2014 Public franchised bus #> 755 755 518 2014 Private car #> 756 756 519 2014 Taxi #> 757 757 520 2014 Private car #> 758 758 520 2014 Bicycle #> 759 759 521 2014 Public franchised bus #> 760 760 522 2014 Public franchised bus #> 761 761 523 2014 Taxi #> 762 762 523 2014 Motorcycle #> 763 763 524 2014 Motorcycle #> 764 764 525 2014 Motorcycle #> 765 765 526 2014 Public franchised bus #> 766 766 527 2014 Light goods vehicle #> 767 767 528 2014 Private car #> 768 768 529 2014 Private car #> 769 769 529 2014 Motorcycle #> 770 770 530 2014 Motorcycle #> 771 771 531 2014 Light goods vehicle #> 772 772 531 2014 Taxi #> 773 773 532 2014 Bicycle #> 774 774 533 2014 Public franchised bus #> 775 775 533 2014 Public light bus #> 776 776 534 2014 Taxi #> 777 777 535 2014 Private car #> 778 778 536 2014 Motorcycle #> 779 779 537 2014 Taxi #> 780 780 537 2014 Private car #> 781 781 538 2014 Public franchised bus #> 782 782 538 2014 Light goods vehicle #> 783 783 539 2014 Taxi #> 784 784 539 2014 Private car #> 785 785 540 2014 Private car #> 786 786 541 2014 Public franchised bus #> 787 787 542 2014 Taxi #> 788 788 542 2014 Private car #> 789 789 543 2014 Private car #> 790 790 543 2014 Motorcycle #> 791 791 544 2014 Motorcycle #> 792 792 544 2014 Taxi #> 793 793 545 2014 Public light bus #> 794 794 545 2014 Private car #> 795 795 546 2014 Public non-franchised bus #> 796 796 546 2014 Private car #> 797 797 547 2014 Taxi #> 798 798 547 2014 Light goods vehicle #> 799 799 548 2014 Light goods vehicle #> 800 800 549 2014 Motorcycle #> 801 801 550 2014 Motorcycle #> 802 802 551 2014 Private car #> 803 803 551 2014 Public non-franchised bus #> 804 804 552 2014 Private car #> 805 805 553 2014 Public light bus #> 806 806 553 2014 Motorcycle #> 807 807 554 2014 Private car #> 808 808 555 2014 Taxi #> 809 809 556 2014 Public franchised bus #> 810 810 556 2014 Private car #> 811 811 557 2014 Others (incl. unknown) #> 812 812 557 2014 Public franchised bus #> 813 813 558 2014 Public franchised bus #> 814 814 559 2014 Private car #> 815 815 559 2014 Private car #> 816 816 560 2014 Public franchised bus #> 817 817 561 2014 Public franchised bus #> 818 818 562 2014 Private car #> 819 819 563 2014 Public franchised bus #> 820 820 564 2014 Taxi #> 821 821 564 2014 Medium goods vehicle #> 822 822 565 2014 Private car #> 823 823 565 2014 Public non-franchised bus #> 824 824 565 2014 Taxi #> 825 825 565 2014 Private car #> 826 826 565 2014 Taxi #> 827 827 566 2014 Private car #> 828 828 566 2014 Taxi #> 829 829 567 2014 Taxi #> 830 830 567 2014 Private car #> 831 831 568 2014 Taxi #> 832 832 569 2014 Private car #> 833 833 570 2014 Taxi #> 834 834 571 2014 Light goods vehicle #> 835 835 571 2014 Public non-franchised bus #> 836 836 572 2014 Private car #> 837 837 572 2014 Motorcycle #> 838 838 573 2014 Private car #> 839 839 574 2014 Light goods vehicle #> 840 840 574 2014 Private car #> 841 841 575 2014 Public franchised bus #> 842 842 576 2014 Public non-franchised bus #> 843 843 577 2014 Motorcycle #> 844 844 578 2014 Motorcycle #> 845 845 578 2014 Private car #> 846 846 579 2014 Motorcycle #> 847 847 580 2014 Light goods vehicle #> 848 848 580 2014 Private car #> 849 849 581 2014 Bicycle #> 850 850 581 2014 Taxi #> 851 851 582 2014 Motorcycle #> 852 852 583 2014 Private car #> 853 853 583 2014 Private car #> 854 854 584 2014 Taxi #> 855 855 584 2014 Taxi #> 856 856 585 2014 Others (incl. unknown) #> 857 857 585 2014 Others (incl. unknown) #> 858 858 586 2014 Private car #> 859 859 587 2014 Taxi #> 860 860 588 2014 Private car #> 861 861 589 2014 Public franchised bus #> 862 862 590 2014 Public light bus #> 863 863 590 2014 Taxi #> 864 864 591 2014 Taxi #> 865 865 591 2014 Taxi #> 866 866 592 2014 Taxi #> 867 867 592 2014 Public franchised bus #> 868 868 593 2014 Motorcycle #> 869 869 594 2014 Private car #> 870 870 595 2014 Private car #> 871 871 596 2014 Public franchised bus #> 872 872 597 2014 Private car #> 873 873 597 2014 Medium goods vehicle #> 874 874 598 2014 Private car #> 875 875 599 2014 Taxi #> 876 876 599 2014 Private car #> 877 877 600 2014 Light goods vehicle #> 878 878 600 2014 Private car #> 879 879 601 2014 Public franchised bus #> 880 880 602 2014 Motorcycle #> 881 881 602 2014 Private car #> 882 882 603 2014 Private car #> 883 883 603 2014 Motorcycle #> 884 884 604 2014 Public franchised bus #> 885 885 605 2014 Light goods vehicle #> 886 886 605 2014 Private car #> 887 887 606 2014 Private car #> 888 888 606 2014 Light goods vehicle #> 889 889 607 2014 Taxi #> 890 890 608 2014 Heavy goods vehicle #> 891 891 609 2014 Public franchised bus #> 892 892 610 2014 Taxi #> 893 893 611 2014 Light goods vehicle #> 894 894 611 2014 Taxi #> 895 895 612 2014 Taxi #> 896 896 612 2014 Private car #> 897 897 613 2014 Public franchised bus #> 898 898 614 2014 Motorcycle #> 899 899 615 2014 Taxi #> 900 900 616 2014 Bicycle #> 901 901 617 2014 Public franchised bus #> 902 902 618 2014 Private car #> 903 903 619 2014 Public franchised bus #> 904 904 620 2014 Private car #> 905 905 621 2014 Private car #> 906 906 621 2014 Taxi #> 907 907 622 2014 Bicycle #> 908 908 622 2014 Private car #> 909 909 623 2014 Taxi #> 910 910 623 2014 Private car #> 911 911 624 2014 Private car #> 912 912 624 2014 Private car #> 913 913 625 2014 Public franchised bus #> 914 914 626 2014 Medium goods vehicle #> 915 915 627 2014 Taxi #> 916 916 627 2014 Private car #> 917 917 627 2014 Private car #> 918 918 627 2014 Private car #> 919 919 628 2014 Private car #> 920 920 629 2014 Light goods vehicle #> 921 921 630 2014 Private car #> 922 922 630 2014 Private car #> 923 923 630 2014 Others (incl. unknown) #> 924 924 631 2014 Taxi #> 925 925 631 2014 Medium goods vehicle #> 926 926 632 2014 Public franchised bus #> 927 927 633 2014 Public franchised bus #> 928 928 634 2014 Light goods vehicle #> 929 929 634 2014 Private car #> 930 930 634 2014 Light goods vehicle #> 931 931 634 2014 Public non-franchised bus #> 932 932 634 2014 Private car #> 933 933 635 2014 Motorcycle #> 934 934 636 2014 Taxi #> 935 935 636 2014 Motorcycle #> 936 936 637 2014 Taxi #> 937 937 637 2014 Public franchised bus #> 938 938 638 2014 Taxi #> 939 939 638 2014 Motorcycle #> 940 940 638 2014 Private car #> 941 941 638 2014 Private car #> 942 942 639 2014 Public franchised bus #> 943 943 639 2014 Private car #> 944 944 640 2014 Private car #> 945 945 640 2014 Private car #> 946 946 641 2014 Private car #> 947 947 642 2014 Others (incl. unknown) #> 948 948 643 2014 Motorcycle #> 949 949 644 2014 Motorcycle #> 950 950 645 2014 Motorcycle #> 951 951 646 2014 Taxi #> 952 952 646 2014 Taxi #> 953 953 647 2014 Medium goods vehicle #> 954 954 647 2014 Taxi #> 955 955 648 2014 Public franchised bus #> 956 956 649 2014 Taxi #> 957 957 649 2014 Medium goods vehicle #> 958 958 650 2014 Private car #> 959 959 650 2014 Private car #> 960 960 651 2014 Bicycle #> 961 961 651 2014 Taxi #> 962 962 652 2014 Taxi #> 963 963 653 2014 Public light bus #> 964 964 653 2014 Public franchised bus #> 965 965 653 2014 Taxi #> 966 966 654 2014 Public light bus #> 967 967 654 2014 Private car #> 968 968 654 2014 Private car #> 969 969 655 2014 Private car #> 970 970 656 2014 Public franchised bus #> 971 971 657 2014 Taxi #> 972 972 657 2014 Private car #> 973 973 658 2014 Private car #> 974 974 659 2014 Private car #> 975 975 660 2014 Taxi #> 976 976 660 2014 Taxi #> 977 977 660 2014 Taxi #> 978 978 660 2014 Taxi #> 979 979 660 2014 Private car #> 980 980 661 2014 Public franchised bus #> 981 981 662 2014 Public franchised bus #> 982 982 663 2014 Taxi #> 983 983 664 2014 Public light bus #> 984 984 665 2014 Private car #> 985 985 665 2014 Taxi #> 986 986 665 2014 Motorcycle #> 987 987 666 2014 Taxi #> 988 988 666 2014 Taxi #> 989 989 667 2014 Public franchised bus #> 990 990 668 2014 Public franchised bus #> 991 991 669 2014 Public franchised bus #> 992 992 670 2014 Private car #> 993 993 671 2014 Bicycle #> 994 994 672 2014 Motorcycle #> 995 995 672 2014 Private car #> 996 996 673 2014 Public franchised bus #> 997 997 673 2014 Taxi #> 998 998 674 2014 Motorcycle #> 999 999 674 2014 Private car #> 1000 1000 675 2014 Private car #> 1001 1001 675 2014 Private car #> 1002 1002 676 2014 Private car #> 1003 1003 677 2014 Motorcycle #> 1004 1004 678 2014 Public franchised bus #> 1005 1005 679 2014 Light goods vehicle #> 1006 1006 680 2014 Public franchised bus #> 1007 1007 681 2014 Bicycle #> 1008 1008 681 2014 Taxi #> 1009 1009 682 2014 Private car #> 1010 1010 682 2014 Public franchised bus #> 1011 1011 683 2014 Public franchised bus #> 1012 1012 684 2014 Light goods vehicle #> 1013 1013 684 2014 Light goods vehicle #> 1014 1014 685 2014 Private car #> 1015 1015 686 2014 Private car #> 1016 1016 687 2014 Private car #> 1017 1017 687 2014 Light goods vehicle #> 1018 1018 687 2014 Taxi #> 1019 1019 688 2014 Bicycle #> 1020 1020 689 2014 Motorcycle #> 1021 1021 689 2014 Light goods vehicle #> 1022 1022 690 2014 Private car #> 1023 1023 690 2014 Private car #> 1024 1024 691 2014 Public franchised bus #> 1025 1025 692 2014 Private car #> 1026 1026 693 2014 Private car #> 1027 1027 694 2014 Private car #> 1028 1028 694 2014 Motorcycle #> 1029 1029 695 2014 Private car #> 1030 1030 696 2014 Others (incl. unknown) #> 1031 1031 697 2014 Public franchised bus #> 1032 1032 698 2014 Private car #> 1033 1033 699 2014 Private car #> 1034 1034 700 2014 Private car #> 1035 1035 700 2014 Medium goods vehicle #> 1036 1036 700 2014 Taxi #> 1037 1037 701 2014 Taxi #> 1038 1038 701 2014 Light goods vehicle #> 1039 1039 702 2014 Light goods vehicle #> 1040 1040 702 2014 Public franchised bus #> 1041 1041 703 2014 Public light bus #> 1042 1042 703 2014 Public franchised bus #> 1043 1043 704 2014 Taxi #> 1044 1044 704 2014 Private car #> 1045 1045 705 2014 Private car #> 1046 1046 706 2014 Public light bus #> 1047 1047 707 2014 Public franchised bus #> 1048 1048 708 2014 Private car #> 1049 1049 708 2014 Motorcycle #> 1050 1050 709 2014 Light goods vehicle #> 1051 1051 709 2014 Private car #> 1052 1052 710 2014 Public light bus #> 1053 1053 710 2014 Private car #> 1054 1054 710 2014 Motorcycle #> 1055 1055 710 2014 Taxi #> 1056 1056 711 2014 Public light bus #> 1057 1057 712 2014 Private car #> 1058 1058 712 2014 Light goods vehicle #> 1059 1059 713 2014 Private car #> 1060 1060 713 2014 Light goods vehicle #> 1061 1061 714 2014 Private car #> 1062 1062 714 2014 Light goods vehicle #> 1063 1063 715 2014 Public franchised bus #> 1064 1064 716 2014 Private car #> 1065 1065 716 2014 Private car #> 1066 1066 717 2014 Private car #> 1067 1067 718 2014 Light goods vehicle #> 1068 1068 718 2014 Bicycle #> 1069 1069 719 2014 Public franchised bus #> 1070 1070 719 2014 Private car #> 1071 1071 720 2014 Public franchised bus #> 1072 1072 720 2014 Public light bus #> 1073 1073 721 2014 Public franchised bus #> 1074 1074 721 2014 Public franchised bus #> 1075 1075 722 2014 Private car #> 1076 1076 722 2014 Public franchised bus #> 1077 1077 723 2014 Private car #> 1078 1078 724 2014 Taxi #> 1079 1079 725 2014 Private car #> 1080 1080 726 2014 Public franchised bus #> 1081 1081 726 2014 Taxi #> 1082 1082 726 2014 Private car #> 1083 1083 727 2014 Private car #> 1084 1084 727 2014 Public franchised bus #> 1085 1085 728 2014 Public light bus #> 1086 1086 729 2014 Public franchised bus #> 1087 1087 730 2014 Public franchised bus #> 1088 1088 731 2014 Public non-franchised bus #> 1089 1089 731 2014 Light goods vehicle #> 1090 1090 731 2014 Public non-franchised bus #> 1091 1091 732 2014 Private car #> 1092 1092 732 2014 Public light bus #> 1093 1093 733 2014 Private car #> 1094 1094 734 2014 Light goods vehicle #> 1095 1095 735 2014 Private car #> 1096 1096 736 2014 Tram #> 1097 1097 736 2014 Light goods vehicle #> 1098 1098 737 2014 Motorcycle #> 1099 1099 737 2014 Taxi #> 1100 1100 738 2014 Private car #> 1101 1101 739 2014 Motorcycle #> 1102 1102 740 2014 Light goods vehicle #> 1103 1103 741 2014 Private car #> 1104 1104 742 2014 Private car #> 1105 1105 742 2014 Public franchised bus #> 1106 1106 743 2014 Private car #> 1107 1107 744 2014 Light goods vehicle #> 1108 1108 745 2014 Light goods vehicle #> 1109 1109 746 2014 Private car #> 1110 1110 747 2014 Private car #> 1111 1111 747 2014 Private car #> 1112 1112 747 2014 Public non-franchised bus #> 1113 1113 747 2014 Light goods vehicle #> 1114 1114 748 2014 Taxi #> 1115 1115 749 2014 Taxi #> 1116 1116 750 2014 Light goods vehicle #> 1117 1117 750 2014 Private car #> 1118 1118 751 2014 Light goods vehicle #> 1119 1119 751 2014 Medium goods vehicle #> 1120 1120 752 2014 Public franchised bus #> 1121 1121 753 2014 Public light bus #> 1122 1122 754 2014 Public franchised bus #> 1123 1123 755 2014 Private car #> 1124 1124 756 2014 Tram #> 1125 1125 757 2014 Private car #> 1126 1126 757 2014 Public franchised bus #> 1127 1127 758 2014 Motorcycle #> 1128 1128 758 2014 Taxi #> 1129 1129 759 2014 Motorcycle #> 1130 1130 759 2014 Taxi #> 1131 1131 760 2014 Private car #> 1132 1132 760 2014 Private car #> 1133 1133 761 2014 Public light bus #> 1134 1134 762 2014 Taxi #> 1135 1135 763 2014 Taxi #> 1136 1136 763 2014 Private car #> 1137 1137 764 2014 Light goods vehicle #> 1138 1138 765 2014 Private car #> 1139 1139 766 2014 Private car #> 1140 1140 766 2014 Public franchised bus #> 1141 1141 767 2014 Motorcycle #> 1142 1142 768 2014 Taxi #> 1143 1143 769 2014 Motorcycle #> 1144 1144 769 2014 Taxi #> 1145 1145 770 2014 Public non-franchised bus #> 1146 1146 771 2014 Taxi #> 1147 1147 772 2014 Public franchised bus #> 1148 1148 773 2014 Taxi #> 1149 1149 774 2014 Private car #> 1150 1150 775 2014 Bicycle #> 1151 1151 776 2014 Public franchised bus #> 1152 1152 777 2014 Private car #> 1153 1153 777 2014 Light goods vehicle #> 1154 1154 778 2014 Private car #> 1155 1155 779 2014 Taxi #> 1156 1156 779 2014 Motorcycle #> 1157 1157 780 2014 Taxi #> 1158 1158 781 2014 Taxi #> 1159 1159 782 2014 Taxi #> 1160 1160 782 2014 Taxi #> 1161 1161 783 2014 Tram #> 1162 1162 784 2014 Motorcycle #> 1163 1163 784 2014 Private car #> 1164 1164 784 2014 Private car #> 1165 1165 785 2014 Taxi #> 1166 1166 785 2014 Public franchised bus #> 1167 1167 786 2014 Public franchised bus #> 1168 1168 787 2014 Taxi #> 1169 1169 788 2014 Private car #> 1170 1170 789 2014 Private car #> 1171 1171 789 2014 Public light bus #> 1172 1172 790 2014 Public franchised bus #> 1173 1173 791 2014 Public light bus #> 1174 1174 791 2014 Taxi #> 1175 1175 792 2014 Motorcycle #> 1176 1176 792 2014 Taxi #> 1177 1177 792 2014 Taxi #> 1178 1178 793 2014 Public light bus #> 1179 1179 794 2014 Taxi #> 1180 1180 794 2014 Taxi #> 1181 1181 795 2014 Public non-franchised bus #> 1182 1182 795 2014 Taxi #> 1183 1183 796 2014 Taxi #> 1184 1184 797 2014 Public franchised bus #> 1185 1185 798 2014 Taxi #> 1186 1186 799 2014 Private car #> 1187 1187 799 2014 Private car #> 1188 1188 799 2014 Private car #> 1189 1189 799 2014 Private car #> 1190 1190 800 2014 Light goods vehicle #> 1191 1191 801 2014 Light goods vehicle #> 1192 1192 802 2014 Taxi #> 1193 1193 802 2014 Private car #> 1194 1194 803 2014 Taxi #> 1195 1195 803 2014 Private car #> 1196 1196 804 2014 Light goods vehicle #> 1197 1197 805 2014 Public franchised bus #> 1198 1198 806 2014 Taxi #> 1199 1199 806 2014 Public franchised bus #> 1200 1200 807 2014 Light goods vehicle #> 1201 1201 807 2014 Taxi #> 1202 1202 807 2014 Motorcycle #> 1203 1203 808 2014 Heavy goods vehicle #> 1204 1204 808 2014 Public franchised bus #> 1205 1205 809 2014 Light goods vehicle #> 1206 1206 810 2014 Taxi #> 1207 1207 811 2014 Public franchised bus #> 1208 1208 812 2014 Taxi #> 1209 1209 812 2014 Private car #> 1210 1210 813 2014 Public light bus #> 1211 1211 814 2014 Motorcycle #> 1212 1212 815 2014 Motorcycle #> 1213 1213 815 2014 Private car #> 1214 1214 816 2014 Public franchised bus #> 1215 1215 817 2014 Motorcycle #> 1216 1216 818 2014 Motorcycle #> 1217 1217 818 2014 Taxi #> 1218 1218 819 2014 Others (incl. unknown) #> 1219 1219 820 2014 Private car #> 1220 1220 820 2014 Private car #> 1221 1221 821 2014 Taxi #> 1222 1222 821 2014 Private car #> 1223 1223 822 2014 Private car #> 1224 1224 822 2014 Taxi #> 1225 1225 823 2014 Taxi #> 1226 1226 823 2014 Taxi #> 1227 1227 824 2014 Motorcycle #> 1228 1228 825 2014 Motorcycle #> 1229 1229 826 2014 Light goods vehicle #> 1230 1230 827 2014 Taxi #> 1231 1231 827 2014 Private car #> 1232 1232 828 2014 Public franchised bus #> 1233 1233 829 2014 Private car #> 1234 1234 829 2014 Taxi #> 1235 1235 830 2014 Private car #> 1236 1236 831 2014 Bicycle #> 1237 1237 832 2014 Light goods vehicle #> 1238 1238 832 2014 Others (incl. unknown) #> 1239 1239 833 2014 Taxi #> 1240 1240 833 2014 Private car #> 1241 1241 834 2014 Public franchised bus #> 1242 1242 835 2014 Public franchised bus #> 1243 1243 836 2014 Taxi #> 1244 1244 837 2014 Public franchised bus #> 1245 1245 838 2014 Private car #> 1246 1246 838 2014 Public franchised bus #> 1247 1247 839 2014 Public franchised bus #> 1248 1248 840 2014 Public franchised bus #> 1249 1249 841 2014 Taxi #> 1250 1250 841 2014 Taxi #> 1251 1251 842 2014 Public franchised bus #> 1252 1252 842 2014 Private car #> 1253 1253 843 2014 Taxi #> 1254 1254 843 2014 Private car #> 1255 1255 844 2014 Taxi #> 1256 1256 844 2014 Public franchised bus #> 1257 1257 845 2014 Public franchised bus #> 1258 1258 846 2014 Public franchised bus #> 1259 1259 847 2014 Bicycle #> 1260 1260 848 2014 Public franchised bus #> 1261 1261 849 2014 Motorcycle #> 1262 1262 850 2014 Public non-franchised bus #> 1263 1263 851 2014 Public non-franchised bus #> 1264 1264 851 2014 Taxi #> 1265 1265 851 2014 Medium goods vehicle #> 1266 1266 852 2014 Motorcycle #> 1267 1267 852 2014 Private car #> 1268 1268 853 2014 Private car #> 1269 1269 853 2014 Private car #> 1270 1270 854 2014 Motorcycle #> 1271 1271 854 2014 Heavy goods vehicle #> 1272 1272 855 2014 Public franchised bus #> 1273 1273 855 2014 Public franchised bus #> 1274 1274 856 2014 Taxi #> 1275 1275 856 2014 Taxi #> 1276 1276 857 2014 Light goods vehicle #> 1277 1277 858 2014 Taxi #> 1278 1278 858 2014 Taxi #> 1279 1279 859 2014 Light goods vehicle #> 1280 1280 860 2014 Motorcycle #> 1281 1281 861 2014 Taxi #> 1282 1282 861 2014 Taxi #> 1283 1283 862 2014 Taxi #> 1284 1284 862 2014 Public non-franchised bus #> 1285 1285 863 2014 Private car #> 1286 1286 863 2014 Bicycle #> 1287 1287 864 2014 Light goods vehicle #> 1288 1288 865 2014 Private car #> 1289 1289 865 2014 Taxi #> 1290 1290 866 2014 Bicycle #> 1291 1291 867 2014 Taxi #> 1292 1292 867 2014 Taxi #> 1293 1293 868 2014 Private car #> 1294 1294 869 2014 Public light bus #> 1295 1295 869 2014 Private car #> 1296 1296 870 2014 Private car #> 1297 1297 871 2014 Private car #> 1298 1298 872 2014 Private car #> 1299 1299 873 2014 Others (incl. unknown) #> 1300 1300 873 2014 Light goods vehicle #> 1301 1301 874 2014 Light goods vehicle #> 1302 1302 874 2014 Private car #> 1303 1303 875 2014 Private car #> 1304 1304 875 2014 Taxi #> 1305 1305 876 2014 Light goods vehicle #> 1306 1306 877 2014 Taxi #> 1307 1307 878 2014 Public non-franchised bus #> 1308 1308 878 2014 Public non-franchised bus #> 1309 1309 878 2014 Taxi #> 1310 1310 879 2014 Tram #> 1311 1311 880 2014 Private car #> 1312 1312 880 2014 Private car #> 1313 1313 881 2014 Private car #> 1314 1314 881 2014 Private car #> 1315 1315 882 2014 Motorcycle #> 1316 1316 883 2014 Bicycle #> 1317 1317 883 2014 Private car #> 1318 1318 884 2014 Bicycle #> 1319 1319 885 2014 Private car #> 1320 1320 885 2014 Public light bus #> 1321 1321 886 2014 Private car #> 1322 1322 887 2014 Private car #> 1323 1323 887 2014 Private car #> 1324 1324 888 2014 Private car #> 1325 1325 889 2014 Motorcycle #> 1326 1326 889 2014 Private car #> 1327 1327 890 2014 Taxi #> 1328 1328 890 2014 Taxi #> 1329 1329 891 2014 Taxi #> 1330 1330 891 2014 Private car #> 1331 1331 891 2014 Taxi #> 1332 1332 891 2014 Private car #> 1333 1333 891 2014 Private car #> 1334 1334 892 2014 Private car #> 1335 1335 893 2014 Motorcycle #> 1336 1336 894 2014 Private car #> 1337 1337 894 2014 Light goods vehicle #> 1338 1338 895 2014 Public franchised bus #> 1339 1339 896 2014 Private car #> 1340 1340 896 2014 Private car #> 1341 1341 897 2014 Taxi #> 1342 1342 897 2014 Private car #> 1343 1343 898 2014 Private car #> 1344 1344 899 2014 Taxi #> 1345 1345 900 2014 Public franchised bus #> 1346 1346 901 2014 Taxi #> 1347 1347 902 2014 Taxi #> 1348 1348 903 2014 Motorcycle #> 1349 1349 903 2014 Taxi #> 1350 1350 904 2014 Taxi #> 1351 1351 904 2014 Medium goods vehicle #> 1352 1352 905 2014 Motorcycle #> 1353 1353 906 2014 Tram #> 1354 1354 906 2014 Tram #> 1355 1355 907 2014 Private car #> 1356 1356 908 2014 Private car #> 1357 1357 908 2014 Taxi #> 1358 1358 908 2014 Taxi #> 1359 1359 909 2014 Taxi #> 1360 1360 910 2014 Public light bus #> 1361 1361 911 2014 Taxi #> 1362 1362 911 2014 Public non-franchised bus #> 1363 1363 912 2014 Public franchised bus #> 1364 1364 912 2014 Public franchised bus #> 1365 1365 913 2014 Light goods vehicle #> 1366 1366 914 2014 Motorcycle #> 1367 1367 915 2014 Private car #> 1368 1368 915 2014 Public franchised bus #> 1369 1369 915 2014 Public non-franchised bus #> 1370 1370 915 2014 Taxi #> 1371 1371 916 2014 Light goods vehicle #> 1372 1372 916 2014 Public light bus #> 1373 1373 917 2014 Bicycle #> 1374 1374 918 2014 Public franchised bus #> 1375 1375 919 2014 Private car #> 1376 1376 920 2014 Taxi #> 1377 1377 921 2014 Private car #> 1378 1378 922 2014 Public franchised bus #> 1379 1379 923 2014 Private car #> 1380 1380 923 2014 Taxi #> 1381 1381 924 2014 Private car #> 1382 1382 925 2014 Public franchised bus #> 1383 1383 925 2014 Public franchised bus #> 1384 1384 926 2014 Private car #> 1385 1385 927 2014 Taxi #> 1386 1386 927 2014 Light goods vehicle #> 1387 1387 928 2014 Public franchised bus #> 1388 1388 929 2014 Taxi #> 1389 1389 930 2014 Private car #> 1390 1390 931 2014 Public franchised bus #> 1391 1391 932 2014 Taxi #> 1392 1392 933 2014 Taxi #> 1393 1393 933 2014 Private car #> 1394 1394 934 2014 Light goods vehicle #> 1395 1395 934 2014 Motorcycle #> 1396 1396 935 2014 Public franchised bus #> 1397 1397 936 2014 Motorcycle #> 1398 1398 936 2014 Motorcycle #> 1399 1399 937 2014 Public franchised bus #> 1400 1400 938 2014 Taxi #> 1401 1401 938 2014 Public light bus #> 1402 1402 939 2014 Light goods vehicle #> 1403 1403 940 2014 Light goods vehicle #> 1404 1404 940 2014 Public franchised bus #> 1405 1405 941 2014 Taxi #> 1406 1406 942 2014 Heavy goods vehicle #> 1407 1407 942 2014 Private car #> 1408 1408 943 2014 Taxi #> 1409 1409 943 2014 Private car #> 1410 1410 944 2014 Taxi #> 1411 1411 944 2014 Bicycle #> 1412 1412 945 2014 Public franchised bus #> 1413 1413 945 2014 Private car #> 1414 1414 946 2014 Private car #> 1415 1415 947 2014 Public franchised bus #> 1416 1416 948 2014 Taxi #> 1417 1417 949 2014 Private car #> 1418 1418 949 2014 Light goods vehicle #> 1419 1419 949 2014 Private car #> 1420 1420 950 2014 Taxi #> 1421 1421 950 2014 Private car #> 1422 1422 951 2014 Private car #> 1423 1423 952 2014 Heavy goods vehicle #> 1424 1424 952 2014 Private car #> 1425 1425 953 2014 Public light bus #> 1426 1426 953 2014 Private car #> 1427 1427 953 2014 Private car #> 1428 1428 953 2014 Private car #> 1429 1429 953 2014 Private car #> 1430 1430 954 2014 Light goods vehicle #> 1431 1431 954 2014 Taxi #> 1432 1432 955 2014 Public franchised bus #> 1433 1433 956 2014 Light goods vehicle #> 1434 1434 957 2014 Public franchised bus #> 1435 1435 958 2014 Private car #> 1436 1436 959 2014 Private car #> 1437 1437 959 2014 Taxi #> 1438 1438 960 2014 Taxi #> 1439 1439 960 2014 Private car #> 1440 1440 961 2014 Taxi #> 1441 1441 962 2014 Taxi #> 1442 1442 963 2014 Public franchised bus #> 1443 1443 964 2014 Public franchised bus #> 1444 1444 965 2014 Private car #> 1445 1445 965 2014 Taxi #> 1446 1446 965 2014 Light goods vehicle #> 1447 1447 966 2014 Public franchised bus #> 1448 1448 967 2014 Private car #> 1449 1449 968 2014 Tram #> 1450 1450 969 2014 Private car #> 1451 1451 969 2014 Private car #> 1452 1452 970 2014 Public light bus #> 1453 1453 971 2014 Motorcycle #> 1454 1454 972 2014 Taxi #> 1455 1455 973 2014 Private car #> 1456 1456 973 2014 Medium goods vehicle #> 1457 1457 973 2014 Private car #> 1458 1458 974 2014 Private car #> 1459 1459 975 2014 Others (incl. unknown) #> 1460 1460 976 2014 Taxi #> 1461 1461 977 2014 Light goods vehicle #> 1462 1462 977 2014 Motorcycle #> 1463 1463 978 2014 Motorcycle #> 1464 1464 978 2014 Motorcycle #> 1465 1465 978 2014 Private car #> 1466 1466 978 2014 Private car #> 1467 1467 979 2014 Private car #> 1468 1468 979 2014 Taxi #> 1469 1469 979 2014 Private car #> 1470 1470 979 2014 Taxi #> 1471 1471 980 2014 Private car #> 1472 1472 981 2014 Taxi #> 1473 1473 981 2014 Public franchised bus #> 1474 1474 982 2014 Private car #> 1475 1475 982 2014 Taxi #> 1476 1476 983 2014 Taxi #> 1477 1477 983 2014 Taxi #> 1478 1478 984 2014 Motorcycle #> 1479 1479 985 2014 Public franchised bus #> 1480 1480 985 2014 Private car #> 1481 1481 986 2014 Taxi #> 1482 1482 987 2014 Private car #> 1483 1483 988 2014 Motorcycle #> 1484 1484 989 2014 Private car #> 1485 1485 990 2014 Public non-franchised bus #> 1486 1486 990 2014 Private car #> 1487 1487 991 2014 Motorcycle #> 1488 1488 992 2014 Tram #> 1489 1489 993 2014 Public non-franchised bus #> 1490 1490 994 2014 Motorcycle #> 1491 1491 994 2014 Taxi #> 1492 1492 995 2014 Medium goods vehicle #> 1493 1493 996 2014 Private car #> 1494 1494 996 2014 Public light bus #> 1495 1495 997 2014 Private car #> 1496 1496 998 2014 Private car #> 1497 1497 999 2014 Private car #> 1498 1498 1000 2014 Public franchised bus #> 1499 1499 1001 2014 Public franchised bus #> 1500 1500 1002 2014 Private car #> 1501 1501 1002 2014 Motorcycle #> 1502 1502 1003 2014 Private car #> 1503 1503 1003 2014 Private car #> 1504 1504 1004 2014 Tram #> 1505 1505 1005 2014 Private car #> 1506 1506 1006 2014 Private car #> 1507 1507 1007 2014 Light goods vehicle #> 1508 1508 1008 2014 Medium goods vehicle #> 1509 1509 1008 2014 Private car #> 1510 1510 1008 2014 Private car #> 1511 1511 1009 2014 Private car #> 1512 1512 1009 2014 Public light bus #> 1513 1513 1010 2014 Public franchised bus #> 1514 1514 1010 2014 Public light bus #> 1515 1515 1011 2014 Public light bus #> 1516 1516 1012 2014 Taxi #> 1517 1517 1013 2014 Taxi #> 1518 1518 1014 2014 Bicycle #> 1519 1519 1014 2014 Taxi #> 1520 1520 1015 2014 Taxi #> 1521 1521 1016 2014 Motorcycle #> 1522 1522 1017 2014 Taxi #> 1523 1523 1017 2014 Private car #> 1524 1524 1018 2014 Taxi #> 1525 1525 1019 2014 Taxi #> 1526 1526 1019 2014 Tram #> 1527 1527 1020 2014 Motorcycle #> 1528 1528 1020 2014 Motorcycle #> 1529 1529 1021 2014 Motorcycle #> 1530 1530 1022 2014 Private car #> 1531 1531 1023 2014 Public franchised bus #> 1532 1532 1024 2014 Private car #> 1533 1533 1024 2014 Taxi #> 1534 1534 1025 2014 Taxi #> 1535 1535 1026 2014 Private car #> 1536 1536 1026 2014 Private car #> 1537 1537 1027 2014 Motorcycle #> 1538 1538 1027 2014 Private car #> 1539 1539 1027 2014 Private car #> 1540 1540 1028 2014 Motorcycle #> 1541 1541 1029 2014 Public franchised bus #> 1542 1542 1030 2014 Taxi #> 1543 1543 1030 2014 Motorcycle #> 1544 1544 1031 2014 Medium goods vehicle #> 1545 1545 1032 2014 Private car #> 1546 1546 1032 2014 Light goods vehicle #> 1547 1547 1033 2014 Public franchised bus #> 1548 1548 1034 2014 Taxi #> 1549 1549 1034 2014 Private car #> 1550 1550 1035 2014 Private car #> 1551 1551 1036 2014 Public franchised bus #> 1552 1552 1037 2014 Others (incl. unknown) #> 1553 1553 1037 2014 Taxi #> 1554 1554 1038 2014 Taxi #> 1555 1555 1039 2014 Public light bus #> 1556 1556 1040 2014 Motorcycle #> 1557 1557 1041 2014 Motorcycle #> 1558 1558 1042 2014 Light goods vehicle #> 1559 1559 1042 2014 Light goods vehicle #> 1560 1560 1043 2014 Private car #> 1561 1561 1043 2014 Taxi #> 1562 1562 1044 2014 Motorcycle #> 1563 1563 1045 2014 Light goods vehicle #> 1564 1564 1045 2014 Taxi #> 1565 1565 1046 2014 Private car #> 1566 1566 1046 2014 Taxi #> 1567 1567 1047 2014 Bicycle #> 1568 1568 1047 2014 Private car #> 1569 1569 1048 2014 Taxi #> 1570 1570 1049 2014 Light goods vehicle #> 1571 1571 1049 2014 Taxi #> 1572 1572 1050 2014 Motorcycle #> 1573 1573 1051 2014 Private car #> 1574 1574 1051 2014 Taxi #> 1575 1575 1052 2014 Medium goods vehicle #> 1576 1576 1052 2014 Public franchised bus #> 1577 1577 1053 2014 Taxi #> 1578 1578 1053 2014 Taxi #> 1579 1579 1054 2014 Taxi #> 1580 1580 1055 2014 Light goods vehicle #> 1581 1581 1056 2014 Others (incl. unknown) #> 1582 1582 1057 2014 Motorcycle #> 1583 1583 1058 2014 Private car #> 1584 1584 1058 2014 Light goods vehicle #> 1585 1585 1059 2014 Taxi #> 1586 1586 1060 2014 Private car #> 1587 1587 1061 2014 Private car #> 1588 1588 1062 2014 Motorcycle #> 1589 1589 1063 2014 Public franchised bus #> 1590 1590 1064 2014 Motorcycle #> 1591 1591 1065 2014 Light goods vehicle #> 1592 1592 1065 2014 Private car #> 1593 1593 1066 2014 Private car #> 1594 1594 1067 2014 Light goods vehicle #> 1595 1595 1067 2014 Private car #> 1596 1596 1068 2014 Motorcycle #> 1597 1597 1069 2014 Motorcycle #> 1598 1598 1070 2014 Private car #> 1599 1599 1070 2014 Bicycle #> 1600 1600 1071 2014 Public franchised bus #> 1601 1601 1072 2014 Taxi #> 1602 1602 1072 2014 Private car #> 1603 1603 1073 2014 Light goods vehicle #> 1604 1604 1073 2014 Taxi #> 1605 1605 1074 2014 Public franchised bus #> 1606 1606 1075 2014 Motorcycle #> 1607 1607 1076 2014 Public franchised bus #> 1608 1608 1076 2014 Public franchised bus #> 1609 1609 1077 2014 Private car #> 1610 1610 1078 2014 Taxi #> 1611 1611 1078 2014 Private car #> 1612 1612 1079 2014 Light goods vehicle #> 1613 1613 1079 2014 Public franchised bus #> 1614 1614 1080 2014 Motorcycle #> 1615 1615 1081 2014 Medium goods vehicle #> 1616 1616 1081 2014 Taxi #> 1617 1617 1082 2014 Taxi #> 1618 1618 1082 2014 Private car #> 1619 1619 1083 2014 Public franchised bus #> 1620 1620 1084 2014 Taxi #> 1621 1621 1084 2014 Motorcycle #> 1622 1622 1085 2014 Taxi #> 1623 1623 1085 2014 Taxi #> 1624 1624 1086 2014 Light goods vehicle #> 1625 1625 1087 2014 Light goods vehicle #> 1626 1626 1087 2014 Others (incl. unknown) #> 1627 1627 1088 2014 Private car #> 1628 1628 1089 2014 Bicycle #> 1629 1629 1090 2014 Others (incl. unknown) #> 1630 1630 1091 2014 Taxi #> 1631 1631 1092 2014 Taxi #> 1632 1632 1092 2014 Public light bus #> 1633 1633 1093 2014 Light goods vehicle #> 1634 1634 1093 2014 Private car #> 1635 1635 1094 2014 Light goods vehicle #> 1636 1636 1095 2014 Public non-franchised bus #> 1637 1637 1096 2014 Bicycle #> 1638 1638 1096 2014 Bicycle #> 1639 1639 1097 2014 Tram #> 1640 1640 1098 2014 Light goods vehicle #> 1641 1641 1098 2014 Private car #> 1642 1642 1099 2014 Bicycle #> 1643 1643 1100 2014 Taxi #> 1644 1644 1101 2014 Light goods vehicle #> 1645 1645 1101 2014 Private car #> 1646 1646 1102 2014 Private car #> 1647 1647 1103 2014 Public franchised bus #> 1648 1648 1104 2014 Taxi #> 1649 1649 1105 2014 Taxi #> 1650 1650 1105 2014 Taxi #> 1651 1651 1106 2014 Public franchised bus #> 1652 1652 1107 2014 Medium goods vehicle #> 1653 1653 1108 2014 Light goods vehicle #> 1654 1654 1108 2014 Taxi #> 1655 1655 1109 2014 Medium goods vehicle #> 1656 1656 1109 2014 Medium goods vehicle #> 1657 1657 1109 2014 Private car #> 1658 1658 1110 2014 Light goods vehicle #> 1659 1659 1111 2014 Private car #> 1660 1660 1111 2014 Others (incl. unknown) #> 1661 1661 1111 2014 Taxi #> 1662 1662 1111 2014 Private car #> 1663 1663 1111 2014 Taxi #> 1664 1664 1112 2014 Taxi #> 1665 1665 1113 2014 Private car #> 1666 1666 1113 2014 Private car #> 1667 1667 1114 2014 Private car #> 1668 1668 1114 2014 Taxi #> 1669 1669 1115 2014 Public franchised bus #> 1670 1670 1115 2014 Medium goods vehicle #> 1671 1671 1116 2014 Public light bus #> 1672 1672 1117 2014 Motorcycle #> 1673 1673 1117 2014 Private car #> 1674 1674 1118 2014 Private car #> 1675 1675 1119 2014 Private car #> 1676 1676 1119 2014 Private car #> 1677 1677 1120 2014 Public franchised bus #> 1678 1678 1121 2014 Taxi #> 1679 1679 1122 2014 Motorcycle #> 1680 1680 1123 2014 Private car #> 1681 1681 1123 2014 Motorcycle #> 1682 1682 1124 2014 Public light bus #> 1683 1683 1125 2014 Taxi #> 1684 1684 1126 2014 Public non-franchised bus #> 1685 1685 1127 2014 Light goods vehicle #> 1686 1686 1128 2014 Public franchised bus #> 1687 1687 1129 2014 Public light bus #> 1688 1688 1130 2014 Taxi #> 1689 1689 1130 2014 Public franchised bus #> 1690 1690 1131 2014 Light goods vehicle #> 1691 1691 1132 2014 Taxi #> 1692 1692 1133 2014 Taxi #> 1693 1693 1134 2014 Bicycle #> 1694 1694 1135 2014 Taxi #> 1695 1695 1135 2014 Taxi #> 1696 1696 1136 2014 Private car #> 1697 1697 1137 2014 Motorcycle #> 1698 1698 1138 2014 Private car #> 1699 1699 1139 2014 Private car #> 1700 1700 1139 2014 Public franchised bus #> 1701 1701 1140 2014 Taxi #> 1702 1702 1141 2014 Motorcycle #> 1703 1703 1142 2014 Public franchised bus #> 1704 1704 1143 2014 Public franchised bus #> 1705 1705 1144 2014 Private car #> 1706 1706 1144 2014 Taxi #> 1707 1707 1145 2014 Private car #> 1708 1708 1145 2014 Public light bus #> 1709 1709 1146 2014 Public light bus #> 1710 1710 1146 2014 Others (incl. unknown) #> 1711 1711 1147 2014 Private car #> 1712 1712 1147 2014 Motorcycle #> 1713 1713 1147 2014 Private car #> 1714 1714 1147 2014 Private car #> 1715 1715 1148 2014 Public franchised bus #> 1716 1716 1149 2014 Bicycle #> 1717 1717 1149 2014 Bicycle #> 1718 1718 1150 2014 Bicycle #> 1719 1719 1150 2014 Taxi #> 1720 1720 1151 2014 Motorcycle #> 1721 1721 1151 2014 Light goods vehicle #> 1722 1722 1152 2014 Private car #> 1723 1723 1153 2014 Public non-franchised bus #> 1724 1724 1154 2014 Private car #> 1725 1725 1154 2014 Private car #> 1726 1726 1155 2014 Medium goods vehicle #> 1727 1727 1155 2014 Taxi #> 1728 1728 1156 2014 Taxi #> 1729 1729 1156 2014 Medium goods vehicle #> 1730 1730 1156 2014 Private car #> 1731 1731 1156 2014 Private car #> 1732 1732 1157 2014 Motorcycle #> 1733 1733 1158 2014 Taxi #> 1734 1734 1158 2014 Taxi #> 1735 1735 1159 2014 Taxi #> 1736 1736 1159 2014 Taxi #> 1737 1737 1160 2014 Public franchised bus #> 1738 1738 1161 2014 Motorcycle #> 1739 1739 1162 2014 Motorcycle #> 1740 1740 1163 2014 Tram #> 1741 1741 1164 2014 Light goods vehicle #> 1742 1742 1164 2014 Motorcycle #> 1743 1743 1165 2014 Taxi #> 1744 1744 1165 2014 Taxi #> 1745 1745 1166 2014 Light goods vehicle #> 1746 1746 1166 2014 Public franchised bus #> 1747 1747 1167 2014 Private car #> 1748 1748 1168 2014 Taxi #> 1749 1749 1168 2014 Others (incl. unknown) #> 1750 1750 1169 2014 Public light bus #> 1751 1751 1170 2014 Taxi #> 1752 1752 1171 2014 Taxi #> 1753 1753 1172 2014 Taxi #> 1754 1754 1172 2014 Motorcycle #> 1755 1755 1173 2014 Private car #> 1756 1756 1173 2014 Light goods vehicle #> 1757 1757 1174 2014 Public light bus #> 1758 1758 1174 2014 Public franchised bus #> 1759 1759 1175 2014 Private car #> 1760 1760 1175 2014 Private car #> 1761 1761 1175 2014 Private car #> 1762 1762 1176 2014 Public franchised bus #> 1763 1763 1177 2014 Taxi #> 1764 1764 1177 2014 Taxi #> 1765 1765 1178 2014 Motorcycle #> 1766 1766 1179 2014 Private car #> 1767 1767 1180 2014 Public franchised bus #> 1768 1768 1181 2014 Taxi #> 1769 1769 1181 2014 Taxi #> 1770 1770 1182 2014 Public non-franchised bus #> 1771 1771 1183 2014 Taxi #> 1772 1772 1183 2014 Private car #> 1773 1773 1183 2014 Taxi #> 1774 1774 1184 2014 Motorcycle #> 1775 1775 1185 2014 Private car #> 1776 1776 1185 2014 Motorcycle #> 1777 1777 1186 2014 Private car #> 1778 1778 1186 2014 Private car #> 1779 1779 1187 2014 Public franchised bus #> 1780 1780 1188 2014 Heavy goods vehicle #> 1781 1781 1188 2014 Private car #> 1782 1782 1189 2014 Public non-franchised bus #> 1783 1783 1190 2014 Public non-franchised bus #> 1784 1784 1190 2014 Light goods vehicle #> 1785 1785 1191 2014 Private car #> 1786 1786 1192 2014 Public franchised bus #> 1787 1787 1193 2014 Light goods vehicle #> 1788 1788 1193 2014 Taxi #> 1789 1789 1194 2014 Motorcycle #> 1790 1790 1194 2014 Taxi #> 1791 1791 1195 2014 Public light bus #> 1792 1792 1195 2014 Private car #> 1793 1793 1196 2014 Public franchised bus #> 1794 1794 1197 2014 Public non-franchised bus #> 1795 1795 1198 2014 Medium goods vehicle #> 1796 1796 1198 2014 Motorcycle #> 1797 1797 1199 2014 Taxi #> 1798 1798 1199 2014 Public light bus #> 1799 1799 1200 2014 Light goods vehicle #> 1800 1800 1201 2014 Private car #> 1801 1801 1202 2014 Public light bus #> 1802 1802 1203 2014 Taxi #> 1803 1803 1203 2014 Motorcycle #> 1804 1804 1204 2014 Private car #> 1805 1805 1205 2014 Light goods vehicle #> 1806 1806 1205 2014 Public non-franchised bus #> 1807 1807 1206 2014 Light goods vehicle #> 1808 1808 1206 2014 Public non-franchised bus #> 1809 1809 1207 2014 Motorcycle #> 1810 1810 1207 2014 Private car #> 1811 1811 1208 2014 Public light bus #> 1812 1812 1209 2014 Motorcycle #> 1813 1813 1210 2014 Public franchised bus #> 1814 1814 1211 2014 Bicycle #> 1815 1815 1212 2014 Taxi #> 1816 1816 1213 2014 Private car #> 1817 1817 1213 2014 Medium goods vehicle #> 1818 1818 1214 2014 Taxi #> 1819 1819 1214 2014 Private car #> 1820 1820 1215 2014 Private car #> 1821 1821 1215 2014 Taxi #> 1822 1822 1216 2014 Private car #> 1823 1823 1217 2014 Private car #> 1824 1824 1217 2014 Motorcycle #> 1825 1825 1218 2014 Private car #> 1826 1826 1219 2014 Public franchised bus #> 1827 1827 1220 2014 Public non-franchised bus #> 1828 1828 1221 2014 Light goods vehicle #> 1829 1829 1221 2014 Public franchised bus #> 1830 1830 1221 2014 Medium goods vehicle #> 1831 1831 1222 2014 Tram #> 1832 1832 1222 2014 Others (incl. unknown) #> 1833 1833 1223 2014 Others (incl. unknown) #> 1834 1834 1224 2014 Public franchised bus #> 1835 1835 1224 2014 Public franchised bus #> 1836 1836 1225 2014 Private car #> 1837 1837 1226 2014 Public franchised bus #> 1838 1838 1226 2014 Private car #> 1839 1839 1227 2014 Public franchised bus #> 1840 1840 1228 2014 Taxi #> 1841 1841 1228 2014 Taxi #> 1842 1842 1229 2014 Private car #> 1843 1843 1230 2014 Others (incl. unknown) #> 1844 1844 1230 2014 Private car #> 1845 1845 1230 2014 Private car #> 1846 1846 1231 2014 Light goods vehicle #> 1847 1847 1231 2014 Private car #> 1848 1848 1232 2014 Private car #> 1849 1849 1232 2014 Private car #> 1850 1850 1232 2014 Private car #> 1851 1851 1233 2014 Motorcycle #> 1852 1852 1233 2014 Private car #> 1853 1853 1234 2014 Bicycle #> 1854 1854 1234 2014 Private car #> 1855 1855 1235 2014 Motorcycle #> 1856 1856 1235 2014 Private car #> 1857 1857 1236 2014 Bicycle #> 1858 1858 1236 2014 Private car #> 1859 1859 1237 2014 Light goods vehicle #> 1860 1860 1237 2014 Public franchised bus #> 1861 1861 1238 2014 Private car #> 1862 1862 1239 2014 Light goods vehicle #> 1863 1863 1239 2014 Taxi #> 1864 1864 1240 2014 Private car #> 1865 1865 1240 2014 Medium goods vehicle #> 1866 1866 1241 2014 Taxi #> 1867 1867 1242 2014 Motorcycle #> 1868 1868 1243 2014 Private car #> 1869 1869 1243 2014 Public light bus #> 1870 1870 1244 2014 Private car #> 1871 1871 1245 2014 Medium goods vehicle #> 1872 1872 1245 2014 Taxi #> 1873 1873 1246 2014 Tram #> 1874 1874 1247 2014 Private car #> 1875 1875 1247 2014 Taxi #> 1876 1876 1247 2014 Taxi #> 1877 1877 1248 2014 Taxi #> 1878 1878 1249 2014 Public franchised bus #> 1879 1879 1249 2014 Bicycle #> 1880 1880 1250 2014 Motorcycle #> 1881 1881 1250 2014 Bicycle #> 1882 1882 1251 2014 Taxi #> 1883 1883 1252 2014 Private car #> 1884 1884 1253 2014 Motorcycle #> 1885 1885 1253 2014 Private car #> 1886 1886 1254 2014 Private car #> 1887 1887 1254 2014 Motorcycle #> 1888 1888 1255 2014 Private car #> 1889 1889 1255 2014 Private car #> 1890 1890 1256 2014 Motorcycle #> 1891 1891 1256 2014 Private car #> 1892 1892 1257 2014 Public franchised bus #> 1893 1893 1258 2014 Public franchised bus #> 1894 1894 1259 2014 Light goods vehicle #> 1895 1895 1259 2014 Taxi #> 1896 1896 1260 2014 Private car #> 1897 1897 1260 2014 Motorcycle #> 1898 1898 1261 2014 Motorcycle #> 1899 1899 1262 2014 Private car #> 1900 1900 1262 2014 Private car #> 1901 1901 1263 2014 Private car #> 1902 1902 1263 2014 Public franchised bus #> 1903 1903 1264 2014 Public franchised bus #> 1904 1904 1265 2014 Light goods vehicle #> 1905 1905 1265 2014 Taxi #> 1906 1906 1266 2014 Public light bus #> 1907 1907 1267 2014 Private car #> 1908 1908 1267 2014 Public light bus #> 1909 1909 1268 2014 Light goods vehicle #> 1910 1910 1269 2014 Taxi #> 1911 1911 1269 2014 Taxi #> 1912 1912 1270 2014 Medium goods vehicle #> 1913 1913 1270 2014 Taxi #> 1914 1914 1271 2014 Taxi #> 1915 1915 1271 2014 Taxi #> 1916 1916 1272 2014 Public franchised bus #> 1917 1917 1272 2014 Private car #> 1918 1918 1273 2014 Taxi #> 1919 1919 1273 2014 Private car #> 1920 1920 1274 2014 Light goods vehicle #> 1921 1921 1274 2014 Bicycle #> 1922 1922 1275 2014 Private car #> 1923 1923 1275 2014 Others (incl. unknown) #> 1924 1924 1275 2014 Private car #> 1925 1925 1276 2014 Private car #> 1926 1926 1276 2014 Motorcycle #> 1927 1927 1277 2014 Medium goods vehicle #> 1928 1928 1278 2014 Private car #> 1929 1929 1278 2014 Others (incl. unknown) #> 1930 1930 1279 2014 Motorcycle #> 1931 1931 1280 2014 Taxi #> 1932 1932 1280 2014 Taxi #> 1933 1933 1281 2014 Taxi #> 1934 1934 1281 2014 Private car #> 1935 1935 1281 2014 Private car #> 1936 1936 1281 2014 Private car #> 1937 1937 1282 2014 Public light bus #> 1938 1938 1283 2014 Taxi #> 1939 1939 1284 2014 Taxi #> 1940 1940 1285 2014 Private car #> 1941 1941 1285 2014 Taxi #> 1942 1942 1286 2014 Light goods vehicle #> 1943 1943 1287 2014 Public franchised bus #> 1944 1944 1288 2014 Taxi #> 1945 1945 1288 2014 Public franchised bus #> 1946 1946 1289 2014 Taxi #> 1947 1947 1290 2014 Taxi #> 1948 1948 1290 2014 Taxi #> 1949 1949 1291 2014 Private car #> 1950 1950 1292 2014 Public franchised bus #> 1951 1951 1293 2014 Light goods vehicle #> 1952 1952 1293 2014 Taxi #> 1953 1953 1294 2014 Public light bus #> 1954 1954 1295 2014 Light goods vehicle #> 1955 1955 1296 2014 Public franchised bus #> 1956 1956 1296 2014 Taxi #> 1957 1957 1297 2014 Taxi #> 1958 1958 1297 2014 Taxi #> 1959 1959 1298 2014 Others (incl. unknown) #> 1960 1960 1298 2014 Private car #> 1961 1961 1299 2014 Public franchised bus #> 1962 1962 1300 2014 Private car #> 1963 1963 1301 2014 Private car #> 1964 1964 1301 2014 Private car #> 1965 1965 1302 2014 Light goods vehicle #> 1966 1966 1302 2014 Private car #> 1967 1967 1303 2014 Private car #> 1968 1968 1303 2014 Private car #> 1969 1969 1304 2014 Private car #> 1970 1970 1305 2014 Private car #> 1971 1971 1305 2014 Public franchised bus #> 1972 1972 1306 2014 Public light bus #> 1973 1973 1307 2014 Medium goods vehicle #> 1974 1974 1307 2014 Light goods vehicle #> 1975 1975 1308 2014 Private car #> 1976 1976 1308 2014 Tram #> 1977 1977 1309 2014 Taxi #> 1978 1978 1310 2014 Taxi #> 1979 1979 1311 2014 Motorcycle #> 1980 1980 1312 2014 Private car #> 1981 1981 1313 2014 Private car #> 1982 1982 1314 2014 Others (incl. unknown) #> 1983 1983 1315 2014 Taxi #> 1984 1984 1316 2014 Taxi #> 1985 1985 1316 2014 Taxi #> 1986 1986 1317 2014 Taxi #> 1987 1987 1318 2014 Light goods vehicle #> 1988 1988 1319 2014 Heavy goods vehicle #> 1989 1989 1319 2014 Taxi #> 1990 1990 1320 2014 Medium goods vehicle #> 1991 1991 1320 2014 Motorcycle #> 1992 1992 1321 2014 Light goods vehicle #> 1993 1993 1322 2014 Public franchised bus #> 1994 1994 1323 2014 Tram #> 1995 1995 1324 2014 Taxi #> 1996 1996 1325 2014 Taxi #> 1997 1997 1326 2014 Taxi #> 1998 1998 1327 2014 Private car #> 1999 1999 1328 2014 Private car #> 2000 2000 1329 2014 Motorcycle #> 2001 2001 1330 2014 Private car #> 2002 2002 1330 2014 Taxi #> 2003 2003 1331 2014 Taxi #> 2004 2004 1332 2014 Taxi #> 2005 2005 1333 2014 Private car #> 2006 2006 1334 2014 Private car #> 2007 2007 1335 2014 Private car #> 2008 2008 1335 2014 Public franchised bus #> 2009 2009 1336 2014 Motorcycle #> 2010 2010 1336 2014 Light goods vehicle #> 2011 2011 1336 2014 Light goods vehicle #> 2012 2012 1337 2014 Private car #> 2013 2013 1337 2014 Public franchised bus #> 2014 2014 1338 2014 Motorcycle #> 2015 2015 1339 2014 Light goods vehicle #> 2016 2016 1339 2014 Light goods vehicle #> 2017 2017 1339 2014 Taxi #> 2018 2018 1340 2014 Light goods vehicle #> 2019 2019 1340 2014 Private car #> 2020 2020 1340 2014 Private car #> 2021 2021 1341 2014 Taxi #> 2022 2022 1342 2014 Taxi #> 2023 2023 1342 2014 Taxi #> 2024 2024 1343 2014 Motorcycle #> 2025 2025 1344 2014 Private car #> 2026 2026 1344 2014 Private car #> 2027 2027 1344 2014 Private car #> 2028 2028 1345 2014 Public light bus #> 2029 2029 1346 2014 Taxi #> 2030 2030 1347 2014 Light goods vehicle #> 2031 2031 1347 2014 Taxi #> 2032 2032 1348 2014 Taxi #> 2033 2033 1348 2014 Public franchised bus #> 2034 2034 1349 2014 Public franchised bus #> 2035 2035 1349 2014 Taxi #> 2036 2036 1350 2014 Taxi #> 2037 2037 1351 2014 Taxi #> 2038 2038 1351 2014 Public light bus #> 2039 2039 1352 2014 Private car #> 2040 2040 1353 2014 Taxi #> 2041 2041 1353 2014 Private car #> 2042 2042 1354 2014 Light goods vehicle #> 2043 2043 1355 2014 Light goods vehicle #> 2044 2044 1355 2014 Taxi #> 2045 2045 1356 2014 Private car #> 2046 2046 1357 2014 Taxi #> 2047 2047 1358 2014 Taxi #> 2048 2048 1359 2014 Light goods vehicle #> 2049 2049 1360 2014 Private car #> 2050 2050 1361 2014 Motorcycle #> 2051 2051 1361 2014 Private car #> 2052 2052 1362 2014 Taxi #> 2053 2053 1362 2014 Private car #> 2054 2054 1363 2014 Private car #> 2055 2055 1364 2014 Taxi #> 2056 2056 1364 2014 Taxi #> 2057 2057 1365 2014 Private car #> 2058 2058 1366 2014 Private car #> 2059 2059 1367 2014 Taxi #> 2060 2060 1367 2014 Light goods vehicle #> 2061 2061 1368 2014 Private car #> 2062 2062 1369 2014 Private car #> 2063 2063 1370 2014 Private car #> 2064 2064 1370 2014 Taxi #> 2065 2065 1371 2014 Motorcycle #> 2066 2066 1372 2014 Private car #> 2067 2067 1372 2014 Private car #> 2068 2068 1372 2014 Private car #> 2069 2069 1372 2014 Light goods vehicle #> 2070 2070 1373 2014 Private car #> 2071 2071 1373 2014 Private car #> 2072 2072 1373 2014 Private car #> 2073 2073 1373 2014 Private car #> 2074 2074 1374 2014 Public light bus #> 2075 2075 1374 2014 Taxi #> 2076 2076 1375 2014 Public franchised bus #> 2077 2077 1375 2014 Private car #> 2078 2078 1376 2014 Medium goods vehicle #> 2079 2079 1376 2014 Private car #> 2080 2080 1377 2014 Taxi #> 2081 2081 1377 2014 Private car #> 2082 2082 1378 2014 Private car #> 2083 2083 1378 2014 Bicycle #> 2084 2084 1379 2014 Private car #> 2085 2085 1379 2014 Private car #> 2086 2086 1379 2014 Private car #> 2087 2087 1379 2014 Taxi #> 2088 2088 1380 2014 Public light bus #> 2089 2089 1381 2014 Public franchised bus #> 2090 2090 1382 2014 Private car #> 2091 2091 1382 2014 Public non-franchised bus #> 2092 2092 1383 2014 Private car #> 2093 2093 1384 2014 Public light bus #> 2094 2094 1385 2014 Public non-franchised bus #> 2095 2095 1385 2014 Public franchised bus #> 2096 2096 1386 2014 Heavy goods vehicle #> 2097 2097 1386 2014 Public franchised bus #> 2098 2098 1387 2014 Taxi #> 2099 2099 1388 2014 Heavy goods vehicle #> 2100 2100 1388 2014 Private car #> 2101 2101 1389 2014 Private car #> 2102 2102 1390 2014 Public franchised bus #> 2103 2103 1391 2014 Public franchised bus #> 2104 2104 1392 2014 Private car #> 2105 2105 1393 2014 Private car #> 2106 2106 1393 2014 Taxi #> 2107 2107 1394 2014 Light goods vehicle #> 2108 2108 1394 2014 Private car #> 2109 2109 1395 2014 Private car #> 2110 2110 1396 2014 Public franchised bus #> 2111 2111 1397 2014 Taxi #> 2112 2112 1398 2014 Taxi #> 2113 2113 1399 2014 Motorcycle #> 2114 2114 1400 2014 Light goods vehicle #> 2115 2115 1401 2014 Light goods vehicle #> 2116 2116 1402 2014 Public franchised bus #> 2117 2117 1402 2014 Private car #> 2118 2118 1403 2014 Public franchised bus #> 2119 2119 1404 2014 Taxi #> 2120 2120 1405 2014 Motorcycle #> 2121 2121 1406 2014 Motorcycle #> 2122 2122 1406 2014 Taxi #> 2123 2123 1407 2014 Public franchised bus #> 2124 2124 1408 2014 Private car #> 2125 2125 1408 2014 Private car #> 2126 2126 1409 2014 Light goods vehicle #> 2127 2127 1410 2014 Public franchised bus #> 2128 2128 1411 2014 Taxi #> 2129 2129 1411 2014 Public franchised bus #> 2130 2130 1412 2014 Light goods vehicle #> 2131 2131 1412 2014 Public light bus #> 2132 2132 1413 2014 Taxi #> 2133 2133 1413 2014 Motorcycle #> 2134 2134 1414 2014 Light goods vehicle #> 2135 2135 1415 2014 Taxi #> 2136 2136 1416 2014 Private car #> 2137 2137 1417 2014 Light goods vehicle #> 2138 2138 1418 2014 Light goods vehicle #> 2139 2139 1418 2014 Taxi #> 2140 2140 1419 2014 Private car #> 2141 2141 1419 2014 Private car #> 2142 2142 1420 2014 Public franchised bus #> 2143 2143 1421 2014 Public light bus #> 2144 2144 1422 2014 Taxi #> 2145 2145 1422 2014 Private car #> 2146 2146 1423 2014 Taxi #> 2147 2147 1424 2014 Taxi #> 2148 2148 1424 2014 Private car #> 2149 2149 1425 2014 Motorcycle #> 2150 2150 1425 2014 Light goods vehicle #> 2151 2151 1426 2014 Public franchised bus #> 2152 2152 1427 2014 Taxi #> 2153 2153 1428 2014 Private car #> 2154 2154 1428 2014 Public franchised bus #> 2155 2155 1429 2014 Private car #> 2156 2156 1429 2014 Private car #> 2157 2157 1430 2014 Taxi #> 2158 2158 1431 2014 Public franchised bus #> 2159 2159 1432 2014 Public franchised bus #> 2160 2160 1433 2014 Motorcycle #> 2161 2161 1434 2014 Light goods vehicle #> 2162 2162 1434 2014 Others (incl. unknown) #> 2163 2163 1435 2014 Public franchised bus #> 2164 2164 1435 2014 Taxi #> 2165 2165 1436 2014 Private car #> 2166 2166 1437 2014 Private car #> 2167 2167 1438 2014 Taxi #> 2168 2168 1438 2014 Private car #> 2169 2169 1439 2014 Light goods vehicle #> 2170 2170 1440 2014 Private car #> 2171 2171 1440 2014 Taxi #> 2172 2172 1441 2014 Private car #> 2173 2173 1441 2014 Bicycle #> 2174 2174 1442 2014 Taxi #> 2175 2175 1443 2014 Private car #> 2176 2176 1444 2014 Motorcycle #> 2177 2177 1445 2014 Bicycle #> 2178 2178 1446 2014 Motorcycle #> 2179 2179 1447 2014 Motorcycle #> 2180 2180 1448 2014 Private car #> 2181 2181 1448 2014 Others (incl. unknown) #> 2182 2182 1448 2014 Private car #> 2183 2183 1449 2014 Taxi #> 2184 2184 1449 2014 Public franchised bus #> 2185 2185 1450 2014 Light goods vehicle #> 2186 2186 1450 2014 Public franchised bus #> 2187 2187 1451 2014 Taxi #> 2188 2188 1452 2014 Private car #> 2189 2189 1453 2014 Light goods vehicle #> 2190 2190 1454 2014 Public franchised bus #> 2191 2191 1455 2014 Private car #> 2192 2192 1456 2014 Light goods vehicle #> 2193 2193 1457 2014 Light goods vehicle #> 2194 2194 1457 2014 Medium goods vehicle #> 2195 2195 1458 2014 Taxi #> 2196 2196 1458 2014 Light goods vehicle #> 2197 2197 1459 2014 Public franchised bus #> 2198 2198 1460 2014 Tram #> 2199 2199 1461 2014 Light goods vehicle #> 2200 2200 1462 2014 Private car #> 2201 2201 1462 2014 Private car #> 2202 2202 1463 2014 Public franchised bus #> 2203 2203 1464 2014 Taxi #> 2204 2204 1464 2014 Public franchised bus #> 2205 2205 1465 2014 Public light bus #> 2206 2206 1466 2014 Taxi #> 2207 2207 1466 2014 Private car #> 2208 2208 1467 2014 Public franchised bus #> 2209 2209 1468 2014 Taxi #> 2210 2210 1469 2014 Light goods vehicle #> 2211 2211 1470 2014 Public franchised bus #> 2212 2212 1471 2014 Taxi #> 2213 2213 1472 2014 Private car #> 2214 2214 1473 2014 Private car #> 2215 2215 1473 2014 Private car #> 2216 2216 1474 2014 Light goods vehicle #> 2217 2217 1475 2014 Private car #> 2218 2218 1476 2014 Bicycle #> 2219 2219 1477 2014 Motorcycle #> 2220 2220 1478 2014 Bicycle #> 2221 2221 1479 2014 Tram #> 2222 2222 1480 2014 Public light bus #> 2223 2223 1481 2014 Medium goods vehicle #> 2224 2224 1481 2014 Others (incl. unknown) #> 2225 2225 1482 2014 Taxi #> 2226 2226 1482 2014 Light goods vehicle #> 2227 2227 1483 2014 Motorcycle #> 2228 2228 1484 2014 Private car #> 2229 2229 1485 2014 Motorcycle #> 2230 2230 1485 2014 Private car #> 2231 2231 1486 2014 Public franchised bus #> 2232 2232 1487 2014 Private car #> 2233 2233 1487 2014 Taxi #> 2234 2234 1487 2014 Taxi #> 2235 2235 1487 2014 Light goods vehicle #> 2236 2236 1488 2014 Public franchised bus #> 2237 2237 1488 2014 Public non-franchised bus #> 2238 2238 1488 2014 Public non-franchised bus #> 2239 2239 1489 2014 Taxi #> 2240 2240 1489 2014 Private car #> 2241 2241 1490 2014 Private car #> 2242 2242 1490 2014 Private car #> 2243 2243 1491 2014 Public franchised bus #> 2244 2244 1492 2014 Taxi #> 2245 2245 1492 2014 Taxi #> 2246 2246 1492 2014 Taxi #> 2247 2247 1493 2014 Private car #> 2248 2248 1493 2014 Private car #> 2249 2249 1494 2014 Taxi #> 2250 2250 1494 2014 Taxi #> 2251 2251 1495 2014 Taxi #> 2252 2252 1496 2014 Private car #> 2253 2253 1496 2014 Light goods vehicle #> 2254 2254 1496 2014 Private car #> 2255 2255 1497 2014 Private car #> 2256 2256 1497 2014 Taxi #> 2257 2257 1498 2014 Light goods vehicle #> 2258 2258 1499 2014 Private car #> 2259 2259 1499 2014 Private car #> 2260 2260 1500 2014 Taxi #> 2261 2261 1500 2014 Taxi #> 2262 2262 1501 2014 Taxi #> 2263 2263 1501 2014 Private car #> 2264 2264 1501 2014 Private car #> 2265 2265 1501 2014 Taxi #> 2266 2266 1501 2014 Taxi #> 2267 2267 1501 2014 Private car #> 2268 2268 1502 2014 Taxi #> 2269 2269 1502 2014 Public light bus #> 2270 2270 1503 2014 Public franchised bus #> 2271 2271 1504 2014 Public franchised bus #> 2272 2272 1505 2014 Taxi #> 2273 2273 1506 2014 Public light bus #> 2274 2274 1506 2014 Public non-franchised bus #> 2275 2275 1507 2014 Private car #> 2276 2276 1508 2014 Taxi #> 2277 2277 1509 2014 Motorcycle #> 2278 2278 1510 2014 Taxi #> 2279 2279 1511 2014 Motorcycle #> 2280 2280 1512 2014 Bicycle #> 2281 2281 1513 2014 Private car #> 2282 2282 1513 2014 Bicycle #> 2283 2283 1514 2014 Public light bus #> 2284 2284 1515 2014 Bicycle #> 2285 2285 1515 2014 Public franchised bus #> 2286 2286 1516 2014 Public franchised bus #> 2287 2287 1516 2014 Public franchised bus #> 2288 2288 1517 2014 Motorcycle #> 2289 2289 1518 2014 Light goods vehicle #> 2290 2290 1518 2014 Public franchised bus #> 2291 2291 1519 2014 Light goods vehicle #> 2292 2292 1520 2014 Public light bus #> 2293 2293 1521 2014 Private car #> 2294 2294 1521 2014 Private car #> 2295 2295 1522 2014 Public franchised bus #> 2296 2296 1523 2014 Taxi #> 2297 2297 1524 2014 Medium goods vehicle #> 2298 2298 1524 2014 Private car #> 2299 2299 1525 2014 Light goods vehicle #> 2300 2300 1525 2014 Light goods vehicle #> 2301 2301 1526 2014 Others (incl. unknown) #> 2302 2302 1527 2014 Private car #> 2303 2303 1527 2014 Taxi #> 2304 2304 1528 2014 Bicycle #> 2305 2305 1529 2014 Private car #> 2306 2306 1530 2014 Public franchised bus #> 2307 2307 1530 2014 Private car #> 2308 2308 1530 2014 Heavy goods vehicle #> 2309 2309 1531 2014 Light goods vehicle #> 2310 2310 1532 2014 Light goods vehicle #> 2311 2311 1533 2014 Motorcycle #> 2312 2312 1533 2014 Taxi #> 2313 2313 1534 2014 Private car #> 2314 2314 1534 2014 Motorcycle #> 2315 2315 1535 2014 Public franchised bus #> 2316 2316 1536 2014 Bicycle #> 2317 2317 1537 2014 Taxi #> 2318 2318 1537 2014 Taxi #> 2319 2319 1538 2014 Taxi #> 2320 2320 1539 2014 Private car #> 2321 2321 1540 2014 Public franchised bus #> 2322 2322 1540 2014 Private car #> 2323 2323 1541 2014 Tram #> 2324 2324 1541 2014 Public franchised bus #> 2325 2325 1542 2014 Motorcycle #> 2326 2326 1542 2014 Private car #> 2327 2327 1543 2014 Public franchised bus #> 2328 2328 1543 2014 Taxi #> 2329 2329 1544 2014 Light goods vehicle #> 2330 2330 1545 2014 Motorcycle #> 2331 2331 1546 2014 Motorcycle #> 2332 2332 1546 2014 Private car #> 2333 2333 1547 2014 Private car #> 2334 2334 1548 2014 Public franchised bus #> 2335 2335 1549 2014 Bicycle #> 2336 2336 1549 2014 Taxi #> 2337 2337 1550 2014 Public franchised bus #> 2338 2338 1551 2014 Taxi #> 2339 2339 1551 2014 Taxi #> 2340 2340 1551 2014 Taxi #> 2341 2341 1552 2014 Light goods vehicle #> 2342 2342 1553 2014 Private car #> 2343 2343 1554 2014 Private car #> 2344 2344 1554 2014 Motorcycle #> 2345 2345 1555 2014 Motorcycle #> 2346 2346 1555 2014 Taxi #> 2347 2347 1556 2014 Light goods vehicle #> 2348 2348 1556 2014 Private car #> 2349 2349 1557 2014 Taxi #> 2350 2350 1558 2014 Public light bus #> 2351 2351 1558 2014 Private car #> 2352 2352 1559 2014 Motorcycle #> 2353 2353 1559 2014 Private car #> 2354 2354 1560 2014 Motorcycle #> 2355 2355 1561 2014 Light goods vehicle #> 2356 2356 1562 2014 Public franchised bus #> 2357 2357 1563 2014 Medium goods vehicle #> 2358 2358 1563 2014 Taxi #> 2359 2359 1564 2014 Taxi #> 2360 2360 1565 2014 Taxi #> 2361 2361 1565 2014 Taxi #> 2362 2362 1566 2014 Public franchised bus #> 2363 2363 1567 2014 Motorcycle #> 2364 2364 1567 2014 Private car #> 2365 2365 1568 2014 Public light bus #> 2366 2366 1569 2014 Light goods vehicle #> 2367 2367 1570 2014 Public franchised bus #> 2368 2368 1571 2014 Public franchised bus #> 2369 2369 1572 2014 Private car #> 2370 2370 1573 2014 Taxi #> 2371 2371 1574 2014 Private car #> 2372 2372 1575 2014 Bicycle #> 2373 2373 1576 2014 Motorcycle #> 2374 2374 1577 2014 Public franchised bus #> 2375 2375 1577 2014 Taxi #> 2376 2376 1578 2014 Public franchised bus #> 2377 2377 1579 2014 Private car #> 2378 2378 1580 2014 Bicycle #> 2379 2379 1580 2014 Private car #> 2380 2380 1581 2014 Light goods vehicle #> 2381 2381 1581 2014 Taxi #> 2382 2382 1582 2014 Taxi #> 2383 2383 1583 2014 Private car #> 2384 2384 1583 2014 Taxi #> 2385 2385 1584 2014 Private car #> 2386 2386 1584 2014 Motorcycle #> 2387 2387 1584 2014 Taxi #> 2388 2388 1584 2014 Taxi #> 2389 2389 1584 2014 Public light bus #> 2390 2390 1585 2014 Private car #> 2391 2391 1585 2014 Private car #> 2392 2392 1586 2014 Taxi #> 2393 2393 1587 2014 Public franchised bus #> 2394 2394 1588 2014 Private car #> 2395 2395 1588 2014 Private car #> 2396 2396 1589 2014 Private car #> 2397 2397 1590 2014 Bicycle #> 2398 2398 1591 2014 Taxi #> 2399 2399 1592 2014 Private car #> 2400 2400 1593 2014 Private car #> 2401 2401 1594 2014 Light goods vehicle #> 2402 2402 1594 2014 Taxi #> 2403 2403 1594 2014 Taxi #> 2404 2404 1594 2014 Private car #> 2405 2405 1595 2014 Medium goods vehicle #> 2406 2406 1596 2014 Public franchised bus #> 2407 2407 1597 2014 Private car #> 2408 2408 1597 2014 Private car #> 2409 2409 1598 2014 Motorcycle #> 2410 2410 1599 2014 Taxi #> 2411 2411 1599 2014 Private car #> 2412 2412 1600 2014 Private car #> 2413 2413 1600 2014 Motorcycle #> 2414 2414 1601 2014 Tram #> 2415 2415 1602 2014 Public franchised bus #> 2416 2416 1602 2014 Public non-franchised bus #> 2417 2417 1603 2014 Light goods vehicle #> 2418 2418 1604 2014 Taxi #> 2419 2419 1604 2014 Private car #> 2420 2420 1605 2014 Taxi #> 2421 2421 1606 2014 Others (incl. unknown) #> 2422 2422 1607 2014 Taxi #> 2423 2423 1608 2014 Taxi #> 2424 2424 1608 2014 Public franchised bus #> 2425 2425 1609 2014 Taxi #> 2426 2426 1610 2014 Private car #> 2427 2427 1611 2014 Public franchised bus #> 2428 2428 1612 2014 Public franchised bus #> 2429 2429 1612 2014 Light goods vehicle #> 2430 2430 1613 2014 Private car #> 2431 2431 1613 2014 Light goods vehicle #> 2432 2432 1614 2014 Light goods vehicle #> 2433 2433 1614 2014 Taxi #> 2434 2434 1615 2014 Private car #> 2435 2435 1616 2014 Taxi #> 2436 2436 1617 2014 Public light bus #> 2437 2437 1618 2014 Private car #> 2438 2438 1619 2014 Private car #> 2439 2439 1619 2014 Light goods vehicle #> 2440 2440 1620 2014 Private car #> 2441 2441 1620 2014 Motorcycle #> 2442 2442 1621 2014 Light goods vehicle #> 2443 2443 1621 2014 Light goods vehicle #> 2444 2444 1622 2014 Bicycle #> 2445 2445 1623 2014 Light goods vehicle #> 2446 2446 1623 2014 Bicycle #> 2447 2447 1624 2014 Public franchised bus #> 2448 2448 1625 2014 Light goods vehicle #> 2449 2449 1625 2014 Taxi #> 2450 2450 1626 2014 Private car #> 2451 2451 1626 2014 Taxi #> 2452 2452 1627 2014 Light goods vehicle #> 2453 2453 1627 2014 Taxi #> 2454 2454 1627 2014 Private car #> 2455 2455 1628 2014 Light goods vehicle #> 2456 2456 1628 2014 Private car #> 2457 2457 1629 2014 Private car #> 2458 2458 1630 2014 Public non-franchised bus #> 2459 2459 1631 2014 Public light bus #> 2460 2460 1631 2014 Light goods vehicle #> 2461 2461 1632 2014 Private car #> 2462 2462 1633 2014 Private car #> 2463 2463 1633 2014 Public franchised bus #> 2464 2464 1634 2014 Public light bus #> 2465 2465 1635 2014 Motorcycle #> 2466 2466 1636 2014 Private car #> 2467 2467 1636 2014 Private car #> 2468 2468 1637 2014 Motorcycle #> 2469 2469 1638 2014 Motorcycle #> 2470 2470 1639 2014 Public light bus #> 2471 2471 1639 2014 Public franchised bus #> 2472 2472 1640 2014 Light goods vehicle #> 2473 2473 1641 2014 Motorcycle #> 2474 2474 1641 2014 Private car #> 2475 2475 1642 2014 Taxi #> 2476 2476 1643 2014 Taxi #> 2477 2477 1643 2014 Taxi #> 2478 2478 1644 2014 Taxi #> 2479 2479 1644 2014 Private car #> 2480 2480 1644 2014 Public light bus #> 2481 2481 1645 2014 Taxi #> 2482 2482 1646 2014 Motorcycle #> 2483 2483 1647 2014 Public franchised bus #> 2484 2484 1648 2014 Private car #> 2485 2485 1648 2014 Private car #> 2486 2486 1648 2014 Taxi #> 2487 2487 1649 2014 Taxi #> 2488 2488 1649 2014 Private car #> 2489 2489 1650 2014 Motorcycle #> 2490 2490 1651 2014 Light goods vehicle #> 2491 2491 1651 2014 Private car #> 2492 2492 1652 2014 Public franchised bus #> 2493 2493 1652 2014 Light goods vehicle #> 2494 2494 1653 2014 Private car #> 2495 2495 1653 2014 Taxi #> 2496 2496 1653 2014 Private car #> 2497 2497 1653 2014 Light goods vehicle #> 2498 2498 1654 2014 Light goods vehicle #> 2499 2499 1654 2014 Taxi #> 2500 2500 1655 2014 Public light bus #> 2501 2501 1656 2014 Light goods vehicle #> 2502 2502 1657 2014 Private car #> 2503 2503 1658 2014 Private car #> 2504 2504 1658 2014 Private car #> 2505 2505 1659 2014 Taxi #> 2506 2506 1659 2014 Motorcycle #> 2507 2507 1660 2014 Private car #> 2508 2508 1660 2014 Public non-franchised bus #> 2509 2509 1661 2014 Motorcycle #> 2510 2510 1661 2014 Private car #> 2511 2511 1662 2014 Bicycle #> 2512 2512 1662 2014 Heavy goods vehicle #> 2513 2513 1663 2014 Public franchised bus #> 2514 2514 1664 2014 Taxi #> 2515 2515 1664 2014 Taxi #> 2516 2516 1665 2014 Taxi #> 2517 2517 1666 2014 Private car #> 2518 2518 1667 2014 Taxi #> 2519 2519 1668 2014 Bicycle #> 2520 2520 1668 2014 Taxi #> 2521 2521 1669 2014 Public franchised bus #> 2522 2522 1670 2014 Taxi #> 2523 2523 1671 2014 Motorcycle #> 2524 2524 1672 2014 Public franchised bus #> 2525 2525 1673 2014 Taxi #> 2526 2526 1673 2014 Private car #> 2527 2527 1673 2014 Light goods vehicle #> 2528 2528 1674 2014 Private car #> 2529 2529 1674 2014 Taxi #> 2530 2530 1675 2014 Private car #> 2531 2531 1675 2014 Taxi #> 2532 2532 1675 2014 Private car #> 2533 2533 1675 2014 Light goods vehicle #> 2534 2534 1676 2014 Taxi #> 2535 2535 1677 2014 Light goods vehicle #> 2536 2536 1677 2014 Private car #> 2537 2537 1678 2014 Light goods vehicle #> 2538 2538 1679 2014 Private car #> 2539 2539 1680 2014 Bicycle #> 2540 2540 1680 2014 Private car #> 2541 2541 1681 2014 Taxi #> 2542 2542 1681 2014 Private car #> 2543 2543 1682 2014 Motorcycle #> 2544 2544 1682 2014 Light goods vehicle #> 2545 2545 1683 2014 Private car #> 2546 2546 1683 2014 Taxi #> 2547 2547 1684 2014 Public franchised bus #> 2548 2548 1684 2014 Light goods vehicle #> 2549 2549 1684 2014 Public franchised bus #> 2550 2550 1685 2014 Light goods vehicle #> 2551 2551 1685 2014 Private car #> 2552 2552 1686 2014 Motorcycle #> 2553 2553 1687 2014 Medium goods vehicle #> 2554 2554 1687 2014 Motorcycle #> 2555 2555 1688 2014 Public franchised bus #> 2556 2556 1689 2014 Public franchised bus #> 2557 2557 1690 2014 Medium goods vehicle #> 2558 2558 1690 2014 Private car #> 2559 2559 1691 2014 Public light bus #> 2560 2560 1692 2014 Motorcycle #> 2561 2561 1692 2014 Taxi #> 2562 2562 1693 2014 Private car #> 2563 2563 1694 2014 Public light bus #> 2564 2564 1695 2014 Public franchised bus #> 2565 2565 1696 2014 Motorcycle #> 2566 2566 1697 2014 Public franchised bus #> 2567 2567 1698 2014 Public franchised bus #> 2568 2568 1699 2014 Taxi #> 2569 2569 1700 2014 Public light bus #> 2570 2570 1700 2014 Private car #> 2571 2571 1701 2014 Taxi #> 2572 2572 1702 2014 Public franchised bus #> 2573 2573 1703 2014 Taxi #> 2574 2574 1703 2014 Public light bus #> 2575 2575 1704 2014 Motorcycle #> 2576 2576 1704 2014 Taxi #> 2577 2577 1704 2014 Private car #> 2578 2578 1705 2014 Taxi #> 2579 2579 1705 2014 Private car #> 2580 2580 1705 2014 Taxi #> 2581 2581 1706 2014 Taxi #> 2582 2582 1706 2014 Private car #> 2583 2583 1706 2014 Motorcycle #> 2584 2584 1707 2014 Motorcycle #> 2585 2585 1707 2014 Private car #> 2586 2586 1708 2014 Public franchised bus #> 2587 2587 1709 2014 Public light bus #> 2588 2588 1710 2014 Public franchised bus #> 2589 2589 1710 2014 Medium goods vehicle #> 2590 2590 1711 2014 Public franchised bus #> 2591 2591 1712 2014 Bicycle #> 2592 2592 1712 2014 Bicycle #> 2593 2593 1713 2014 Public light bus #> 2594 2594 1713 2014 Motorcycle #> 2595 2595 1714 2014 Private car #> 2596 2596 1714 2014 Private car #> 2597 2597 1715 2014 Bicycle #> 2598 2598 1716 2014 Motorcycle #> 2599 2599 1716 2014 Private car #> 2600 2600 1717 2014 Taxi #> 2601 2601 1718 2014 Private car #> 2602 2602 1719 2014 Taxi #> 2603 2603 1720 2014 Taxi #> 2604 2604 1721 2014 Taxi #> 2605 2605 1721 2014 Private car #> 2606 2606 1722 2014 Taxi #> 2607 2607 1722 2014 Private car #> 2608 2608 1723 2014 Public light bus #> 2609 2609 1723 2014 Taxi #> 2610 2610 1724 2014 Taxi #> 2611 2611 1725 2014 Private car #> 2612 2612 1725 2014 Light goods vehicle #> 2613 2613 1726 2014 Private car #> 2614 2614 1726 2014 Taxi #> 2615 2615 1726 2014 Light goods vehicle #> 2616 2616 1726 2014 Private car #> 2617 2617 1726 2014 Private car #> 2618 2618 1727 2014 Bicycle #> 2619 2619 1727 2014 Private car #> 2620 2620 1728 2014 Taxi #> 2621 2621 1729 2014 Bicycle #> 2622 2622 1730 2014 Private car #> 2623 2623 1731 2014 Bicycle #> 2624 2624 1732 2014 Motorcycle #> 2625 2625 1733 2014 Private car #> 2626 2626 1733 2014 Taxi #> 2627 2627 1734 2014 Bicycle #> 2628 2628 1735 2014 Taxi #> 2629 2629 1736 2014 Private car #> 2630 2630 1736 2014 Public franchised bus #> 2631 2631 1737 2014 Motorcycle #> 2632 2632 1737 2014 Private car #> 2633 2633 1737 2014 Private car #> 2634 2634 1737 2014 Light goods vehicle #> 2635 2635 1737 2014 Private car #> 2636 2636 1738 2014 Private car #> 2637 2637 1739 2014 Light goods vehicle #> 2638 2638 1739 2014 Private car #> 2639 2639 1740 2014 Private car #> 2640 2640 1740 2014 Taxi #> 2641 2641 1741 2014 Motorcycle #> 2642 2642 1741 2014 Private car #> 2643 2643 1742 2014 Taxi #> 2644 2644 1743 2014 Private car #> 2645 2645 1743 2014 Motorcycle #> 2646 2646 1744 2014 Private car #> 2647 2647 1745 2014 Private car #> 2648 2648 1746 2014 Public franchised bus #> 2649 2649 1747 2014 Taxi #> 2650 2650 1748 2014 Private car #> 2651 2651 1748 2014 Private car #> 2652 2652 1749 2014 Public non-franchised bus #> 2653 2653 1750 2014 Taxi #> 2654 2654 1750 2014 Private car #> 2655 2655 1751 2014 Motorcycle #> 2656 2656 1752 2014 Taxi #> 2657 2657 1753 2014 Public franchised bus #> 2658 2658 1754 2014 Private car #> 2659 2659 1754 2014 Private car #> 2660 2660 1754 2014 Private car #> 2661 2661 1754 2014 Private car #> 2662 2662 1755 2014 Light goods vehicle #> 2663 2663 1756 2014 Private car #> 2664 2664 1757 2014 Light goods vehicle #> 2665 2665 1758 2014 Taxi #> 2666 2666 1758 2014 Private car #> 2667 2667 1759 2014 Taxi #> 2668 2668 1759 2014 Private car #> 2669 2669 1760 2014 Private car #> 2670 2670 1760 2014 Private car #> 2671 2671 1760 2014 Private car #> 2672 2672 1760 2014 Taxi #> 2673 2673 1760 2014 Private car #> 2674 2674 1761 2014 Public franchised bus #> 2675 2675 1762 2014 Private car #> 2676 2676 1762 2014 Taxi #> 2677 2677 1763 2014 Private car #> 2678 2678 1763 2014 Motorcycle #> 2679 2679 1764 2014 Public franchised bus #> 2680 2680 1765 2014 Taxi #> 2681 2681 1765 2014 Taxi #> 2682 2682 1766 2014 Public franchised bus #> 2683 2683 1767 2014 Public franchised bus #> 2684 2684 1768 2014 Private car #> 2685 2685 1769 2014 Private car #> 2686 2686 1769 2014 Light goods vehicle #> 2687 2687 1770 2014 Public franchised bus #> 2688 2688 1771 2014 Public franchised bus #> 2689 2689 1772 2014 Private car #> 2690 2690 1772 2014 Private car #> 2691 2691 1773 2014 Taxi #> 2692 2692 1773 2014 Private car #> 2693 2693 1774 2014 Motorcycle #> 2694 2694 1775 2014 Private car #> 2695 2695 1776 2014 Taxi #> 2696 2696 1776 2014 Private car #> 2697 2697 1777 2014 Public franchised bus #> 2698 2698 1778 2014 Public franchised bus #> 2699 2699 1778 2014 Private car #> 2700 2700 1779 2014 Bicycle #> 2701 2701 1780 2014 Private car #> 2702 2702 1780 2014 Medium goods vehicle #> 2703 2703 1781 2014 Public franchised bus #> 2704 2704 1781 2014 Motorcycle #> 2705 2705 1782 2014 Private car #> 2706 2706 1782 2014 Private car #> 2707 2707 1783 2014 Taxi #> 2708 2708 1783 2014 Taxi #> 2709 2709 1784 2014 Public franchised bus #> 2710 2710 1785 2014 Public franchised bus #> 2711 2711 1786 2014 Private car #> 2712 2712 1786 2014 Private car #> 2713 2713 1786 2014 Private car #> 2714 2714 1787 2014 Public franchised bus #> 2715 2715 1788 2014 Public light bus #> 2716 2716 1789 2014 Taxi #> 2717 2717 1789 2014 Taxi #> 2718 2718 1790 2014 Private car #> 2719 2719 1791 2014 Light goods vehicle #> 2720 2720 1792 2014 Private car #> 2721 2721 1793 2014 Public franchised bus #> 2722 2722 1794 2014 Private car #> 2723 2723 1795 2014 Taxi #> 2724 2724 1795 2014 Light goods vehicle #> 2725 2725 1796 2014 Taxi #> 2726 2726 1797 2014 Public franchised bus #> 2727 2727 1798 2014 Private car #> 2728 2728 1798 2014 Taxi #> 2729 2729 1799 2014 Private car #> 2730 2730 1800 2014 Private car #> 2731 2731 1800 2014 Taxi #> 2732 2732 1801 2014 Light goods vehicle #> 2733 2733 1801 2014 Taxi #> 2734 2734 1802 2014 Light goods vehicle #> 2735 2735 1802 2014 Private car #> 2736 2736 1803 2014 Public franchised bus #> 2737 2737 1804 2014 Public light bus #> 2738 2738 1804 2014 Public light bus #> 2739 2739 1805 2014 Public franchised bus #> 2740 2740 1805 2014 Public non-franchised bus #> 2741 2741 1806 2014 Public franchised bus #> 2742 2742 1807 2014 Public franchised bus #> 2743 2743 1808 2014 Taxi #> 2744 2744 1809 2014 Public franchised bus #> 2745 2745 1810 2014 Public light bus #> 2746 2746 1811 2014 Public franchised bus #> 2747 2747 1812 2014 Light goods vehicle #> 2748 2748 1813 2014 Public franchised bus #> 2749 2749 1814 2014 Public franchised bus #> 2750 2750 1815 2014 Public franchised bus #> 2751 2751 1815 2014 Private car #> 2752 2752 1816 2014 Taxi #> 2753 2753 1817 2014 Private car #> 2754 2754 1817 2014 Private car #> 2755 2755 1818 2014 Taxi #> 2756 2756 1819 2014 Taxi #> 2757 2757 1820 2014 Private car #> 2758 2758 1820 2014 Motorcycle #> 2759 2759 1821 2014 Taxi #> 2760 2760 1822 2014 Motorcycle #> 2761 2761 1822 2014 Heavy goods vehicle #> 2762 2762 1823 2014 Private car #> 2763 2763 1823 2014 Motorcycle #> 2764 2764 1824 2014 Private car #> 2765 2765 1825 2014 Public franchised bus #> 2766 2766 1826 2014 Private car #> 2767 2767 1827 2014 Public franchised bus #> 2768 2768 1828 2014 Motorcycle #> 2769 2769 1828 2014 Private car #> 2770 2770 1829 2014 Private car #> 2771 2771 1830 2014 Public franchised bus #> 2772 2772 1831 2014 Public franchised bus #> 2773 2773 1832 2014 Motorcycle #> 2774 2774 1833 2014 Taxi #> 2775 2775 1834 2014 Light goods vehicle #> 2776 2776 1834 2014 Taxi #> 2777 2777 1835 2014 Private car #> 2778 2778 1835 2014 Motorcycle #> 2779 2779 1836 2014 Motorcycle #> 2780 2780 1836 2014 Light goods vehicle #> 2781 2781 1837 2014 Private car #> 2782 2782 1838 2014 Bicycle #> 2783 2783 1839 2014 Motorcycle #> 2784 2784 1840 2014 Motorcycle #> 2785 2785 1840 2014 Motorcycle #> 2786 2786 1841 2014 Private car #> 2787 2787 1841 2014 Private car #> 2788 2788 1842 2014 Private car #> 2789 2789 1842 2014 Taxi #> 2790 2790 1843 2014 Public franchised bus #> 2791 2791 1843 2014 Light goods vehicle #> 2792 2792 1844 2014 Private car #> 2793 2793 1845 2014 Private car #> 2794 2794 1846 2014 Motorcycle #> 2795 2795 1847 2014 Motorcycle #> 2796 2796 1848 2014 Light goods vehicle #> 2797 2797 1849 2014 Public light bus #> 2798 2798 1849 2014 Public non-franchised bus #> 2799 2799 1850 2014 Public franchised bus #> 2800 2800 1850 2014 Private car #> 2801 2801 1851 2014 Tram #> 2802 2802 1852 2014 Taxi #> 2803 2803 1853 2014 Taxi #> 2804 2804 1854 2014 Motorcycle #> 2805 2805 1854 2014 Others (incl. unknown) #> 2806 2806 1855 2014 Motorcycle #> 2807 2807 1856 2014 Taxi #> 2808 2808 1857 2014 Medium goods vehicle #> 2809 2809 1857 2014 Public light bus #> 2810 2810 1858 2014 Taxi #> 2811 2811 1859 2014 Public light bus #> 2812 2812 1859 2014 Taxi #> 2813 2813 1860 2014 Private car #> 2814 2814 1860 2014 Light goods vehicle #> 2815 2815 1861 2014 Others (incl. unknown) #> 2816 2816 1861 2014 Motorcycle #> 2817 2817 1862 2014 Private car #> 2818 2818 1863 2014 Motorcycle #> 2819 2819 1864 2014 Motorcycle #> 2820 2820 1865 2014 Private car #> 2821 2821 1865 2014 Taxi #> 2822 2822 1866 2014 Taxi #> 2823 2823 1866 2014 Private car #> 2824 2824 1867 2014 Taxi #> 2825 2825 1867 2014 Taxi #> 2826 2826 1867 2014 Heavy goods vehicle #> 2827 2827 1868 2014 Private car #> 2828 2828 1868 2014 Taxi #> 2829 2829 1869 2014 Light goods vehicle #> 2830 2830 1869 2014 Light goods vehicle #> 2831 2831 1869 2014 Private car #> 2832 2832 1869 2014 Taxi #> 2833 2833 1870 2014 Public franchised bus #> 2834 2834 1871 2014 Others (incl. unknown) #> 2835 2835 1872 2014 Private car #> 2836 2836 1873 2014 Tram #> 2837 2837 1874 2014 Private car #> 2838 2838 1875 2014 Taxi #> 2839 2839 1875 2014 Others (incl. unknown) #> 2840 2840 1876 2014 Motorcycle #> 2841 2841 1877 2014 Public light bus #> 2842 2842 1877 2014 Medium goods vehicle #> 2843 2843 1878 2014 Public non-franchised bus #> 2844 2844 1879 2014 Private car #> 2845 2845 1880 2014 Private car #> 2846 2846 1880 2014 Private car #> 2847 2847 1881 2014 Private car #> 2848 2848 1881 2014 Private car #> 2849 2849 1882 2014 Private car #> 2850 2850 1882 2014 Private car #> 2851 2851 1883 2014 Public non-franchised bus #> 2852 2852 1884 2014 Private car #> 2853 2853 1884 2014 Taxi #> 2854 2854 1884 2014 Private car #> 2855 2855 1884 2014 Private car #> 2856 2856 1885 2014 Taxi #> 2857 2857 1886 2014 Private car #> 2858 2858 1887 2014 Taxi #> 2859 2859 1888 2014 Public franchised bus #> 2860 2860 1889 2014 Motorcycle #> 2861 2861 1890 2014 Private car #> 2862 2862 1890 2014 Taxi #> 2863 2863 1890 2014 Public non-franchised bus #> 2864 2864 1891 2014 Taxi #> 2865 2865 1892 2014 Taxi #> 2866 2866 1893 2014 Private car #> 2867 2867 1894 2014 Private car #> 2868 2868 1894 2014 Private car #> 2869 2869 1895 2014 Public non-franchised bus #> 2870 2870 1896 2014 Light goods vehicle #> 2871 2871 1897 2014 Private car #> 2872 2872 1898 2014 Medium goods vehicle #> 2873 2873 1899 2014 Public non-franchised bus #> 2874 2874 1900 2014 Public franchised bus #> 2875 2875 1901 2014 Light goods vehicle #> 2876 2876 1901 2014 Taxi #> 2877 2877 1901 2014 Light goods vehicle #> 2878 2878 1902 2014 Motorcycle #> 2879 2879 1903 2014 Private car #> 2880 2880 1903 2014 Private car #> 2881 2881 1904 2014 Light goods vehicle #> 2882 2882 1904 2014 Taxi #> 2883 2883 1905 2014 Public light bus #> 2884 2884 1905 2014 Public non-franchised bus #> 2885 2885 1905 2014 Public light bus #> 2886 2886 1906 2014 Private car #> 2887 2887 1906 2014 Private car #> 2888 2888 1907 2014 Taxi #> 2889 2889 1907 2014 Taxi #> 2890 2890 1908 2014 Private car #> 2891 2891 1909 2014 Taxi #> 2892 2892 1909 2014 Private car #> 2893 2893 1910 2014 Private car #> 2894 2894 1910 2014 Motorcycle #> 2895 2895 1911 2014 Taxi #> 2896 2896 1911 2014 Taxi #> 2897 2897 1911 2014 Private car #> 2898 2898 1912 2014 Light goods vehicle #> 2899 2899 1912 2014 Private car #> 2900 2900 1913 2014 Taxi #> 2901 2901 1914 2014 Taxi #> 2902 2902 1914 2014 Motorcycle #> 2903 2903 1915 2014 Motorcycle #> 2904 2904 1916 2014 Private car #> 2905 2905 1916 2014 Private car #> 2906 2906 1916 2014 Private car #> 2907 2907 1916 2014 Private car #> 2908 2908 1916 2014 Light goods vehicle #> 2909 2909 1917 2014 Taxi #> 2910 2910 1918 2014 Light goods vehicle #> 2911 2911 1918 2014 Light goods vehicle #> 2912 2912 1919 2014 Private car #> 2913 2913 1919 2014 Public franchised bus #> 2914 2914 1920 2014 Private car #> 2915 2915 1920 2014 Private car #> 2916 2916 1920 2014 Taxi #> 2917 2917 1921 2014 Private car #> 2918 2918 1922 2014 Medium goods vehicle #> 2919 2919 1923 2014 Private car #> 2920 2920 1923 2014 Private car #> 2921 2921 1923 2014 Private car #> 2922 2922 1923 2014 Light goods vehicle #> 2923 2923 1924 2014 Motorcycle #> 2924 2924 1925 2014 Private car #> 2925 2925 1925 2014 Taxi #> 2926 2926 1926 2014 Taxi #> 2927 2927 1926 2014 Private car #> 2928 2928 1927 2014 Private car #> 2929 2929 1927 2014 Private car #> 2930 2930 1927 2014 Private car #> 2931 2931 1928 2014 Public non-franchised bus #> 2932 2932 1929 2014 Public franchised bus #> 2933 2933 1930 2014 Private car #> 2934 2934 1931 2014 Taxi #> 2935 2935 1932 2014 Public franchised bus #> 2936 2936 1932 2014 Medium goods vehicle #> 2937 2937 1933 2014 Public franchised bus #> 2938 2938 1933 2014 Taxi #> 2939 2939 1934 2014 Public franchised bus #> 2940 2940 1934 2014 Private car #> 2941 2941 1934 2014 Private car #> 2942 2942 1935 2014 Private car #> 2943 2943 1936 2014 Taxi #> 2944 2944 1937 2014 Motorcycle #> 2945 2945 1938 2014 Public franchised bus #> 2946 2946 1939 2014 Private car #> 2947 2947 1940 2014 Private car #> 2948 2948 1941 2014 Motorcycle #> 2949 2949 1941 2014 Taxi #> 2950 2950 1942 2014 Public franchised bus #> 2951 2951 1942 2014 Taxi #> 2952 2952 1943 2014 Heavy goods vehicle #> 2953 2953 1943 2014 Private car #> 2954 2954 1944 2014 Private car #> 2955 2955 1945 2014 Taxi #> 2956 2956 1945 2014 Light goods vehicle #> 2957 2957 1945 2014 Private car #> 2958 2958 1946 2014 Public franchised bus #> 2959 2959 1947 2014 Taxi #> 2960 2960 1947 2014 Motorcycle #> 2961 2961 1948 2014 Public light bus #> 2962 2962 1949 2014 Taxi #> 2963 2963 1949 2014 Private car #> 2964 2964 1950 2014 Bicycle #> 2965 2965 1950 2014 Light goods vehicle #> 2966 2966 1951 2014 Private car #> 2967 2967 1952 2014 Taxi #> 2968 2968 1952 2014 Taxi #> 2969 2969 1953 2014 Taxi #> 2970 2970 1954 2014 Taxi #> 2971 2971 1954 2014 Private car #> 2972 2972 1955 2014 Taxi #> 2973 2973 1955 2014 Taxi #> 2974 2974 1956 2014 Public franchised bus #> 2975 2975 1956 2014 Tram #> 2976 2976 1957 2014 Taxi #> 2977 2977 1957 2014 Private car #> 2978 2978 1958 2014 Private car #> 2979 2979 1958 2014 Public non-franchised bus #> 2980 2980 1959 2014 Private car #> 2981 2981 1959 2014 Private car #> 2982 2982 1959 2014 Light goods vehicle #> 2983 2983 1960 2014 Taxi #> 2984 2984 1961 2014 Taxi #> 2985 2985 1962 2014 Public franchised bus #> 2986 2986 1962 2014 Taxi #> 2987 2987 1963 2014 Public franchised bus #> 2988 2988 1963 2014 Taxi #> 2989 2989 1964 2014 Taxi #> 2990 2990 1964 2014 Bicycle #> 2991 2991 1965 2014 Public franchised bus #> 2992 2992 1966 2014 Private car #> 2993 2993 1966 2014 Motorcycle #> 2994 2994 1967 2014 Private car #> 2995 2995 1968 2014 Light goods vehicle #> 2996 2996 1968 2014 Taxi #> 2997 2997 1969 2014 Private car #> 2998 2998 1969 2014 Public franchised bus #> 2999 2999 1970 2014 Taxi #> 3000 3000 1971 2014 Public franchised bus #> 3001 3001 1972 2014 Private car #> 3002 3002 1972 2014 Light goods vehicle #> 3003 3003 1972 2014 Private car #> 3004 3004 1973 2014 Taxi #> 3005 3005 1973 2014 Taxi #> 3006 3006 1974 2014 Taxi #> 3007 3007 1975 2014 Bicycle #> 3008 3008 1976 2014 Light goods vehicle #> 3009 3009 1977 2014 Taxi #> 3010 3010 1978 2014 Taxi #> 3011 3011 1978 2014 Taxi #> 3012 3012 1978 2014 Public franchised bus #> 3013 3013 1979 2014 Taxi #> 3014 3014 1979 2014 Taxi #> 3015 3015 1980 2014 Public franchised bus #> 3016 3016 1981 2014 Public franchised bus #> 3017 3017 1982 2014 Private car #> 3018 3018 1982 2014 Taxi #> 3019 3019 1983 2014 Others (incl. unknown) #> 3020 3020 1984 2014 Public franchised bus #> 3021 3021 1985 2014 Taxi #> 3022 3022 1985 2014 Light goods vehicle #> 3023 3023 1985 2014 Taxi #> 3024 3024 1986 2014 Medium goods vehicle #> 3025 3025 1986 2014 Private car #> 3026 3026 1987 2014 Public franchised bus #> 3027 3027 1988 2014 Private car #> 3028 3028 1988 2014 Private car #> 3029 3029 1988 2014 Motorcycle #> 3030 3030 1989 2014 Motorcycle #> 3031 3031 1990 2014 Taxi #> 3032 3032 1991 2014 Private car #> 3033 3033 1992 2014 Private car #> 3034 3034 1993 2014 Private car #> 3035 3035 1994 2014 Light goods vehicle #> 3036 3036 1994 2014 Taxi #> 3037 3037 1995 2014 Private car #> 3038 3038 1995 2014 Private car #> 3039 3039 1996 2014 Motorcycle #> 3040 3040 1997 2014 Public franchised bus #> 3041 3041 1998 2014 Light goods vehicle #> 3042 3042 1998 2014 Private car #> 3043 3043 1998 2014 Private car #> 3044 3044 1999 2014 Taxi #> 3045 3045 1999 2014 Taxi #> 3046 3046 2000 2014 Public light bus #> 3047 3047 2001 2014 Taxi #> 3048 3048 2001 2014 Motorcycle #> 3049 3049 2002 2014 Private car #> 3050 3050 2002 2014 Taxi #> 3051 3051 2003 2014 Public franchised bus #> 3052 3052 2004 2014 Motorcycle #> 3053 3053 2004 2014 Taxi #> 3054 3054 2005 2014 Private car #> 3055 3055 2005 2014 Taxi #> 3056 3056 2006 2014 Tram #> 3057 3057 2006 2014 Private car #> 3058 3058 2007 2014 Taxi #> 3059 3059 2007 2014 Light goods vehicle #> 3060 3060 2008 2014 Private car #> 3061 3061 2008 2014 Private car #> 3062 3062 2009 2014 Private car #> 3063 3063 2009 2014 Taxi #> 3064 3064 2010 2014 Private car #> 3065 3065 2010 2014 Private car #> 3066 3066 2011 2014 Motorcycle #> 3067 3067 2012 2014 Light goods vehicle #> 3068 3068 2013 2014 Taxi #> 3069 3069 2014 2014 Private car #> 3070 3070 2014 2014 Bicycle #> 3071 3071 2015 2014 Light goods vehicle #> 3072 3072 2015 2014 Taxi #> 3073 3073 2016 2014 Taxi #> 3074 3074 2016 2014 Motorcycle #> 3075 3075 2017 2014 Private car #> 3076 3076 2017 2014 Private car #> 3077 3077 2018 2014 Public franchised bus #> 3078 3078 2018 2014 Public franchised bus #> 3079 3079 2019 2014 Light goods vehicle #> 3080 3080 2020 2014 Private car #> 3081 3081 2020 2014 Taxi #> 3082 3082 2020 2014 Public non-franchised bus #> 3083 3083 2021 2014 Motorcycle #> 3084 3084 2022 2014 Private car #> 3085 3085 2023 2014 Private car #> 3086 3086 2023 2014 Private car #> 3087 3087 2023 2014 Taxi #> 3088 3088 2024 2014 Public franchised bus #> 3089 3089 2025 2014 Private car #> 3090 3090 2026 2014 Taxi #> 3091 3091 2027 2014 Light goods vehicle #> 3092 3092 2027 2014 Taxi #> 3093 3093 2028 2014 Private car #> 3094 3094 2028 2014 Private car #> 3095 3095 2029 2014 Private car #> 3096 3096 2029 2014 Private car #> 3097 3097 2030 2014 Taxi #> 3098 3098 2031 2014 Public franchised bus #> 3099 3099 2031 2014 Public franchised bus #> 3100 3100 2032 2014 Public franchised bus #> 3101 3101 2033 2014 Private car #> 3102 3102 2034 2014 Public non-franchised bus #> 3103 3103 2035 2014 Public light bus #> 3104 3104 2036 2014 Private car #> 3105 3105 2037 2014 Private car #> 3106 3106 2037 2014 Public franchised bus #> 3107 3107 2038 2014 Light goods vehicle #> 3108 3108 2039 2014 Bicycle #> 3109 3109 2040 2014 Private car #> 3110 3110 2040 2014 Bicycle #> 3111 3111 2041 2014 Taxi #> 3112 3112 2042 2014 Taxi #> 3113 3113 2042 2014 Motorcycle #> 3114 3114 2043 2014 Light goods vehicle #> 3115 3115 2043 2014 Taxi #> 3116 3116 2044 2014 Public non-franchised bus #> 3117 3117 2045 2014 Motorcycle #> 3118 3118 2046 2014 Others (incl. unknown) #> 3119 3119 2046 2014 Private car #> 3120 3120 2047 2014 Private car #> 3121 3121 2048 2014 Private car #> 3122 3122 2048 2014 Taxi #> 3123 3123 2049 2014 Light goods vehicle #> 3124 3124 2050 2014 Private car #> 3125 3125 2050 2014 Public franchised bus #> 3126 3126 2051 2014 Public franchised bus #> 3127 3127 2052 2014 Taxi #> 3128 3128 2052 2014 Taxi #> 3129 3129 2052 2014 Taxi #> 3130 3130 2053 2014 Private car #> 3131 3131 2054 2014 Taxi #> 3132 3132 2054 2014 Private car #> 3133 3133 2055 2014 Bicycle #> 3134 3134 2056 2014 Motorcycle #> 3135 3135 2057 2014 Public franchised bus #> 3136 3136 2058 2014 Taxi #> 3137 3137 2058 2014 Private car #> 3138 3138 2059 2014 Public franchised bus #> 3139 3139 2060 2014 Private car #> 3140 3140 2061 2014 Others (incl. unknown) #> 3141 3141 2062 2014 Private car #> 3142 3142 2063 2014 Taxi #> 3143 3143 2063 2014 Private car #> 3144 3144 2063 2014 Public non-franchised bus #> 3145 3145 2064 2014 Taxi #> 3146 3146 2064 2014 Others (incl. unknown) #> 3147 3147 2064 2014 Motorcycle #> 3148 3148 2065 2014 Public franchised bus #> 3149 3149 2066 2014 Public franchised bus #> 3150 3150 2067 2014 Public franchised bus #> 3151 3151 2068 2014 Public light bus #> 3152 3152 2069 2014 Taxi #> 3153 3153 2069 2014 Motorcycle #> 3154 3154 2070 2014 Private car #> 3155 3155 2070 2014 Light goods vehicle #> 3156 3156 2071 2014 Private car #> 3157 3157 2072 2014 Taxi #> 3158 3158 2073 2014 Taxi #> 3159 3159 2074 2014 Taxi #> 3160 3160 2074 2014 Bicycle #> 3161 3161 2075 2014 Public franchised bus #> 3162 3162 2076 2014 Motorcycle #> 3163 3163 2077 2014 Taxi #> 3164 3164 2078 2014 Taxi #> 3165 3165 2078 2014 Private car #> 3166 3166 2078 2014 Motorcycle #> 3167 3167 2078 2014 Taxi #> 3168 3168 2078 2014 Private car #> 3169 3169 2079 2014 Public franchised bus #> 3170 3170 2080 2014 Private car #> 3171 3171 2081 2014 Private car #> 3172 3172 2082 2014 Taxi #> 3173 3173 2083 2014 Public light bus #> 3174 3174 2083 2014 Private car #> 3175 3175 2084 2014 Public light bus #> 3176 3176 2085 2014 Motorcycle #> 3177 3177 2086 2014 Public franchised bus #> 3178 3178 2086 2014 Medium goods vehicle #> 3179 3179 2087 2014 Private car #> 3180 3180 2088 2014 Private car #> 3181 3181 2089 2014 Medium goods vehicle #> 3182 3182 2089 2014 Private car #> 3183 3183 2089 2014 Light goods vehicle #> 3184 3184 2090 2014 Taxi #> 3185 3185 2090 2014 Motorcycle #> 3186 3186 2091 2014 Taxi #> 3187 3187 2092 2014 Taxi #> 3188 3188 2093 2014 Taxi #> 3189 3189 2094 2014 Private car #> 3190 3190 2094 2014 Public franchised bus #> 3191 3191 2095 2014 Public non-franchised bus #> 3192 3192 2096 2014 Public non-franchised bus #> 3193 3193 2097 2014 Medium goods vehicle #> 3194 3194 2098 2014 Light goods vehicle #> 3195 3195 2099 2014 Medium goods vehicle #> 3196 3196 2099 2014 Light goods vehicle #> 3197 3197 2099 2014 Light goods vehicle #> 3198 3198 2100 2014 Public franchised bus #> 3199 3199 2101 2014 Public non-franchised bus #> 3200 3200 2101 2014 Private car #> 3201 3201 2102 2014 Private car #> 3202 3202 2102 2014 Private car #> 3203 3203 2103 2014 Medium goods vehicle #> 3204 3204 2104 2014 Taxi #> 3205 3205 2105 2014 Motorcycle #> 3206 3206 2105 2014 Others (incl. unknown) #> 3207 3207 2106 2014 Taxi #> 3208 3208 2106 2014 Private car #> 3209 3209 2106 2014 Taxi #> 3210 3210 2107 2014 Public franchised bus #> 3211 3211 2108 2014 Public franchised bus #> 3212 3212 2109 2014 Motorcycle #> 3213 3213 2110 2014 Motorcycle #> 3214 3214 2111 2014 Motorcycle #> 3215 3215 2112 2014 Light goods vehicle #> 3216 3216 2113 2014 Private car #> 3217 3217 2113 2014 Taxi #> 3218 3218 2114 2014 Heavy goods vehicle #> 3219 3219 2115 2014 Motorcycle #> 3220 3220 2115 2014 Private car #> 3221 3221 2116 2014 Private car #> 3222 3222 2116 2014 Light goods vehicle #> 3223 3223 2117 2014 Others (incl. unknown) #> 3224 3224 2118 2014 Private car #> 3225 3225 2118 2014 Private car #> 3226 3226 2118 2014 Private car #> 3227 3227 2119 2014 Private car #> 3228 3228 2119 2014 Private car #> 3229 3229 2120 2014 Private car #> 3230 3230 2121 2014 Private car #> 3231 3231 2121 2014 Taxi #> 3232 3232 2122 2014 Taxi #> 3233 3233 2123 2014 Light goods vehicle #> 3234 3234 2123 2014 Private car #> 3235 3235 2123 2014 Taxi #> 3236 3236 2124 2014 Public franchised bus #> 3237 3237 2125 2014 Private car #> 3238 3238 2125 2014 Taxi #> 3239 3239 2126 2014 Private car #> 3240 3240 2127 2014 Motorcycle #> 3241 3241 2127 2014 Private car #> 3242 3242 2128 2014 Private car #> 3243 3243 2129 2014 Private car #> 3244 3244 2129 2014 Private car #> 3245 3245 2130 2014 Motorcycle #> 3246 3246 2130 2014 Private car #> 3247 3247 2131 2014 Private car #> 3248 3248 2131 2014 Private car #> 3249 3249 2132 2014 Private car #> 3250 3250 2132 2014 Public light bus #> 3251 3251 2133 2014 Bicycle #> 3252 3252 2134 2014 Public franchised bus #> 3253 3253 2134 2014 Motorcycle #> 3254 3254 2135 2014 Private car #> 3255 3255 2135 2014 Private car #> 3256 3256 2136 2014 Bicycle #> 3257 3257 2137 2014 Private car #> 3258 3258 2137 2014 Private car #> 3259 3259 2138 2014 Private car #> 3260 3260 2139 2014 Motorcycle #> 3261 3261 2140 2014 Public franchised bus #> 3262 3262 2141 2014 Public franchised bus #> 3263 3263 2141 2014 Taxi #> 3264 3264 2142 2014 Others (incl. unknown) #> 3265 3265 2143 2014 Taxi #> 3266 3266 2143 2014 Public light bus #> 3267 3267 2144 2014 Public franchised bus #> 3268 3268 2145 2014 Motorcycle #> 3269 3269 2146 2014 Taxi #> 3270 3270 2147 2014 Private car #> 3271 3271 2148 2014 Private car #> 3272 3272 2149 2014 Others (incl. unknown) #> 3273 3273 2149 2014 Taxi #> 3274 3274 2150 2014 Light goods vehicle #> 3275 3275 2150 2014 Light goods vehicle #> 3276 3276 2151 2014 Light goods vehicle #> 3277 3277 2152 2014 Public franchised bus #> 3278 3278 2152 2014 Light goods vehicle #> 3279 3279 2153 2014 Private car #> 3280 3280 2153 2014 Private car #> 3281 3281 2153 2014 Private car #> 3282 3282 2153 2014 Private car #> 3283 3283 2153 2014 Private car #> 3284 3284 2154 2014 Light goods vehicle #> 3285 3285 2154 2014 Private car #> 3286 3286 2154 2014 Private car #> 3287 3287 2155 2014 Motorcycle #> 3288 3288 2156 2014 Public franchised bus #> 3289 3289 2157 2014 Public franchised bus #> 3290 3290 2157 2014 Private car #> 3291 3291 2158 2014 Medium goods vehicle #> 3292 3292 2158 2014 Taxi #> 3293 3293 2159 2014 Motorcycle #> 3294 3294 2160 2014 Public light bus #> 3295 3295 2160 2014 Others (incl. unknown) #> 3296 3296 2161 2014 Motorcycle #> 3297 3297 2162 2014 Public non-franchised bus #> 3298 3298 2162 2014 Public franchised bus #> 3299 3299 2163 2014 Private car #> 3300 3300 2164 2014 Taxi #> 3301 3301 2164 2014 Private car #> 3302 3302 2164 2014 Taxi #> 3303 3303 2165 2014 Private car #> 3304 3304 2165 2014 Taxi #> 3305 3305 2166 2014 Private car #> 3306 3306 2166 2014 Private car #> 3307 3307 2167 2014 Others (incl. unknown) #> 3308 3308 2167 2014 Medium goods vehicle #> 3309 3309 2168 2014 Bicycle #> 3310 3310 2169 2014 Public franchised bus #> 3311 3311 2170 2014 Taxi #> 3312 3312 2171 2014 Light goods vehicle #> 3313 3313 2171 2014 Private car #> 3314 3314 2172 2014 Private car #> 3315 3315 2173 2014 Taxi #> 3316 3316 2173 2014 Private car #> 3317 3317 2173 2014 Taxi #> 3318 3318 2174 2014 Light goods vehicle #> 3319 3319 2175 2014 Taxi #> 3320 3320 2176 2014 Private car #> 3321 3321 2176 2014 Public light bus #> 3322 3322 2177 2014 Bicycle #> 3323 3323 2177 2014 Taxi #> 3324 3324 2178 2014 Public light bus #> 3325 3325 2179 2014 Private car #> 3326 3326 2179 2014 Private car #> 3327 3327 2180 2014 Private car #> 3328 3328 2181 2014 Public franchised bus #> 3329 3329 2182 2014 Taxi #> 3330 3330 2182 2014 Light goods vehicle #> 3331 3331 2183 2014 Taxi #> 3332 3332 2183 2014 Heavy goods vehicle #> 3333 3333 2184 2014 Taxi #> 3334 3334 2185 2014 Light goods vehicle #> 3335 3335 2185 2014 Motorcycle #> 3336 3336 2186 2014 Taxi #> 3337 3337 2186 2014 Private car #> 3338 3338 2187 2014 Public light bus #> 3339 3339 2188 2014 Taxi #> 3340 3340 2188 2014 Private car #> 3341 3341 2189 2014 Others (incl. unknown) #> 3342 3342 2189 2014 Light goods vehicle #> 3343 3343 2190 2014 Light goods vehicle #> 3344 3344 2191 2014 Taxi #> 3345 3345 2191 2014 Motorcycle #> 3346 3346 2192 2014 Taxi #> 3347 3347 2192 2014 Private car #> 3348 3348 2192 2014 Public light bus #> 3349 3349 2192 2014 Taxi #> 3350 3350 2193 2014 Taxi #> 3351 3351 2194 2014 Private car #> 3352 3352 2194 2014 Bicycle #> 3353 3353 2195 2014 Others (incl. unknown) #> 3354 3354 2196 2014 Taxi #> 3355 3355 2196 2014 Private car #> 3356 3356 2197 2014 Taxi #> 3357 3357 2197 2014 Taxi #> 3358 3358 2198 2014 Public light bus #> 3359 3359 2199 2014 Others (incl. unknown) #> 3360 3360 2199 2014 Public non-franchised bus #> 3361 3361 2200 2014 Others (incl. unknown) #> 3362 3362 2201 2014 Light goods vehicle #> 3363 3363 2202 2014 Public franchised bus #> 3364 3364 2202 2014 Public light bus #> 3365 3365 2203 2014 Private car #> 3366 3366 2204 2014 Others (incl. unknown) #> 3367 3367 2205 2014 Public franchised bus #> 3368 3368 2206 2014 Public franchised bus #> 3369 3369 2206 2014 Bicycle #> 3370 3370 2207 2014 Motorcycle #> 3371 3371 2208 2014 Tram #> 3372 3372 2209 2014 Private car #> 3373 3373 2210 2014 Motorcycle #> 3374 3374 2210 2014 Public light bus #> 3375 3375 2211 2014 Private car #> 3376 3376 2211 2014 Light goods vehicle #> 3377 3377 2212 2014 Light goods vehicle #> 3378 3378 2213 2014 Others (incl. unknown) #> 3379 3379 2214 2014 Public franchised bus #> 3380 3380 2215 2014 Private car #> 3381 3381 2215 2014 Public light bus #> 3382 3382 2216 2014 Light goods vehicle #> 3383 3383 2217 2014 Private car #> 3384 3384 2217 2014 Private car #> 3385 3385 2218 2014 Taxi #> 3386 3386 2219 2014 Private car #> 3387 3387 2219 2014 Private car #> 3388 3388 2220 2014 Motorcycle #> 3389 3389 2220 2014 Public franchised bus #> 3390 3390 2220 2014 Private car #> 3391 3391 2221 2014 Taxi #> 3392 3392 2222 2014 Public non-franchised bus #> 3393 3393 2222 2014 Public franchised bus #> 3394 3394 2223 2014 Light goods vehicle #> 3395 3395 2224 2014 Private car #> 3396 3396 2224 2014 Light goods vehicle #> 3397 3397 2224 2014 Private car #> 3398 3398 2225 2014 Motorcycle #> 3399 3399 2226 2014 Public franchised bus #> 3400 3400 2227 2014 Public franchised bus #> 3401 3401 2227 2014 Light goods vehicle #> 3402 3402 2227 2014 Public franchised bus #> 3403 3403 2228 2014 Public franchised bus #> 3404 3404 2229 2014 Taxi #> 3405 3405 2229 2014 Taxi #> 3406 3406 2230 2014 Taxi #> 3407 3407 2231 2014 Public franchised bus #> 3408 3408 2232 2014 Private car #> 3409 3409 2232 2014 Light goods vehicle #> 3410 3410 2233 2014 Light goods vehicle #> 3411 3411 2234 2014 Private car #> 3412 3412 2234 2014 Taxi #> 3413 3413 2235 2014 Private car #> 3414 3414 2236 2014 Light goods vehicle #> 3415 3415 2236 2014 Bicycle #> 3416 3416 2237 2014 Private car #> 3417 3417 2237 2014 Private car #> 3418 3418 2237 2014 Private car #> 3419 3419 2238 2014 Public franchised bus #> 3420 3420 2239 2014 Taxi #> 3421 3421 2240 2014 Taxi #> 3422 3422 2240 2014 Motorcycle #> 3423 3423 2241 2014 Bicycle #> 3424 3424 2242 2014 Taxi #> 3425 3425 2242 2014 Private car #> 3426 3426 2243 2014 Public franchised bus #> 3427 3427 2244 2014 Private car #> 3428 3428 2244 2014 Private car #> 3429 3429 2244 2014 Private car #> 3430 3430 2244 2014 Private car #> 3431 3431 2245 2014 Taxi #> 3432 3432 2246 2014 Bicycle #> 3433 3433 2247 2014 Motorcycle #> 3434 3434 2247 2014 Private car #> 3435 3435 2248 2014 Public light bus #> 3436 3436 2248 2014 Public light bus #> 3437 3437 2248 2014 Public light bus #> 3438 3438 2249 2014 Light goods vehicle #> 3439 3439 2249 2014 Taxi #> 3440 3440 2250 2014 Motorcycle #> 3441 3441 2251 2014 Private car #> 3442 3442 2251 2014 Public light bus #> 3443 3443 2252 2014 Public franchised bus #> 3444 3444 2253 2014 Private car #> 3445 3445 2254 2014 Private car #> 3446 3446 2255 2014 Public franchised bus #> 3447 3447 2255 2014 Public franchised bus #> 3448 3448 2256 2014 Public franchised bus #> 3449 3449 2257 2014 Heavy goods vehicle #> 3450 3450 2257 2014 Taxi #> 3451 3451 2258 2014 Light goods vehicle #> 3452 3452 2259 2014 Taxi #> 3453 3453 2260 2014 Light goods vehicle #> 3454 3454 2260 2014 Motorcycle #> 3455 3455 2261 2014 Taxi #> 3456 3456 2261 2014 Private car #> 3457 3457 2262 2014 Motorcycle #> 3458 3458 2263 2014 Light goods vehicle #> 3459 3459 2263 2014 Light goods vehicle #> 3460 3460 2263 2014 Private car #> 3461 3461 2263 2014 Taxi #> 3462 3462 2264 2014 Taxi #> 3463 3463 2265 2014 Taxi #> 3464 3464 2266 2014 Taxi #> 3465 3465 2267 2014 Taxi #> 3466 3466 2268 2014 Taxi #> 3467 3467 2268 2014 Private car #> 3468 3468 2269 2014 Light goods vehicle #> 3469 3469 2270 2014 Motorcycle #> 3470 3470 2271 2014 Taxi #> 3471 3471 2271 2014 Motorcycle #> 3472 3472 2272 2014 Taxi #> 3473 3473 2272 2014 Bicycle #> 3474 3474 2273 2014 Public franchised bus #> 3475 3475 2274 2014 Public franchised bus #> 3476 3476 2275 2014 Taxi #> 3477 3477 2275 2014 Motorcycle #> 3478 3478 2276 2014 Public franchised bus #> 3479 3479 2276 2014 Light goods vehicle #> 3480 3480 2277 2014 Motorcycle #> 3481 3481 2278 2014 Private car #> 3482 3482 2278 2014 Public light bus #> 3483 3483 2279 2014 Taxi #> 3484 3484 2279 2014 Light goods vehicle #> 3485 3485 2280 2014 Motorcycle #> 3486 3486 2281 2014 Light goods vehicle #> 3487 3487 2281 2014 Taxi #> 3488 3488 2281 2014 Light goods vehicle #> 3489 3489 2281 2014 Private car #> 3490 3490 2282 2014 Private car #> 3491 3491 2283 2014 Private car #> 3492 3492 2284 2014 Private car #> 3493 3493 2285 2014 Taxi #> 3494 3494 2285 2014 Taxi #> 3495 3495 2286 2014 Public light bus #> 3496 3496 2286 2014 Taxi #> 3497 3497 2287 2014 Motorcycle #> 3498 3498 2288 2014 Public franchised bus #> 3499 3499 2289 2014 Light goods vehicle #> 3500 3500 2290 2014 Private car #> 3501 3501 2290 2014 Private car #> 3502 3502 2290 2014 Public light bus #> 3503 3503 2291 2014 Private car #> 3504 3504 2291 2014 Private car #> 3505 3505 2292 2014 Private car #> 3506 3506 2292 2014 Light goods vehicle #> 3507 3507 2293 2014 Private car #> 3508 3508 2293 2014 Motorcycle #> 3509 3509 2294 2014 Motorcycle #> 3510 3510 2294 2014 Private car #> 3511 3511 2295 2014 Taxi #> 3512 3512 2296 2014 Taxi #> 3513 3513 2297 2014 Motorcycle #> 3514 3514 2297 2014 Taxi #> 3515 3515 2298 2014 Bicycle #> 3516 3516 2299 2014 Motorcycle #> 3517 3517 2300 2014 Motorcycle #> 3518 3518 2301 2014 Private car #> 3519 3519 2302 2014 Public light bus #> 3520 3520 2303 2014 Light goods vehicle #> 3521 3521 2304 2014 Motorcycle #> 3522 3522 2304 2014 Private car #> 3523 3523 2305 2014 Private car #> 3524 3524 2306 2014 Motorcycle #> 3525 3525 2307 2014 Motorcycle #> 3526 3526 2308 2014 Private car #> 3527 3527 2309 2014 Taxi #> 3528 3528 2310 2014 Public franchised bus #> 3529 3529 2311 2014 Motorcycle #> 3530 3530 2311 2014 Taxi #> 3531 3531 2312 2014 Taxi #> 3532 3532 2313 2014 Private car #> 3533 3533 2314 2014 Medium goods vehicle #> 3534 3534 2314 2014 Private car #> 3535 3535 2315 2014 Taxi #> 3536 3536 2315 2014 Light goods vehicle #> 3537 3537 2316 2014 Public franchised bus #> 3538 3538 2316 2014 Private car #> 3539 3539 2317 2014 Public franchised bus #> 3540 3540 2317 2014 Private car #> 3541 3541 2318 2014 Private car #> 3542 3542 2319 2014 Public franchised bus #> 3543 3543 2320 2014 Taxi #> 3544 3544 2321 2014 Public franchised bus #> 3545 3545 2322 2014 Private car #> 3546 3546 2323 2014 Tram #> 3547 3547 2324 2014 Taxi #> 3548 3548 2325 2014 Private car #> 3549 3549 2325 2014 Private car #> 3550 3550 2325 2014 Private car #> 3551 3551 2325 2014 Motorcycle #> 3552 3552 2326 2014 Light goods vehicle #> 3553 3553 2327 2014 Private car #> 3554 3554 2327 2014 Taxi #> 3555 3555 2328 2014 Heavy goods vehicle #> 3556 3556 2328 2014 Public non-franchised bus #> 3557 3557 2329 2014 Private car #> 3558 3558 2330 2014 Private car #> 3559 3559 2330 2014 Light goods vehicle #> 3560 3560 2330 2014 Private car #> 3561 3561 2331 2014 Motorcycle #> 3562 3562 2331 2014 Public franchised bus #> 3563 3563 2332 2014 Public franchised bus #> 3564 3564 2333 2014 Private car #> 3565 3565 2334 2014 Tram #> 3566 3566 2335 2014 Motorcycle #> 3567 3567 2336 2014 Motorcycle #> 3568 3568 2336 2014 Others (incl. unknown) #> 3569 3569 2337 2014 Light goods vehicle #> 3570 3570 2337 2014 Light goods vehicle #> 3571 3571 2337 2014 Taxi #> 3572 3572 2338 2014 Public franchised bus #> 3573 3573 2339 2014 Private car #> 3574 3574 2340 2014 Taxi #> 3575 3575 2340 2014 Motorcycle #> 3576 3576 2341 2014 Medium goods vehicle #> 3577 3577 2342 2014 Public non-franchised bus #> 3578 3578 2342 2014 Motorcycle #> 3579 3579 2343 2014 Private car #> 3580 3580 2343 2014 Private car #> 3581 3581 2344 2014 Public non-franchised bus #> 3582 3582 2345 2014 Private car #> 3583 3583 2346 2014 Taxi #> 3584 3584 2346 2014 Motorcycle #> 3585 3585 2347 2014 Taxi #> 3586 3586 2347 2014 Private car #> 3587 3587 2348 2014 Taxi #> 3588 3588 2348 2014 Taxi #> 3589 3589 2349 2014 Public franchised bus #> 3590 3590 2350 2014 Light goods vehicle #> 3591 3591 2350 2014 Taxi #> 3592 3592 2351 2014 Taxi #> 3593 3593 2352 2014 Private car #> 3594 3594 2352 2014 Taxi #> 3595 3595 2353 2014 Private car #> 3596 3596 2354 2014 Motorcycle #> 3597 3597 2354 2014 Private car #> 3598 3598 2355 2014 Motorcycle #> 3599 3599 2355 2014 Private car #> 3600 3600 2356 2014 Motorcycle #> 3601 3601 2356 2014 Private car #> 3602 3602 2357 2014 Taxi #> 3603 3603 2357 2014 Public non-franchised bus #> 3604 3604 2357 2014 Private car #> 3605 3605 2358 2014 Public franchised bus #> 3606 3606 2359 2014 Private car #> 3607 3607 2359 2014 Public light bus #> 3608 3608 2360 2014 Others (incl. unknown) #> 3609 3609 2361 2014 Light goods vehicle #> 3610 3610 2362 2014 Public franchised bus #> 3611 3611 2362 2014 Light goods vehicle #> 3612 3612 2363 2014 Taxi #> 3613 3613 2363 2014 Public franchised bus #> 3614 3614 2364 2014 Taxi #> 3615 3615 2364 2014 Private car #> 3616 3616 2365 2014 Public franchised bus #> 3617 3617 2365 2014 Light goods vehicle #> 3618 3618 2366 2014 Taxi #> 3619 3619 2367 2014 Taxi #> 3620 3620 2367 2014 Private car #> 3621 3621 2368 2014 Taxi #> 3622 3622 2368 2014 Public non-franchised bus #> 3623 3623 2369 2014 Private car #> 3624 3624 2370 2014 Light goods vehicle #> 3625 3625 2371 2014 Private car #> 3626 3626 2372 2014 Private car #> 3627 3627 2373 2014 Private car #> 3628 3628 2374 2014 Light goods vehicle #> 3629 3629 2374 2014 Motorcycle #> 3630 3630 2375 2014 Taxi #> 3631 3631 2376 2014 Private car #> 3632 3632 2376 2014 Taxi #> 3633 3633 2377 2014 Motorcycle #> 3634 3634 2378 2014 Light goods vehicle #> 3635 3635 2378 2014 Private car #> 3636 3636 2378 2014 Light goods vehicle #> 3637 3637 2379 2014 Public light bus #> 3638 3638 2380 2014 Heavy goods vehicle #> 3639 3639 2380 2014 Taxi #> 3640 3640 2381 2014 Taxi #> 3641 3641 2382 2014 Public franchised bus #> 3642 3642 2382 2014 Public non-franchised bus #> 3643 3643 2383 2014 Taxi #> 3644 3644 2383 2014 Public non-franchised bus #> 3645 3645 2384 2014 Private car #> 3646 3646 2385 2014 Taxi #> 3647 3647 2385 2014 Private car #> 3648 3648 2386 2014 Taxi #> 3649 3649 2386 2014 Motorcycle #> 3650 3650 2387 2014 Taxi #> 3651 3651 2388 2014 Taxi #> 3652 3652 2388 2014 Private car #> 3653 3653 2389 2014 Private car #> 3654 3654 2390 2014 Heavy goods vehicle #> 3655 3655 2391 2014 Private car #> 3656 3656 2391 2014 Public franchised bus #> 3657 3657 2392 2014 Motorcycle #> 3658 3658 2392 2014 Private car #> 3659 3659 2393 2014 Taxi #> 3660 3660 2393 2014 Public non-franchised bus #> 3661 3661 2393 2014 Private car #> 3662 3662 2393 2014 Private car #> 3663 3663 2393 2014 Light goods vehicle #> 3664 3664 2393 2014 Private car #> 3665 3665 2393 2014 Light goods vehicle #> 3666 3666 2394 2014 Light goods vehicle #> 3667 3667 2394 2014 Public non-franchised bus #> 3668 3668 2394 2014 Light goods vehicle #> 3669 3669 2394 2014 Light goods vehicle #> 3670 3670 2394 2014 Private car #> 3671 3671 2395 2014 Private car #> 3672 3672 2395 2014 Public franchised bus #> 3673 3673 2396 2014 Light goods vehicle #> 3674 3674 2396 2014 Private car #> 3675 3675 2396 2014 Private car #> 3676 3676 2397 2014 Public franchised bus #> 3677 3677 2398 2014 Light goods vehicle #> 3678 3678 2398 2014 Public franchised bus #> 3679 3679 2399 2014 Public light bus #> 3680 3680 2400 2014 Public franchised bus #> 3681 3681 2401 2014 Taxi #> 3682 3682 2402 2014 Taxi #> 3683 3683 2402 2014 Public light bus #> 3684 3684 2403 2014 Taxi #> 3685 3685 2404 2014 Private car #> 3686 3686 2404 2014 Taxi #> 3687 3687 2405 2014 Medium goods vehicle #> 3688 3688 2406 2014 Public franchised bus #> 3689 3689 2407 2014 Private car #> 3690 3690 2408 2014 Light goods vehicle #> 3691 3691 2408 2014 Public franchised bus #> 3692 3692 2408 2014 Private car #> 3693 3693 2409 2014 Others (incl. unknown) #> 3694 3694 2410 2014 Taxi #> 3695 3695 2410 2014 Private car #> 3696 3696 2411 2014 Public franchised bus #> 3697 3697 2412 2014 Private car #> 3698 3698 2412 2014 Private car #> 3699 3699 2413 2014 Public franchised bus #> 3700 3700 2414 2014 Motorcycle #> 3701 3701 2415 2014 Taxi #> 3702 3702 2416 2014 Motorcycle #> 3703 3703 2417 2014 Light goods vehicle #> 3704 3704 2417 2014 Taxi #> 3705 3705 2418 2014 Taxi #> 3706 3706 2418 2014 Private car #> 3707 3707 2419 2014 Taxi #> 3708 3708 2419 2014 Taxi #> 3709 3709 2420 2014 Private car #> 3710 3710 2420 2014 Light goods vehicle #> 3711 3711 2421 2014 Heavy goods vehicle #> 3712 3712 2421 2014 Light goods vehicle #> 3713 3713 2422 2014 Public franchised bus #> 3714 3714 2423 2014 Light goods vehicle #> 3715 3715 2423 2014 Taxi #> 3716 3716 2424 2014 Taxi #> 3717 3717 2425 2014 Taxi #> 3718 3718 2426 2014 Private car #> 3719 3719 2426 2014 Public light bus #> 3720 3720 2427 2014 Private car #> 3721 3721 2427 2014 Public franchised bus #> 3722 3722 2428 2014 Light goods vehicle #> 3723 3723 2429 2014 Taxi #> 3724 3724 2430 2014 Taxi #> 3725 3725 2431 2014 Motorcycle #> 3726 3726 2431 2014 Light goods vehicle #> 3727 3727 2431 2014 Light goods vehicle #> 3728 3728 2432 2014 Public franchised bus #> 3729 3729 2433 2014 Bicycle #> 3730 3730 2434 2014 Light goods vehicle #> 3731 3731 2435 2014 Light goods vehicle #> 3732 3732 2436 2014 Public franchised bus #> 3733 3733 2437 2014 Private car #> 3734 3734 2438 2014 Taxi #> 3735 3735 2439 2014 Private car #> 3736 3736 2440 2014 Motorcycle #> 3737 3737 2441 2014 Public franchised bus #> 3738 3738 2441 2014 Taxi #> 3739 3739 2442 2014 Motorcycle #> 3740 3740 2443 2014 Motorcycle #> 3741 3741 2444 2014 Taxi #> 3742 3742 2445 2014 Motorcycle #> 3743 3743 2446 2014 Light goods vehicle #> 3744 3744 2447 2014 Public franchised bus #> 3745 3745 2448 2014 Light goods vehicle #> 3746 3746 2448 2014 Motorcycle #> 3747 3747 2449 2014 Public light bus #> 3748 3748 2449 2014 Taxi #> 3749 3749 2450 2014 Taxi #> 3750 3750 2450 2014 Private car #> 3751 3751 2451 2014 Public franchised bus #> 3752 3752 2452 2014 Motorcycle #> 3753 3753 2453 2014 Private car #> 3754 3754 2453 2014 Private car #> 3755 3755 2454 2014 Private car #> 3756 3756 2454 2014 Public franchised bus #> 3757 3757 2455 2014 Motorcycle #> 3758 3758 2456 2014 Light goods vehicle #> 3759 3759 2456 2014 Motorcycle #> 3760 3760 2457 2014 Motorcycle #> 3761 3761 2457 2014 Private car #> 3762 3762 2458 2014 Taxi #> 3763 3763 2458 2014 Public franchised bus #> 3764 3764 2459 2014 Public franchised bus #> 3765 3765 2460 2014 Private car #> 3766 3766 2461 2014 Motorcycle #> 3767 3767 2462 2014 Taxi #> 3768 3768 2462 2014 Taxi #> 3769 3769 2463 2014 Bicycle #> 3770 3770 2464 2014 Public franchised bus #> 3771 3771 2465 2014 Taxi #> 3772 3772 2465 2014 Motorcycle #> 3773 3773 2466 2014 Private car #> 3774 3774 2467 2014 Motorcycle #> 3775 3775 2468 2014 Motorcycle #> 3776 3776 2469 2014 Private car #> 3777 3777 2470 2014 Public franchised bus #> 3778 3778 2471 2014 Private car #> 3779 3779 2471 2014 Public non-franchised bus #> 3780 3780 2471 2014 Light goods vehicle #> 3781 3781 2472 2014 Public franchised bus #> 3782 3782 2473 2014 Private car #> 3783 3783 2473 2014 Taxi #> 3784 3784 2474 2014 Private car #> 3785 3785 2474 2014 Public franchised bus #> 3786 3786 2475 2014 Light goods vehicle #> 3787 3787 2475 2014 Motorcycle #> 3788 3788 2476 2014 Taxi #> 3789 3789 2476 2014 Motorcycle #> 3790 3790 2477 2014 Others (incl. unknown) #> 3791 3791 2477 2014 Private car #> 3792 3792 2478 2014 Others (incl. unknown) #> 3793 3793 2479 2014 Public franchised bus #> 3794 3794 2480 2014 Taxi #> 3795 3795 2481 2014 Motorcycle #> 3796 3796 2482 2014 Motorcycle #> 3797 3797 2482 2014 Private car #> 3798 3798 2483 2014 Motorcycle #> 3799 3799 2484 2014 Private car #> 3800 3800 2485 2014 Motorcycle #> 3801 3801 2485 2014 Private car #> 3802 3802 2486 2014 Bicycle #> 3803 3803 2487 2014 Private car #> 3804 3804 2488 2014 Public light bus #> 3805 3805 2489 2014 Light goods vehicle #> 3806 3806 2489 2014 Private car #> 3807 3807 2490 2014 Private car #> 3808 3808 2490 2014 Public franchised bus #> 3809 3809 2491 2014 Public franchised bus #> 3810 3810 2492 2014 Taxi #> 3811 3811 2492 2014 Taxi #> 3812 3812 2493 2014 Private car #> 3813 3813 2494 2014 Tram #> 3814 3814 2495 2014 Taxi #> 3815 3815 2495 2014 Motorcycle #> 3816 3816 2496 2014 Public franchised bus #> 3817 3817 2497 2014 Private car #> 3818 3818 2498 2014 Private car #> 3819 3819 2498 2014 Private car #> 3820 3820 2498 2014 Private car #> 3821 3821 2499 2014 Light goods vehicle #> 3822 3822 2499 2014 Light goods vehicle #> 3823 3823 2500 2014 Public franchised bus #> 3824 3824 2501 2014 Public franchised bus #> 3825 3825 2502 2014 Public franchised bus #> 3826 3826 2503 2014 Taxi #> 3827 3827 2503 2014 Motorcycle #> 3828 3828 2504 2014 Light goods vehicle #> 3829 3829 2505 2014 Private car #> 3830 3830 2505 2014 Taxi #> 3831 3831 2506 2014 Light goods vehicle #> 3832 3832 2507 2014 Bicycle #> 3833 3833 2507 2014 Others (incl. unknown) #> 3834 3834 2508 2014 Light goods vehicle #> 3835 3835 2509 2014 Light goods vehicle #> 3836 3836 2509 2014 Taxi #> 3837 3837 2510 2014 Public franchised bus #> 3838 3838 2511 2014 Private car #> 3839 3839 2512 2014 Private car #> 3840 3840 2513 2014 Light goods vehicle #> 3841 3841 2514 2014 Public franchised bus #> 3842 3842 2514 2014 Public franchised bus #> 3843 3843 2515 2014 Private car #> 3844 3844 2515 2014 Public non-franchised bus #> 3845 3845 2516 2014 Public franchised bus #> 3846 3846 2517 2014 Taxi #> 3847 3847 2517 2014 Private car #> 3848 3848 2518 2014 Taxi #> 3849 3849 2518 2014 Private car #> 3850 3850 2519 2014 Taxi #> 3851 3851 2520 2014 Private car #> 3852 3852 2521 2014 Private car #> 3853 3853 2522 2014 Private car #> 3854 3854 2522 2014 Private car #> 3855 3855 2523 2014 Taxi #> 3856 3856 2524 2014 Light goods vehicle #> 3857 3857 2525 2014 Private car #> 3858 3858 2525 2014 Motorcycle #> 3859 3859 2526 2014 Medium goods vehicle #> 3860 3860 2526 2014 Public franchised bus #> 3861 3861 2527 2014 Private car #> 3862 3862 2527 2014 Public non-franchised bus #> 3863 3863 2528 2014 Private car #> 3864 3864 2529 2014 Tram #> 3865 3865 2530 2014 Private car #> 3866 3866 2531 2014 Public franchised bus #> 3867 3867 2532 2014 Light goods vehicle #> 3868 3868 2533 2014 Medium goods vehicle #> 3869 3869 2533 2014 Public non-franchised bus #> 3870 3870 2534 2014 Public franchised bus #> 3871 3871 2535 2014 Others (incl. unknown) #> 3872 3872 2536 2014 Light goods vehicle #> 3873 3873 2537 2014 Public light bus #> 3874 3874 2538 2014 Public franchised bus #> 3875 3875 2539 2014 Motorcycle #> 3876 3876 2539 2014 Private car #> 3877 3877 2540 2014 Medium goods vehicle #> 3878 3878 2541 2014 Private car #> 3879 3879 2542 2014 Private car #> 3880 3880 2542 2014 Taxi #> 3881 3881 2543 2014 Public franchised bus #> 3882 3882 2544 2014 Public franchised bus #> 3883 3883 2544 2014 Taxi #> 3884 3884 2545 2014 Taxi #> 3885 3885 2545 2014 Light goods vehicle #> 3886 3886 2546 2014 Others (incl. unknown) #> 3887 3887 2547 2014 Tram #> 3888 3888 2548 2014 Bicycle #> 3889 3889 2549 2014 Public franchised bus #> 3890 3890 2550 2014 Private car #> 3891 3891 2551 2014 Public franchised bus #> 3892 3892 2552 2014 Taxi #> 3893 3893 2552 2014 Heavy goods vehicle #> 3894 3894 2553 2014 Taxi #> 3895 3895 2553 2014 Private car #> 3896 3896 2554 2014 Motorcycle #> 3897 3897 2555 2014 Private car #> 3898 3898 2556 2014 Others (incl. unknown) #> 3899 3899 2557 2014 Public light bus #> 3900 3900 2558 2014 Motorcycle #> 3901 3901 2558 2014 Private car #> 3902 3902 2559 2014 Taxi #> 3903 3903 2560 2014 Public franchised bus #> 3904 3904 2561 2014 Taxi #> 3905 3905 2562 2014 Taxi #> 3906 3906 2562 2014 Taxi #> 3907 3907 2563 2014 Motorcycle #> 3908 3908 2563 2014 Medium goods vehicle #> 3909 3909 2564 2014 Private car #> 3910 3910 2564 2014 Private car #> 3911 3911 2565 2014 Light goods vehicle #> 3912 3912 2566 2014 Private car #> 3913 3913 2567 2014 Taxi #> 3914 3914 2568 2014 Private car #> 3915 3915 2568 2014 Taxi #> 3916 3916 2569 2014 Taxi #> 3917 3917 2570 2014 Public franchised bus #> 3918 3918 2570 2014 Taxi #> 3919 3919 2571 2014 Public franchised bus #> 3920 3920 2572 2014 Private car #> 3921 3921 2572 2014 Medium goods vehicle #> 3922 3922 2573 2014 Private car #> 3923 3923 2573 2014 Light goods vehicle #> 3924 3924 2574 2014 Taxi #> 3925 3925 2575 2014 Taxi #> 3926 3926 2575 2014 Taxi #> 3927 3927 2575 2014 Taxi #> 3928 3928 2576 2014 Taxi #> 3929 3929 2577 2014 Public light bus #> 3930 3930 2577 2014 Private car #> 3931 3931 2578 2014 Public franchised bus #> 3932 3932 2579 2014 Private car #> 3933 3933 2579 2014 Private car #> 3934 3934 2580 2014 Private car #> 3935 3935 2580 2014 Private car #> 3936 3936 2581 2014 Taxi #> 3937 3937 2581 2014 Private car #> 3938 3938 2581 2014 Private car #> 3939 3939 2582 2014 Public franchised bus #> 3940 3940 2583 2014 Light goods vehicle #> 3941 3941 2584 2014 Taxi #> 3942 3942 2585 2014 Taxi #> 3943 3943 2586 2014 Bicycle #> 3944 3944 2587 2014 Public franchised bus #> 3945 3945 2587 2014 Private car #> 3946 3946 2588 2014 Motorcycle #> 3947 3947 2589 2014 Private car #> 3948 3948 2590 2014 Taxi #> 3949 3949 2590 2014 Private car #> 3950 3950 2591 2014 Private car #> 3951 3951 2592 2014 Motorcycle #> 3952 3952 2593 2014 Light goods vehicle #> 3953 3953 2594 2014 Others (incl. unknown) #> 3954 3954 2595 2014 Public franchised bus #> 3955 3955 2596 2014 Motorcycle #> 3956 3956 2597 2014 Public non-franchised bus #> 3957 3957 2597 2014 Taxi #> 3958 3958 2598 2014 Motorcycle #> 3959 3959 2599 2014 Public light bus #> 3960 3960 2599 2014 Private car #> 3961 3961 2599 2014 Private car #> 3962 3962 2600 2014 Private car #> 3963 3963 2601 2014 Private car #> 3964 3964 2601 2014 Private car #> 3965 3965 2602 2014 Public franchised bus #> 3966 3966 2603 2014 Private car #> 3967 3967 2603 2014 Motorcycle #> 3968 3968 2604 2014 Taxi #> 3969 3969 2604 2014 Private car #> 3970 3970 2605 2014 Public franchised bus #> 3971 3971 2606 2014 Light goods vehicle #> 3972 3972 2607 2014 Public franchised bus #> 3973 3973 2608 2014 Taxi #> 3974 3974 2609 2014 Private car #> 3975 3975 2609 2014 Others (incl. unknown) #> 3976 3976 2609 2014 Light goods vehicle #> 3977 3977 2610 2014 Taxi #> 3978 3978 2610 2014 Heavy goods vehicle #> 3979 3979 2611 2014 Light goods vehicle #> 3980 3980 2611 2014 Motorcycle #> 3981 3981 2612 2014 Taxi #> 3982 3982 2612 2014 Private car #> 3983 3983 2612 2014 Private car #> 3984 3984 2613 2014 Private car #> 3985 3985 2613 2014 Light goods vehicle #> 3986 3986 2614 2014 Private car #> 3987 3987 2615 2014 Private car #> 3988 3988 2615 2014 Taxi #> 3989 3989 2615 2014 Private car #> 3990 3990 2615 2014 Private car #> 3991 3991 2616 2014 Private car #> 3992 3992 2617 2014 Public franchised bus #> 3993 3993 2618 2014 Private car #> 3994 3994 2618 2014 Motorcycle #> 3995 3995 2619 2014 Private car #> 3996 3996 2619 2014 Public franchised bus #> 3997 3997 2620 2014 Motorcycle #> 3998 3998 2621 2014 Private car #> 3999 3999 2621 2014 Private car #> 4000 4000 2621 2014 Motorcycle #> 4001 4001 2622 2014 Motorcycle #> 4002 4002 2622 2014 Medium goods vehicle #> 4003 4003 2622 2014 Private car #> 4004 4004 2623 2014 Public franchised bus #> 4005 4005 2624 2014 Private car #> 4006 4006 2625 2014 Others (incl. unknown) #> 4007 4007 2626 2014 Public franchised bus #> 4008 4008 2627 2014 Bicycle #> 4009 4009 2628 2014 Private car #> 4010 4010 2629 2014 Taxi #> 4011 4011 2630 2014 Private car #> 4012 4012 2630 2014 Motorcycle #> 4013 4013 2631 2014 Private car #> 4014 4014 2632 2014 Others (incl. unknown) #> 4015 4015 2632 2014 Public franchised bus #> 4016 4016 2633 2014 Private car #> 4017 4017 2633 2014 Public franchised bus #> 4018 4018 2633 2014 Public franchised bus #> 4019 4019 2633 2014 Taxi #> 4020 4020 2634 2014 Private car #> 4021 4021 2634 2014 Public light bus #> 4022 4022 2635 2014 Light goods vehicle #> 4023 4023 2635 2014 Taxi #> 4024 4024 2635 2014 Motorcycle #> 4025 4025 2635 2014 Private car #> 4026 4026 2636 2014 Public franchised bus #> 4027 4027 2636 2014 Light goods vehicle #> 4028 4028 2637 2014 Private car #> 4029 4029 2637 2014 Private car #> 4030 4030 2638 2014 Taxi #> 4031 4031 2638 2014 Light goods vehicle #> 4032 4032 2639 2014 Taxi #> 4033 4033 2640 2014 Bicycle #> 4034 4034 2641 2014 Public non-franchised bus #> 4035 4035 2642 2014 Public franchised bus #> 4036 4036 2642 2014 Private car #> 4037 4037 2643 2014 Light goods vehicle #> 4038 4038 2643 2014 Private car #> 4039 4039 2644 2014 Taxi #> 4040 4040 2644 2014 Taxi #> 4041 4041 2645 2014 Public non-franchised bus #> 4042 4042 2646 2014 Motorcycle #> 4043 4043 2646 2014 Medium goods vehicle #> 4044 4044 2646 2014 Light goods vehicle #> 4045 4045 2647 2014 Taxi #> 4046 4046 2648 2014 Public franchised bus #> 4047 4047 2649 2014 Motorcycle #> 4048 4048 2650 2014 Public franchised bus #> 4049 4049 2651 2014 Private car #> 4050 4050 2651 2014 Private car #> 4051 4051 2652 2014 Taxi #> 4052 4052 2652 2014 Private car #> 4053 4053 2653 2014 Public light bus #> 4054 4054 2653 2014 Private car #> 4055 4055 2654 2014 Motorcycle #> 4056 4056 2654 2014 Public franchised bus #> 4057 4057 2654 2014 Public franchised bus #> 4058 4058 2655 2014 Taxi #> 4059 4059 2655 2014 Motorcycle #> 4060 4060 2655 2014 Light goods vehicle #> 4061 4061 2656 2014 Public non-franchised bus #> 4062 4062 2657 2014 Taxi #> 4063 4063 2658 2014 Public franchised bus #> 4064 4064 2658 2014 Public light bus #> 4065 4065 2659 2014 Taxi #> 4066 4066 2660 2014 Private car #> 4067 4067 2660 2014 Private car #> 4068 4068 2661 2014 Public franchised bus #> 4069 4069 2661 2014 Light goods vehicle #> 4070 4070 2662 2014 Taxi #> 4071 4071 2662 2014 Bicycle #> 4072 4072 2663 2014 Motorcycle #> 4073 4073 2663 2014 Private car #> 4074 4074 2664 2014 Motorcycle #> 4075 4075 2664 2014 Taxi #> 4076 4076 2665 2014 Private car #> 4077 4077 2665 2014 Taxi #> 4078 4078 2666 2014 Light goods vehicle #> 4079 4079 2667 2014 Light goods vehicle #> 4080 4080 2667 2014 Taxi #> 4081 4081 2668 2014 Taxi #> 4082 4082 2668 2014 Motorcycle #> 4083 4083 2669 2014 Taxi #> 4084 4084 2669 2014 Motorcycle #> 4085 4085 2670 2014 Taxi #> 4086 4086 2671 2014 Taxi #> 4087 4087 2672 2014 Private car #> 4088 4088 2673 2014 Light goods vehicle #> 4089 4089 2674 2014 Public light bus #> 4090 4090 2675 2014 Taxi #> 4091 4091 2675 2014 Private car #> 4092 4092 2676 2014 Motorcycle #> 4093 4093 2676 2014 Taxi #> 4094 4094 2677 2014 Taxi #> 4095 4095 2677 2014 Motorcycle #> 4096 4096 2677 2014 Private car #> 4097 4097 2678 2014 Motorcycle #> 4098 4098 2679 2014 Public franchised bus #> 4099 4099 2679 2014 Private car #> 4100 4100 2680 2014 Others (incl. unknown) #> 4101 4101 2681 2014 Light goods vehicle #> 4102 4102 2682 2014 Private car #> 4103 4103 2683 2014 Private car #> 4104 4104 2683 2014 Taxi #> 4105 4105 2684 2014 Private car #> 4106 4106 2685 2014 Public franchised bus #> 4107 4107 2686 2014 Private car #> 4108 4108 2686 2014 Taxi #> 4109 4109 2687 2014 Taxi #> 4110 4110 2687 2014 Taxi #> 4111 4111 2687 2014 Taxi #> 4112 4112 2688 2014 Medium goods vehicle #> 4113 4113 2688 2014 Taxi #> 4114 4114 2688 2014 Private car #> 4115 4115 2688 2014 Private car #> 4116 4116 2689 2014 Tram #> 4117 4117 2690 2014 Private car #> 4118 4118 2691 2014 Public franchised bus #> 4119 4119 2692 2014 Public franchised bus #> 4120 4120 2693 2014 Motorcycle #> 4121 4121 2693 2014 Taxi #> 4122 4122 2694 2014 Light goods vehicle #> 4123 4123 2694 2014 Private car #> 4124 4124 2695 2014 Motorcycle #> 4125 4125 2696 2014 Taxi #> 4126 4126 2696 2014 Public franchised bus #> 4127 4127 2697 2014 Public franchised bus #> 4128 4128 2698 2014 Others (incl. unknown) #> 4129 4129 2698 2014 Public non-franchised bus #> 4130 4130 2699 2014 Motorcycle #> 4131 4131 2700 2014 Private car #> 4132 4132 2700 2014 Public franchised bus #> 4133 4133 2701 2014 Private car #> 4134 4134 2701 2014 Private car #> 4135 4135 2702 2014 Taxi #> 4136 4136 2703 2014 Private car #> 4137 4137 2703 2014 Motorcycle #> 4138 4138 2704 2014 Taxi #> 4139 4139 2704 2014 Taxi #> 4140 4140 2705 2014 Bicycle #> 4141 4141 2705 2014 Taxi #> 4142 4142 2706 2014 Light goods vehicle #> 4143 4143 2707 2014 Private car #> 4144 4144 2707 2014 Private car #> 4145 4145 2708 2014 Light goods vehicle #> 4146 4146 2708 2014 Light goods vehicle #> 4147 4147 2709 2014 Motorcycle #> 4148 4148 2710 2014 Public franchised bus #> 4149 4149 2711 2014 Motorcycle #> 4150 4150 2712 2014 Light goods vehicle #> 4151 4151 2712 2014 Light goods vehicle #> 4152 4152 2712 2014 Private car #> 4153 4153 2713 2014 Bicycle #> 4154 4154 2713 2014 Taxi #> 4155 4155 2714 2014 Public franchised bus #> 4156 4156 2715 2014 Taxi #> 4157 4157 2715 2014 Private car #> 4158 4158 2716 2014 Public franchised bus #> 4159 4159 2717 2014 Taxi #> 4160 4160 2718 2014 Motorcycle #> 4161 4161 2718 2014 Private car #> 4162 4162 2719 2014 Public franchised bus #> 4163 4163 2720 2014 Taxi #> 4164 4164 2721 2014 Motorcycle #> 4165 4165 2722 2014 Taxi #> 4166 4166 2723 2014 Public franchised bus #> 4167 4167 2724 2014 Private car #> 4168 4168 2724 2014 Taxi #> 4169 4169 2724 2014 Light goods vehicle #> 4170 4170 2725 2014 Motorcycle #> 4171 4171 2726 2014 Motorcycle #> 4172 4172 2727 2014 Bicycle #> 4173 4173 2728 2014 Taxi #> 4174 4174 2728 2014 Private car #> 4175 4175 2729 2014 Private car #> 4176 4176 2730 2014 Public franchised bus #> 4177 4177 2730 2014 Public franchised bus #> 4178 4178 2731 2014 Tram #> 4179 4179 2732 2014 Light goods vehicle #> 4180 4180 2733 2014 Light goods vehicle #> 4181 4181 2733 2014 Public franchised bus #> 4182 4182 2734 2014 Private car #> 4183 4183 2735 2014 Public light bus #> 4184 4184 2736 2014 Medium goods vehicle #> 4185 4185 2736 2014 Light goods vehicle #> 4186 4186 2737 2014 Motorcycle #> 4187 4187 2738 2014 Motorcycle #> 4188 4188 2739 2014 Private car #> 4189 4189 2740 2014 Light goods vehicle #> 4190 4190 2740 2014 Private car #> 4191 4191 2741 2014 Private car #> 4192 4192 2741 2014 Bicycle #> 4193 4193 2742 2014 Light goods vehicle #> 4194 4194 2743 2014 Private car #> 4195 4195 2744 2014 Taxi #> 4196 4196 2745 2014 Motorcycle #> 4197 4197 2746 2014 Private car #> 4198 4198 2747 2014 Public franchised bus #> 4199 4199 2748 2014 Motorcycle #> 4200 4200 2748 2014 Taxi #> 4201 4201 2749 2014 Private car #> 4202 4202 2750 2014 Private car #> 4203 4203 2750 2014 Taxi #> 4204 4204 2751 2014 Public non-franchised bus #> 4205 4205 2751 2014 Taxi #> 4206 4206 2752 2014 Private car #> 4207 4207 2752 2014 Private car #> 4208 4208 2753 2014 Public light bus #> 4209 4209 2754 2014 Private car #> 4210 4210 2755 2014 Light goods vehicle #> 4211 4211 2755 2014 Motorcycle #> 4212 4212 2756 2014 Private car #> 4213 4213 2756 2014 Public franchised bus #> 4214 4214 2757 2014 Others (incl. unknown) #> 4215 4215 2758 2014 Taxi #> 4216 4216 2759 2014 Taxi #> 4217 4217 2759 2014 Taxi #> 4218 4218 2760 2014 Public franchised bus #> 4219 4219 2761 2014 Private car #> 4220 4220 2762 2014 Private car #> 4221 4221 2762 2014 Private car #> 4222 4222 2763 2014 Private car #> 4223 4223 2764 2014 Private car #> 4224 4224 2764 2014 Motorcycle #> 4225 4225 2765 2014 Public light bus #> 4226 4226 2766 2014 Taxi #> 4227 4227 2766 2014 Taxi #> 4228 4228 2767 2014 Motorcycle #> 4229 4229 2768 2014 Bicycle #> 4230 4230 2769 2014 Public franchised bus #> 4231 4231 2770 2014 Public franchised bus #> 4232 4232 2771 2014 Motorcycle #> 4233 4233 2771 2014 Taxi #> 4234 4234 2772 2014 Private car #> 4235 4235 2772 2014 Motorcycle #> 4236 4236 2773 2014 Public light bus #> 4237 4237 2773 2014 Others (incl. unknown) #> 4238 4238 2774 2014 Tram #> 4239 4239 2775 2014 Private car #> 4240 4240 2776 2014 Private car #> 4241 4241 2777 2014 Taxi #> 4242 4242 2778 2014 Light goods vehicle #> 4243 4243 2779 2014 Private car #> 4244 4244 2779 2014 Bicycle #> 4245 4245 2780 2014 Public franchised bus #> 4246 4246 2780 2014 Taxi #> 4247 4247 2781 2014 Public light bus #> 4248 4248 2782 2014 Tram #> 4249 4249 2782 2014 Public franchised bus #> 4250 4250 2783 2014 Taxi #> 4251 4251 2783 2014 Taxi #> 4252 4252 2784 2014 Private car #> 4253 4253 2784 2014 Taxi #> 4254 4254 2785 2014 Private car #> 4255 4255 2786 2014 Private car #> 4256 4256 2786 2014 Private car #> 4257 4257 2786 2014 Public light bus #> 4258 4258 2787 2014 Motorcycle #> 4259 4259 2788 2014 Private car #> 4260 4260 2789 2014 Private car #> 4261 4261 2789 2014 Taxi #> 4262 4262 2790 2014 Others (incl. unknown) #> 4263 4263 2791 2014 Private car #> 4264 4264 2791 2014 Public light bus #> 4265 4265 2792 2014 Motorcycle #> 4266 4266 2792 2014 Private car #> 4267 4267 2793 2014 Public franchised bus #> 4268 4268 2794 2014 Private car #> 4269 4269 2794 2014 Private car #> 4270 4270 2794 2014 Taxi #> 4271 4271 2795 2014 Private car #> 4272 4272 2796 2014 Private car #> 4273 4273 2797 2014 Public light bus #> 4274 4274 2798 2014 Taxi #> 4275 4275 2798 2014 Public franchised bus #> 4276 4276 2799 2014 Light goods vehicle #> 4277 4277 2800 2014 Taxi #> 4278 4278 2801 2014 Taxi #> 4279 4279 2802 2014 Private car #> 4280 4280 2803 2014 Motorcycle #> 4281 4281 2804 2014 Public light bus #> 4282 4282 2805 2014 Taxi #> 4283 4283 2805 2014 Motorcycle #> 4284 4284 2806 2014 Private car #> 4285 4285 2806 2014 Taxi #> 4286 4286 2806 2014 Private car #> 4287 4287 2807 2014 Taxi #> 4288 4288 2807 2014 Motorcycle #> 4289 4289 2808 2014 Motorcycle #> 4290 4290 2809 2014 Medium goods vehicle #> 4291 4291 2810 2014 Private car #> 4292 4292 2810 2014 Taxi #> 4293 4293 2811 2014 Private car #> 4294 4294 2811 2014 Motorcycle #> 4295 4295 2812 2014 Taxi #> 4296 4296 2812 2014 Taxi #> 4297 4297 2813 2014 Private car #> 4298 4298 2813 2014 Private car #> 4299 4299 2814 2014 Private car #> 4300 4300 2815 2014 Private car #> 4301 4301 2815 2014 Light goods vehicle #> 4302 4302 2816 2014 Private car #> 4303 4303 2816 2014 Private car #> 4304 4304 2817 2014 Public franchised bus #> 4305 4305 2817 2014 Taxi #> 4306 4306 2818 2014 Bicycle #> 4307 4307 2819 2014 Taxi #> 4308 4308 2820 2014 Private car #> 4309 4309 2820 2014 Public franchised bus #> 4310 4310 2821 2014 Public franchised bus #> 4311 4311 2822 2014 Tram #> 4312 4312 2823 2014 Public franchised bus #> 4313 4313 2824 2014 Light goods vehicle #> 4314 4314 2824 2014 Medium goods vehicle #> 4315 4315 2825 2014 Private car #> 4316 4316 2825 2014 Public franchised bus #> 4317 4317 2826 2014 Motorcycle #> 4318 4318 2826 2014 Private car #> 4319 4319 2827 2014 Taxi #> 4320 4320 2828 2014 Public franchised bus #> 4321 4321 2829 2014 Private car #> 4322 4322 2830 2014 Private car #> 4323 4323 2831 2014 Taxi #> 4324 4324 2831 2014 Taxi #> 4325 4325 2832 2014 Motorcycle #> 4326 4326 2833 2014 Motorcycle #> 4327 4327 2834 2014 Taxi #> 4328 4328 2834 2014 Public non-franchised bus #> 4329 4329 2835 2014 Private car #> 4330 4330 2836 2014 Public franchised bus #> 4331 4331 2837 2014 Private car #> 4332 4332 2837 2014 Private car #> 4333 4333 2838 2014 Private car #> 4334 4334 2839 2014 Taxi #> 4335 4335 2839 2014 Private car #> 4336 4336 2840 2014 Others (incl. unknown) #> 4337 4337 2841 2014 Private car #> 4338 4338 2842 2014 Private car #> 4339 4339 2843 2014 Bicycle #> 4340 4340 2843 2014 Public franchised bus #> 4341 4341 2844 2014 Taxi #> 4342 4342 2844 2014 Public franchised bus #> 4343 4343 2845 2014 Bicycle #> 4344 4344 2845 2014 Public non-franchised bus #> 4345 4345 2846 2014 Private car #> 4346 4346 2846 2014 Private car #> 4347 4347 2847 2014 Private car #> 4348 4348 2848 2014 Tram #> 4349 4349 2848 2014 Public franchised bus #> 4350 4350 2849 2014 Private car #> 4351 4351 2850 2014 Private car #> 4352 4352 2851 2014 Taxi #> 4353 4353 2851 2014 Private car #> 4354 4354 2852 2014 Private car #> 4355 4355 2853 2014 Private car #> 4356 4356 2854 2014 Motorcycle #> 4357 4357 2855 2014 Public light bus #> 4358 4358 2856 2014 Motorcycle #> 4359 4359 2857 2014 Public light bus #> 4360 4360 2858 2014 Public franchised bus #> 4361 4361 2858 2014 Private car #> 4362 4362 2858 2014 Medium goods vehicle #> 4363 4363 2859 2014 Taxi #> 4364 4364 2859 2014 Motorcycle #> 4365 4365 2860 2014 Public franchised bus #> 4366 4366 2861 2014 Motorcycle #> 4367 4367 2862 2014 Light goods vehicle #> 4368 4368 2862 2014 Taxi #> 4369 4369 2863 2014 Tram #> 4370 4370 2864 2014 Public franchised bus #> 4371 4371 2865 2014 Light goods vehicle #> 4372 4372 2865 2014 Light goods vehicle #> 4373 4373 2866 2014 Public light bus #> 4374 4374 2867 2014 Private car #> 4375 4375 2867 2014 Private car #> 4376 4376 2868 2014 Taxi #> 4377 4377 2868 2014 Motorcycle #> 4378 4378 2869 2014 Taxi #> 4379 4379 2869 2014 Taxi #> 4380 4380 2870 2014 Motorcycle #> 4381 4381 2871 2014 Public franchised bus #> 4382 4382 2872 2014 Taxi #> 4383 4383 2872 2014 Taxi #> 4384 4384 2873 2014 Public franchised bus #> 4385 4385 2873 2014 Public franchised bus #> 4386 4386 2874 2014 Public light bus #> 4387 4387 2875 2014 Taxi #> 4388 4388 2876 2014 Others (incl. unknown) #> 4389 4389 2877 2014 Public franchised bus #> 4390 4390 2878 2014 Public franchised bus #> 4391 4391 2878 2014 Private car #> 4392 4392 2879 2014 Public light bus #> 4393 4393 2879 2014 Private car #> 4394 4394 2879 2014 Public franchised bus #> 4395 4395 2880 2014 Taxi #> 4396 4396 2881 2014 Private car #> 4397 4397 2881 2014 Motorcycle #> 4398 4398 2882 2014 Public franchised bus #> 4399 4399 2883 2014 Motorcycle #> 4400 4400 2884 2014 Private car #> 4401 4401 2884 2014 Public non-franchised bus #> 4402 4402 2885 2014 Private car #> 4403 4403 2885 2014 Private car #> 4404 4404 2886 2014 Tram #> 4405 4405 2887 2014 Taxi #> 4406 4406 2888 2014 Motorcycle #> 4407 4407 2889 2014 Taxi #> 4408 4408 2889 2014 Taxi #> 4409 4409 2890 2014 Private car #> 4410 4410 2890 2014 Public franchised bus #> 4411 4411 2891 2014 Public franchised bus #> 4412 4412 2892 2014 Public franchised bus #> 4413 4413 2893 2014 Public franchised bus #> 4414 4414 2893 2014 Private car #> 4415 4415 2894 2014 Public franchised bus #> 4416 4416 2895 2014 Private car #> 4417 4417 2896 2014 Private car #> 4418 4418 2896 2014 Taxi #> 4419 4419 2897 2014 Taxi #> 4420 4420 2897 2014 Private car #> 4421 4421 2898 2014 Private car #> 4422 4422 2898 2014 Motorcycle #> 4423 4423 2899 2014 Private car #> 4424 4424 2900 2014 Private car #> 4425 4425 2901 2014 Others (incl. unknown) #> 4426 4426 2901 2014 Private car #> 4427 4427 2902 2014 Motorcycle #> 4428 4428 2903 2014 Public franchised bus #> 4429 4429 2904 2014 Public franchised bus #> 4430 4430 2905 2014 Light goods vehicle #> 4431 4431 2906 2014 Motorcycle #> 4432 4432 2906 2014 Public light bus #> 4433 4433 2907 2014 Private car #> 4434 4434 2908 2014 Taxi #> 4435 4435 2909 2014 Others (incl. unknown) #> 4436 4436 2910 2014 Public franchised bus #> 4437 4437 2911 2014 Taxi #> 4438 4438 2912 2014 Heavy goods vehicle #> 4439 4439 2912 2014 Public franchised bus #> 4440 4440 2913 2014 Public franchised bus #> 4441 4441 2914 2014 Motorcycle #> 4442 4442 2914 2014 Others (incl. unknown) #> 4443 4443 2915 2014 Taxi #> 4444 4444 2916 2014 Taxi #> 4445 4445 2917 2014 Public light bus #> 4446 4446 2918 2014 Private car #> 4447 4447 2918 2014 Motorcycle #> 4448 4448 2919 2014 Private car #> 4449 4449 2919 2014 Light goods vehicle #> 4450 4450 2919 2014 Taxi #> 4451 4451 2919 2014 Taxi #> 4452 4452 2919 2014 Taxi #> 4453 4453 2920 2014 Taxi #> 4454 4454 2921 2014 Motorcycle #> 4455 4455 2922 2014 Light goods vehicle #> 4456 4456 2923 2014 Medium goods vehicle #> 4457 4457 2924 2014 Private car #> 4458 4458 2925 2014 Taxi #> 4459 4459 2925 2014 Private car #> 4460 4460 2926 2014 Public non-franchised bus #> 4461 4461 2927 2014 Light goods vehicle #> 4462 4462 2927 2014 Public light bus #> 4463 4463 2927 2014 Private car #> 4464 4464 2928 2014 Public franchised bus #> 4465 4465 2929 2014 Public franchised bus #> 4466 4466 2930 2014 Motorcycle #> 4467 4467 2931 2014 Private car #> 4468 4468 2931 2014 Taxi #> 4469 4469 2932 2014 Taxi #> 4470 4470 2933 2014 Taxi #> 4471 4471 2933 2014 Motorcycle #> 4472 4472 2934 2014 Public franchised bus #> 4473 4473 2935 2014 Public franchised bus #> 4474 4474 2935 2014 Taxi #> 4475 4475 2935 2014 Taxi #> 4476 4476 2936 2014 Private car #> 4477 4477 2937 2014 Bicycle #> 4478 4478 2938 2014 Taxi #> 4479 4479 2939 2014 Motorcycle #> 4480 4480 2940 2014 Light goods vehicle #> 4481 4481 2940 2014 Private car #> 4482 4482 2941 2014 Taxi #> 4483 4483 2942 2014 Private car #> 4484 4484 2943 2014 Public light bus #> 4485 4485 2944 2014 Private car #> 4486 4486 2944 2014 Motorcycle #> 4487 4487 2945 2014 Public franchised bus #> 4488 4488 2946 2014 Public franchised bus #> 4489 4489 2947 2014 Private car #> 4490 4490 2948 2014 Taxi #> 4491 4491 2949 2014 Taxi #> 4492 4492 2950 2014 Motorcycle #> 4493 4493 2950 2014 Taxi #> 4494 4494 2951 2014 Public franchised bus #> 4495 4495 2952 2014 Public franchised bus #> 4496 4496 2953 2014 Motorcycle #> 4497 4497 2953 2014 Light goods vehicle #> 4498 4498 2954 2014 Private car #> 4499 4499 2955 2014 Public light bus #> 4500 4500 2956 2014 Public light bus #> 4501 4501 2957 2014 Taxi #> 4502 4502 2957 2014 Private car #> 4503 4503 2957 2014 Taxi #> 4504 4504 2957 2014 Private car #> 4505 4505 2957 2014 Private car #> 4506 4506 2958 2014 Private car #> 4507 4507 2958 2014 Medium goods vehicle #> 4508 4508 2959 2014 Bicycle #> 4509 4509 2960 2014 Light goods vehicle #> 4510 4510 2961 2014 Private car #> 4511 4511 2962 2014 Public franchised bus #> 4512 4512 2963 2014 Motorcycle #> 4513 4513 2963 2014 Private car #> 4514 4514 2963 2014 Private car #> 4515 4515 2964 2014 Private car #> 4516 4516 2965 2014 Taxi #> 4517 4517 2965 2014 Light goods vehicle #> 4518 4518 2966 2014 Public light bus #> 4519 4519 2967 2014 Others (incl. unknown) #> 4520 4520 2968 2014 Private car #> 4521 4521 2969 2014 Private car #> 4522 4522 2969 2014 Taxi #> 4523 4523 2969 2014 Private car #> 4524 4524 2970 2014 Private car #> 4525 4525 2971 2014 Private car #> 4526 4526 2971 2014 Private car #> 4527 4527 2971 2014 Motorcycle #> 4528 4528 2972 2014 Light goods vehicle #> 4529 4529 2972 2014 Motorcycle #> 4530 4530 2973 2014 Private car #> 4531 4531 2974 2014 Taxi #> 4532 4532 2974 2014 Taxi #> 4533 4533 2974 2014 Taxi #> 4534 4534 2975 2014 Taxi #> 4535 4535 2976 2014 Private car #> 4536 4536 2976 2014 Public franchised bus #> 4537 4537 2977 2014 Private car #> 4538 4538 2978 2014 Taxi #> 4539 4539 2979 2014 Motorcycle #> 4540 4540 2980 2014 Public franchised bus #> 4541 4541 2981 2014 Motorcycle #> 4542 4542 2982 2014 Taxi #> 4543 4543 2983 2014 Taxi #> 4544 4544 2983 2014 Public light bus #> 4545 4545 2983 2014 Private car #> 4546 4546 2983 2014 Private car #> 4547 4547 2983 2014 Private car #> 4548 4548 2984 2014 Motorcycle #> 4549 4549 2985 2014 Private car #> 4550 4550 2986 2014 Public franchised bus #> 4551 4551 2987 2014 Medium goods vehicle #> 4552 4552 2988 2014 Private car #> 4553 4553 2988 2014 Taxi #> 4554 4554 2989 2014 Bicycle #> 4555 4555 2990 2014 Public franchised bus #> 4556 4556 2991 2014 Motorcycle #> 4557 4557 2992 2014 Taxi #> 4558 4558 2992 2014 Taxi #> 4559 4559 2993 2014 Private car #> 4560 4560 2994 2014 Taxi #> 4561 4561 2995 2014 Motorcycle #> 4562 4562 2996 2014 Taxi #> 4563 4563 2997 2014 Public franchised bus #> 4564 4564 2998 2014 Private car #> 4565 4565 2999 2014 Public franchised bus #> 4566 4566 3000 2014 Taxi #> 4567 4567 3001 2014 Public franchised bus #> 4568 4568 3002 2014 Public franchised bus #> 4569 4569 3003 2014 Taxi #> 4570 4570 3003 2014 Public non-franchised bus #> 4571 4571 3004 2014 Public franchised bus #> 4572 4572 3005 2014 Motorcycle #> 4573 4573 3006 2014 Taxi #> 4574 4574 3007 2014 Public franchised bus #> 4575 4575 3007 2014 Public franchised bus #> 4576 4576 3008 2014 Public franchised bus #> 4577 4577 3009 2014 Bicycle #> 4578 4578 3010 2014 Public franchised bus #> 4579 4579 3011 2014 Light goods vehicle #> 4580 4580 3011 2014 Private car #> 4581 4581 3012 2014 Taxi #> 4582 4582 3013 2014 Taxi #> 4583 4583 3014 2015 Taxi #> 4584 4584 3014 2015 Private car #> 4585 4585 3015 2015 Taxi #> 4586 4586 3015 2015 Taxi #> 4587 4587 3016 2014 Public franchised bus #> 4588 4588 3017 2014 Private car #> 4589 4589 3017 2014 Public franchised bus #> 4590 4590 3018 2014 Bicycle #> 4591 4591 3018 2014 Bicycle #> 4592 4592 3019 2014 Taxi #> 4593 4593 3019 2014 Private car #> 4594 4594 3020 2014 Private car #> 4595 4595 3020 2014 Private car #> 4596 4596 3021 2014 Private car #> 4597 4597 3021 2014 Private car #> 4598 4598 3022 2014 Private car #> 4599 4599 3022 2014 Taxi #> 4600 4600 3023 2014 Medium goods vehicle #> 4601 4601 3023 2014 Taxi #> 4602 4602 3024 2014 Motorcycle #> 4603 4603 3024 2014 Bicycle #> 4604 4604 3025 2014 Taxi #> 4605 4605 3025 2014 Taxi #> 4606 4606 3026 2014 Public light bus #> 4607 4607 3027 2014 Public light bus #> 4608 4608 3028 2014 Private car #> 4609 4609 3029 2014 Public franchised bus #> 4610 4610 3030 2014 Public franchised bus #> 4611 4611 3031 2014 Private car #> 4612 4612 3031 2014 Private car #> 4613 4613 3031 2014 Private car #> 4614 4614 3032 2014 Private car #> 4615 4615 3032 2014 Motorcycle #> 4616 4616 3033 2014 Taxi #> 4617 4617 3033 2014 Taxi #> 4618 4618 3033 2014 Private car #> 4619 4619 3034 2014 Public light bus #> 4620 4620 3035 2014 Public light bus #> 4621 4621 3036 2014 Motorcycle #> 4622 4622 3037 2014 Public light bus #> 4623 4623 3038 2014 Public franchised bus #> 4624 4624 3038 2014 Private car #> 4625 4625 3039 2014 Motorcycle #> 4626 4626 3040 2014 Private car #> 4627 4627 3040 2014 Private car #> 4628 4628 3041 2014 Private car #> 4629 4629 3042 2014 Motorcycle #> 4630 4630 3043 2014 Motorcycle #> 4631 4631 3043 2014 Private car #> 4632 4632 3044 2014 Bicycle #> 4633 4633 3045 2014 Private car #> 4634 4634 3046 2014 Private car #> 4635 4635 3046 2014 Public light bus #> 4636 4636 3047 2014 Medium goods vehicle #> 4637 4637 3047 2014 Taxi #> 4638 4638 3048 2014 Bicycle #> 4639 4639 3049 2014 Taxi #> 4640 4640 3049 2014 Taxi #> 4641 4641 3050 2014 Taxi #> 4642 4642 3050 2014 Taxi #> 4643 4643 3051 2014 Taxi #> 4644 4644 3051 2014 Medium goods vehicle #> 4645 4645 3052 2014 Private car #> 4646 4646 3052 2014 Light goods vehicle #> 4647 4647 3053 2014 Motorcycle #> 4648 4648 3054 2014 Private car #> 4649 4649 3055 2014 Motorcycle #> 4650 4650 3056 2014 Public light bus #> 4651 4651 3057 2014 Taxi #> 4652 4652 3058 2014 Public franchised bus #> 4653 4653 3058 2014 Taxi #> 4654 4654 3059 2014 Private car #> 4655 4655 3059 2014 Medium goods vehicle #> 4656 4656 3060 2014 Medium goods vehicle #> 4657 4657 3060 2014 Private car #> 4658 4658 3061 2014 Taxi #> 4659 4659 3061 2014 Public light bus #> 4660 4660 3062 2014 Private car #> 4661 4661 3063 2014 Public franchised bus #> 4662 4662 3064 2014 Public light bus #> 4663 4663 3064 2014 Private car #> 4664 4664 3065 2014 Motorcycle #> 4665 4665 3066 2014 Private car #> 4666 4666 3066 2014 Private car #> 4667 4667 3067 2014 Public franchised bus #> 4668 4668 3068 2014 Motorcycle #> 4669 4669 3068 2014 Taxi #> 4670 4670 3069 2014 Light goods vehicle #> 4671 4671 3069 2014 Motorcycle #> 4672 4672 3070 2014 Taxi #> 4673 4673 3070 2014 Motorcycle #> 4674 4674 3071 2014 Taxi #> 4675 4675 3071 2014 Private car #> 4676 4676 3072 2014 Light goods vehicle #> 4677 4677 3073 2014 Bicycle #> 4678 4678 3074 2014 Light goods vehicle #> 4679 4679 3074 2014 Private car #> 4680 4680 3074 2014 Private car #> 4681 4681 3075 2014 Private car #> 4682 4682 3076 2014 Motorcycle #> 4683 4683 3077 2014 Light goods vehicle #> 4684 4684 3077 2014 Light goods vehicle #> 4685 4685 3078 2014 Private car #> 4686 4686 3078 2014 Public franchised bus #> 4687 4687 3079 2014 Bicycle #> 4688 4688 3080 2014 Motorcycle #> 4689 4689 3081 2014 Public franchised bus #> 4690 4690 3081 2014 Taxi #> 4691 4691 3082 2014 Light goods vehicle #> 4692 4692 3083 2014 Public franchised bus #> 4693 4693 3084 2014 Light goods vehicle #> 4694 4694 3085 2014 Private car #> 4695 4695 3086 2014 Private car #> 4696 4696 3086 2014 Public franchised bus #> 4697 4697 3087 2014 Motorcycle #> 4698 4698 3087 2014 Private car #> 4699 4699 3088 2014 Public light bus #> 4700 4700 3089 2014 Light goods vehicle #> 4701 4701 3090 2014 Private car #> 4702 4702 3090 2014 Others (incl. unknown) #> 4703 4703 3091 2014 Taxi #> 4704 4704 3091 2014 Motorcycle #> 4705 4705 3092 2014 Public light bus #> 4706 4706 3093 2014 Others (incl. unknown) #> 4707 4707 3093 2014 Light goods vehicle #> 4708 4708 3094 2014 Public franchised bus #> 4709 4709 3094 2014 Public franchised bus #> 4710 4710 3095 2014 Public light bus #> 4711 4711 3095 2014 Light goods vehicle #> 4712 4712 3096 2014 Taxi #> 4713 4713 3097 2014 Others (incl. unknown) #> 4714 4714 3097 2014 Light goods vehicle #> 4715 4715 3098 2014 Motorcycle #> 4716 4716 3099 2014 Motorcycle #> 4717 4717 3100 2014 Motorcycle #> 4718 4718 3101 2014 Private car #> 4719 4719 3102 2014 Public light bus #> 4720 4720 3103 2014 Private car #> 4721 4721 3104 2014 Motorcycle #> 4722 4722 3105 2014 Public light bus #> 4723 4723 3106 2014 Taxi #> 4724 4724 3107 2014 Public franchised bus #> 4725 4725 3108 2014 Light goods vehicle #> 4726 4726 3109 2014 Motorcycle #> 4727 4727 3109 2014 Private car #> 4728 4728 3110 2014 Private car #> 4729 4729 3110 2014 Taxi #> 4730 4730 3111 2014 Light goods vehicle #> 4731 4731 3112 2014 Taxi #> 4732 4732 3112 2014 Private car #> 4733 4733 3113 2014 Motorcycle #> 4734 4734 3113 2014 Taxi #> 4735 4735 3114 2014 Bicycle #> 4736 4736 3115 2014 Private car #> 4737 4737 3115 2014 Private car #> 4738 4738 3116 2014 Private car #> 4739 4739 3116 2014 Private car #> 4740 4740 3117 2014 Private car #> 4741 4741 3117 2014 Public franchised bus #> 4742 4742 3118 2014 Public light bus #> 4743 4743 3119 2014 Taxi #> 4744 4744 3120 2014 Motorcycle #> 4745 4745 3121 2014 Public non-franchised bus #> 4746 4746 3122 2014 Bicycle #> 4747 4747 3123 2014 Private car #> 4748 4748 3124 2014 Public franchised bus #> 4749 4749 3125 2014 Public franchised bus #> 4750 4750 3126 2014 Public franchised bus #> 4751 4751 3127 2014 Public franchised bus #> 4752 4752 3128 2014 Bicycle #> 4753 4753 3129 2014 Private car #> 4754 4754 3130 2014 Public franchised bus #> 4755 4755 3131 2014 Public light bus #> 4756 4756 3132 2014 Public franchised bus #> 4757 4757 3133 2014 Private car #> 4758 4758 3133 2014 Light goods vehicle #> 4759 4759 3134 2014 Taxi #> 4760 4760 3135 2014 Motorcycle #> 4761 4761 3136 2014 Motorcycle #> 4762 4762 3136 2014 Light goods vehicle #> 4763 4763 3137 2014 Light goods vehicle #> 4764 4764 3137 2014 Public non-franchised bus #> 4765 4765 3138 2014 Taxi #> 4766 4766 3138 2014 Private car #> 4767 4767 3138 2014 Private car #> 4768 4768 3138 2014 Private car #> 4769 4769 3138 2014 Motorcycle #> 4770 4770 3138 2014 Private car #> 4771 4771 3139 2014 Bicycle #> 4772 4772 3140 2014 Taxi #> 4773 4773 3140 2014 Private car #> 4774 4774 3141 2014 Taxi #> 4775 4775 3142 2014 Motorcycle #> 4776 4776 3143 2014 Public light bus #> 4777 4777 3143 2014 Public franchised bus #> 4778 4778 3144 2014 Private car #> 4779 4779 3145 2014 Taxi #> 4780 4780 3146 2014 Light goods vehicle #> 4781 4781 3147 2014 Private car #> 4782 4782 3148 2014 Public franchised bus #> 4783 4783 3149 2014 Private car #> 4784 4784 3150 2014 Public light bus #> 4785 4785 3150 2014 Taxi #> 4786 4786 3151 2014 Taxi #> 4787 4787 3152 2014 Private car #> 4788 4788 3152 2014 Taxi #> 4789 4789 3153 2014 Medium goods vehicle #> 4790 4790 3154 2014 Public franchised bus #> 4791 4791 3155 2014 Private car #> 4792 4792 3156 2014 Private car #> 4793 4793 3157 2014 Taxi #> 4794 4794 3157 2014 Private car #> 4795 4795 3158 2014 Public light bus #> 4796 4796 3159 2014 Taxi #> 4797 4797 3159 2014 Light goods vehicle #> 4798 4798 3160 2014 Private car #> 4799 4799 3161 2014 Private car #> 4800 4800 3161 2014 Private car #> 4801 4801 3162 2014 Public light bus #> 4802 4802 3163 2014 Motorcycle #> 4803 4803 3164 2014 Private car #> 4804 4804 3165 2014 Motorcycle #> 4805 4805 3166 2014 Public franchised bus #> 4806 4806 3167 2014 Taxi #> 4807 4807 3168 2014 Bicycle #> 4808 4808 3169 2014 Light goods vehicle #> 4809 4809 3169 2014 Light goods vehicle #> 4810 4810 3170 2014 Light goods vehicle #> 4811 4811 3171 2014 Private car #> 4812 4812 3171 2014 Motorcycle #> 4813 4813 3172 2014 Motorcycle #> 4814 4814 3172 2014 Taxi #> 4815 4815 3173 2014 Taxi #> 4816 4816 3174 2014 Public franchised bus #> 4817 4817 3175 2014 Public franchised bus #> 4818 4818 3176 2014 Motorcycle #> 4819 4819 3177 2014 Motorcycle #> 4820 4820 3178 2014 Motorcycle #> 4821 4821 3179 2014 Private car #> 4822 4822 3179 2014 Private car #> 4823 4823 3180 2014 Taxi #> 4824 4824 3181 2014 Private car #> 4825 4825 3181 2014 Taxi #> 4826 4826 3181 2014 Private car #> 4827 4827 3182 2014 Private car #> 4828 4828 3183 2014 Private car #> 4829 4829 3184 2014 Taxi #> 4830 4830 3185 2014 Private car #> 4831 4831 3185 2014 Private car #> 4832 4832 3186 2014 Public franchised bus #> 4833 4833 3187 2014 Private car #> 4834 4834 3187 2014 Private car #> 4835 4835 3188 2014 Private car #> 4836 4836 3188 2014 Motorcycle #> 4837 4837 3189 2014 Private car #> 4838 4838 3190 2014 Motorcycle #> 4839 4839 3191 2014 Private car #> 4840 4840 3191 2014 Private car #> 4841 4841 3192 2014 Private car #> 4842 4842 3192 2014 Taxi #> 4843 4843 3193 2014 Taxi #> 4844 4844 3193 2014 Public franchised bus #> 4845 4845 3193 2014 Private car #> 4846 4846 3194 2014 Motorcycle #> 4847 4847 3195 2014 Motorcycle #> 4848 4848 3196 2014 Public franchised bus #> 4849 4849 3197 2014 Private car #> 4850 4850 3197 2014 Private car #> 4851 4851 3197 2014 Private car #> 4852 4852 3198 2014 Motorcycle #> 4853 4853 3199 2014 Bicycle #> 4854 4854 3199 2014 Taxi #> 4855 4855 3199 2014 Bicycle #> 4856 4856 3200 2014 Bicycle #> 4857 4857 3201 2014 Private car #> 4858 4858 3202 2014 Public light bus #> 4859 4859 3203 2014 Private car #> 4860 4860 3204 2014 Motorcycle #> 4861 4861 3204 2014 Private car #> 4862 4862 3205 2014 Motorcycle #> 4863 4863 3205 2014 Private car #> 4864 4864 3206 2014 Bicycle #> 4865 4865 3207 2014 Private car #> 4866 4866 3208 2014 Bicycle #> 4867 4867 3209 2014 Bicycle #> 4868 4868 3210 2014 Public light bus #> 4869 4869 3211 2014 Private car #> 4870 4870 3212 2014 Public franchised bus #> 4871 4871 3212 2014 Private car #> 4872 4872 3213 2014 Private car #> 4873 4873 3213 2014 Private car #> 4874 4874 3213 2014 Private car #> 4875 4875 3213 2014 Private car #> 4876 4876 3214 2014 Bicycle #> 4877 4877 3215 2014 Private car #> 4878 4878 3215 2014 Private car #> 4879 4879 3216 2014 Public franchised bus #> 4880 4880 3217 2014 Public light bus #> 4881 4881 3217 2014 Public light bus #> 4882 4882 3218 2014 Public light bus #> 4883 4883 3219 2014 Bicycle #> 4884 4884 3220 2014 Private car #> 4885 4885 3221 2014 Private car #> 4886 4886 3221 2014 Private car #> 4887 4887 3222 2014 Taxi #> 4888 4888 3223 2014 Public franchised bus #> 4889 4889 3224 2014 Private car #> 4890 4890 3224 2014 Motorcycle #> 4891 4891 3225 2014 Public franchised bus #> 4892 4892 3226 2014 Taxi #> 4893 4893 3227 2014 Medium goods vehicle #> 4894 4894 3228 2014 Taxi #> 4895 4895 3229 2014 Private car #> 4896 4896 3229 2014 Private car #> 4897 4897 3230 2014 Motorcycle #> 4898 4898 3231 2014 Taxi #> 4899 4899 3232 2014 Private car #> 4900 4900 3233 2014 Private car #> 4901 4901 3233 2014 Private car #> 4902 4902 3234 2014 Public light bus #> 4903 4903 3235 2014 Public light bus #> 4904 4904 3236 2014 Public light bus #> 4905 4905 3236 2014 Taxi #> 4906 4906 3237 2014 Motorcycle #> 4907 4907 3238 2014 Light goods vehicle #> 4908 4908 3239 2014 Motorcycle #> 4909 4909 3239 2014 Private car #> 4910 4910 3240 2014 Private car #> 4911 4911 3240 2014 Motorcycle #> 4912 4912 3241 2014 Public franchised bus #> 4913 4913 3242 2014 Private car #> 4914 4914 3242 2014 Taxi #> 4915 4915 3243 2014 Public franchised bus #> 4916 4916 3244 2014 Private car #> 4917 4917 3245 2014 Light goods vehicle #> 4918 4918 3246 2014 Motorcycle #> 4919 4919 3246 2014 Public light bus #> 4920 4920 3247 2014 Medium goods vehicle #> 4921 4921 3247 2014 Taxi #> 4922 4922 3248 2014 Public light bus #> 4923 4923 3249 2014 Motorcycle #> 4924 4924 3249 2014 Private car #> 4925 4925 3250 2014 Public franchised bus #> 4926 4926 3250 2014 Motorcycle #> 4927 4927 3251 2014 Public light bus #> 4928 4928 3252 2014 Motorcycle #> 4929 4929 3253 2014 Private car #> 4930 4930 3253 2014 Private car #> 4931 4931 3254 2014 Public franchised bus #> 4932 4932 3255 2014 Public franchised bus #> 4933 4933 3256 2014 Taxi #> 4934 4934 3256 2014 Public franchised bus #> 4935 4935 3257 2014 Taxi #> 4936 4936 3257 2014 Public light bus #> 4937 4937 3258 2014 Private car #> 4938 4938 3259 2014 Public light bus #> 4939 4939 3259 2014 Heavy goods vehicle #> 4940 4940 3260 2014 Private car #> 4941 4941 3260 2014 Private car #> 4942 4942 3261 2014 Taxi #> 4943 4943 3261 2014 Medium goods vehicle #> 4944 4944 3262 2014 Public light bus #> 4945 4945 3262 2014 Private car #> 4946 4946 3263 2014 Private car #> 4947 4947 3263 2014 Taxi #> 4948 4948 3264 2014 Private car #> 4949 4949 3264 2014 Taxi #> 4950 4950 3265 2014 Taxi #> 4951 4951 3266 2014 Private car #> 4952 4952 3267 2014 Public light bus #> 4953 4953 3268 2014 Taxi #> 4954 4954 3268 2014 Private car #> 4955 4955 3269 2014 Public franchised bus #> 4956 4956 3270 2014 Public light bus #> 4957 4957 3271 2014 Public franchised bus #> 4958 4958 3272 2014 Private car #> 4959 4959 3272 2014 Private car #> 4960 4960 3273 2014 Private car #> 4961 4961 3273 2014 Public franchised bus #> 4962 4962 3274 2014 Taxi #> 4963 4963 3275 2014 Private car #> 4964 4964 3276 2014 Bicycle #> 4965 4965 3277 2014 Public franchised bus #> 4966 4966 3278 2014 Private car #> 4967 4967 3278 2014 Heavy goods vehicle #> 4968 4968 3279 2014 Private car #> 4969 4969 3280 2014 Private car #> 4970 4970 3280 2014 Private car #> 4971 4971 3280 2014 Private car #> 4972 4972 3281 2014 Public light bus #> 4973 4973 3282 2014 Private car #> 4974 4974 3283 2014 Light goods vehicle #> 4975 4975 3284 2014 Bicycle #> 4976 4976 3285 2014 Motorcycle #> 4977 4977 3286 2014 Public light bus #> 4978 4978 3287 2014 Taxi #> 4979 4979 3288 2014 Public franchised bus #> 4980 4980 3289 2014 Light goods vehicle #> 4981 4981 3289 2014 Private car #> 4982 4982 3289 2014 Public light bus #> 4983 4983 3290 2014 Public franchised bus #> 4984 4984 3291 2014 Motorcycle #> 4985 4985 3292 2014 Private car #> 4986 4986 3292 2014 Taxi #> 4987 4987 3293 2014 Private car #> 4988 4988 3293 2014 Public non-franchised bus #> 4989 4989 3294 2014 Motorcycle #> 4990 4990 3295 2014 Motorcycle #> 4991 4991 3296 2014 Public franchised bus #> 4992 4992 3297 2014 Motorcycle #> 4993 4993 3297 2014 Taxi #> 4994 4994 3298 2014 Motorcycle #> 4995 4995 3298 2014 Private car #> 4996 4996 3299 2014 Private car #> 4997 4997 3300 2014 Bicycle #> 4998 4998 3301 2014 Private car #> 4999 4999 3301 2014 Private car #> 5000 5000 3302 2014 Motorcycle #> 5001 5001 3303 2014 Light goods vehicle #> 5002 5002 3304 2014 Private car #> 5003 5003 3304 2014 Medium goods vehicle #> 5004 5004 3304 2014 Public non-franchised bus #> 5005 5005 3304 2014 Taxi #> 5006 5006 3304 2014 Light goods vehicle #> 5007 5007 3305 2014 Motorcycle #> 5008 5008 3306 2014 Public franchised bus #> 5009 5009 3307 2014 Public light bus #> 5010 5010 3308 2014 Public light bus #> 5011 5011 3308 2014 Motorcycle #> 5012 5012 3309 2014 Taxi #> 5013 5013 3310 2014 Public franchised bus #> 5014 5014 3311 2014 Public franchised bus #> 5015 5015 3312 2014 Motorcycle #> 5016 5016 3312 2014 Public light bus #> 5017 5017 3313 2014 Taxi #> 5018 5018 3314 2014 Taxi #> 5019 5019 3314 2014 Motorcycle #> 5020 5020 3315 2014 Motorcycle #> 5021 5021 3315 2014 Private car #> 5022 5022 3316 2014 Taxi #> 5023 5023 3316 2014 Light goods vehicle #> 5024 5024 3317 2014 Public franchised bus #> 5025 5025 3317 2014 Taxi #> 5026 5026 3318 2014 Bicycle #> 5027 5027 3319 2014 Private car #> 5028 5028 3319 2014 Motorcycle #> 5029 5029 3320 2014 Public non-franchised bus #> 5030 5030 3321 2014 Motorcycle #> 5031 5031 3322 2014 Private car #> 5032 5032 3323 2014 Light goods vehicle #> 5033 5033 3323 2014 Public light bus #> 5034 5034 3324 2014 Motorcycle #> 5035 5035 3324 2014 Private car #> 5036 5036 3325 2014 Medium goods vehicle #> 5037 5037 3325 2014 Motorcycle #> 5038 5038 3326 2014 Public light bus #> 5039 5039 3326 2014 Light goods vehicle #> 5040 5040 3327 2014 Private car #> 5041 5041 3327 2014 Medium goods vehicle #> 5042 5042 3328 2014 Public light bus #> 5043 5043 3329 2014 Public franchised bus #> 5044 5044 3330 2014 Bicycle #> 5045 5045 3331 2014 Private car #> 5046 5046 3332 2014 Motorcycle #> 5047 5047 3333 2014 Taxi #> 5048 5048 3333 2014 Light goods vehicle #> 5049 5049 3334 2014 Public non-franchised bus #> 5050 5050 3334 2014 Private car #> 5051 5051 3335 2014 Public franchised bus #> 5052 5052 3336 2014 Light goods vehicle #> 5053 5053 3337 2014 Bicycle #> 5054 5054 3338 2014 Motorcycle #> 5055 5055 3338 2014 Private car #> 5056 5056 3339 2014 Public franchised bus #> 5057 5057 3339 2014 Light goods vehicle #> 5058 5058 3340 2014 Light goods vehicle #> 5059 5059 3340 2014 Taxi #> 5060 5060 3341 2014 Heavy goods vehicle #> 5061 5061 3341 2014 Bicycle #> 5062 5062 3342 2014 Light goods vehicle #> 5063 5063 3343 2014 Taxi #> 5064 5064 3344 2014 Motorcycle #> 5065 5065 3345 2014 Private car #> 5066 5066 3345 2014 Taxi #> 5067 5067 3346 2014 Others (incl. unknown) #> 5068 5068 3346 2014 Taxi #> 5069 5069 3347 2014 Private car #> 5070 5070 3347 2014 Public franchised bus #> 5071 5071 3348 2014 Taxi #> 5072 5072 3348 2014 Motorcycle #> 5073 5073 3349 2014 Private car #> 5074 5074 3349 2014 Medium goods vehicle #> 5075 5075 3350 2014 Taxi #> 5076 5076 3350 2014 Private car #> 5077 5077 3351 2014 Bicycle #> 5078 5078 3352 2014 Public franchised bus #> 5079 5079 3353 2014 Public light bus #> 5080 5080 3354 2014 Private car #> 5081 5081 3354 2014 Private car #> 5082 5082 3355 2014 Taxi #> 5083 5083 3355 2014 Private car #> 5084 5084 3356 2014 Medium goods vehicle #> 5085 5085 3356 2014 Public franchised bus #> 5086 5086 3357 2014 Private car #> 5087 5087 3358 2014 Motorcycle #> 5088 5088 3358 2014 Taxi #> 5089 5089 3359 2014 Public light bus #> 5090 5090 3359 2014 Taxi #> 5091 5091 3360 2014 Light goods vehicle #> 5092 5092 3360 2014 Private car #> 5093 5093 3361 2014 Public franchised bus #> 5094 5094 3361 2014 Private car #> 5095 5095 3362 2014 Private car #> 5096 5096 3363 2014 Private car #> 5097 5097 3363 2014 Others (incl. unknown) #> 5098 5098 3364 2014 Light goods vehicle #> 5099 5099 3364 2014 Taxi #> 5100 5100 3365 2014 Private car #> 5101 5101 3365 2014 Public franchised bus #> 5102 5102 3366 2014 Taxi #> 5103 5103 3367 2014 Taxi #> 5104 5104 3367 2014 Medium goods vehicle #> 5105 5105 3368 2014 Light goods vehicle #> 5106 5106 3368 2014 Light goods vehicle #> 5107 5107 3369 2014 Public franchised bus #> 5108 5108 3370 2014 Public light bus #> 5109 5109 3370 2014 Taxi #> 5110 5110 3371 2014 Public franchised bus #> 5111 5111 3372 2014 Taxi #> 5112 5112 3372 2014 Private car #> 5113 5113 3373 2014 Public franchised bus #> 5114 5114 3374 2014 Motorcycle #> 5115 5115 3375 2014 Public franchised bus #> 5116 5116 3376 2014 Public franchised bus #> 5117 5117 3377 2014 Bicycle #> 5118 5118 3378 2014 Bicycle #> 5119 5119 3379 2014 Public franchised bus #> 5120 5120 3380 2014 Light goods vehicle #> 5121 5121 3381 2014 Private car #> 5122 5122 3381 2014 Private car #> 5123 5123 3382 2014 Public franchised bus #> 5124 5124 3383 2014 Light goods vehicle #> 5125 5125 3383 2014 Private car #> 5126 5126 3384 2014 Public non-franchised bus #> 5127 5127 3384 2014 Taxi #> 5128 5128 3385 2014 Light goods vehicle #> 5129 5129 3385 2014 Light goods vehicle #> 5130 5130 3385 2014 Private car #> 5131 5131 3386 2014 Taxi #> 5132 5132 3386 2014 Taxi #> 5133 5133 3387 2014 Taxi #> 5134 5134 3387 2014 Bicycle #> 5135 5135 3388 2014 Public light bus #> 5136 5136 3389 2014 Private car #> 5137 5137 3389 2014 Public franchised bus #> 5138 5138 3390 2014 Private car #> 5139 5139 3391 2014 Motorcycle #> 5140 5140 3392 2014 Taxi #> 5141 5141 3392 2014 Taxi #> 5142 5142 3393 2014 Private car #> 5143 5143 3393 2014 Taxi #> 5144 5144 3394 2014 Taxi #> 5145 5145 3395 2014 Public franchised bus #> 5146 5146 3396 2014 Motorcycle #> 5147 5147 3397 2014 Public franchised bus #> 5148 5148 3397 2014 Taxi #> 5149 5149 3398 2014 Public franchised bus #> 5150 5150 3399 2014 Motorcycle #> 5151 5151 3400 2014 Private car #> 5152 5152 3400 2014 Taxi #> 5153 5153 3401 2014 Taxi #> 5154 5154 3402 2014 Private car #> 5155 5155 3403 2014 Private car #> 5156 5156 3404 2014 Light goods vehicle #> 5157 5157 3405 2014 Taxi #> 5158 5158 3405 2014 Private car #> 5159 5159 3406 2014 Public franchised bus #> 5160 5160 3406 2014 Private car #> 5161 5161 3407 2014 Public franchised bus #> 5162 5162 3408 2014 Taxi #> 5163 5163 3408 2014 Public franchised bus #> 5164 5164 3409 2014 Taxi #> 5165 5165 3409 2014 Light goods vehicle #> 5166 5166 3410 2014 Public franchised bus #> 5167 5167 3410 2014 Light goods vehicle #> 5168 5168 3411 2014 Others (incl. unknown) #> 5169 5169 3412 2014 Taxi #> 5170 5170 3412 2014 Public franchised bus #> 5171 5171 3413 2014 Public light bus #> 5172 5172 3413 2014 Private car #> 5173 5173 3414 2014 Private car #> 5174 5174 3415 2014 Public non-franchised bus #> 5175 5175 3415 2014 Light goods vehicle #> 5176 5176 3416 2014 Public franchised bus #> 5177 5177 3417 2014 Private car #> 5178 5178 3418 2014 Public franchised bus #> 5179 5179 3418 2014 Public franchised bus #> 5180 5180 3419 2014 Public franchised bus #> 5181 5181 3420 2014 Private car #> 5182 5182 3420 2014 Taxi #> 5183 5183 3421 2014 Taxi #> 5184 5184 3421 2014 Motorcycle #> 5185 5185 3422 2014 Motorcycle #> 5186 5186 3423 2014 Private car #> 5187 5187 3423 2014 Taxi #> 5188 5188 3423 2014 Private car #> 5189 5189 3424 2014 Public non-franchised bus #> 5190 5190 3425 2014 Public franchised bus #> 5191 5191 3426 2014 Private car #> 5192 5192 3427 2014 Bicycle #> 5193 5193 3428 2014 Motorcycle #> 5194 5194 3429 2014 Private car #> 5195 5195 3429 2014 Public light bus #> 5196 5196 3430 2014 Light goods vehicle #> 5197 5197 3431 2014 Taxi #> 5198 5198 3432 2014 Motorcycle #> 5199 5199 3433 2014 Private car #> 5200 5200 3433 2014 Public light bus #> 5201 5201 3434 2014 Taxi #> 5202 5202 3434 2014 Light goods vehicle #> 5203 5203 3434 2014 Light goods vehicle #> 5204 5204 3435 2014 Private car #> 5205 5205 3435 2014 Others (incl. unknown) #> 5206 5206 3436 2014 Taxi #> 5207 5207 3436 2014 Light goods vehicle #> 5208 5208 3437 2014 Taxi #> 5209 5209 3438 2014 Taxi #> 5210 5210 3438 2014 Taxi #> 5211 5211 3439 2014 Motorcycle #> 5212 5212 3439 2014 Public light bus #> 5213 5213 3440 2014 Taxi #> 5214 5214 3440 2014 Private car #> 5215 5215 3441 2014 Public light bus #> 5216 5216 3442 2014 Motorcycle #> 5217 5217 3442 2014 Motorcycle #> 5218 5218 3443 2014 Light goods vehicle #> 5219 5219 3444 2014 Medium goods vehicle #> 5220 5220 3445 2014 Light goods vehicle #> 5221 5221 3445 2014 Public light bus #> 5222 5222 3446 2014 Light goods vehicle #> 5223 5223 3446 2014 Public franchised bus #> 5224 5224 3447 2014 Taxi #> 5225 5225 3447 2014 Private car #> 5226 5226 3448 2014 Private car #> 5227 5227 3448 2014 Public light bus #> 5228 5228 3449 2014 Motorcycle #> 5229 5229 3450 2014 Private car #> 5230 5230 3451 2014 Bicycle #> 5231 5231 3452 2014 Others (incl. unknown) #> 5232 5232 3453 2014 Private car #> 5233 5233 3453 2014 Taxi #> 5234 5234 3453 2014 Private car #> 5235 5235 3454 2014 Public franchised bus #> 5236 5236 3455 2014 Motorcycle #> 5237 5237 3456 2014 Light goods vehicle #> 5238 5238 3456 2014 Public franchised bus #> 5239 5239 3457 2014 Private car #> 5240 5240 3458 2014 Light goods vehicle #> 5241 5241 3458 2014 Light goods vehicle #> 5242 5242 3459 2014 Private car #> 5243 5243 3460 2014 Private car #> 5244 5244 3461 2014 Private car #> 5245 5245 3461 2014 Light goods vehicle #> 5246 5246 3462 2014 Light goods vehicle #> 5247 5247 3462 2014 Taxi #> 5248 5248 3463 2014 Private car #> 5249 5249 3463 2014 Public light bus #> 5250 5250 3463 2014 Taxi #> 5251 5251 3463 2014 Taxi #> 5252 5252 3464 2014 Bicycle #> 5253 5253 3465 2014 Motorcycle #> 5254 5254 3466 2014 Taxi #> 5255 5255 3466 2014 Private car #> 5256 5256 3467 2014 Private car #> 5257 5257 3467 2014 Motorcycle #> 5258 5258 3468 2014 Motorcycle #> 5259 5259 3469 2014 Taxi #> 5260 5260 3470 2014 Private car #> 5261 5261 3471 2014 Taxi #> 5262 5262 3471 2014 Private car #> 5263 5263 3472 2014 Bicycle #> 5264 5264 3473 2014 Public franchised bus #> 5265 5265 3473 2014 Public franchised bus #> 5266 5266 3474 2014 Public franchised bus #> 5267 5267 3475 2014 Bicycle #> 5268 5268 3476 2014 Private car #> 5269 5269 3476 2014 Public light bus #> 5270 5270 3476 2014 Motorcycle #> 5271 5271 3477 2014 Bicycle #> 5272 5272 3477 2014 Bicycle #> 5273 5273 3478 2014 Motorcycle #> 5274 5274 3478 2014 Public light bus #> 5275 5275 3479 2014 Medium goods vehicle #> 5276 5276 3479 2014 Taxi #> 5277 5277 3480 2014 Public light bus #> 5278 5278 3481 2014 Taxi #> 5279 5279 3481 2014 Motorcycle #> 5280 5280 3482 2014 Light goods vehicle #> 5281 5281 3483 2014 Private car #> 5282 5282 3483 2014 Light goods vehicle #> 5283 5283 3483 2014 Light goods vehicle #> 5284 5284 3484 2014 Light goods vehicle #> 5285 5285 3484 2014 Public light bus #> 5286 5286 3485 2014 Bicycle #> 5287 5287 3486 2014 Medium goods vehicle #> 5288 5288 3486 2014 Public franchised bus #> 5289 5289 3486 2014 Medium goods vehicle #> 5290 5290 3487 2014 Private car #> 5291 5291 3488 2014 Private car #> 5292 5292 3489 2014 Heavy goods vehicle #> 5293 5293 3489 2014 Private car #> 5294 5294 3490 2014 Public franchised bus #> 5295 5295 3491 2014 Motorcycle #> 5296 5296 3492 2014 Private car #> 5297 5297 3492 2014 Taxi #> 5298 5298 3493 2014 Public franchised bus #> 5299 5299 3494 2014 Taxi #> 5300 5300 3494 2014 Taxi #> 5301 5301 3495 2014 Public light bus #> 5302 5302 3496 2014 Private car #> 5303 5303 3496 2014 Private car #> 5304 5304 3497 2014 Bicycle #> 5305 5305 3498 2014 Private car #> 5306 5306 3498 2014 Light goods vehicle #> 5307 5307 3499 2014 Motorcycle #> 5308 5308 3500 2014 Private car #> 5309 5309 3500 2014 Private car #> 5310 5310 3501 2014 Taxi #> 5311 5311 3501 2014 Motorcycle #> 5312 5312 3502 2014 Private car #> 5313 5313 3502 2014 Medium goods vehicle #> 5314 5314 3503 2014 Medium goods vehicle #> 5315 5315 3503 2014 Light goods vehicle #> 5316 5316 3504 2014 Public franchised bus #> 5317 5317 3505 2014 Public franchised bus #> 5318 5318 3506 2014 Motorcycle #> 5319 5319 3507 2014 Motorcycle #> 5320 5320 3507 2014 Taxi #> 5321 5321 3508 2014 Public light bus #> 5322 5322 3509 2014 Private car #> 5323 5323 3510 2014 Public light bus #> 5324 5324 3511 2014 Motorcycle #> 5325 5325 3512 2014 Light goods vehicle #> 5326 5326 3512 2014 Private car #> 5327 5327 3512 2014 Private car #> 5328 5328 3513 2014 Motorcycle #> 5329 5329 3514 2014 Private car #> 5330 5330 3515 2014 Light goods vehicle #> 5331 5331 3516 2014 Private car #> 5332 5332 3516 2014 Private car #> 5333 5333 3517 2014 Public franchised bus #> 5334 5334 3518 2014 Taxi #> 5335 5335 3519 2014 Bicycle #> 5336 5336 3520 2014 Taxi #> 5337 5337 3520 2014 Light goods vehicle #> 5338 5338 3521 2014 Motorcycle #> 5339 5339 3522 2014 Private car #> 5340 5340 3522 2014 Private car #> 5341 5341 3523 2014 Private car #> 5342 5342 3524 2014 Private car #> 5343 5343 3525 2014 Taxi #> 5344 5344 3525 2014 Private car #> 5345 5345 3526 2014 Public franchised bus #> 5346 5346 3527 2014 Taxi #> 5347 5347 3527 2014 Private car #> 5348 5348 3527 2014 Light goods vehicle #> 5349 5349 3528 2014 Motorcycle #> 5350 5350 3529 2014 Taxi #> 5351 5351 3530 2014 Private car #> 5352 5352 3530 2014 Public light bus #> 5353 5353 3530 2014 Light goods vehicle #> 5354 5354 3530 2014 Taxi #> 5355 5355 3530 2014 Private car #> 5356 5356 3531 2014 Public franchised bus #> 5357 5357 3532 2014 Private car #> 5358 5358 3532 2014 Private car #> 5359 5359 3533 2014 Private car #> 5360 5360 3533 2014 Taxi #> 5361 5361 3534 2014 Private car #> 5362 5362 3534 2014 Taxi #> 5363 5363 3535 2014 Public franchised bus #> 5364 5364 3535 2014 Light goods vehicle #> 5365 5365 3536 2014 Private car #> 5366 5366 3536 2014 Private car #> 5367 5367 3537 2014 Private car #> 5368 5368 3538 2014 Private car #> 5369 5369 3538 2014 Private car #> 5370 5370 3538 2014 Private car #> 5371 5371 3539 2014 Private car #> 5372 5372 3539 2014 Taxi #> 5373 5373 3540 2014 Light goods vehicle #> 5374 5374 3541 2014 Medium goods vehicle #> 5375 5375 3541 2014 Light goods vehicle #> 5376 5376 3541 2014 Taxi #> 5377 5377 3541 2014 Taxi #> 5378 5378 3542 2014 Light goods vehicle #> 5379 5379 3543 2014 Motorcycle #> 5380 5380 3544 2014 Private car #> 5381 5381 3545 2014 Private car #> 5382 5382 3545 2014 Private car #> 5383 5383 3546 2014 Public light bus #> 5384 5384 3547 2014 Taxi #> 5385 5385 3547 2014 Private car #> 5386 5386 3548 2014 Motorcycle #> 5387 5387 3549 2014 Motorcycle #> 5388 5388 3550 2014 Private car #> 5389 5389 3551 2014 Private car #> 5390 5390 3551 2014 Private car #> 5391 5391 3552 2014 Taxi #> 5392 5392 3552 2014 Light goods vehicle #> 5393 5393 3552 2014 Private car #> 5394 5394 3553 2014 Taxi #> 5395 5395 3553 2014 Motorcycle #> 5396 5396 3554 2014 Private car #> 5397 5397 3555 2014 Medium goods vehicle #> 5398 5398 3556 2014 Public franchised bus #> 5399 5399 3557 2014 Motorcycle #> 5400 5400 3558 2014 Private car #> 5401 5401 3558 2014 Public light bus #> 5402 5402 3559 2014 Heavy goods vehicle #> 5403 5403 3559 2014 Private car #> 5404 5404 3560 2014 Private car #> 5405 5405 3560 2014 Public light bus #> 5406 5406 3561 2014 Public franchised bus #> 5407 5407 3562 2014 Public light bus #> 5408 5408 3563 2014 Taxi #> 5409 5409 3563 2014 Light goods vehicle #> 5410 5410 3563 2014 Public franchised bus #> 5411 5411 3564 2014 Bicycle #> 5412 5412 3565 2014 Public franchised bus #> 5413 5413 3566 2014 Public light bus #> 5414 5414 3567 2014 Bicycle #> 5415 5415 3568 2014 Motorcycle #> 5416 5416 3569 2014 Taxi #> 5417 5417 3569 2014 Taxi #> 5418 5418 3569 2014 Private car #> 5419 5419 3570 2014 Taxi #> 5420 5420 3570 2014 Private car #> 5421 5421 3571 2014 Taxi #> 5422 5422 3571 2014 Private car #> 5423 5423 3572 2014 Private car #> 5424 5424 3572 2014 Private car #> 5425 5425 3573 2014 Private car #> 5426 5426 3573 2014 Private car #> 5427 5427 3574 2014 Taxi #> 5428 5428 3575 2014 Light goods vehicle #> 5429 5429 3576 2014 Private car #> 5430 5430 3576 2014 Medium goods vehicle #> 5431 5431 3577 2014 Private car #> 5432 5432 3577 2014 Taxi #> 5433 5433 3578 2014 Motorcycle #> 5434 5434 3579 2014 Private car #> 5435 5435 3579 2014 Taxi #> 5436 5436 3580 2014 Public light bus #> 5437 5437 3581 2014 Light goods vehicle #> 5438 5438 3582 2014 Public light bus #> 5439 5439 3582 2014 Public franchised bus #> 5440 5440 3583 2014 Private car #> 5441 5441 3583 2014 Light goods vehicle #> 5442 5442 3584 2014 Private car #> 5443 5443 3584 2014 Private car #> 5444 5444 3585 2014 Taxi #> 5445 5445 3585 2014 Medium goods vehicle #> 5446 5446 3586 2014 Public light bus #> 5447 5447 3587 2014 Motorcycle #> 5448 5448 3587 2014 Motorcycle #> 5449 5449 3588 2014 Public franchised bus #> 5450 5450 3588 2014 Light goods vehicle #> 5451 5451 3589 2014 Private car #> 5452 5452 3590 2014 Bicycle #> 5453 5453 3591 2014 Light goods vehicle #> 5454 5454 3591 2014 Light goods vehicle #> 5455 5455 3591 2014 Public light bus #> 5456 5456 3591 2014 Private car #> 5457 5457 3592 2014 Public light bus #> 5458 5458 3592 2014 Motorcycle #> 5459 5459 3593 2014 Private car #> 5460 5460 3593 2014 Private car #> 5461 5461 3594 2014 Bicycle #> 5462 5462 3595 2014 Private car #> 5463 5463 3595 2014 Private car #> 5464 5464 3596 2014 Bicycle #> 5465 5465 3597 2014 Taxi #> 5466 5466 3598 2014 Private car #> 5467 5467 3598 2014 Public franchised bus #> 5468 5468 3599 2014 Bicycle #> 5469 5469 3599 2014 Bicycle #> 5470 5470 3600 2014 Motorcycle #> 5471 5471 3601 2014 Public franchised bus #> 5472 5472 3601 2014 Private car #> 5473 5473 3602 2014 Public light bus #> 5474 5474 3603 2014 Light goods vehicle #> 5475 5475 3603 2014 Public light bus #> 5476 5476 3604 2014 Private car #> 5477 5477 3604 2014 Private car #> 5478 5478 3605 2014 Bicycle #> 5479 5479 3606 2014 Private car #> 5480 5480 3606 2014 Public light bus #> 5481 5481 3607 2014 Private car #> 5482 5482 3607 2014 Taxi #> 5483 5483 3608 2014 Private car #> 5484 5484 3608 2014 Light goods vehicle #> 5485 5485 3609 2014 Public franchised bus #> 5486 5486 3610 2014 Private car #> 5487 5487 3610 2014 Private car #> 5488 5488 3611 2014 Private car #> 5489 5489 3612 2014 Private car #> 5490 5490 3612 2014 Light goods vehicle #> 5491 5491 3613 2014 Medium goods vehicle #> 5492 5492 3614 2014 Taxi #> 5493 5493 3615 2014 Public light bus #> 5494 5494 3616 2014 Public light bus #> 5495 5495 3616 2014 Motorcycle #> 5496 5496 3617 2014 Private car #> 5497 5497 3618 2014 Taxi #> 5498 5498 3619 2014 Private car #> 5499 5499 3619 2014 Public franchised bus #> 5500 5500 3620 2014 Taxi #> 5501 5501 3621 2014 Light goods vehicle #> 5502 5502 3622 2014 Public non-franchised bus #> 5503 5503 3623 2014 Private car #> 5504 5504 3623 2014 Private car #> 5505 5505 3623 2014 Private car #> 5506 5506 3623 2014 Taxi #> 5507 5507 3624 2014 Bicycle #> 5508 5508 3625 2014 Motorcycle #> 5509 5509 3625 2014 Taxi #> 5510 5510 3626 2014 Motorcycle #> 5511 5511 3627 2014 Taxi #> 5512 5512 3628 2014 Public franchised bus #> 5513 5513 3629 2014 Taxi #> 5514 5514 3629 2014 Taxi #> 5515 5515 3630 2014 Bicycle #> 5516 5516 3631 2014 Bicycle #> 5517 5517 3632 2014 Motorcycle #> 5518 5518 3633 2014 Motorcycle #> 5519 5519 3633 2014 Taxi #> 5520 5520 3634 2014 Taxi #> 5521 5521 3635 2014 Private car #> 5522 5522 3635 2014 Taxi #> 5523 5523 3636 2014 Motorcycle #> 5524 5524 3636 2014 Light goods vehicle #> 5525 5525 3637 2014 Motorcycle #> 5526 5526 3638 2014 Public light bus #> 5527 5527 3639 2014 Public franchised bus #> 5528 5528 3640 2014 Motorcycle #> 5529 5529 3641 2014 Motorcycle #> 5530 5530 3641 2014 Private car #> 5531 5531 3642 2014 Taxi #> 5532 5532 3643 2014 Bicycle #> 5533 5533 3644 2014 Bicycle #> 5534 5534 3645 2014 Bicycle #> 5535 5535 3646 2014 Private car #> 5536 5536 3646 2014 Motorcycle #> 5537 5537 3647 2014 Motorcycle #> 5538 5538 3647 2014 Private car #> 5539 5539 3648 2014 Public light bus #> 5540 5540 3649 2014 Heavy goods vehicle #> 5541 5541 3650 2014 Taxi #> 5542 5542 3651 2014 Taxi #> 5543 5543 3651 2014 Public franchised bus #> 5544 5544 3652 2014 Motorcycle #> 5545 5545 3653 2014 Private car #> 5546 5546 3653 2014 Motorcycle #> 5547 5547 3654 2014 Motorcycle #> 5548 5548 3654 2014 Private car #> 5549 5549 3655 2014 Public light bus #> 5550 5550 3656 2014 Motorcycle #> 5551 5551 3657 2014 Private car #> 5552 5552 3657 2014 Private car #> 5553 5553 3657 2014 Private car #> 5554 5554 3658 2014 Public franchised bus #> 5555 5555 3659 2014 Private car #> 5556 5556 3659 2014 Private car #> 5557 5557 3659 2014 Public light bus #> 5558 5558 3660 2014 Motorcycle #> 5559 5559 3661 2014 Private car #> 5560 5560 3662 2014 Motorcycle #> 5561 5561 3663 2014 Private car #> 5562 5562 3663 2014 Light goods vehicle #> 5563 5563 3664 2014 Taxi #> 5564 5564 3665 2014 Motorcycle #> 5565 5565 3665 2014 Light goods vehicle #> 5566 5566 3666 2014 Private car #> 5567 5567 3666 2014 Private car #> 5568 5568 3666 2014 Taxi #> 5569 5569 3667 2014 Bicycle #> 5570 5570 3668 2014 Bicycle #> 5571 5571 3669 2014 Public franchised bus #> 5572 5572 3670 2014 Light goods vehicle #> 5573 5573 3670 2014 Taxi #> 5574 5574 3671 2014 Motorcycle #> 5575 5575 3671 2014 Taxi #> 5576 5576 3672 2014 Public light bus #> 5577 5577 3672 2014 Light goods vehicle #> 5578 5578 3673 2014 Motorcycle #> 5579 5579 3673 2014 Taxi #> 5580 5580 3674 2014 Medium goods vehicle #> 5581 5581 3674 2014 Motorcycle #> 5582 5582 3675 2014 Public light bus #> 5583 5583 3676 2014 Public light bus #> 5584 5584 3677 2014 Private car #> 5585 5585 3677 2014 Private car #> 5586 5586 3678 2014 Bicycle #> 5587 5587 3679 2014 Public light bus #> 5588 5588 3680 2014 Taxi #> 5589 5589 3681 2014 Private car #> 5590 5590 3681 2014 Taxi #> 5591 5591 3682 2014 Public franchised bus #> 5592 5592 3683 2014 Bicycle #> 5593 5593 3683 2014 Private car #> 5594 5594 3684 2014 Public franchised bus #> 5595 5595 3684 2014 Private car #> 5596 5596 3685 2014 Public franchised bus #> 5597 5597 3686 2014 Bicycle #> 5598 5598 3687 2014 Private car #> 5599 5599 3688 2014 Private car #> 5600 5600 3689 2014 Motorcycle #> 5601 5601 3689 2014 Private car #> 5602 5602 3690 2014 Private car #> 5603 5603 3691 2014 Public light bus #> 5604 5604 3691 2014 Others (incl. unknown) #> 5605 5605 3692 2014 Taxi #> 5606 5606 3692 2014 Private car #> 5607 5607 3692 2014 Private car #> 5608 5608 3693 2014 Private car #> 5609 5609 3693 2014 Medium goods vehicle #> 5610 5610 3693 2014 Taxi #> 5611 5611 3694 2014 Private car #> 5612 5612 3694 2014 Medium goods vehicle #> 5613 5613 3694 2014 Private car #> 5614 5614 3695 2014 Light goods vehicle #> 5615 5615 3695 2014 Private car #> 5616 5616 3696 2014 Bicycle #> 5617 5617 3697 2014 Bicycle #> 5618 5618 3698 2014 Light goods vehicle #> 5619 5619 3698 2014 Public franchised bus #> 5620 5620 3699 2014 Motorcycle #> 5621 5621 3700 2014 Private car #> 5622 5622 3701 2014 Bicycle #> 5623 5623 3702 2014 Private car #> 5624 5624 3703 2014 Public light bus #> 5625 5625 3703 2014 Public light bus #> 5626 5626 3704 2014 Light goods vehicle #> 5627 5627 3704 2014 Light goods vehicle #> 5628 5628 3705 2014 Medium goods vehicle #> 5629 5629 3705 2014 Light goods vehicle #> 5630 5630 3706 2014 Medium goods vehicle #> 5631 5631 3706 2014 Private car #> 5632 5632 3707 2014 Private car #> 5633 5633 3708 2014 Taxi #> 5634 5634 3709 2014 Public light bus #> 5635 5635 3710 2014 Bicycle #> 5636 5636 3710 2014 Bicycle #> 5637 5637 3711 2014 Bicycle #> 5638 5638 3712 2014 Taxi #> 5639 5639 3712 2014 Motorcycle #> 5640 5640 3713 2014 Light goods vehicle #> 5641 5641 3714 2014 Public franchised bus #> 5642 5642 3715 2014 Bicycle #> 5643 5643 3716 2014 Public franchised bus #> 5644 5644 3717 2014 Public franchised bus #> 5645 5645 3718 2014 Taxi #> 5646 5646 3718 2014 Taxi #> 5647 5647 3719 2014 Taxi #> 5648 5648 3720 2014 Motorcycle #> 5649 5649 3721 2014 Private car #> 5650 5650 3721 2014 Medium goods vehicle #> 5651 5651 3722 2014 Public light bus #> 5652 5652 3723 2014 Light goods vehicle #> 5653 5653 3724 2014 Taxi #> 5654 5654 3725 2014 Light goods vehicle #> 5655 5655 3725 2014 Taxi #> 5656 5656 3726 2014 Bicycle #> 5657 5657 3727 2014 Taxi #> 5658 5658 3727 2014 Light goods vehicle #> 5659 5659 3728 2014 Bicycle #> 5660 5660 3729 2014 Light goods vehicle #> 5661 5661 3729 2014 Private car #> 5662 5662 3730 2014 Bicycle #> 5663 5663 3731 2014 Bicycle #> 5664 5664 3732 2014 Public franchised bus #> 5665 5665 3733 2014 Public light bus #> 5666 5666 3734 2014 Taxi #> 5667 5667 3734 2014 Taxi #> 5668 5668 3735 2014 Private car #> 5669 5669 3736 2014 Taxi #> 5670 5670 3737 2014 Private car #> 5671 5671 3738 2014 Private car #> 5672 5672 3738 2014 Taxi #> 5673 5673 3738 2014 Public light bus #> 5674 5674 3739 2014 Private car #> 5675 5675 3740 2014 Taxi #> 5676 5676 3741 2014 Private car #> 5677 5677 3741 2014 Motorcycle #> 5678 5678 3742 2014 Public franchised bus #> 5679 5679 3743 2014 Motorcycle #> 5680 5680 3743 2014 Light goods vehicle #> 5681 5681 3744 2014 Taxi #> 5682 5682 3745 2014 Motorcycle #> 5683 5683 3746 2014 Taxi #> 5684 5684 3746 2014 Bicycle #> 5685 5685 3747 2014 Taxi #> 5686 5686 3747 2014 Private car #> 5687 5687 3748 2014 Motorcycle #> 5688 5688 3749 2014 Medium goods vehicle #> 5689 5689 3749 2014 Taxi #> 5690 5690 3750 2014 Heavy goods vehicle #> 5691 5691 3750 2014 Heavy goods vehicle #> 5692 5692 3751 2014 Private car #> 5693 5693 3751 2014 Light goods vehicle #> 5694 5694 3752 2014 Motorcycle #> 5695 5695 3752 2014 Public light bus #> 5696 5696 3753 2014 Public franchised bus #> 5697 5697 3754 2014 Private car #> 5698 5698 3754 2014 Motorcycle #> 5699 5699 3755 2014 Motorcycle #> 5700 5700 3756 2014 Motorcycle #> 5701 5701 3756 2014 Light goods vehicle #> 5702 5702 3757 2014 Private car #> 5703 5703 3758 2014 Light goods vehicle #> 5704 5704 3759 2014 Private car #> 5705 5705 3760 2014 Taxi #> 5706 5706 3760 2014 Taxi #> 5707 5707 3761 2014 Private car #> 5708 5708 3762 2014 Public light bus #> 5709 5709 3762 2014 Light goods vehicle #> 5710 5710 3763 2014 Taxi #> 5711 5711 3763 2014 Medium goods vehicle #> 5712 5712 3764 2014 Light goods vehicle #> 5713 5713 3764 2014 Light goods vehicle #> 5714 5714 3765 2014 Private car #> 5715 5715 3766 2014 Public franchised bus #> 5716 5716 3767 2014 Public franchised bus #> 5717 5717 3768 2014 Private car #> 5718 5718 3768 2014 Medium goods vehicle #> 5719 5719 3769 2014 Taxi #> 5720 5720 3769 2014 Public non-franchised bus #> 5721 5721 3770 2014 Medium goods vehicle #> 5722 5722 3770 2014 Private car #> 5723 5723 3771 2014 Public franchised bus #> 5724 5724 3772 2014 Private car #> 5725 5725 3772 2014 Heavy goods vehicle #> 5726 5726 3772 2014 Private car #> 5727 5727 3772 2014 Light goods vehicle #> 5728 5728 3772 2014 Private car #> 5729 5729 3773 2014 Bicycle #> 5730 5730 3774 2014 Taxi #> 5731 5731 3775 2014 Bicycle #> 5732 5732 3776 2014 Taxi #> 5733 5733 3777 2014 Others (incl. unknown) #> 5734 5734 3778 2014 Public franchised bus #> 5735 5735 3779 2014 Light goods vehicle #> 5736 5736 3780 2014 Private car #> 5737 5737 3780 2014 Private car #> 5738 5738 3780 2014 Taxi #> 5739 5739 3780 2014 Private car #> 5740 5740 3780 2014 Light goods vehicle #> 5741 5741 3780 2014 Others (incl. unknown) #> 5742 5742 3780 2014 Private car #> 5743 5743 3781 2014 Heavy goods vehicle #> 5744 5744 3781 2014 Taxi #> 5745 5745 3782 2014 Motorcycle #> 5746 5746 3783 2014 Private car #> 5747 5747 3783 2014 Taxi #> 5748 5748 3783 2014 Others (incl. unknown) #> 5749 5749 3784 2014 Public franchised bus #> 5750 5750 3785 2014 Public franchised bus #> 5751 5751 3785 2014 Private car #> 5752 5752 3786 2014 Public light bus #> 5753 5753 3786 2014 Public franchised bus #> 5754 5754 3786 2014 Light goods vehicle #> 5755 5755 3787 2014 Private car #> 5756 5756 3787 2014 Motorcycle #> 5757 5757 3788 2014 Private car #> 5758 5758 3789 2014 Motorcycle #> 5759 5759 3790 2014 Light goods vehicle #> 5760 5760 3790 2014 Public franchised bus #> 5761 5761 3791 2014 Taxi #> 5762 5762 3791 2014 Light goods vehicle #> 5763 5763 3792 2014 Light goods vehicle #> 5764 5764 3793 2014 Light goods vehicle #> 5765 5765 3793 2014 Taxi #> 5766 5766 3794 2014 Motorcycle #> 5767 5767 3795 2014 Taxi #> 5768 5768 3795 2014 Taxi #> 5769 5769 3796 2014 Motorcycle #> 5770 5770 3797 2014 Light goods vehicle #> 5771 5771 3797 2014 Others (incl. unknown) #> 5772 5772 3798 2014 Private car #> 5773 5773 3798 2014 Public franchised bus #> 5774 5774 3799 2014 Public light bus #> 5775 5775 3800 2014 Taxi #> 5776 5776 3800 2014 Taxi #> 5777 5777 3801 2014 Private car #> 5778 5778 3801 2014 Taxi #> 5779 5779 3802 2014 Public franchised bus #> 5780 5780 3803 2014 Private car #> 5781 5781 3804 2014 Motorcycle #> 5782 5782 3805 2014 Taxi #> 5783 5783 3805 2014 Private car #> 5784 5784 3806 2014 Bicycle #> 5785 5785 3807 2014 Private car #> 5786 5786 3807 2014 Light goods vehicle #> 5787 5787 3808 2014 Private car #> 5788 5788 3808 2014 Private car #> 5789 5789 3809 2014 Private car #> 5790 5790 3809 2014 Taxi #> 5791 5791 3810 2014 Taxi #> 5792 5792 3811 2014 Taxi #> 5793 5793 3811 2014 Private car #> 5794 5794 3812 2014 Taxi #> 5795 5795 3812 2014 Taxi #> 5796 5796 3813 2014 Public franchised bus #> 5797 5797 3813 2014 Private car #> 5798 5798 3813 2014 Public light bus #> 5799 5799 3814 2014 Private car #> 5800 5800 3815 2014 Light goods vehicle #> 5801 5801 3816 2014 Light goods vehicle #> 5802 5802 3816 2014 Light goods vehicle #> 5803 5803 3816 2014 Heavy goods vehicle #> 5804 5804 3817 2014 Light goods vehicle #> 5805 5805 3817 2014 Light goods vehicle #> 5806 5806 3817 2014 Taxi #> 5807 5807 3817 2014 Medium goods vehicle #> 5808 5808 3818 2014 Light goods vehicle #> 5809 5809 3819 2014 Taxi #> 5810 5810 3819 2014 Light goods vehicle #> 5811 5811 3820 2014 Public franchised bus #> 5812 5812 3821 2014 Bicycle #> 5813 5813 3822 2014 Public franchised bus #> 5814 5814 3823 2014 Bicycle #> 5815 5815 3824 2014 Motorcycle #> 5816 5816 3825 2014 Private car #> 5817 5817 3825 2014 Taxi #> 5818 5818 3826 2014 Private car #> 5819 5819 3826 2014 Private car #> 5820 5820 3827 2014 Motorcycle #> 5821 5821 3828 2014 Public franchised bus #> 5822 5822 3829 2014 Motorcycle #> 5823 5823 3830 2014 Bicycle #> 5824 5824 3830 2014 Public franchised bus #> 5825 5825 3831 2014 Taxi #> 5826 5826 3832 2014 Public non-franchised bus #> 5827 5827 3833 2014 Taxi #> 5828 5828 3834 2014 Medium goods vehicle #> 5829 5829 3835 2014 Public franchised bus #> 5830 5830 3836 2014 Motorcycle #> 5831 5831 3837 2014 Taxi #> 5832 5832 3838 2014 Taxi #> 5833 5833 3839 2014 Medium goods vehicle #> 5834 5834 3839 2014 Public franchised bus #> 5835 5835 3840 2014 Medium goods vehicle #> 5836 5836 3840 2014 Medium goods vehicle #> 5837 5837 3841 2014 Light goods vehicle #> 5838 5838 3842 2014 Taxi #> 5839 5839 3843 2014 Public franchised bus #> 5840 5840 3844 2014 Private car #> 5841 5841 3844 2014 Private car #> 5842 5842 3845 2014 Public non-franchised bus #> 5843 5843 3845 2014 Private car #> 5844 5844 3845 2014 Public franchised bus #> 5845 5845 3846 2014 Light goods vehicle #> 5846 5846 3846 2014 Medium goods vehicle #> 5847 5847 3846 2014 Medium goods vehicle #> 5848 5848 3847 2014 Light goods vehicle #> 5849 5849 3847 2014 Private car #> 5850 5850 3848 2014 Public light bus #> 5851 5851 3848 2014 Private car #> 5852 5852 3849 2014 Public non-franchised bus #> 5853 5853 3849 2014 Taxi #> 5854 5854 3850 2014 Private car #> 5855 5855 3850 2014 Light goods vehicle #> 5856 5856 3851 2014 Light goods vehicle #> 5857 5857 3852 2014 Light goods vehicle #> 5858 5858 3852 2014 Taxi #> 5859 5859 3853 2014 Motorcycle #> 5860 5860 3854 2014 Taxi #> 5861 5861 3854 2014 Taxi #> 5862 5862 3855 2014 Light goods vehicle #> 5863 5863 3856 2014 Private car #> 5864 5864 3857 2014 Private car #> 5865 5865 3858 2014 Taxi #> 5866 5866 3859 2014 Private car #> 5867 5867 3859 2014 Private car #> 5868 5868 3860 2014 Light goods vehicle #> 5869 5869 3860 2014 Taxi #> 5870 5870 3861 2014 Taxi #> 5871 5871 3861 2014 Taxi #> 5872 5872 3862 2014 Bicycle #> 5873 5873 3863 2014 Taxi #> 5874 5874 3863 2014 Motorcycle #> 5875 5875 3864 2014 Light goods vehicle #> 5876 5876 3865 2014 Taxi #> 5877 5877 3865 2014 Bicycle #> 5878 5878 3866 2014 Bicycle #> 5879 5879 3867 2014 Motorcycle #> 5880 5880 3868 2014 Motorcycle #> 5881 5881 3869 2014 Medium goods vehicle #> 5882 5882 3870 2014 Public franchised bus #> 5883 5883 3871 2014 Bicycle #> 5884 5884 3872 2014 Motorcycle #> 5885 5885 3873 2014 Bicycle #> 5886 5886 3874 2014 Public franchised bus #> 5887 5887 3875 2014 Light goods vehicle #> 5888 5888 3875 2014 Taxi #> 5889 5889 3876 2014 Public franchised bus #> 5890 5890 3877 2014 Taxi #> 5891 5891 3877 2014 Motorcycle #> 5892 5892 3878 2014 Bicycle #> 5893 5893 3879 2014 Private car #> 5894 5894 3880 2014 Motorcycle #> 5895 5895 3881 2014 Private car #> 5896 5896 3882 2014 Public non-franchised bus #> 5897 5897 3883 2014 Private car #> 5898 5898 3883 2014 Public franchised bus #> 5899 5899 3884 2014 Private car #> 5900 5900 3884 2014 Motorcycle #> 5901 5901 3884 2014 Private car #> 5902 5902 3885 2014 Motorcycle #> 5903 5903 3885 2014 Private car #> 5904 5904 3886 2014 Public franchised bus #> 5905 5905 3887 2014 Light goods vehicle #> 5906 5906 3888 2014 Light goods vehicle #> 5907 5907 3888 2014 Taxi #> 5908 5908 3889 2014 Public light bus #> 5909 5909 3890 2014 Bicycle #> 5910 5910 3891 2014 Private car #> 5911 5911 3891 2014 Taxi #> 5912 5912 3892 2014 Public franchised bus #> 5913 5913 3893 2014 Private car #> 5914 5914 3894 2014 Motorcycle #> 5915 5915 3895 2014 Private car #> 5916 5916 3895 2014 Private car #> 5917 5917 3896 2014 Bicycle #> 5918 5918 3897 2014 Taxi #> 5919 5919 3898 2014 Motorcycle #> 5920 5920 3899 2014 Others (incl. unknown) #> 5921 5921 3899 2014 Private car #> 5922 5922 3900 2014 Private car #> 5923 5923 3900 2014 Medium goods vehicle #> 5924 5924 3901 2014 Private car #> 5925 5925 3901 2014 Private car #> 5926 5926 3902 2014 Others (incl. unknown) #> 5927 5927 3903 2014 Private car #> 5928 5928 3904 2014 Light goods vehicle #> 5929 5929 3904 2014 Light goods vehicle #> 5930 5930 3905 2014 Light goods vehicle #> 5931 5931 3906 2014 Taxi #> 5932 5932 3906 2014 Private car #> 5933 5933 3907 2014 Private car #> 5934 5934 3908 2014 Bicycle #> 5935 5935 3909 2014 Taxi #> 5936 5936 3910 2014 Motorcycle #> 5937 5937 3910 2014 Private car #> 5938 5938 3911 2014 Bicycle #> 5939 5939 3912 2014 Private car #> 5940 5940 3912 2014 Private car #> 5941 5941 3913 2014 Private car #> 5942 5942 3913 2014 Private car #> 5943 5943 3914 2014 Medium goods vehicle #> 5944 5944 3915 2014 Private car #> 5945 5945 3915 2014 Private car #> 5946 5946 3916 2014 Public light bus #> 5947 5947 3916 2014 Public franchised bus #> 5948 5948 3917 2014 Public light bus #> 5949 5949 3917 2014 Public light bus #> 5950 5950 3918 2014 Taxi #> 5951 5951 3919 2014 Light goods vehicle #> 5952 5952 3920 2014 Light goods vehicle #> 5953 5953 3921 2014 Private car #> 5954 5954 3922 2014 Light goods vehicle #> 5955 5955 3922 2014 Light goods vehicle #> 5956 5956 3923 2014 Public franchised bus #> 5957 5957 3924 2014 Public franchised bus #> 5958 5958 3925 2014 Taxi #> 5959 5959 3925 2014 Public franchised bus #> 5960 5960 3926 2014 Bicycle #> 5961 5961 3927 2014 Motorcycle #> 5962 5962 3927 2014 Taxi #> 5963 5963 3928 2014 Private car #> 5964 5964 3929 2014 Heavy goods vehicle #> 5965 5965 3929 2014 Heavy goods vehicle #> 5966 5966 3930 2014 Public franchised bus #> 5967 5967 3931 2014 Motorcycle #> 5968 5968 3932 2014 Motorcycle #> 5969 5969 3933 2014 Public light bus #> 5970 5970 3933 2014 Taxi #> 5971 5971 3934 2014 Private car #> 5972 5972 3935 2014 Light goods vehicle #> 5973 5973 3936 2014 Medium goods vehicle #> 5974 5974 3936 2014 Private car #> 5975 5975 3936 2014 Private car #> 5976 5976 3936 2014 Medium goods vehicle #> 5977 5977 3937 2014 Private car #> 5978 5978 3937 2014 Public light bus #> 5979 5979 3938 2014 Motorcycle #> 5980 5980 3939 2014 Light goods vehicle #> 5981 5981 3939 2014 Private car #> 5982 5982 3940 2014 Light goods vehicle #> 5983 5983 3940 2014 Private car #> 5984 5984 3941 2014 Motorcycle #> 5985 5985 3942 2014 Private car #> 5986 5986 3942 2014 Private car #> 5987 5987 3942 2014 Public light bus #> 5988 5988 3942 2014 Private car #> 5989 5989 3943 2014 Taxi #> 5990 5990 3944 2014 Light goods vehicle #> 5991 5991 3945 2014 Public light bus #> 5992 5992 3945 2014 Light goods vehicle #> 5993 5993 3946 2014 Taxi #> 5994 5994 3947 2014 Public light bus #> 5995 5995 3947 2014 Motorcycle #> 5996 5996 3948 2014 Private car #> 5997 5997 3948 2014 Taxi #> 5998 5998 3949 2014 Taxi #> 5999 5999 3950 2014 Others (incl. unknown) #> 6000 6000 3951 2014 Private car #> 6001 6001 3951 2014 Private car #> 6002 6002 3952 2014 Public light bus #> 6003 6003 3953 2014 Motorcycle #> 6004 6004 3954 2014 Taxi #> 6005 6005 3955 2014 Bicycle #> 6006 6006 3956 2014 Private car #> 6007 6007 3956 2014 Taxi #> 6008 6008 3956 2014 Light goods vehicle #> 6009 6009 3957 2014 Bicycle #> 6010 6010 3958 2014 Taxi #> 6011 6011 3958 2014 Taxi #> 6012 6012 3959 2014 Taxi #> 6013 6013 3960 2014 Motorcycle #> 6014 6014 3961 2014 Public non-franchised bus #> 6015 6015 3961 2014 Private car #> 6016 6016 3962 2014 Heavy goods vehicle #> 6017 6017 3962 2014 Private car #> 6018 6018 3963 2014 Heavy goods vehicle #> 6019 6019 3964 2014 Bicycle #> 6020 6020 3965 2014 Motorcycle #> 6021 6021 3966 2014 Private car #> 6022 6022 3966 2014 Taxi #> 6023 6023 3966 2014 Taxi #> 6024 6024 3967 2014 Motorcycle #> 6025 6025 3968 2014 Private car #> 6026 6026 3968 2014 Private car #> 6027 6027 3969 2014 Taxi #> 6028 6028 3969 2014 Medium goods vehicle #> 6029 6029 3969 2014 Light goods vehicle #> 6030 6030 3970 2014 Motorcycle #> 6031 6031 3970 2014 Private car #> 6032 6032 3970 2014 Private car #> 6033 6033 3971 2014 Private car #> 6034 6034 3972 2014 Motorcycle #> 6035 6035 3972 2014 Taxi #> 6036 6036 3973 2014 Motorcycle #> 6037 6037 3974 2014 Private car #> 6038 6038 3974 2014 Taxi #> 6039 6039 3975 2014 Private car #> 6040 6040 3975 2014 Private car #> 6041 6041 3976 2014 Medium goods vehicle #> 6042 6042 3976 2014 Taxi #> 6043 6043 3977 2014 Motorcycle #> 6044 6044 3978 2014 Private car #> 6045 6045 3979 2014 Motorcycle #> 6046 6046 3979 2014 Taxi #> 6047 6047 3979 2014 Light goods vehicle #> 6048 6048 3979 2014 Light goods vehicle #> 6049 6049 3980 2014 Private car #> 6050 6050 3980 2014 Private car #> 6051 6051 3981 2014 Taxi #> 6052 6052 3981 2014 Private car #> 6053 6053 3982 2014 Motorcycle #> 6054 6054 3982 2014 Private car #> 6055 6055 3983 2014 Public franchised bus #> 6056 6056 3984 2014 Motorcycle #> 6057 6057 3985 2014 Motorcycle #> 6058 6058 3986 2014 Private car #> 6059 6059 3986 2014 Light goods vehicle #> 6060 6060 3986 2014 Taxi #> 6061 6061 3986 2014 Light goods vehicle #> 6062 6062 3987 2014 Taxi #> 6063 6063 3987 2014 Light goods vehicle #> 6064 6064 3988 2014 Taxi #> 6065 6065 3988 2014 Light goods vehicle #> 6066 6066 3988 2014 Private car #> 6067 6067 3988 2014 Public franchised bus #> 6068 6068 3988 2014 Private car #> 6069 6069 3989 2014 Taxi #> 6070 6070 3990 2014 Motorcycle #> 6071 6071 3990 2014 Private car #> 6072 6072 3991 2014 Motorcycle #> 6073 6073 3992 2014 Motorcycle #> 6074 6074 3993 2014 Light goods vehicle #> 6075 6075 3994 2014 Motorcycle #> 6076 6076 3994 2014 Private car #> 6077 6077 3995 2014 Public light bus #> 6078 6078 3996 2014 Motorcycle #> 6079 6079 3996 2014 Private car #> 6080 6080 3997 2014 Motorcycle #> 6081 6081 3998 2014 Taxi #> 6082 6082 3998 2014 Motorcycle #> 6083 6083 3999 2014 Private car #> 6084 6084 4000 2014 Motorcycle #> 6085 6085 4001 2014 Private car #> 6086 6086 4001 2014 Bicycle #> 6087 6087 4002 2014 Private car #> 6088 6088 4002 2014 Taxi #> 6089 6089 4003 2014 Taxi #> 6090 6090 4003 2014 Private car #> 6091 6091 4004 2014 Light goods vehicle #> 6092 6092 4005 2014 Taxi #> 6093 6093 4006 2014 Public light bus #> 6094 6094 4006 2014 Light goods vehicle #> 6095 6095 4007 2014 Public franchised bus #> 6096 6096 4008 2014 Private car #> 6097 6097 4008 2014 Bicycle #> 6098 6098 4009 2014 Light goods vehicle #> 6099 6099 4009 2014 Taxi #> 6100 6100 4010 2014 Private car #> 6101 6101 4011 2014 Motorcycle #> 6102 6102 4012 2014 Motorcycle #> 6103 6103 4013 2014 Motorcycle #> 6104 6104 4014 2014 Taxi #> 6105 6105 4014 2014 Private car #> 6106 6106 4015 2014 Bicycle #> 6107 6107 4016 2014 Bicycle #> 6108 6108 4016 2014 Private car #> 6109 6109 4017 2014 Light goods vehicle #> 6110 6110 4018 2014 Public franchised bus #> 6111 6111 4019 2014 Motorcycle #> 6112 6112 4020 2014 Light goods vehicle #> 6113 6113 4020 2014 Light goods vehicle #> 6114 6114 4021 2014 Public franchised bus #> 6115 6115 4021 2014 Taxi #> 6116 6116 4022 2014 Bicycle #> 6117 6117 4023 2014 Taxi #> 6118 6118 4024 2014 Taxi #> 6119 6119 4024 2014 Motorcycle #> 6120 6120 4025 2014 Motorcycle #> 6121 6121 4025 2014 Taxi #> 6122 6122 4026 2014 Taxi #> 6123 6123 4026 2014 Public franchised bus #> 6124 6124 4027 2014 Public light bus #> 6125 6125 4027 2014 Taxi #> 6126 6126 4028 2014 Motorcycle #> 6127 6127 4029 2014 Light goods vehicle #> 6128 6128 4029 2014 Motorcycle #> 6129 6129 4030 2014 Taxi #> 6130 6130 4030 2014 Motorcycle #> 6131 6131 4031 2014 Medium goods vehicle #> 6132 6132 4031 2014 Private car #> 6133 6133 4032 2014 Private car #> 6134 6134 4032 2014 Private car #> 6135 6135 4032 2014 Taxi #> 6136 6136 4032 2014 Taxi #> 6137 6137 4033 2014 Private car #> 6138 6138 4034 2014 Light goods vehicle #> 6139 6139 4035 2014 Private car #> 6140 6140 4036 2014 Public light bus #> 6141 6141 4036 2014 Private car #> 6142 6142 4037 2014 Bicycle #> 6143 6143 4038 2014 Motorcycle #> 6144 6144 4039 2014 Taxi #> 6145 6145 4039 2014 Taxi #> 6146 6146 4040 2014 Public light bus #> 6147 6147 4040 2014 Taxi #> 6148 6148 4040 2014 Medium goods vehicle #> 6149 6149 4041 2014 Motorcycle #> 6150 6150 4041 2014 Private car #> 6151 6151 4042 2014 Private car #> 6152 6152 4043 2014 Medium goods vehicle #> 6153 6153 4043 2014 Private car #> 6154 6154 4044 2014 Taxi #> 6155 6155 4045 2014 Public franchised bus #> 6156 6156 4045 2014 Public franchised bus #> 6157 6157 4046 2014 Public light bus #> 6158 6158 4047 2014 Private car #> 6159 6159 4048 2014 Private car #> 6160 6160 4049 2014 Taxi #> 6161 6161 4049 2014 Private car #> 6162 6162 4050 2014 Private car #> 6163 6163 4050 2014 Public light bus #> 6164 6164 4051 2014 Private car #> 6165 6165 4051 2014 Taxi #> 6166 6166 4052 2014 Bicycle #> 6167 6167 4052 2014 Bicycle #> 6168 6168 4053 2014 Light goods vehicle #> 6169 6169 4054 2014 Motorcycle #> 6170 6170 4055 2014 Taxi #> 6171 6171 4056 2014 Public light bus #> 6172 6172 4057 2014 Light goods vehicle #> 6173 6173 4058 2014 Public light bus #> 6174 6174 4059 2014 Private car #> 6175 6175 4059 2014 Private car #> 6176 6176 4060 2014 Private car #> 6177 6177 4061 2014 Taxi #> 6178 6178 4061 2014 Bicycle #> 6179 6179 4062 2014 Taxi #> 6180 6180 4063 2014 Motorcycle #> 6181 6181 4064 2014 Private car #> 6182 6182 4064 2014 Private car #> 6183 6183 4064 2014 Private car #> 6184 6184 4064 2014 Private car #> 6185 6185 4064 2014 Private car #> 6186 6186 4064 2014 Private car #> 6187 6187 4065 2014 Light goods vehicle #> 6188 6188 4065 2014 Light goods vehicle #> 6189 6189 4066 2014 Public franchised bus #> 6190 6190 4067 2014 Taxi #> 6191 6191 4067 2014 Light goods vehicle #> 6192 6192 4068 2014 Private car #> 6193 6193 4068 2014 Private car #> 6194 6194 4069 2014 Private car #> 6195 6195 4069 2014 Private car #> 6196 6196 4070 2014 Private car #> 6197 6197 4070 2014 Motorcycle #> 6198 6198 4071 2014 Taxi #> 6199 6199 4071 2014 Private car #> 6200 6200 4072 2014 Medium goods vehicle #> 6201 6201 4072 2014 Private car #> 6202 6202 4073 2014 Private car #> 6203 6203 4073 2014 Light goods vehicle #> 6204 6204 4074 2014 Taxi #> 6205 6205 4074 2014 Private car #> 6206 6206 4074 2014 Private car #> 6207 6207 4075 2014 Taxi #> 6208 6208 4075 2014 Medium goods vehicle #> 6209 6209 4076 2014 Private car #> 6210 6210 4077 2014 Taxi #> 6211 6211 4077 2014 Private car #> 6212 6212 4078 2014 Public light bus #> 6213 6213 4079 2014 Light goods vehicle #> 6214 6214 4079 2014 Taxi #> 6215 6215 4079 2014 Taxi #> 6216 6216 4080 2014 Taxi #> 6217 6217 4080 2014 Private car #> 6218 6218 4081 2014 Public franchised bus #> 6219 6219 4082 2014 Public franchised bus #> 6220 6220 4083 2014 Taxi #> 6221 6221 4083 2014 Motorcycle #> 6222 6222 4084 2014 Private car #> 6223 6223 4085 2014 Private car #> 6224 6224 4086 2014 Private car #> 6225 6225 4086 2014 Taxi #> 6226 6226 4087 2014 Medium goods vehicle #> 6227 6227 4087 2014 Bicycle #> 6228 6228 4088 2014 Motorcycle #> 6229 6229 4089 2014 Bicycle #> 6230 6230 4090 2014 Public franchised bus #> 6231 6231 4090 2014 Private car #> 6232 6232 4091 2014 Medium goods vehicle #> 6233 6233 4092 2014 Medium goods vehicle #> 6234 6234 4092 2014 Private car #> 6235 6235 4093 2014 Private car #> 6236 6236 4093 2014 Taxi #> 6237 6237 4094 2014 Motorcycle #> 6238 6238 4094 2014 Private car #> 6239 6239 4095 2014 Public light bus #> 6240 6240 4096 2014 Private car #> 6241 6241 4096 2014 Private car #> 6242 6242 4097 2014 Private car #> 6243 6243 4098 2014 Private car #> 6244 6244 4098 2014 Motorcycle #> 6245 6245 4099 2014 Taxi #> 6246 6246 4100 2014 Motorcycle #> 6247 6247 4101 2014 Taxi #> 6248 6248 4101 2014 Private car #> 6249 6249 4102 2014 Taxi #> 6250 6250 4103 2014 Taxi #> 6251 6251 4104 2014 Taxi #> 6252 6252 4105 2014 Motorcycle #> 6253 6253 4106 2014 Light goods vehicle #> 6254 6254 4106 2014 Heavy goods vehicle #> 6255 6255 4107 2014 Public franchised bus #> 6256 6256 4108 2014 Private car #> 6257 6257 4109 2014 Private car #> 6258 6258 4110 2014 Public franchised bus #> 6259 6259 4111 2014 Taxi #> 6260 6260 4112 2014 Bicycle #> 6261 6261 4113 2014 Private car #> 6262 6262 4113 2014 Public light bus #> 6263 6263 4114 2014 Private car #> 6264 6264 4114 2014 Taxi #> 6265 6265 4114 2014 Private car #> 6266 6266 4115 2014 Bicycle #> 6267 6267 4116 2014 Motorcycle #> 6268 6268 4117 2014 Taxi #> 6269 6269 4118 2014 Taxi #> 6270 6270 4119 2014 Heavy goods vehicle #> 6271 6271 4119 2014 Heavy goods vehicle #> 6272 6272 4120 2014 Light goods vehicle #> 6273 6273 4120 2014 Private car #> 6274 6274 4120 2014 Heavy goods vehicle #> 6275 6275 4120 2014 Medium goods vehicle #> 6276 6276 4121 2014 Light goods vehicle #> 6277 6277 4121 2014 Medium goods vehicle #> 6278 6278 4122 2014 Taxi #> 6279 6279 4123 2014 Public non-franchised bus #> 6280 6280 4123 2014 Light goods vehicle #> 6281 6281 4124 2014 Public light bus #> 6282 6282 4125 2014 Bicycle #> 6283 6283 4126 2014 Private car #> 6284 6284 4126 2014 Private car #> 6285 6285 4126 2014 Private car #> 6286 6286 4127 2014 Public franchised bus #> 6287 6287 4128 2014 Bicycle #> 6288 6288 4128 2014 Taxi #> 6289 6289 4129 2014 Bicycle #> 6290 6290 4130 2014 Private car #> 6291 6291 4131 2014 Bicycle #> 6292 6292 4132 2014 Motorcycle #> 6293 6293 4133 2014 Motorcycle #> 6294 6294 4133 2014 Taxi #> 6295 6295 4134 2014 Public franchised bus #> 6296 6296 4135 2014 Private car #> 6297 6297 4135 2014 Private car #> 6298 6298 4136 2014 Taxi #> 6299 6299 4136 2014 Medium goods vehicle #> 6300 6300 4137 2014 Private car #> 6301 6301 4137 2014 Private car #> 6302 6302 4138 2014 Public franchised bus #> 6303 6303 4138 2014 Private car #> 6304 6304 4139 2014 Motorcycle #> 6305 6305 4140 2014 Private car #> 6306 6306 4140 2014 Taxi #> 6307 6307 4140 2014 Private car #> 6308 6308 4140 2014 Taxi #> 6309 6309 4141 2014 Motorcycle #> 6310 6310 4141 2014 Private car #> 6311 6311 4142 2014 Bicycle #> 6312 6312 4142 2014 Bicycle #> 6313 6313 4143 2014 Taxi #> 6314 6314 4143 2014 Taxi #> 6315 6315 4144 2014 Public franchised bus #> 6316 6316 4145 2014 Private car #> 6317 6317 4146 2014 Light goods vehicle #> 6318 6318 4147 2014 Taxi #> 6319 6319 4148 2014 Private car #> 6320 6320 4149 2014 Taxi #> 6321 6321 4149 2014 Light goods vehicle #> 6322 6322 4150 2014 Public light bus #> 6323 6323 4151 2014 Public franchised bus #> 6324 6324 4151 2014 Private car #> 6325 6325 4152 2014 Taxi #> 6326 6326 4153 2014 Public franchised bus #> 6327 6327 4154 2014 Light goods vehicle #> 6328 6328 4155 2014 Private car #> 6329 6329 4156 2014 Private car #> 6330 6330 4156 2014 Taxi #> 6331 6331 4157 2014 Public franchised bus #> 6332 6332 4158 2014 Others (incl. unknown) #> 6333 6333 4159 2014 Private car #> 6334 6334 4160 2014 Public light bus #> 6335 6335 4161 2014 Public franchised bus #> 6336 6336 4162 2014 Light goods vehicle #> 6337 6337 4163 2014 Bicycle #> 6338 6338 4164 2014 Private car #> 6339 6339 4164 2014 Taxi #> 6340 6340 4164 2014 Private car #> 6341 6341 4165 2014 Public franchised bus #> 6342 6342 4166 2014 Motorcycle #> 6343 6343 4167 2014 Bicycle #> 6344 6344 4168 2014 Motorcycle #> 6345 6345 4168 2014 Taxi #> 6346 6346 4169 2014 Taxi #> 6347 6347 4170 2014 Bicycle #> 6348 6348 4171 2014 Bicycle #> 6349 6349 4171 2014 Bicycle #> 6350 6350 4172 2014 Light goods vehicle #> 6351 6351 4173 2014 Light goods vehicle #> 6352 6352 4173 2014 Taxi #> 6353 6353 4173 2014 Light goods vehicle #> 6354 6354 4174 2014 Bicycle #> 6355 6355 4175 2014 Private car #> 6356 6356 4175 2014 Private car #> 6357 6357 4176 2014 Heavy goods vehicle #> 6358 6358 4177 2014 Public non-franchised bus #> 6359 6359 4178 2014 Public light bus #> 6360 6360 4178 2014 Private car #> 6361 6361 4179 2014 Taxi #> 6362 6362 4179 2014 Public franchised bus #> 6363 6363 4180 2014 Motorcycle #> 6364 6364 4180 2014 Taxi #> 6365 6365 4181 2014 Bicycle #> 6366 6366 4182 2014 Taxi #> 6367 6367 4183 2014 Public franchised bus #> 6368 6368 4183 2014 Light goods vehicle #> 6369 6369 4184 2014 Public non-franchised bus #> 6370 6370 4185 2014 Light goods vehicle #> 6371 6371 4186 2014 Taxi #> 6372 6372 4186 2014 Medium goods vehicle #> 6373 6373 4187 2014 Bicycle #> 6374 6374 4188 2014 Motorcycle #> 6375 6375 4188 2014 Private car #> 6376 6376 4189 2014 Motorcycle #> 6377 6377 4190 2014 Taxi #> 6378 6378 4190 2014 Taxi #> 6379 6379 4191 2014 Light goods vehicle #> 6380 6380 4191 2014 Taxi #> 6381 6381 4192 2014 Taxi #> 6382 6382 4192 2014 Taxi #> 6383 6383 4193 2014 Taxi #> 6384 6384 4193 2014 Motorcycle #> 6385 6385 4194 2014 Private car #> 6386 6386 4195 2014 Motorcycle #> 6387 6387 4195 2014 Private car #> 6388 6388 4196 2014 Private car #> 6389 6389 4196 2014 Public light bus #> 6390 6390 4197 2014 Bicycle #> 6391 6391 4198 2014 Public light bus #> 6392 6392 4199 2014 Taxi #> 6393 6393 4200 2014 Private car #> 6394 6394 4200 2014 Light goods vehicle #> 6395 6395 4200 2014 Light goods vehicle #> 6396 6396 4200 2014 Light goods vehicle #> 6397 6397 4200 2014 Taxi #> 6398 6398 4201 2014 Public light bus #> 6399 6399 4202 2014 Taxi #> 6400 6400 4202 2014 Medium goods vehicle #> 6401 6401 4202 2014 Light goods vehicle #> 6402 6402 4202 2014 Medium goods vehicle #> 6403 6403 4203 2014 Motorcycle #> 6404 6404 4204 2014 Bicycle #> 6405 6405 4205 2014 Public light bus #> 6406 6406 4206 2014 Private car #> 6407 6407 4206 2014 Private car #> 6408 6408 4207 2014 Motorcycle #> 6409 6409 4208 2014 Private car #> 6410 6410 4208 2014 Motorcycle #> 6411 6411 4209 2014 Public light bus #> 6412 6412 4210 2014 Public non-franchised bus #> 6413 6413 4211 2014 Bicycle #> 6414 6414 4212 2014 Bicycle #> 6415 6415 4213 2014 Public franchised bus #> 6416 6416 4214 2014 Private car #> 6417 6417 4214 2014 Light goods vehicle #> 6418 6418 4214 2014 Private car #> 6419 6419 4214 2014 Taxi #> 6420 6420 4215 2014 Public franchised bus #> 6421 6421 4216 2014 Bicycle #> 6422 6422 4217 2014 Public light bus #> 6423 6423 4218 2014 Public franchised bus #> 6424 6424 4219 2014 Public light bus #> 6425 6425 4220 2014 Medium goods vehicle #> 6426 6426 4220 2014 Private car #> 6427 6427 4221 2014 Private car #> 6428 6428 4221 2014 Private car #> 6429 6429 4222 2014 Light goods vehicle #> 6430 6430 4222 2014 Private car #> 6431 6431 4222 2014 Taxi #> 6432 6432 4223 2014 Taxi #> 6433 6433 4223 2014 Public light bus #> 6434 6434 4224 2014 Motorcycle #> 6435 6435 4225 2014 Motorcycle #> 6436 6436 4226 2014 Public light bus #> 6437 6437 4226 2014 Light goods vehicle #> 6438 6438 4227 2014 Medium goods vehicle #> 6439 6439 4227 2014 Public light bus #> 6440 6440 4228 2014 Light goods vehicle #> 6441 6441 4228 2014 Motorcycle #> 6442 6442 4229 2014 Public non-franchised bus #> 6443 6443 4229 2014 Light goods vehicle #> 6444 6444 4230 2014 Light goods vehicle #> 6445 6445 4230 2014 Motorcycle #> 6446 6446 4231 2014 Private car #> 6447 6447 4232 2014 Light goods vehicle #> 6448 6448 4232 2014 Public franchised bus #> 6449 6449 4233 2014 Private car #> 6450 6450 4233 2014 Motorcycle #> 6451 6451 4234 2014 Motorcycle #> 6452 6452 4235 2014 Public franchised bus #> 6453 6453 4236 2014 Private car #> 6454 6454 4236 2014 Others (incl. unknown) #> 6455 6455 4237 2014 Public non-franchised bus #> 6456 6456 4237 2014 Private car #> 6457 6457 4238 2014 Public light bus #> 6458 6458 4239 2014 Private car #> 6459 6459 4240 2014 Motorcycle #> 6460 6460 4241 2014 Bicycle #> 6461 6461 4242 2014 Bicycle #> 6462 6462 4242 2014 Taxi #> 6463 6463 4243 2014 Motorcycle #> 6464 6464 4244 2014 Taxi #> 6465 6465 4244 2014 Private car #> 6466 6466 4245 2014 Taxi #> 6467 6467 4246 2014 Public light bus #> 6468 6468 4247 2014 Taxi #> 6469 6469 4247 2014 Private car #> 6470 6470 4248 2014 Private car #> 6471 6471 4248 2014 Private car #> 6472 6472 4248 2014 Taxi #> 6473 6473 4248 2014 Private car #> 6474 6474 4248 2014 Private car #> 6475 6475 4248 2014 Motorcycle #> 6476 6476 4248 2014 Private car #> 6477 6477 4249 2014 Public franchised bus #> 6478 6478 4250 2014 Public light bus #> 6479 6479 4251 2014 Motorcycle #> 6480 6480 4251 2014 Light goods vehicle #> 6481 6481 4252 2014 Bicycle #> 6482 6482 4252 2014 Private car #> 6483 6483 4253 2014 Motorcycle #> 6484 6484 4254 2014 Bicycle #> 6485 6485 4255 2014 Bicycle #> 6486 6486 4256 2014 Light goods vehicle #> 6487 6487 4257 2014 Light goods vehicle #> 6488 6488 4257 2014 Public franchised bus #> 6489 6489 4258 2014 Medium goods vehicle #> 6490 6490 4258 2014 Heavy goods vehicle #> 6491 6491 4258 2014 Light goods vehicle #> 6492 6492 4258 2014 Private car #> 6493 6493 4259 2014 Motorcycle #> 6494 6494 4259 2014 Private car #> 6495 6495 4260 2014 Taxi #> 6496 6496 4260 2014 Private car #> 6497 6497 4261 2014 Motorcycle #> 6498 6498 4262 2014 Bicycle #> 6499 6499 4263 2014 Public light bus #> 6500 6500 4263 2014 Light goods vehicle #> 6501 6501 4264 2014 Public franchised bus #> 6502 6502 4265 2014 Motorcycle #> 6503 6503 4265 2014 Private car #> 6504 6504 4266 2014 Private car #> 6505 6505 4267 2014 Private car #> 6506 6506 4267 2014 Private car #> 6507 6507 4268 2014 Light goods vehicle #> 6508 6508 4268 2014 Light goods vehicle #> 6509 6509 4269 2014 Bicycle #> 6510 6510 4270 2014 Taxi #> 6511 6511 4270 2014 Motorcycle #> 6512 6512 4271 2014 Medium goods vehicle #> 6513 6513 4271 2014 Private car #> 6514 6514 4272 2014 Public light bus #> 6515 6515 4273 2014 Motorcycle #> 6516 6516 4274 2014 Public franchised bus #> 6517 6517 4275 2014 Private car #> 6518 6518 4276 2014 Motorcycle #> 6519 6519 4277 2014 Medium goods vehicle #> 6520 6520 4277 2014 Medium goods vehicle #> 6521 6521 4277 2014 Medium goods vehicle #> 6522 6522 4278 2014 Private car #> 6523 6523 4278 2014 Private car #> 6524 6524 4278 2014 Private car #> 6525 6525 4278 2014 Taxi #> 6526 6526 4279 2014 Taxi #> 6527 6527 4280 2014 Private car #> 6528 6528 4281 2014 Public franchised bus #> 6529 6529 4282 2014 Taxi #> 6530 6530 4282 2014 Bicycle #> 6531 6531 4283 2014 Public franchised bus #> 6532 6532 4284 2014 Light goods vehicle #> 6533 6533 4284 2014 Private car #> 6534 6534 4285 2014 Motorcycle #> 6535 6535 4285 2014 Private car #> 6536 6536 4286 2014 Taxi #> 6537 6537 4286 2014 Public franchised bus #> 6538 6538 4287 2014 Bicycle #> 6539 6539 4288 2014 Motorcycle #> 6540 6540 4289 2014 Bicycle #> 6541 6541 4290 2014 Bicycle #> 6542 6542 4291 2014 Motorcycle #> 6543 6543 4291 2014 Taxi #> 6544 6544 4292 2014 Taxi #> 6545 6545 4293 2014 Light goods vehicle #> 6546 6546 4293 2014 Taxi #> 6547 6547 4294 2014 Bicycle #> 6548 6548 4295 2014 Light goods vehicle #> 6549 6549 4295 2014 Bicycle #> 6550 6550 4296 2014 Public franchised bus #> 6551 6551 4297 2014 Light goods vehicle #> 6552 6552 4297 2014 Private car #> 6553 6553 4298 2014 Public franchised bus #> 6554 6554 4299 2014 Public franchised bus #> 6555 6555 4299 2014 Private car #> 6556 6556 4300 2014 Private car #> 6557 6557 4300 2014 Medium goods vehicle #> 6558 6558 4301 2014 Light goods vehicle #> 6559 6559 4301 2014 Taxi #> 6560 6560 4302 2014 Public franchised bus #> 6561 6561 4303 2014 Taxi #> 6562 6562 4304 2014 Bicycle #> 6563 6563 4304 2014 Private car #> 6564 6564 4305 2014 Public franchised bus #> 6565 6565 4306 2014 Taxi #> 6566 6566 4307 2014 Taxi #> 6567 6567 4307 2014 Public non-franchised bus #> 6568 6568 4308 2014 Light goods vehicle #> 6569 6569 4309 2014 Taxi #> 6570 6570 4310 2014 Bicycle #> 6571 6571 4311 2014 Taxi #> 6572 6572 4311 2014 Public light bus #> 6573 6573 4311 2014 Motorcycle #> 6574 6574 4312 2014 Light goods vehicle #> 6575 6575 4313 2014 Private car #> 6576 6576 4313 2014 Taxi #> 6577 6577 4313 2014 Taxi #> 6578 6578 4313 2014 Private car #> 6579 6579 4314 2014 Taxi #> 6580 6580 4314 2014 Private car #> 6581 6581 4315 2014 Private car #> 6582 6582 4315 2014 Private car #> 6583 6583 4316 2014 Taxi #> 6584 6584 4317 2014 Taxi #> 6585 6585 4317 2014 Taxi #> 6586 6586 4317 2014 Taxi #> 6587 6587 4318 2014 Public franchised bus #> 6588 6588 4319 2014 Light goods vehicle #> 6589 6589 4319 2014 Medium goods vehicle #> 6590 6590 4320 2014 Private car #> 6591 6591 4320 2014 Motorcycle #> 6592 6592 4321 2014 Public franchised bus #> 6593 6593 4321 2014 Light goods vehicle #> 6594 6594 4322 2014 Bicycle #> 6595 6595 4323 2014 Bicycle #> 6596 6596 4324 2014 Light goods vehicle #> 6597 6597 4324 2014 Private car #> 6598 6598 4325 2014 Taxi #> 6599 6599 4326 2014 Private car #> 6600 6600 4326 2014 Taxi #> 6601 6601 4326 2014 Taxi #> 6602 6602 4327 2014 Motorcycle #> 6603 6603 4327 2014 Medium goods vehicle #> 6604 6604 4328 2014 Private car #> 6605 6605 4329 2014 Motorcycle #> 6606 6606 4330 2014 Motorcycle #> 6607 6607 4330 2014 Private car #> 6608 6608 4331 2014 Public light bus #> 6609 6609 4331 2014 Public franchised bus #> 6610 6610 4332 2014 Motorcycle #> 6611 6611 4332 2014 Public non-franchised bus #> 6612 6612 4333 2014 Public light bus #> 6613 6613 4334 2014 Taxi #> 6614 6614 4335 2014 Public franchised bus #> 6615 6615 4336 2014 Light goods vehicle #> 6616 6616 4336 2014 Public franchised bus #> 6617 6617 4337 2014 Public light bus #> 6618 6618 4338 2014 Public non-franchised bus #> 6619 6619 4338 2014 Private car #> 6620 6620 4339 2014 Public light bus #> 6621 6621 4340 2014 Light goods vehicle #> 6622 6622 4340 2014 Light goods vehicle #> 6623 6623 4341 2014 Public franchised bus #> 6624 6624 4341 2014 Private car #> 6625 6625 4342 2014 Public franchised bus #> 6626 6626 4342 2014 Private car #> 6627 6627 4343 2014 Bicycle #> 6628 6628 4344 2014 Medium goods vehicle #> 6629 6629 4344 2014 Public light bus #> 6630 6630 4345 2014 Private car #> 6631 6631 4346 2014 Public franchised bus #> 6632 6632 4346 2014 Motorcycle #> 6633 6633 4347 2014 Light goods vehicle #> 6634 6634 4347 2014 Medium goods vehicle #> 6635 6635 4348 2014 Bicycle #> 6636 6636 4349 2014 Private car #> 6637 6637 4349 2014 Public franchised bus #> 6638 6638 4350 2014 Bicycle #> 6639 6639 4351 2014 Public franchised bus #> 6640 6640 4351 2014 Taxi #> 6641 6641 4352 2014 Public franchised bus #> 6642 6642 4352 2014 Private car #> 6643 6643 4353 2014 Light goods vehicle #> 6644 6644 4353 2014 Light goods vehicle #> 6645 6645 4354 2014 Light goods vehicle #> 6646 6646 4355 2014 Light goods vehicle #> 6647 6647 4355 2014 Light goods vehicle #> 6648 6648 4356 2014 Light goods vehicle #> 6649 6649 4356 2014 Public light bus #> 6650 6650 4357 2014 Others (incl. unknown) #> 6651 6651 4358 2014 Bicycle #> 6652 6652 4358 2014 Private car #> 6653 6653 4359 2014 Taxi #> 6654 6654 4359 2014 Private car #> 6655 6655 4359 2014 Private car #> 6656 6656 4359 2014 Private car #> 6657 6657 4360 2014 Bicycle #> 6658 6658 4361 2014 Private car #> 6659 6659 4362 2014 Bicycle #> 6660 6660 4363 2014 Public light bus #> 6661 6661 4363 2014 Public light bus #> 6662 6662 4363 2014 Private car #> 6663 6663 4364 2014 Motorcycle #> 6664 6664 4364 2014 Taxi #> 6665 6665 4365 2014 Private car #> 6666 6666 4365 2014 Light goods vehicle #> 6667 6667 4366 2014 Bicycle #> 6668 6668 4367 2014 Taxi #> 6669 6669 4367 2014 Private car #> 6670 6670 4368 2014 Motorcycle #> 6671 6671 4369 2014 Public light bus #> 6672 6672 4370 2014 Private car #> 6673 6673 4371 2014 Medium goods vehicle #> 6674 6674 4372 2014 Public light bus #> 6675 6675 4373 2014 Motorcycle #> 6676 6676 4374 2014 Private car #> 6677 6677 4374 2014 Private car #> 6678 6678 4375 2014 Medium goods vehicle #> 6679 6679 4375 2014 Private car #> 6680 6680 4376 2014 Motorcycle #> 6681 6681 4377 2014 Public light bus #> 6682 6682 4378 2014 Motorcycle #> 6683 6683 4379 2014 Private car #> 6684 6684 4379 2014 Taxi #> 6685 6685 4380 2014 Public franchised bus #> 6686 6686 4381 2014 Motorcycle #> 6687 6687 4382 2014 Public light bus #> 6688 6688 4382 2014 Light goods vehicle #> 6689 6689 4383 2014 Taxi #> 6690 6690 4383 2014 Private car #> 6691 6691 4384 2014 Public light bus #> 6692 6692 4385 2014 Heavy goods vehicle #> 6693 6693 4386 2014 Public light bus #> 6694 6694 4386 2014 Private car #> 6695 6695 4387 2014 Light goods vehicle #> 6696 6696 4387 2014 Private car #> 6697 6697 4388 2014 Taxi #> 6698 6698 4389 2014 Public franchised bus #> 6699 6699 4390 2014 Light goods vehicle #> 6700 6700 4391 2014 Private car #> 6701 6701 4392 2014 Private car #> 6702 6702 4392 2014 Taxi #> 6703 6703 4392 2014 Taxi #> 6704 6704 4393 2014 Public franchised bus #> 6705 6705 4394 2014 Bicycle #> 6706 6706 4394 2014 Bicycle #> 6707 6707 4394 2014 Bicycle #> 6708 6708 4395 2014 Light goods vehicle #> 6709 6709 4395 2014 Private car #> 6710 6710 4396 2014 Public light bus #> 6711 6711 4396 2014 Private car #> 6712 6712 4397 2014 Private car #> 6713 6713 4398 2014 Taxi #> 6714 6714 4399 2014 Private car #> 6715 6715 4399 2014 Private car #> 6716 6716 4400 2014 Bicycle #> 6717 6717 4401 2014 Private car #> 6718 6718 4401 2014 Taxi #> 6719 6719 4402 2014 Motorcycle #> 6720 6720 4402 2014 Taxi #> 6721 6721 4403 2014 Others (incl. unknown) #> 6722 6722 4404 2014 Private car #> 6723 6723 4405 2014 Private car #> 6724 6724 4405 2014 Heavy goods vehicle #> 6725 6725 4406 2014 Public franchised bus #> 6726 6726 4406 2014 Taxi #> 6727 6727 4407 2014 Private car #> 6728 6728 4407 2014 Light goods vehicle #> 6729 6729 4408 2014 Bicycle #> 6730 6730 4409 2014 Others (incl. unknown) #> 6731 6731 4410 2014 Light goods vehicle #> 6732 6732 4410 2014 Taxi #> 6733 6733 4411 2014 Motorcycle #> 6734 6734 4412 2014 Medium goods vehicle #> 6735 6735 4413 2014 Light goods vehicle #> 6736 6736 4414 2014 Public franchised bus #> 6737 6737 4415 2014 Private car #> 6738 6738 4416 2014 Motorcycle #> 6739 6739 4416 2014 Light goods vehicle #> 6740 6740 4417 2014 Light goods vehicle #> 6741 6741 4417 2014 Motorcycle #> 6742 6742 4418 2014 Public light bus #> 6743 6743 4418 2014 Motorcycle #> 6744 6744 4418 2014 Public light bus #> 6745 6745 4419 2014 Public franchised bus #> 6746 6746 4419 2014 Private car #> 6747 6747 4420 2014 Taxi #> 6748 6748 4420 2014 Private car #> 6749 6749 4421 2014 Motorcycle #> 6750 6750 4422 2014 Medium goods vehicle #> 6751 6751 4423 2014 Light goods vehicle #> 6752 6752 4423 2014 Private car #> 6753 6753 4423 2014 Private car #> 6754 6754 4424 2014 Public light bus #> 6755 6755 4424 2014 Motorcycle #> 6756 6756 4425 2014 Private car #> 6757 6757 4425 2014 Private car #> 6758 6758 4426 2014 Light goods vehicle #> 6759 6759 4426 2014 Heavy goods vehicle #> 6760 6760 4427 2014 Private car #> 6761 6761 4428 2014 Motorcycle #> 6762 6762 4429 2014 Public light bus #> 6763 6763 4429 2014 Public light bus #> 6764 6764 4430 2014 Private car #> 6765 6765 4430 2014 Taxi #> 6766 6766 4431 2014 Private car #> 6767 6767 4431 2014 Taxi #> 6768 6768 4432 2014 Private car #> 6769 6769 4432 2014 Private car #> 6770 6770 4433 2014 Private car #> 6771 6771 4434 2014 Private car #> 6772 6772 4434 2014 Private car #> 6773 6773 4435 2014 Light goods vehicle #> 6774 6774 4435 2014 Motorcycle #> 6775 6775 4436 2014 Public franchised bus #> 6776 6776 4437 2014 Public light bus #> 6777 6777 4438 2014 Motorcycle #> 6778 6778 4439 2014 Motorcycle #> 6779 6779 4439 2014 Medium goods vehicle #> 6780 6780 4440 2014 Light goods vehicle #> 6781 6781 4441 2014 Private car #> 6782 6782 4442 2014 Motorcycle #> 6783 6783 4443 2014 Private car #> 6784 6784 4444 2014 Motorcycle #> 6785 6785 4444 2014 Private car #> 6786 6786 4444 2014 Private car #> 6787 6787 4445 2014 Bicycle #> 6788 6788 4446 2014 Public franchised bus #> 6789 6789 4446 2014 Private car #> 6790 6790 4447 2014 Light goods vehicle #> 6791 6791 4448 2014 Others (incl. unknown) #> 6792 6792 4449 2014 Taxi #> 6793 6793 4450 2014 Private car #> 6794 6794 4450 2014 Bicycle #> 6795 6795 4451 2014 Public franchised bus #> 6796 6796 4452 2014 Taxi #> 6797 6797 4452 2014 Heavy goods vehicle #> 6798 6798 4453 2014 Private car #> 6799 6799 4453 2014 Medium goods vehicle #> 6800 6800 4454 2014 Light goods vehicle #> 6801 6801 4454 2014 Public franchised bus #> 6802 6802 4455 2014 Private car #> 6803 6803 4456 2014 Motorcycle #> 6804 6804 4457 2014 Light goods vehicle #> 6805 6805 4457 2014 Taxi #> 6806 6806 4458 2014 Taxi #> 6807 6807 4459 2014 Motorcycle #> 6808 6808 4460 2014 Private car #> 6809 6809 4460 2014 Private car #> 6810 6810 4461 2014 Taxi #> 6811 6811 4461 2014 Taxi #> 6812 6812 4462 2014 Taxi #> 6813 6813 4463 2014 Private car #> 6814 6814 4464 2014 Public franchised bus #> 6815 6815 4465 2014 Taxi #> 6816 6816 4465 2014 Private car #> 6817 6817 4466 2014 Motorcycle #> 6818 6818 4467 2014 Light goods vehicle #> 6819 6819 4467 2014 Light goods vehicle #> 6820 6820 4468 2014 Motorcycle #> 6821 6821 4469 2014 Light goods vehicle #> 6822 6822 4469 2014 Light goods vehicle #> 6823 6823 4469 2014 Private car #> 6824 6824 4469 2014 Light goods vehicle #> 6825 6825 4470 2014 Taxi #> 6826 6826 4470 2014 Public non-franchised bus #> 6827 6827 4471 2014 Taxi #> 6828 6828 4471 2014 Motorcycle #> 6829 6829 4472 2014 Light goods vehicle #> 6830 6830 4473 2014 Motorcycle #> 6831 6831 4473 2014 Light goods vehicle #> 6832 6832 4474 2014 Taxi #> 6833 6833 4475 2014 Taxi #> 6834 6834 4475 2014 Motorcycle #> 6835 6835 4476 2014 Bicycle #> 6836 6836 4477 2014 Taxi #> 6837 6837 4477 2014 Taxi #> 6838 6838 4478 2014 Motorcycle #> 6839 6839 4479 2014 Bicycle #> 6840 6840 4480 2014 Public light bus #> 6841 6841 4481 2014 Heavy goods vehicle #> 6842 6842 4481 2014 Private car #> 6843 6843 4482 2014 Light goods vehicle #> 6844 6844 4482 2014 Public franchised bus #> 6845 6845 4483 2014 Taxi #> 6846 6846 4484 2014 Private car #> 6847 6847 4485 2014 Motorcycle #> 6848 6848 4486 2014 Motorcycle #> 6849 6849 4487 2014 Motorcycle #> 6850 6850 4488 2014 Medium goods vehicle #> 6851 6851 4488 2014 Medium goods vehicle #> 6852 6852 4489 2014 Private car #> 6853 6853 4490 2014 Light goods vehicle #> 6854 6854 4490 2014 Private car #> 6855 6855 4491 2014 Motorcycle #> 6856 6856 4492 2014 Taxi #> 6857 6857 4492 2014 Motorcycle #> 6858 6858 4493 2014 Bicycle #> 6859 6859 4494 2014 Public franchised bus #> 6860 6860 4495 2014 Motorcycle #> 6861 6861 4496 2014 Light goods vehicle #> 6862 6862 4496 2014 Motorcycle #> 6863 6863 4497 2014 Motorcycle #> 6864 6864 4497 2014 Public light bus #> 6865 6865 4498 2014 Public light bus #> 6866 6866 4498 2014 Public light bus #> 6867 6867 4499 2014 Taxi #> 6868 6868 4499 2014 Medium goods vehicle #> 6869 6869 4500 2014 Public franchised bus #> 6870 6870 4501 2014 Private car #> 6871 6871 4502 2014 Public light bus #> 6872 6872 4502 2014 Private car #> 6873 6873 4503 2014 Motorcycle #> 6874 6874 4503 2014 Private car #> 6875 6875 4504 2014 Taxi #> 6876 6876 4505 2014 Taxi #> 6877 6877 4506 2014 Public light bus #> 6878 6878 4506 2014 Light goods vehicle #> 6879 6879 4507 2014 Bicycle #> 6880 6880 4507 2014 Private car #> 6881 6881 4508 2014 Private car #> 6882 6882 4508 2014 Private car #> 6883 6883 4509 2014 Private car #> 6884 6884 4509 2014 Private car #> 6885 6885 4509 2014 Taxi #> 6886 6886 4510 2014 Private car #> 6887 6887 4511 2014 Taxi #> 6888 6888 4511 2014 Public light bus #> 6889 6889 4511 2014 Private car #> 6890 6890 4512 2014 Bicycle #> 6891 6891 4513 2014 Public light bus #> 6892 6892 4513 2014 Light goods vehicle #> 6893 6893 4514 2014 Public franchised bus #> 6894 6894 4515 2014 Taxi #> 6895 6895 4516 2014 Light goods vehicle #> 6896 6896 4517 2014 Public light bus #> 6897 6897 4517 2014 Private car #> 6898 6898 4517 2014 Private car #> 6899 6899 4518 2014 Public light bus #> 6900 6900 4519 2014 Medium goods vehicle #> 6901 6901 4519 2014 Public franchised bus #> 6902 6902 4520 2014 Light goods vehicle #> 6903 6903 4520 2014 Private car #> 6904 6904 4520 2014 Private car #> 6905 6905 4520 2014 Taxi #> 6906 6906 4520 2014 Medium goods vehicle #> 6907 6907 4521 2014 Private car #> 6908 6908 4521 2014 Motorcycle #> 6909 6909 4522 2014 Light goods vehicle #> 6910 6910 4523 2014 Motorcycle #> 6911 6911 4524 2014 Private car #> 6912 6912 4524 2014 Private car #> 6913 6913 4525 2014 Motorcycle #> 6914 6914 4525 2014 Private car #> 6915 6915 4526 2014 Taxi #> 6916 6916 4527 2014 Taxi #> 6917 6917 4527 2014 Private car #> 6918 6918 4528 2014 Private car #> 6919 6919 4528 2014 Private car #> 6920 6920 4529 2014 Motorcycle #> 6921 6921 4530 2014 Public light bus #> 6922 6922 4530 2014 Public non-franchised bus #> 6923 6923 4531 2014 Bicycle #> 6924 6924 4531 2014 Bicycle #> 6925 6925 4532 2014 Public franchised bus #> 6926 6926 4533 2014 Private car #> 6927 6927 4533 2014 Taxi #> 6928 6928 4533 2014 Private car #> 6929 6929 4534 2014 Bicycle #> 6930 6930 4535 2014 Private car #> 6931 6931 4535 2014 Private car #> 6932 6932 4535 2014 Private car #> 6933 6933 4536 2014 Taxi #> 6934 6934 4537 2014 Motorcycle #> 6935 6935 4538 2014 Taxi #> 6936 6936 4538 2014 Taxi #> 6937 6937 4538 2014 Private car #> 6938 6938 4538 2014 Taxi #> 6939 6939 4538 2014 Private car #> 6940 6940 4539 2014 Light goods vehicle #> 6941 6941 4539 2014 Light goods vehicle #> 6942 6942 4539 2014 Light goods vehicle #> 6943 6943 4539 2014 Public franchised bus #> 6944 6944 4540 2014 Bicycle #> 6945 6945 4541 2014 Light goods vehicle #> 6946 6946 4542 2014 Private car #> 6947 6947 4542 2014 Light goods vehicle #> 6948 6948 4543 2014 Private car #> 6949 6949 4543 2014 Private car #> 6950 6950 4544 2014 Taxi #> 6951 6951 4544 2014 Private car #> 6952 6952 4545 2014 Taxi #> 6953 6953 4545 2014 Private car #> 6954 6954 4546 2014 Taxi #> 6955 6955 4547 2014 Bicycle #> 6956 6956 4548 2014 Public franchised bus #> 6957 6957 4549 2014 Others (incl. unknown) #> 6958 6958 4550 2014 Taxi #> 6959 6959 4551 2014 Bicycle #> 6960 6960 4552 2014 Light goods vehicle #> 6961 6961 4552 2014 Public non-franchised bus #> 6962 6962 4553 2014 Private car #> 6963 6963 4553 2014 Light goods vehicle #> 6964 6964 4554 2014 Public light bus #> 6965 6965 4554 2014 Motorcycle #> 6966 6966 4555 2014 Light goods vehicle #> 6967 6967 4555 2014 Private car #> 6968 6968 4556 2014 Private car #> 6969 6969 4557 2014 Public franchised bus #> 6970 6970 4558 2014 Private car #> 6971 6971 4559 2014 Public franchised bus #> 6972 6972 4560 2014 Light goods vehicle #> 6973 6973 4561 2014 Public franchised bus #> 6974 6974 4562 2014 Motorcycle #> 6975 6975 4563 2014 Public franchised bus #> 6976 6976 4564 2014 Taxi #> 6977 6977 4565 2014 Public light bus #> 6978 6978 4566 2014 Public franchised bus #> 6979 6979 4567 2014 Public franchised bus #> 6980 6980 4567 2014 Taxi #> 6981 6981 4568 2014 Bicycle #> 6982 6982 4568 2014 Bicycle #> 6983 6983 4568 2014 Bicycle #> 6984 6984 4569 2014 Taxi #> 6985 6985 4570 2014 Motorcycle #> 6986 6986 4571 2014 Public light bus #> 6987 6987 4572 2014 Private car #> 6988 6988 4573 2014 Taxi #> 6989 6989 4573 2014 Private car #> 6990 6990 4574 2014 Heavy goods vehicle #> 6991 6991 4574 2014 Heavy goods vehicle #> 6992 6992 4575 2014 Public franchised bus #> 6993 6993 4576 2014 Private car #> 6994 6994 4577 2014 Motorcycle #> 6995 6995 4577 2014 Public franchised bus #> 6996 6996 4578 2014 Taxi #> 6997 6997 4578 2014 Public non-franchised bus #> 6998 6998 4579 2014 Public franchised bus #> 6999 6999 4580 2014 Private car #> 7000 7000 4580 2014 Private car #> 7001 7001 4580 2014 Private car #> 7002 7002 4581 2014 Public franchised bus #> 7003 7003 4582 2014 Private car #> 7004 7004 4583 2014 Private car #> 7005 7005 4583 2014 Others (incl. unknown) #> 7006 7006 4583 2014 Motorcycle #> 7007 7007 4584 2014 Private car #> 7008 7008 4584 2014 Private car #> 7009 7009 4584 2014 Private car #> 7010 7010 4584 2014 Private car #> 7011 7011 4585 2014 Public light bus #> 7012 7012 4585 2014 Public franchised bus #> 7013 7013 4586 2014 Private car #> 7014 7014 4587 2014 Public franchised bus #> 7015 7015 4588 2014 Private car #> 7016 7016 4589 2014 Bicycle #> 7017 7017 4590 2014 Public light bus #> 7018 7018 4590 2014 Private car #> 7019 7019 4591 2014 Bicycle #> 7020 7020 4592 2014 Taxi #> 7021 7021 4592 2014 Taxi #> 7022 7022 4593 2014 Taxi #> 7023 7023 4594 2014 Motorcycle #> 7024 7024 4595 2014 Public franchised bus #> 7025 7025 4596 2014 Others (incl. unknown) #> 7026 7026 4597 2014 Taxi #> 7027 7027 4597 2014 Private car #> 7028 7028 4598 2014 Motorcycle #> 7029 7029 4598 2014 Light goods vehicle #> 7030 7030 4598 2014 Taxi #> 7031 7031 4599 2014 Motorcycle #> 7032 7032 4600 2014 Public light bus #> 7033 7033 4600 2014 Public franchised bus #> 7034 7034 4601 2014 Private car #> 7035 7035 4601 2014 Public light bus #> 7036 7036 4602 2014 Private car #> 7037 7037 4602 2014 Public non-franchised bus #> 7038 7038 4603 2014 Motorcycle #> 7039 7039 4603 2014 Private car #> 7040 7040 4604 2014 Private car #> 7041 7041 4604 2014 Public light bus #> 7042 7042 4605 2014 Taxi #> 7043 7043 4606 2014 Medium goods vehicle #> 7044 7044 4606 2014 Light goods vehicle #> 7045 7045 4607 2014 Private car #> 7046 7046 4607 2014 Public light bus #> 7047 7047 4608 2014 Private car #> 7048 7048 4608 2014 Public light bus #> 7049 7049 4609 2014 Public franchised bus #> 7050 7050 4610 2014 Private car #> 7051 7051 4611 2014 Private car #> 7052 7052 4611 2014 Motorcycle #> 7053 7053 4612 2014 Private car #> 7054 7054 4612 2014 Private car #> 7055 7055 4613 2014 Heavy goods vehicle #> 7056 7056 4613 2014 Private car #> 7057 7057 4614 2014 Taxi #> 7058 7058 4615 2014 Motorcycle #> 7059 7059 4616 2014 Taxi #> 7060 7060 4616 2014 Taxi #> 7061 7061 4616 2014 Taxi #> 7062 7062 4617 2014 Light goods vehicle #> 7063 7063 4617 2014 Light goods vehicle #> 7064 7064 4618 2014 Private car #> 7065 7065 4618 2014 Private car #> 7066 7066 4618 2014 Private car #> 7067 7067 4618 2014 Private car #> 7068 7068 4619 2014 Public light bus #> 7069 7069 4620 2014 Private car #> 7070 7070 4620 2014 Motorcycle #> 7071 7071 4620 2014 Heavy goods vehicle #> 7072 7072 4620 2014 Motorcycle #> 7073 7073 4621 2014 Private car #> 7074 7074 4621 2014 Light goods vehicle #> 7075 7075 4622 2014 Light goods vehicle #> 7076 7076 4623 2014 Motorcycle #> 7077 7077 4624 2014 Bicycle #> 7078 7078 4625 2014 Taxi #> 7079 7079 4625 2014 Private car #> 7080 7080 4626 2014 Public light bus #> 7081 7081 4626 2014 Light goods vehicle #> 7082 7082 4627 2014 Private car #> 7083 7083 4628 2014 Motorcycle #> 7084 7084 4628 2014 Private car #> 7085 7085 4628 2014 Light goods vehicle #> 7086 7086 4629 2014 Motorcycle #> 7087 7087 4630 2014 Bicycle #> 7088 7088 4631 2014 Bicycle #> 7089 7089 4632 2014 Private car #> 7090 7090 4632 2014 Private car #> 7091 7091 4633 2014 Private car #> 7092 7092 4633 2014 Motorcycle #> 7093 7093 4634 2014 Bicycle #> 7094 7094 4635 2014 Private car #> 7095 7095 4636 2014 Public light bus #> 7096 7096 4636 2014 Private car #> 7097 7097 4636 2014 Public franchised bus #> 7098 7098 4637 2014 Public franchised bus #> 7099 7099 4638 2014 Private car #> 7100 7100 4639 2014 Public light bus #> 7101 7101 4640 2014 Public light bus #> 7102 7102 4641 2014 Medium goods vehicle #> 7103 7103 4642 2014 Private car #> 7104 7104 4643 2014 Private car #> 7105 7105 4644 2014 Medium goods vehicle #> 7106 7106 4645 2014 Bicycle #> 7107 7107 4646 2014 Public franchised bus #> 7108 7108 4647 2014 Public light bus #> 7109 7109 4647 2014 Taxi #> 7110 7110 4648 2014 Motorcycle #> 7111 7111 4649 2014 Taxi #> 7112 7112 4650 2014 Heavy goods vehicle #> 7113 7113 4650 2014 Private car #> 7114 7114 4651 2014 Light goods vehicle #> 7115 7115 4652 2014 Taxi #> 7116 7116 4652 2014 Private car #> 7117 7117 4653 2014 Public franchised bus #> 7118 7118 4654 2014 Bicycle #> 7119 7119 4655 2014 Motorcycle #> 7120 7120 4656 2014 Public franchised bus #> 7121 7121 4657 2014 Taxi #> 7122 7122 4657 2014 Public franchised bus #> 7123 7123 4657 2014 Private car #> 7124 7124 4658 2014 Medium goods vehicle #> 7125 7125 4658 2014 Light goods vehicle #> 7126 7126 4658 2014 Public light bus #> 7127 7127 4659 2014 Public franchised bus #> 7128 7128 4660 2014 Public franchised bus #> 7129 7129 4661 2014 Public franchised bus #> 7130 7130 4662 2014 Motorcycle #> 7131 7131 4663 2014 Private car #> 7132 7132 4663 2014 Private car #> 7133 7133 4663 2014 Taxi #> 7134 7134 4664 2014 Public franchised bus #> 7135 7135 4664 2014 Public franchised bus #> 7136 7136 4665 2014 Public franchised bus #> 7137 7137 4666 2014 Motorcycle #> 7138 7138 4667 2014 Private car #> 7139 7139 4668 2014 Medium goods vehicle #> 7140 7140 4669 2014 Private car #> 7141 7141 4669 2014 Private car #> 7142 7142 4670 2014 Public light bus #> Vehicle_Collision First_point Severity_of_Accident #> 1 Wall or bridge parapet Front Serious #> 2 None No impact Slight #> 3 Wall or bridge parapet Front Slight #> 4 Vehicle Offside Slight #> 5 Vehicle Offside Slight #> 6 Vehicle Front Slight #> 7 None No impact Slight #> 8 Crash barrier Front Slight #> 9 Vehicle Offside Slight #> 10 Vehicle Front Slight #> 11 Vehicle Front Serious #> 12 Vehicle Back Serious #> 13 None No impact Serious #> 14 Pedestrian barrier rail Front Slight #> 15 Pedestrian Front Fatal #> 16 Pedestrian Nearside Slight #> 17 Vehicle Nearside Slight #> 18 Vehicle Offside Slight #> 19 None No impact Serious #> 20 None No impact Slight #> 21 Vehicle Offside Slight #> 22 Vehicle Front Slight #> 23 None No impact Slight #> 24 Vehicle Back Slight #> 25 Vehicle Front Slight #> 26 None No impact Serious #> 27 Vehicle Front Slight #> 28 Vehicle Back Slight #> 29 Wall or bridge parapet Front Slight #> 30 Vehicle Front Slight #> 31 Vehicle Back Slight #> 32 Pedestrian Offside Slight #> 33 None No impact Slight #> 34 None No impact Slight #> 35 Pedestrian Front Slight #> 36 Pedestrian Front Slight #> 37 Pedestrian Front Slight #> 38 None No impact Slight #> 39 None No impact Slight #> 40 Pedestrian Front Slight #> 41 Vehicle Front Slight #> 42 Vehicle Front Slight #> 43 Vehicle Front Slight #> 44 Vehicle Nearside Serious #> 45 Vehicle Offside Serious #> 46 Vehicle Nearside Serious #> 47 Vehicle Offside Serious #> 48 None No impact Slight #> 49 Vehicle Nearside Slight #> 50 Vehicle Offside Slight #> 51 None No impact Slight #> 52 None No impact Slight #> 53 Pedestrian Front Slight #> 54 Crash barrier Nearside Slight #> 55 Pedestrian Nearside Slight #> 56 None No impact Slight #> 57 None No impact Slight #> 58 Vehicle Back Slight #> 59 Vehicle Front Slight #> 60 Vehicle Front Slight #> 61 Pedestrian Offside Slight #> 62 Pedestrian Front Serious #> 63 Vehicle Offside Slight #> 64 Vehicle Front Slight #> 65 None No impact Slight #> 66 None No impact Slight #> 67 None No impact Serious #> 68 Vehicle Back Slight #> 69 Vehicle Front Slight #> 70 Vehicle Nearside Slight #> 71 Vehicle Offside Slight #> 72 None No impact Slight #> 73 Pedestrian Front Slight #> 74 Vehicle Front Slight #> 75 Vehicle Back Slight #> 76 Vehicle Front Slight #> 77 Vehicle Back Slight #> 78 None No impact Slight #> 79 None No impact Slight #> 80 None No impact Slight #> 81 Crash barrier Offside Slight #> 82 None No impact Slight #> 83 None No impact Slight #> 84 Pedestrian Front Slight #> 85 Pedestrian Nearside Slight #> 86 Pedestrian Back Slight #> 87 Pedestrian Front Slight #> 88 Vehicle Front Slight #> 89 Vehicle Back Slight #> 90 None No impact Slight #> 91 Other Front Serious #> 92 Pedestrian Nearside Serious #> 93 None No impact Slight #> 94 None No impact Slight #> 95 Vehicle Front Slight #> 96 Vehicle Back Slight #> 97 Pedestrian Back Slight #> 98 Vehicle Offside Slight #> 99 Vehicle Nearside Slight #> 100 Pedestrian Offside Slight #> 101 Pedestrian Offside Slight #> 102 None No impact Slight #> 103 None No impact Slight #> 104 Crash barrier Front Slight #> 105 Pedestrian Nearside Serious #> 106 None No impact Slight #> 107 Pedestrian Offside Serious #> 108 Pedestrian Offside Slight #> 109 None No impact Slight #> 110 Vehicle Front Serious #> 111 Vehicle Back Serious #> 112 None No impact Serious #> 113 Pedestrian Front Slight #> 114 Vehicle Offside Slight #> 115 Vehicle Front Slight #> 116 None No impact Slight #> 117 Pedestrian Front Slight #> 118 Wall or bridge parapet Nearside Slight #> 119 Vehicle Back Serious #> 120 Vehicle Back Serious #> 121 Vehicle Front Serious #> 122 Vehicle Back Serious #> 123 Vehicle Front Slight #> 124 Vehicle Back Slight #> 125 Pedestrian Nearside Slight #> 126 Vehicle Back Slight #> 127 Vehicle Back Slight #> 128 Vehicle Back Slight #> 129 Vehicle Front Slight #> 130 Vehicle Back Slight #> 131 None No impact Serious #> 132 None No impact Slight #> 133 None No impact Slight #> 134 Pedestrian Front Slight #> 135 None No impact Serious #> 136 Pedestrian Nearside Slight #> 137 Vehicle Front Serious #> 138 Vehicle Front Serious #> 139 Vehicle Front Slight #> 140 Vehicle Front Slight #> 141 Pedestrian Offside Slight #> 142 None No impact Serious #> 143 None No impact Serious #> 144 None No impact Slight #> 145 Vehicle Offside Slight #> 146 Vehicle Nearside Slight #> 147 None No impact Slight #> 148 None No impact Slight #> 149 Vehicle Back Slight #> 150 Vehicle Front Slight #> 151 Vehicle Back Slight #> 152 Vehicle Front Slight #> 153 Pedestrian Nearside Slight #> 154 Pedestrian Nearside Slight #> 155 None No impact Slight #> 156 Wall or bridge parapet Nearside Slight #> 157 Vehicle Offside Slight #> 158 Vehicle Nearside Slight #> 159 Pedestrian Offside Slight #> 160 Pedestrian Front Slight #> 161 None No impact Slight #> 162 Vehicle Offside Slight #> 163 Vehicle Front Slight #> 164 Vehicle Front Slight #> 165 Vehicle Nearside Slight #> 166 Vehicle Front Slight #> 167 Vehicle Back Slight #> 168 None No impact Slight #> 169 Vehicle Offside Slight #> 170 Vehicle Offside Slight #> 171 None No impact Serious #> 172 Pedestrian Nearside Slight #> 173 None No impact Slight #> 174 None No impact Slight #> 175 None No impact Slight #> 176 Vehicle Offside Slight #> 177 Vehicle Front Slight #> 178 None No impact Serious #> 179 Crash barrier Front Serious #> 180 Vehicle Back Serious #> 181 Vehicle Front Serious #> 182 Vehicle Back Serious #> 183 Vehicle Back Serious #> 184 Vehicle Back Serious #> 185 None No impact Slight #> 186 Vehicle Front Slight #> 187 Vehicle Back Slight #> 188 Vehicle Front Serious #> 189 Vehicle Front Serious #> 190 Vehicle Front Serious #> 191 None No impact Slight #> 192 Vehicle Front Slight #> 193 Vehicle Front Slight #> 194 None No impact Slight #> 195 None No impact Slight #> 196 None No impact Slight #> 197 None No impact Slight #> 198 Vehicle Back Slight #> 199 Vehicle Back Slight #> 200 Vehicle Front Slight #> 201 Vehicle Back Slight #> 202 Pedestrian Front Slight #> 203 None No impact Slight #> 204 Pedestrian Front Slight #> 205 Vehicle Front Slight #> 206 Vehicle Back Slight #> 207 None No impact Slight #> 208 None No impact Serious #> 209 Vehicle Front Slight #> 210 Vehicle Front Slight #> 211 None No impact Slight #> 212 Pedestrian Nearside Slight #> 213 Pedestrian Offside Slight #> 214 Pedestrian Nearside Slight #> 215 Bollard Front Slight #> 216 None No impact Slight #> 217 Pedestrian Back Slight #> 218 Pedestrian Offside Slight #> 219 None No impact Slight #> 220 Vehicle Offside Slight #> 221 Vehicle Offside Slight #> 222 Vehicle Front Slight #> 223 Vehicle Back Slight #> 224 None No impact Slight #> 225 None No impact Slight #> 226 Pedestrian Front Slight #> 227 Pedestrian Front Serious #> 228 Road sign Nearside Slight #> 229 None No impact Slight #> 230 Pedestrian Offside Serious #> 231 Pedestrian Nearside Slight #> 232 None No impact Slight #> 233 None No impact Slight #> 234 None No impact Slight #> 235 Vehicle Front Slight #> 236 Vehicle Front Slight #> 237 Vehicle Front Slight #> 238 Vehicle Back Slight #> 239 None No impact Slight #> 240 None No impact Slight #> 241 None No impact Serious #> 242 None No impact Slight #> 243 Vehicle Nearside Slight #> 244 Vehicle Offside Slight #> 245 Vehicle Nearside Slight #> 246 Vehicle Offside Slight #> 247 None No impact Serious #> 248 None No impact Serious #> 249 Vehicle Back Slight #> 250 Vehicle Front Slight #> 251 Tree Front Slight #> 252 Vehicle Back Serious #> 253 Vehicle Front Serious #> 254 Vehicle Offside Slight #> 255 Vehicle Front Slight #> 256 None No impact Slight #> 257 Pedestrian Back Slight #> 258 Pedestrian Front Slight #> 259 Vehicle Back Slight #> 260 Vehicle Nearside Slight #> 261 Vehicle Front Slight #> 262 Vehicle Back Slight #> 263 Vehicle Front Slight #> 264 Vehicle Back Slight #> 265 Pedestrian Front Slight #> 266 Vehicle Back Slight #> 267 Vehicle Back Slight #> 268 Vehicle Front Slight #> 269 Vehicle Back Slight #> 270 Pedestrian Nearside Slight #> 271 Vehicle Nearside Slight #> 272 Vehicle Front Slight #> 273 Vehicle Back Slight #> 274 Vehicle Front Slight #> 275 Vehicle Front Slight #> 276 Vehicle Offside Slight #> 277 Pedestrian Nearside Serious #> 278 Pedestrian Front Slight #> 279 None No impact Slight #> 280 Vehicle Front Serious #> 281 Vehicle Front Serious #> 282 None No impact Slight #> 283 None No impact Slight #> 284 Vehicle Offside Slight #> 285 Vehicle Offside Slight #> 286 Vehicle Nearside Slight #> 287 None No impact Slight #> 288 Vehicle Back Slight #> 289 Vehicle Front Slight #> 290 Vehicle Offside Slight #> 291 Vehicle Back Slight #> 292 None No impact Slight #> 293 None No impact Slight #> 294 None No impact Slight #> 295 Pedestrian Nearside Slight #> 296 None No impact Slight #> 297 Pedestrian Offside Slight #> 298 Pedestrian Front Slight #> 299 None No impact Slight #> 300 Other Front Slight #> 301 Vehicle Back Serious #> 302 Vehicle Front Serious #> 303 None No impact Slight #> 304 Vehicle Back Slight #> 305 Vehicle Front Slight #> 306 None No impact Slight #> 307 Crash barrier Front Serious #> 308 None No impact Slight #> 309 None No impact Slight #> 310 None No impact Slight #> 311 Vehicle Front Serious #> 312 Vehicle Front Serious #> 313 Vehicle Back Slight #> 314 Vehicle Front Slight #> 315 Road sign Offside Slight #> 316 Vehicle Back Slight #> 317 Vehicle Front Slight #> 318 None No impact Slight #> 319 None No impact Slight #> 320 Vehicle Nearside Serious #> 321 Vehicle Front Serious #> 322 Vehicle Back Serious #> 323 Vehicle Front Serious #> 324 Pedestrian Front Slight #> 325 Pedestrian Front Slight #> 326 Vehicle Nearside Slight #> 327 Vehicle Offside Slight #> 328 None No impact Slight #> 329 Pedestrian Back Slight #> 330 Pedestrian Nearside Slight #> 331 Pedestrian Front Slight #> 332 None No impact Slight #> 333 None No impact Slight #> 334 Pedestrian Front Slight #> 335 None No impact Slight #> 336 Vehicle Front Slight #> 337 Vehicle Back Slight #> 338 Pedestrian Offside Slight #> 339 Vehicle Front Slight #> 340 Vehicle Back Slight #> 341 Vehicle Offside Slight #> 342 Vehicle Nearside Slight #> 343 None No impact Slight #> 344 Pedestrian Front Serious #> 345 Pedestrian Front Slight #> 346 Pedestrian Front Slight #> 347 Vehicle Front Slight #> 348 Vehicle Nearside Slight #> 349 Vehicle Back Slight #> 350 Vehicle Front Slight #> 351 None No impact Slight #> 352 None No impact Serious #> 353 Pedestrian Front Slight #> 354 Vehicle Nearside Slight #> 355 Vehicle Offside Slight #> 356 Pedestrian Nearside Slight #> 357 Vehicle Back Slight #> 358 Vehicle Front Slight #> 359 Pedestrian Front Slight #> 360 Vehicle Nearside Slight #> 361 Vehicle Front Slight #> 362 Pedestrian Front Slight #> 363 Vehicle Back Slight #> 364 Vehicle Front Slight #> 365 Vehicle Front Slight #> 366 Vehicle Back Slight #> 367 Pedestrian Nearside Serious #> 368 None No impact Slight #> 369 Wall or bridge parapet Front Slight #> 370 Pedestrian Nearside Slight #> 371 Vehicle Back Slight #> 372 Vehicle Back Slight #> 373 Vehicle Front Slight #> 374 Vehicle Back Slight #> 375 None No impact Slight #> 376 None No impact Slight #> 377 None No impact Slight #> 378 None No impact Slight #> 379 Vehicle Back Slight #> 380 Vehicle Back Slight #> 381 Vehicle Front Slight #> 382 None No impact Slight #> 383 None No impact Slight #> 384 None No impact Slight #> 385 Vehicle Front Serious #> 386 Vehicle Back Serious #> 387 None No impact Slight #> 388 None No impact Slight #> 389 Pedestrian Front Slight #> 390 Vehicle Offside Slight #> 391 Vehicle Nearside Slight #> 392 Pedestrian Front Slight #> 393 Vehicle Nearside Slight #> 394 Vehicle Front Slight #> 395 None No impact Slight #> 396 None No impact Slight #> 397 None No impact Slight #> 398 Vehicle Nearside Slight #> 399 Vehicle Offside Slight #> 400 None No impact Serious #> 401 Pedestrian Nearside Slight #> 402 Pedestrian Back Slight #> 403 Vehicle Front Slight #> 404 Vehicle Offside Serious #> 405 Vehicle Front Serious #> 406 Vehicle Front Slight #> 407 Vehicle Back Slight #> 408 Pedestrian Back Slight #> 409 Pedestrian Front Slight #> 410 Vehicle Back Slight #> 411 Vehicle Front Slight #> 412 None No impact Slight #> 413 Pedestrian Front Serious #> 414 None No impact Slight #> 415 Vehicle Front Slight #> 416 Vehicle Offside Slight #> 417 Pedestrian Nearside Slight #> 418 Vehicle Offside Slight #> 419 Vehicle Offside Slight #> 420 Pedestrian Nearside Serious #> 421 Pedestrian Back Serious #> 422 None No impact Slight #> 423 None No impact Slight #> 424 Pedestrian Front Slight #> 425 Vehicle Nearside Slight #> 426 Vehicle Nearside Slight #> 427 Vehicle Front Slight #> 428 Vehicle Front Slight #> 429 None No impact Slight #> 430 Pedestrian Offside Slight #> 431 Pedestrian Nearside Slight #> 432 Vehicle Back Slight #> 433 Vehicle Front Slight #> 434 Pedestrian Back Slight #> 435 None No impact Serious #> 436 None No impact Slight #> 437 None No impact Slight #> 438 None No impact Slight #> 439 Vehicle Front Slight #> 440 Vehicle Back Slight #> 441 Vehicle Front Slight #> 442 Vehicle Front Slight #> 443 Vehicle Offside Slight #> 444 Vehicle Front Slight #> 445 Vehicle Back Slight #> 446 None No impact Slight #> 447 None No impact Slight #> 448 Pedestrian Front Serious #> 449 Pedestrian Front Slight #> 450 Pedestrian Front Slight #> 451 Wall or bridge parapet Front Slight #> 452 Wall or bridge parapet Offside Serious #> 453 Vehicle Nearside Slight #> 454 Vehicle Front Slight #> 455 Vehicle Front Slight #> 456 Vehicle Front Slight #> 457 Vehicle Front Slight #> 458 Vehicle Front Slight #> 459 None No impact Slight #> 460 Bollard Front Serious #> 461 Vehicle Back Slight #> 462 Vehicle Front Slight #> 463 Traffic signal post Front Serious #> 464 Vehicle Back Slight #> 465 Vehicle Front Slight #> 466 None No impact Slight #> 467 Pedestrian Offside Serious #> 468 None No impact Slight #> 469 None No impact Slight #> 470 Vehicle Front Slight #> 471 Vehicle Back Slight #> 472 None No impact Slight #> 473 Vehicle Front Slight #> 474 Vehicle Back Slight #> 475 None No impact Slight #> 476 None No impact Serious #> 477 None No impact Serious #> 478 None No impact Serious #> 479 None No impact Serious #> 480 Pedestrian Front Slight #> 481 Pedestrian Offside Slight #> 482 Pedestrian Front Slight #> 483 Pedestrian Front Serious #> 484 None No impact Slight #> 485 Vehicle Front Slight #> 486 Vehicle Back Slight #> 487 Pedestrian Offside Slight #> 488 Pedestrian Front Slight #> 489 None No impact Slight #> 490 Pedestrian Offside Slight #> 491 None No impact Slight #> 492 Vehicle Back Slight #> 493 Vehicle Back Slight #> 494 Vehicle Front Slight #> 495 Vehicle Front Slight #> 496 Vehicle Back Slight #> 497 None No impact Slight #> 498 None No impact Serious #> 499 Vehicle Back Slight #> 500 Vehicle Front Slight #> 501 Pedestrian Front Serious #> 502 None No impact Slight #> 503 Pedestrian Front Slight #> 504 Pedestrian Front Slight #> 505 None No impact Slight #> 506 Road sign Nearside Slight #> 507 Vehicle Front Slight #> 508 Vehicle Back Slight #> 509 Vehicle Back Slight #> 510 Pedestrian Nearside Slight #> 511 None No impact Slight #> 512 Pedestrian Nearside Slight #> 513 Vehicle Nearside Slight #> 514 Vehicle Offside Slight #> 515 None No impact Slight #> 516 None No impact Slight #> 517 Vehicle Offside Slight #> 518 Vehicle Front Slight #> 519 Vehicle Front Slight #> 520 Vehicle Front Slight #> 521 Vehicle Front Slight #> 522 Vehicle Back Slight #> 523 Vehicle Front Slight #> 524 Vehicle Front Slight #> 525 None No impact Slight #> 526 None No impact Serious #> 527 Pedestrian Front Serious #> 528 Pedestrian Front Serious #> 529 Vehicle Nearside Slight #> 530 Vehicle Offside Slight #> 531 Pedestrian Nearside Slight #> 532 Vehicle Nearside Slight #> 533 Vehicle Front Slight #> 534 None No impact Serious #> 535 Pedestrian Front Slight #> 536 Other Nearside Slight #> 537 Vehicle Front Slight #> 538 Vehicle Back Slight #> 539 None No impact Slight #> 540 Vehicle Back Slight #> 541 Vehicle Front Slight #> 542 Vehicle Back Slight #> 543 Vehicle Front Slight #> 544 Pedestrian Offside Slight #> 545 Vehicle Front Slight #> 546 Vehicle Back Slight #> 547 None No impact Slight #> 548 Vehicle Back Slight #> 549 Vehicle Back Slight #> 550 Vehicle Front Slight #> 551 None No impact Slight #> 552 Other Nearside Slight #> 553 Pedestrian Front Serious #> 554 None No impact Slight #> 555 Pedestrian Front Slight #> 556 Vehicle Front Slight #> 557 Vehicle Back Slight #> 558 Vehicle Back Slight #> 559 None No impact Slight #> 560 None No impact Slight #> 561 Vehicle Front Slight #> 562 Vehicle Back Slight #> 563 Wall or bridge parapet Offside Slight #> 564 None No impact Serious #> 565 Vehicle Front Slight #> 566 Vehicle Back Slight #> 567 Vehicle Back Slight #> 568 Vehicle Front Slight #> 569 Vehicle Front Slight #> 570 Vehicle Back Slight #> 571 Vehicle Back Slight #> 572 Vehicle Front Slight #> 573 Vehicle Front Slight #> 574 Vehicle Nearside Slight #> 575 Pedestrian Front Slight #> 576 Vehicle Front Serious #> 577 Vehicle Back Serious #> 578 Vehicle Front Serious #> 579 None No impact Serious #> 580 None No impact Serious #> 581 Vehicle Front Serious #> 582 Vehicle Front Serious #> 583 Pedestrian Front Slight #> 584 None No impact Slight #> 585 None No impact Slight #> 586 None No impact Slight #> 587 Vehicle Back Serious #> 588 Vehicle Front Serious #> 589 Vehicle Back Serious #> 590 Vehicle Back Serious #> 591 Vehicle Back Serious #> 592 Wall or bridge parapet Offside Slight #> 593 Vehicle Offside Slight #> 594 Vehicle Nearside Slight #> 595 None No impact Slight #> 596 Pedestrian Nearside Slight #> 597 Vehicle Front Serious #> 598 Vehicle Nearside Serious #> 599 Vehicle Nearside Slight #> 600 Vehicle Offside Slight #> 601 Pedestrian Front Fatal #> 602 None No impact Slight #> 603 Pedestrian Nearside Slight #> 604 Pedestrian Offside Serious #> 605 Vehicle Nearside Slight #> 606 Vehicle Front Slight #> 607 Pedestrian Nearside Slight #> 608 None No impact Slight #> 609 None No impact Slight #> 610 Pedestrian Nearside Slight #> 611 Vehicle Back Slight #> 612 Vehicle Back Slight #> 613 Vehicle Front Slight #> 614 None No impact Serious #> 615 Pedestrian Offside Serious #> 616 Vehicle Front Slight #> 617 Vehicle Nearside Slight #> 618 Vehicle Front Slight #> 619 None No impact Slight #> 620 Pedestrian Nearside Slight #> 621 None No impact Slight #> 622 None No impact Slight #> 623 None No impact Slight #> 624 None No impact Slight #> 625 Vehicle Back Slight #> 626 Vehicle Front Slight #> 627 None No impact Serious #> 628 None No impact Slight #> 629 None No impact Slight #> 630 Vehicle Back Slight #> 631 Vehicle Front Slight #> 632 None No impact Slight #> 633 None No impact Slight #> 634 Vehicle Offside Slight #> 635 Vehicle Nearside Slight #> 636 None No impact Slight #> 637 None No impact Slight #> 638 Vehicle Back Slight #> 639 Vehicle Front Slight #> 640 Vehicle Back Slight #> 641 Vehicle Front Slight #> 642 None No impact Slight #> 643 None No impact Slight #> 644 Vehicle Front Slight #> 645 Vehicle Back Slight #> 646 Vehicle Back Slight #> 647 Vehicle Front Slight #> 648 None No impact Slight #> 649 Vehicle Offside Slight #> 650 Vehicle Nearside Slight #> 651 Vehicle Front Serious #> 652 Vehicle Back Serious #> 653 None No impact Slight #> 654 None No impact Slight #> 655 Pedestrian Nearside Slight #> 656 None No impact Slight #> 657 Other Front Slight #> 658 Pedestrian Front Slight #> 659 Pedestrian Front Slight #> 660 Vehicle Back Serious #> 661 Vehicle Front Serious #> 662 Vehicle Back Serious #> 663 Pedestrian Offside Serious #> 664 Pedestrian Front Slight #> 665 Pedestrian Nearside Slight #> 666 Pedestrian Front Slight #> 667 None No impact Slight #> 668 Pedestrian Front Serious #> 669 Pedestrian Offside Slight #> 670 Vehicle Nearside Slight #> 671 Vehicle Front Slight #> 672 Pedestrian Nearside Slight #> 673 None No impact Slight #> 674 Pedestrian Back Slight #> 675 Vehicle Back Slight #> 676 Vehicle Front Slight #> 677 Vehicle Back Slight #> 678 Vehicle Front Slight #> 679 None No impact Slight #> 680 None No impact Serious #> 681 None No impact Slight #> 682 None No impact Slight #> 683 Pedestrian Front Slight #> 684 None No impact Slight #> 685 Pedestrian Nearside Slight #> 686 Vehicle Back Slight #> 687 Vehicle Back Slight #> 688 Vehicle Front Slight #> 689 Vehicle Back Slight #> 690 Vehicle Back Serious #> 691 Vehicle Back Serious #> 692 Vehicle Front Serious #> 693 Vehicle Back Slight #> 694 Vehicle Front Slight #> 695 Vehicle Back Slight #> 696 Vehicle Front Slight #> 697 Vehicle Back Slight #> 698 Vehicle Back Slight #> 699 Vehicle Front Slight #> 700 Pedestrian Back Slight #> 701 Vehicle Nearside Slight #> 702 Vehicle Nearside Slight #> 703 Vehicle Offside Slight #> 704 Pedestrian barrier rail Front Slight #> 705 Pedestrian Front Slight #> 706 None No impact Slight #> 707 None No impact Slight #> 708 Vehicle Back Slight #> 709 Vehicle Front Slight #> 710 None No impact Slight #> 711 Vehicle Offside Slight #> 712 Vehicle Front Slight #> 713 Vehicle Nearside Slight #> 714 Vehicle Front Slight #> 715 None No impact Serious #> 716 Pedestrian Front Slight #> 717 None No impact Slight #> 718 None No impact Slight #> 719 None No impact Slight #> 720 Pedestrian Offside Serious #> 721 None No impact Slight #> 722 None No impact Slight #> 723 Vehicle Front Serious #> 724 Vehicle Offside Serious #> 725 None No impact Slight #> 726 None No impact Slight #> 727 None No impact Serious #> 728 Vehicle Front Slight #> 729 Vehicle Back Slight #> 730 Vehicle Nearside Slight #> 731 Vehicle Front Slight #> 732 None No impact Slight #> 733 None No impact Slight #> 734 Vehicle Back Slight #> 735 Vehicle Front Slight #> 736 None No impact Slight #> 737 Pedestrian Nearside Serious #> 738 Pedestrian Front Slight #> 739 Pedestrian Front Serious #> 740 Vehicle Back Slight #> 741 Vehicle Front Slight #> 742 None No impact Slight #> 743 Pedestrian Front Slight #> 744 Pedestrian Front Slight #> 745 Vehicle Nearside Slight #> 746 Vehicle Offside Slight #> 747 Pedestrian Front Serious #> 748 None No impact Slight #> 749 None No impact Slight #> 750 Pedestrian Nearside Slight #> 751 Pedestrian Back Slight #> 752 None No impact Slight #> 753 Pedestrian Front Slight #> 754 Wall or bridge parapet Offside Slight #> 755 Pedestrian Nearside Slight #> 756 Pedestrian Front Slight #> 757 Vehicle Front Slight #> 758 Vehicle Front Slight #> 759 None No impact Slight #> 760 None No impact Slight #> 761 Vehicle Front Slight #> 762 Vehicle Back Slight #> 763 None No impact Slight #> 764 None No impact Slight #> 765 None No impact Slight #> 766 Pedestrian Offside Slight #> 767 Pedestrian Front Serious #> 768 Vehicle Back Slight #> 769 Vehicle Front Slight #> 770 None No impact Slight #> 771 Vehicle Back Slight #> 772 Vehicle Front Slight #> 773 Wall or bridge parapet Offside Slight #> 774 None Unknown Slight #> 775 None No impact Slight #> 776 None No impact Slight #> 777 Wall or bridge parapet Front Serious #> 778 None No impact Serious #> 779 Vehicle Back Slight #> 780 Vehicle Front Slight #> 781 Vehicle Unknown Slight #> 782 Vehicle Unknown Slight #> 783 Vehicle Nearside Slight #> 784 Vehicle Offside Slight #> 785 Pedestrian Nearside Slight #> 786 None No impact Slight #> 787 Vehicle Back Slight #> 788 Vehicle Front Slight #> 789 Vehicle Front Slight #> 790 Vehicle Back Slight #> 791 None No impact Slight #> 792 None No impact Slight #> 793 None No impact Slight #> 794 Pedestrian Front Slight #> 795 Vehicle Front Slight #> 796 Vehicle Front Slight #> 797 Vehicle Front Serious #> 798 Vehicle Front Serious #> 799 Pedestrian Front Slight #> 800 Pedestrian Front Slight #> 801 None No impact Slight #> 802 Vehicle Nearside Slight #> 803 Vehicle Offside Slight #> 804 Lamp-post or telephone-post Front Serious #> 805 Vehicle Front Slight #> 806 Vehicle Nearside Slight #> 807 Other Offside Slight #> 808 Pedestrian Front Slight #> 809 Vehicle Front Slight #> 810 Vehicle Back Slight #> 811 None No impact Slight #> 812 None No impact Slight #> 813 None No impact Slight #> 814 Vehicle Front Slight #> 815 Vehicle Back Slight #> 816 None No impact Slight #> 817 None No impact Slight #> 818 Pedestrian Nearside Serious #> 819 None No impact Serious #> 820 Vehicle Back Slight #> 821 Vehicle Front Slight #> 822 Vehicle Back Slight #> 823 Vehicle Front Slight #> 824 Vehicle Back Slight #> 825 Vehicle Back Slight #> 826 Vehicle Front Slight #> 827 Vehicle Back Slight #> 828 Vehicle Front Slight #> 829 Vehicle Front Slight #> 830 Vehicle Back Slight #> 831 None No impact Slight #> 832 Crash barrier Nearside Slight #> 833 Pedestrian barrier rail Front Slight #> 834 Vehicle Nearside Slight #> 835 Vehicle Offside Slight #> 836 Vehicle Offside Slight #> 837 Vehicle Nearside Slight #> 838 Other Front Slight #> 839 Vehicle Nearside Slight #> 840 Vehicle Front Slight #> 841 None No impact Slight #> 842 None No impact Slight #> 843 None No impact Slight #> 844 None No impact Slight #> 845 None No impact Slight #> 846 None No impact Slight #> 847 Vehicle Back Slight #> 848 Vehicle Front Slight #> 849 Vehicle No impact Slight #> 850 Vehicle Nearside Slight #> 851 Pedestrian Front Slight #> 852 Vehicle Back Slight #> 853 Vehicle Front Slight #> 854 Vehicle Offside Slight #> 855 Vehicle Front Slight #> 856 Vehicle Front Slight #> 857 Vehicle Back Slight #> 858 Other Front Slight #> 859 Pedestrian Front Serious #> 860 Pedestrian Front Serious #> 861 None No impact Serious #> 862 Vehicle Front Slight #> 863 Vehicle Offside Slight #> 864 Vehicle Front Serious #> 865 Vehicle Nearside Serious #> 866 Vehicle Front Serious #> 867 Vehicle Offside Serious #> 868 Pedestrian Front Slight #> 869 Pedestrian Front Serious #> 870 Fire hydrant Front Slight #> 871 None No impact Slight #> 872 Vehicle Front Slight #> 873 Vehicle Back Slight #> 874 Pedestrian Offside Slight #> 875 Vehicle Offside Slight #> 876 Vehicle Nearside Slight #> 877 Vehicle Back Serious #> 878 Vehicle Front Serious #> 879 Pedestrian Front Slight #> 880 Vehicle Offside Slight #> 881 Vehicle Nearside Slight #> 882 None No impact Slight #> 883 None No impact Slight #> 884 None No impact Slight #> 885 Vehicle Nearside Slight #> 886 Vehicle Offside Slight #> 887 Vehicle Front Slight #> 888 Vehicle Back Slight #> 889 None No impact Slight #> 890 Pedestrian Unknown Slight #> 891 None No impact Slight #> 892 Pedestrian Nearside Slight #> 893 Vehicle Offside Slight #> 894 Vehicle Nearside Slight #> 895 Vehicle Front Slight #> 896 Vehicle Front Slight #> 897 None No impact Serious #> 898 None No impact Slight #> 899 Pedestrian Front Serious #> 900 Pedestrian Front Slight #> 901 None No impact Slight #> 902 Other Offside Slight #> 903 None No impact Slight #> 904 Pedestrian Front Slight #> 905 Vehicle Back Slight #> 906 Vehicle Front Slight #> 907 Vehicle Offside Slight #> 908 Vehicle Nearside Slight #> 909 Vehicle Front Slight #> 910 Vehicle Back Slight #> 911 Vehicle Back Slight #> 912 Vehicle Front Slight #> 913 None No impact Slight #> 914 Pedestrian Back Serious #> 915 Vehicle Back Slight #> 916 Vehicle Front Slight #> 917 Vehicle Back Slight #> 918 Vehicle Front Slight #> 919 Pedestrian Back Slight #> 920 Pedestrian Offside Slight #> 921 Vehicle Back Slight #> 922 Vehicle Back Slight #> 923 Vehicle Front Slight #> 924 Vehicle Offside Slight #> 925 Vehicle Offside Slight #> 926 None No impact Slight #> 927 Wall or bridge parapet Nearside Slight #> 928 Vehicle Offside Slight #> 929 Vehicle Front Slight #> 930 Vehicle Nearside Slight #> 931 Vehicle Nearside Slight #> 932 Vehicle Front Slight #> 933 None No impact Slight #> 934 Vehicle Offside Slight #> 935 Vehicle Nearside Slight #> 936 Vehicle Front Slight #> 937 Vehicle Nearside Slight #> 938 Vehicle Back Slight #> 939 Vehicle Back Slight #> 940 Vehicle Back Slight #> 941 Vehicle Back Slight #> 942 Vehicle Front Slight #> 943 Vehicle Offside Slight #> 944 Vehicle Front Slight #> 945 Vehicle Front Slight #> 946 Lamp-post or telephone-post Front Slight #> 947 Pedestrian Offside Slight #> 948 None No impact Slight #> 949 Crash barrier Front Serious #> 950 Pedestrian Front Slight #> 951 Vehicle Nearside Slight #> 952 Vehicle Offside Slight #> 953 None No impact Slight #> 954 Other Front Slight #> 955 None No impact Serious #> 956 Vehicle Offside Slight #> 957 Vehicle Nearside Slight #> 958 Vehicle Front Slight #> 959 Vehicle Back Slight #> 960 Vehicle Back Slight #> 961 Vehicle Front Slight #> 962 None No impact Slight #> 963 Vehicle Back Slight #> 964 Vehicle Front Slight #> 965 Vehicle Back Slight #> 966 Vehicle Front Slight #> 967 Vehicle Back Slight #> 968 Vehicle Back Slight #> 969 Pedestrian Offside Slight #> 970 None No impact Serious #> 971 Vehicle Front Slight #> 972 Vehicle Back Slight #> 973 Pedestrian Nearside Slight #> 974 None No impact Slight #> 975 Vehicle Back Slight #> 976 Vehicle Front Slight #> 977 Vehicle Back Slight #> 978 Vehicle Back Slight #> 979 Vehicle Back Slight #> 980 None No impact Slight #> 981 None No impact Slight #> 982 Pedestrian Front Slight #> 983 Pedestrian Back Slight #> 984 Vehicle Back Slight #> 985 Vehicle Front Slight #> 986 Vehicle Back Slight #> 987 Vehicle Front Slight #> 988 Vehicle Back Slight #> 989 None No impact Serious #> 990 None No impact Slight #> 991 None No impact Slight #> 992 Pedestrian Offside Slight #> 993 None No impact Fatal #> 994 Vehicle Offside Slight #> 995 Vehicle Nearside Slight #> 996 None No impact Slight #> 997 None No impact Slight #> 998 Vehicle Offside Serious #> 999 Vehicle No impact Serious #> 1000 Vehicle Front Slight #> 1001 Vehicle Back Slight #> 1002 Pedestrian Nearside Serious #> 1003 None No impact Slight #> 1004 None No impact Slight #> 1005 Pedestrian Back Slight #> 1006 None No impact Slight #> 1007 Vehicle Nearside Slight #> 1008 Vehicle Front Slight #> 1009 Vehicle Offside Slight #> 1010 Vehicle Nearside Slight #> 1011 Pedestrian Front Serious #> 1012 Vehicle Back Slight #> 1013 Vehicle Front Slight #> 1014 Pedestrian Front Slight #> 1015 Pedestrian Nearside Slight #> 1016 Vehicle Back Slight #> 1017 Vehicle Front Slight #> 1018 Vehicle Back Slight #> 1019 Pedestrian Front Slight #> 1020 Vehicle Back Slight #> 1021 Vehicle Front Slight #> 1022 Vehicle Front Slight #> 1023 Vehicle Back Slight #> 1024 None No impact Slight #> 1025 Pedestrian Front Slight #> 1026 Pedestrian Front Slight #> 1027 Vehicle Offside Slight #> 1028 Vehicle Front Slight #> 1029 Traffic signal post Front Slight #> 1030 None No impact Serious #> 1031 None No impact Slight #> 1032 Pedestrian Back Slight #> 1033 Pedestrian Offside Slight #> 1034 Vehicle Front Serious #> 1035 Vehicle Nearside Serious #> 1036 Vehicle Offside Serious #> 1037 Vehicle Front Slight #> 1038 Vehicle Back Slight #> 1039 Vehicle Nearside Slight #> 1040 Vehicle Offside Slight #> 1041 Vehicle Back Slight #> 1042 Vehicle Front Slight #> 1043 Vehicle Front Slight #> 1044 Vehicle Front Slight #> 1045 Pedestrian Nearside Slight #> 1046 Pedestrian Front Slight #> 1047 None No impact Serious #> 1048 None No impact Slight #> 1049 None No impact Slight #> 1050 Vehicle Front Slight #> 1051 Vehicle Back Slight #> 1052 Vehicle Nearside Serious #> 1053 Vehicle Front Serious #> 1054 None No impact Serious #> 1055 Vehicle Offside Serious #> 1056 Other Nearside Slight #> 1057 Vehicle Back Slight #> 1058 Vehicle Front Slight #> 1059 Other Back Slight #> 1060 None No impact Slight #> 1061 Vehicle Front Slight #> 1062 Vehicle Front Slight #> 1063 None No impact Slight #> 1064 Vehicle Offside Slight #> 1065 Vehicle Nearside Slight #> 1066 Pedestrian Offside Slight #> 1067 Vehicle Nearside Slight #> 1068 Vehicle Front Slight #> 1069 Vehicle Nearside Slight #> 1070 Vehicle Offside Slight #> 1071 Vehicle Offside Slight #> 1072 Vehicle Nearside Slight #> 1073 Vehicle Nearside Slight #> 1074 Vehicle Offside Slight #> 1075 Vehicle Back Slight #> 1076 Vehicle Front Slight #> 1077 Pedestrian Nearside Slight #> 1078 Crash barrier Front Slight #> 1079 Pedestrian Nearside Slight #> 1080 Vehicle Front Slight #> 1081 Vehicle Back Slight #> 1082 Vehicle Back Slight #> 1083 Vehicle Offside Slight #> 1084 Vehicle Nearside Slight #> 1085 None No impact Slight #> 1086 None No impact Slight #> 1087 Pedestrian Front Slight #> 1088 Vehicle Front Slight #> 1089 Vehicle Back Slight #> 1090 None No impact Slight #> 1091 Vehicle Front Slight #> 1092 Vehicle Front Slight #> 1093 Pedestrian Front Slight #> 1094 Pedestrian Front Slight #> 1095 Pedestrian Front Slight #> 1096 Vehicle Front Slight #> 1097 Vehicle Offside Slight #> 1098 Vehicle Nearside Slight #> 1099 Vehicle Offside Slight #> 1100 Pedestrian Front Slight #> 1101 None No impact Slight #> 1102 Pedestrian Front Fatal #> 1103 Pedestrian Nearside Slight #> 1104 Vehicle Back Slight #> 1105 Vehicle Front Slight #> 1106 Pedestrian Offside Slight #> 1107 Pedestrian Front Slight #> 1108 Pedestrian Back Slight #> 1109 Pedestrian Front Slight #> 1110 Vehicle Back Slight #> 1111 None No impact Slight #> 1112 Vehicle Front Slight #> 1113 Vehicle Back Slight #> 1114 None No impact Slight #> 1115 Pedestrian Front Slight #> 1116 Vehicle Front Serious #> 1117 Vehicle Offside Serious #> 1118 Vehicle Offside Slight #> 1119 Vehicle Back Slight #> 1120 None No impact Slight #> 1121 None No impact Slight #> 1122 None No impact Slight #> 1123 Pedestrian Nearside Slight #> 1124 Pedestrian Front Serious #> 1125 None No impact Slight #> 1126 None No impact Slight #> 1127 Vehicle Front Slight #> 1128 Vehicle Back Slight #> 1129 Vehicle Front Slight #> 1130 Vehicle Back Slight #> 1131 Vehicle Front Slight #> 1132 Vehicle Front Slight #> 1133 Pedestrian Nearside Slight #> 1134 Pedestrian Front Slight #> 1135 Vehicle Offside Slight #> 1136 Vehicle Front Slight #> 1137 Pedestrian Back Slight #> 1138 Pedestrian Offside Slight #> 1139 Vehicle Nearside Slight #> 1140 Vehicle Offside Slight #> 1141 None No impact Serious #> 1142 Pedestrian Front Slight #> 1143 Vehicle Offside Slight #> 1144 Vehicle Nearside Slight #> 1145 Pedestrian Front Slight #> 1146 Pedestrian Front Slight #> 1147 None No impact Slight #> 1148 Bollard Front Slight #> 1149 Pedestrian Front Slight #> 1150 None No impact Slight #> 1151 None No impact Slight #> 1152 Vehicle Front Slight #> 1153 Vehicle Back Slight #> 1154 Pedestrian Nearside Slight #> 1155 Vehicle Front Serious #> 1156 Vehicle Back Serious #> 1157 Bollard Front Serious #> 1158 Pedestrian Front Slight #> 1159 Vehicle Front Slight #> 1160 Vehicle Front Slight #> 1161 Pedestrian Nearside Slight #> 1162 Vehicle Back Slight #> 1163 Vehicle Back Slight #> 1164 Vehicle Front Slight #> 1165 Vehicle Back Slight #> 1166 Vehicle Front Slight #> 1167 None No impact Slight #> 1168 Pedestrian Offside Slight #> 1169 Pedestrian Offside Slight #> 1170 Vehicle Back Slight #> 1171 Vehicle Front Slight #> 1172 None No impact Slight #> 1173 Vehicle Front Slight #> 1174 Vehicle Back Slight #> 1175 Vehicle Back Slight #> 1176 Vehicle Back Slight #> 1177 Vehicle Front Slight #> 1178 None No impact Slight #> 1179 Vehicle Back Slight #> 1180 Vehicle Front Slight #> 1181 Vehicle Front Slight #> 1182 Vehicle Back Slight #> 1183 Pedestrian Front Slight #> 1184 None No impact Slight #> 1185 Pedestrian Front Slight #> 1186 Vehicle Back Slight #> 1187 Vehicle Back Slight #> 1188 Vehicle Back Slight #> 1189 Vehicle Front Slight #> 1190 Pedestrian Front Slight #> 1191 Pedestrian Front Slight #> 1192 Vehicle Front Slight #> 1193 Vehicle Back Slight #> 1194 Vehicle Back Serious #> 1195 Vehicle Front Serious #> 1196 Road sign Front Slight #> 1197 Pedestrian Front Serious #> 1198 Vehicle Front Serious #> 1199 Vehicle Back Serious #> 1200 Vehicle Nearside Slight #> 1201 None No impact Slight #> 1202 Vehicle Offside Slight #> 1203 Vehicle Back Slight #> 1204 Vehicle Front Slight #> 1205 Other Offside Slight #> 1206 Pedestrian Front Serious #> 1207 None No impact Slight #> 1208 Vehicle Front Slight #> 1209 Vehicle Nearside Slight #> 1210 Pedestrian Back Slight #> 1211 Pedestrian Front Slight #> 1212 None No impact Slight #> 1213 None No impact Slight #> 1214 None No impact Slight #> 1215 Other Front Slight #> 1216 Vehicle Offside Slight #> 1217 Vehicle Nearside Slight #> 1218 Pedestrian Back Slight #> 1219 Vehicle Front Slight #> 1220 Vehicle Front Slight #> 1221 Vehicle Front Slight #> 1222 Vehicle Back Slight #> 1223 Vehicle Front Serious #> 1224 Vehicle Offside Serious #> 1225 Vehicle Back Serious #> 1226 Vehicle Front Serious #> 1227 None No impact Slight #> 1228 None No impact Serious #> 1229 Pedestrian Front Slight #> 1230 Vehicle Offside Slight #> 1231 Vehicle Front Slight #> 1232 None No impact Slight #> 1233 Vehicle Back Slight #> 1234 Vehicle Front Slight #> 1235 Pedestrian Front Slight #> 1236 None No impact Serious #> 1237 Pedestrian Front Slight #> 1238 Vehicle Front Slight #> 1239 Vehicle Offside Slight #> 1240 Vehicle Front Slight #> 1241 None No impact Serious #> 1242 None No impact Slight #> 1243 Pedestrian Front Slight #> 1244 Wall or bridge parapet Nearside Slight #> 1245 None No impact Slight #> 1246 None No impact Slight #> 1247 None No impact Slight #> 1248 None No impact Slight #> 1249 None Back Slight #> 1250 Vehicle Front Slight #> 1251 None No impact Slight #> 1252 None No impact Slight #> 1253 None No impact Slight #> 1254 None No impact Slight #> 1255 Vehicle Back Slight #> 1256 Vehicle Front Slight #> 1257 None No impact Slight #> 1258 None No impact Slight #> 1259 Pedestrian Nearside Slight #> 1260 None No impact Slight #> 1261 None No impact Slight #> 1262 None No impact Slight #> 1263 Vehicle Front Slight #> 1264 Vehicle Back Slight #> 1265 Vehicle Back Slight #> 1266 Vehicle Front Slight #> 1267 Vehicle Front Slight #> 1268 Vehicle Front Slight #> 1269 Vehicle Back Slight #> 1270 Vehicle Back Slight #> 1271 Vehicle Front Slight #> 1272 Vehicle Offside Slight #> 1273 Vehicle Front Slight #> 1274 Vehicle Front Slight #> 1275 Vehicle Offside Slight #> 1276 Pedestrian Nearside Slight #> 1277 Vehicle Front Slight #> 1278 Vehicle Back Slight #> 1279 Pedestrian Nearside Slight #> 1280 Wall or bridge parapet Front Serious #> 1281 Vehicle Back Slight #> 1282 Vehicle Front Slight #> 1283 Vehicle Back Slight #> 1284 Vehicle Front Slight #> 1285 Vehicle Nearside Serious #> 1286 Vehicle Offside Serious #> 1287 Pedestrian Back Slight #> 1288 Vehicle Front Serious #> 1289 Vehicle Front Serious #> 1290 None No impact Slight #> 1291 Vehicle Back Slight #> 1292 Vehicle Front Slight #> 1293 Pedestrian Nearside Serious #> 1294 Pedestrian Front Fatal #> 1295 None No impact Fatal #> 1296 Pedestrian Front Slight #> 1297 Pedestrian Front Slight #> 1298 Pedestrian Nearside Slight #> 1299 Vehicle Back Slight #> 1300 Vehicle Front Slight #> 1301 Vehicle Front Slight #> 1302 Vehicle Back Slight #> 1303 Vehicle Back Slight #> 1304 Vehicle Front Slight #> 1305 Pedestrian Nearside Slight #> 1306 Pedestrian Offside Slight #> 1307 Vehicle Back Slight #> 1308 Vehicle Front Slight #> 1309 Vehicle Back Slight #> 1310 None No impact Slight #> 1311 Vehicle Front Slight #> 1312 Vehicle Back Slight #> 1313 Vehicle Back Slight #> 1314 Vehicle Front Slight #> 1315 Crash barrier Offside Slight #> 1316 Vehicle Offside Slight #> 1317 None No impact Slight #> 1318 None No impact Slight #> 1319 None No impact Slight #> 1320 Vehicle No impact Slight #> 1321 Pedestrian Front Slight #> 1322 Vehicle Front Slight #> 1323 Vehicle Nearside Slight #> 1324 Pedestrian Back Slight #> 1325 Vehicle Front Slight #> 1326 Vehicle Front Slight #> 1327 Vehicle Front Slight #> 1328 Vehicle Offside Slight #> 1329 Vehicle Back Slight #> 1330 Vehicle Front Slight #> 1331 Vehicle Back Slight #> 1332 Vehicle Back Slight #> 1333 Vehicle Front Slight #> 1334 Pedestrian Nearside Slight #> 1335 Pedestrian Front Slight #> 1336 Vehicle Front Slight #> 1337 Vehicle Nearside Slight #> 1338 None No impact Slight #> 1339 Vehicle Nearside Slight #> 1340 Vehicle Front Slight #> 1341 Vehicle Back Slight #> 1342 Vehicle Front Slight #> 1343 Pedestrian Front Slight #> 1344 Pedestrian Front Serious #> 1345 None No impact Slight #> 1346 Pedestrian Front Serious #> 1347 Pedestrian Front Slight #> 1348 Vehicle Offside Slight #> 1349 Vehicle Front Slight #> 1350 None No impact Slight #> 1351 Crash barrier Nearside Slight #> 1352 None No impact Slight #> 1353 Vehicle Back Slight #> 1354 Vehicle Front Slight #> 1355 Pedestrian Front Slight #> 1356 Vehicle Back Slight #> 1357 Vehicle Front Slight #> 1358 Vehicle Back Slight #> 1359 None No impact Slight #> 1360 None No impact Slight #> 1361 Vehicle Offside Slight #> 1362 Vehicle Offside Slight #> 1363 None No impact Slight #> 1364 None No impact Slight #> 1365 Pedestrian Offside Slight #> 1366 Road sign Offside Slight #> 1367 Vehicle Back Slight #> 1368 Vehicle Front Slight #> 1369 Vehicle Front Slight #> 1370 Vehicle Back Slight #> 1371 Vehicle Front Slight #> 1372 Vehicle Front Slight #> 1373 Tree Front Slight #> 1374 None No impact Slight #> 1375 Pedestrian Front Serious #> 1376 Pedestrian Nearside Slight #> 1377 Crash barrier Offside Serious #> 1378 None No impact Slight #> 1379 Vehicle Back Slight #> 1380 Vehicle Front Slight #> 1381 Pedestrian Offside Serious #> 1382 Vehicle Nearside Slight #> 1383 Vehicle Front Slight #> 1384 Pedestrian Front Slight #> 1385 Vehicle Front Slight #> 1386 Vehicle Back Slight #> 1387 None No impact Serious #> 1388 Pedestrian Nearside Slight #> 1389 Pedestrian Back Slight #> 1390 None No impact Slight #> 1391 Pedestrian Front Slight #> 1392 Vehicle Offside Serious #> 1393 Vehicle Front Serious #> 1394 Vehicle Offside Slight #> 1395 Vehicle Front Slight #> 1396 None No impact Slight #> 1397 None No impact Slight #> 1398 Loose object on carriageway Nearside Slight #> 1399 None No impact Slight #> 1400 Vehicle Nearside Slight #> 1401 Vehicle Front Slight #> 1402 Pedestrian Front Slight #> 1403 Vehicle Back Slight #> 1404 Vehicle Front Slight #> 1405 Pedestrian Front Slight #> 1406 Vehicle Nearside Slight #> 1407 Vehicle Offside Slight #> 1408 Vehicle Front Slight #> 1409 Vehicle Offside Slight #> 1410 Vehicle Front Slight #> 1411 Vehicle Front Slight #> 1412 Vehicle Front Slight #> 1413 Vehicle Offside Slight #> 1414 Pedestrian Offside Slight #> 1415 None No impact Slight #> 1416 Pedestrian Nearside Slight #> 1417 Vehicle Back Slight #> 1418 Vehicle Front Slight #> 1419 Vehicle Offside Slight #> 1420 Vehicle Front Slight #> 1421 Vehicle Back Slight #> 1422 Pedestrian Back Slight #> 1423 Vehicle Front Slight #> 1424 Vehicle Back Slight #> 1425 Vehicle Front Slight #> 1426 Vehicle Front Slight #> 1427 Vehicle Front Slight #> 1428 Vehicle Front Slight #> 1429 Vehicle Front Slight #> 1430 Vehicle Back Slight #> 1431 Vehicle Front Slight #> 1432 None No impact Slight #> 1433 Pedestrian Front Slight #> 1434 Pedestrian Nearside Slight #> 1435 Pedestrian Front Serious #> 1436 Vehicle Nearside Slight #> 1437 Vehicle Front Slight #> 1438 Vehicle Front Serious #> 1439 Vehicle Front Serious #> 1440 None No impact Serious #> 1441 Pedestrian Front Serious #> 1442 None No impact Slight #> 1443 None No impact Slight #> 1444 Vehicle Back Serious #> 1445 Vehicle Back Serious #> 1446 Vehicle Front Serious #> 1447 None No impact Slight #> 1448 Pedestrian Front Serious #> 1449 Pedestrian Front Slight #> 1450 Vehicle Front Slight #> 1451 Vehicle Back Slight #> 1452 Pedestrian Front Slight #> 1453 None No impact Slight #> 1454 Pedestrian Front Slight #> 1455 Vehicle Back Slight #> 1456 Vehicle Front Slight #> 1457 Vehicle Back Slight #> 1458 Pedestrian Back Slight #> 1459 Pedestrian Front Slight #> 1460 Pedestrian Front Slight #> 1461 Vehicle Nearside Slight #> 1462 Vehicle Offside Slight #> 1463 Vehicle Front Slight #> 1464 Vehicle Front Slight #> 1465 Vehicle Front Slight #> 1466 Vehicle Back Slight #> 1467 Vehicle Back Slight #> 1468 Vehicle Front Slight #> 1469 Vehicle Back Slight #> 1470 Vehicle Front Slight #> 1471 Pedestrian Nearside Slight #> 1472 Vehicle Front Slight #> 1473 Vehicle Back Slight #> 1474 Vehicle Offside Serious #> 1475 Vehicle Nearside Serious #> 1476 Vehicle Front Serious #> 1477 Vehicle Back Serious #> 1478 None No impact Slight #> 1479 Vehicle Front Slight #> 1480 Vehicle Back Slight #> 1481 Skips Front Slight #> 1482 Pedestrian Front Serious #> 1483 None No impact Slight #> 1484 Crash barrier Nearside Slight #> 1485 Other Nearside Slight #> 1486 None No impact Slight #> 1487 None No impact Slight #> 1488 Pedestrian Front Slight #> 1489 Pedestrian Front Serious #> 1490 Vehicle Front Serious #> 1491 Vehicle Offside Serious #> 1492 Pedestrian Front Slight #> 1493 Vehicle Front Slight #> 1494 Vehicle Front Slight #> 1495 Pedestrian Nearside Slight #> 1496 Pedestrian Back Slight #> 1497 Pedestrian Nearside Serious #> 1498 Pedestrian Front Slight #> 1499 None No impact Slight #> 1500 Vehicle Nearside Slight #> 1501 Vehicle Offside Slight #> 1502 Vehicle Back Slight #> 1503 Vehicle Front Slight #> 1504 None No impact Slight #> 1505 Pedestrian barrier rail Front Slight #> 1506 Pedestrian Front Serious #> 1507 Pedestrian Front Serious #> 1508 Vehicle Front Slight #> 1509 Vehicle Back Slight #> 1510 Vehicle Back Slight #> 1511 Vehicle Back Slight #> 1512 Vehicle Front Slight #> 1513 Vehicle Back Slight #> 1514 Vehicle Front Slight #> 1515 Pedestrian Back Slight #> 1516 Pedestrian Front Slight #> 1517 Pedestrian Offside Slight #> 1518 Vehicle Back Slight #> 1519 Vehicle Front Slight #> 1520 Pedestrian Front Slight #> 1521 Pedestrian Front Slight #> 1522 Vehicle Back Slight #> 1523 Vehicle Front Slight #> 1524 Crash barrier Front Slight #> 1525 Vehicle Back Slight #> 1526 Vehicle Front Slight #> 1527 Vehicle Back Slight #> 1528 Vehicle Front Slight #> 1529 Pedestrian Front Slight #> 1530 Pedestrian Offside Slight #> 1531 None No impact Slight #> 1532 Vehicle Back Slight #> 1533 Vehicle Front Slight #> 1534 Pedestrian Nearside Slight #> 1535 Vehicle Back Slight #> 1536 Vehicle Front Slight #> 1537 Vehicle Back Slight #> 1538 Vehicle Back Slight #> 1539 Vehicle Front Slight #> 1540 Pedestrian Nearside Slight #> 1541 None No impact Slight #> 1542 None No impact Slight #> 1543 None No impact Slight #> 1544 None No impact Slight #> 1545 Vehicle Front Slight #> 1546 Vehicle Front Slight #> 1547 Pedestrian Offside Slight #> 1548 None No impact Slight #> 1549 Pedestrian Front Slight #> 1550 Pedestrian Front Serious #> 1551 None No impact Slight #> 1552 Vehicle Back Slight #> 1553 Vehicle Front Slight #> 1554 Pedestrian Front Serious #> 1555 Pedestrian Nearside Slight #> 1556 None No impact Slight #> 1557 None No impact Slight #> 1558 Vehicle Nearside Slight #> 1559 Vehicle Offside Slight #> 1560 Vehicle Back Slight #> 1561 Vehicle Front Slight #> 1562 None No impact Slight #> 1563 Vehicle Offside Slight #> 1564 Vehicle Nearside Slight #> 1565 Vehicle Nearside Slight #> 1566 Vehicle Offside Slight #> 1567 Vehicle Nearside Slight #> 1568 Vehicle Front Slight #> 1569 Pedestrian Front Slight #> 1570 Vehicle Back Slight #> 1571 Vehicle Front Slight #> 1572 None No impact Slight #> 1573 Vehicle Nearside Slight #> 1574 Vehicle Front Slight #> 1575 Vehicle Offside Slight #> 1576 Vehicle Front Slight #> 1577 Vehicle Front Slight #> 1578 Vehicle Nearside Slight #> 1579 Tree Front Slight #> 1580 Pedestrian Front Slight #> 1581 Pedestrian Front Slight #> 1582 None No impact Serious #> 1583 Vehicle Offside Slight #> 1584 Vehicle Front Slight #> 1585 Pedestrian Front Slight #> 1586 Crash barrier Nearside Slight #> 1587 Crash barrier Front Slight #> 1588 None No impact Slight #> 1589 None No impact Slight #> 1590 None No impact Slight #> 1591 Vehicle Offside Slight #> 1592 Vehicle Nearside Slight #> 1593 Pedestrian Front Serious #> 1594 Vehicle Front Slight #> 1595 Vehicle Back Slight #> 1596 None No impact Serious #> 1597 None No impact Serious #> 1598 Vehicle Nearside Slight #> 1599 Vehicle Front Slight #> 1600 None No impact Slight #> 1601 Vehicle Nearside Slight #> 1602 Vehicle Front Slight #> 1603 Vehicle Offside Serious #> 1604 Vehicle Front Serious #> 1605 Pedestrian Offside Slight #> 1606 None No impact Serious #> 1607 Vehicle Offside Slight #> 1608 Vehicle Front Slight #> 1609 Pedestrian Nearside Slight #> 1610 Vehicle Front Slight #> 1611 Vehicle Back Slight #> 1612 Vehicle Offside Slight #> 1613 Vehicle Nearside Slight #> 1614 Pedestrian Nearside Slight #> 1615 Vehicle Back Slight #> 1616 Vehicle Front Slight #> 1617 Vehicle Front Slight #> 1618 Vehicle Back Slight #> 1619 None No impact Slight #> 1620 Vehicle Nearside Serious #> 1621 Vehicle Front Serious #> 1622 Vehicle Back Slight #> 1623 Vehicle Front Slight #> 1624 Pedestrian Front Slight #> 1625 Vehicle Front Slight #> 1626 Vehicle Back Slight #> 1627 Pedestrian Front Slight #> 1628 None No impact Serious #> 1629 Pedestrian Front Slight #> 1630 Crash barrier Front Slight #> 1631 Vehicle Nearside Slight #> 1632 Vehicle Front Slight #> 1633 Vehicle Front Slight #> 1634 Vehicle Back Slight #> 1635 Pedestrian Nearside Serious #> 1636 Pedestrian Nearside Slight #> 1637 Pedestrian Front Serious #> 1638 Pedestrian Front Serious #> 1639 Pedestrian Front Slight #> 1640 Vehicle Back Slight #> 1641 Vehicle Front Slight #> 1642 None No impact Serious #> 1643 Pedestrian Front Slight #> 1644 Vehicle Front Slight #> 1645 Vehicle Back Slight #> 1646 Pedestrian Nearside Slight #> 1647 Pedestrian Front Slight #> 1648 Pedestrian Front Serious #> 1649 Vehicle Front Slight #> 1650 Vehicle Front Slight #> 1651 Pedestrian Front Slight #> 1652 Pedestrian Front Serious #> 1653 Vehicle Front Slight #> 1654 Vehicle Back Slight #> 1655 Vehicle Front Serious #> 1656 None No impact Serious #> 1657 Vehicle Back Serious #> 1658 Pedestrian Front Slight #> 1659 Vehicle Back Slight #> 1660 Vehicle Front Slight #> 1661 Vehicle Back Slight #> 1662 Vehicle Back Slight #> 1663 Vehicle Offside Slight #> 1664 Pedestrian Front Slight #> 1665 Vehicle Front Slight #> 1666 Vehicle Back Slight #> 1667 Vehicle Offside Slight #> 1668 Vehicle Nearside Slight #> 1669 Vehicle Offside Slight #> 1670 Vehicle Nearside Slight #> 1671 Pedestrian Front Slight #> 1672 None No impact Slight #> 1673 None No impact Slight #> 1674 Pedestrian Front Serious #> 1675 Vehicle Front Slight #> 1676 Vehicle Back Slight #> 1677 None No impact Slight #> 1678 Animal Nearside Slight #> 1679 None No impact Slight #> 1680 None No impact Slight #> 1681 None No impact Slight #> 1682 None No impact Slight #> 1683 Pedestrian Nearside Slight #> 1684 Pedestrian Front Serious #> 1685 Pedestrian Offside Serious #> 1686 None No impact Slight #> 1687 Crash barrier Front Slight #> 1688 Vehicle Front Slight #> 1689 Vehicle Front Slight #> 1690 Pedestrian Nearside Slight #> 1691 Pedestrian Front Slight #> 1692 Pedestrian Nearside Slight #> 1693 None No impact Slight #> 1694 Vehicle Front Slight #> 1695 Vehicle Front Slight #> 1696 Pedestrian Back Slight #> 1697 None No impact Slight #> 1698 Pedestrian Nearside Slight #> 1699 None No impact Slight #> 1700 None No impact Slight #> 1701 Pedestrian Front Slight #> 1702 None No impact Slight #> 1703 None No impact Slight #> 1704 None No impact Serious #> 1705 Vehicle Front Slight #> 1706 Vehicle Front Slight #> 1707 Vehicle Offside Slight #> 1708 Vehicle Nearside Slight #> 1709 Vehicle Front Slight #> 1710 Vehicle Back Slight #> 1711 Vehicle Front Slight #> 1712 Vehicle Front Slight #> 1713 Vehicle Back Slight #> 1714 Vehicle Nearside Slight #> 1715 None No impact Slight #> 1716 Vehicle Front Slight #> 1717 Vehicle Offside Slight #> 1718 Vehicle Nearside Slight #> 1719 Vehicle Offside Slight #> 1720 Vehicle Front Slight #> 1721 Vehicle Back Slight #> 1722 Pedestrian Nearside Slight #> 1723 Wall or bridge parapet Offside Slight #> 1724 Vehicle Front Slight #> 1725 Vehicle Back Slight #> 1726 Vehicle Back Slight #> 1727 Vehicle Front Slight #> 1728 Vehicle Back Slight #> 1729 Vehicle Front Slight #> 1730 Vehicle Back Slight #> 1731 Vehicle Back Slight #> 1732 None No impact Slight #> 1733 Vehicle Front Slight #> 1734 Vehicle Front Slight #> 1735 Vehicle Front Slight #> 1736 Vehicle Back Slight #> 1737 None No impact Slight #> 1738 None No impact Serious #> 1739 Utility company equipment Back Slight #> 1740 None No impact Serious #> 1741 Vehicle Back Slight #> 1742 Vehicle Front Slight #> 1743 Vehicle Front Slight #> 1744 Vehicle Back Slight #> 1745 Vehicle Front Slight #> 1746 Vehicle Back Slight #> 1747 Pedestrian Front Slight #> 1748 Vehicle Back Slight #> 1749 Vehicle Front Slight #> 1750 None No impact Slight #> 1751 Pedestrian Nearside Serious #> 1752 Pedestrian Front Slight #> 1753 Vehicle Front Slight #> 1754 Vehicle Offside Slight #> 1755 Vehicle Front Slight #> 1756 Vehicle Back Slight #> 1757 None No impact Slight #> 1758 None No impact Slight #> 1759 Vehicle Back Slight #> 1760 Vehicle Front Slight #> 1761 Vehicle Back Slight #> 1762 None No impact Slight #> 1763 Vehicle Front Slight #> 1764 Vehicle Back Slight #> 1765 None No impact Slight #> 1766 Pedestrian Front Slight #> 1767 None No impact Slight #> 1768 Vehicle Front Slight #> 1769 Vehicle Front Slight #> 1770 Pedestrian Offside Slight #> 1771 Vehicle Back Slight #> 1772 Vehicle Back Slight #> 1773 Vehicle Front Slight #> 1774 None No impact Serious #> 1775 Vehicle Front Slight #> 1776 Vehicle Nearside Slight #> 1777 Vehicle Front Slight #> 1778 Vehicle Back Slight #> 1779 None No impact Slight #> 1780 Vehicle Nearside Slight #> 1781 Vehicle Offside Slight #> 1782 Pedestrian Nearside Slight #> 1783 Vehicle Offside Slight #> 1784 Vehicle Nearside Slight #> 1785 Pedestrian Nearside Serious #> 1786 None No impact Slight #> 1787 Vehicle Back Slight #> 1788 Vehicle Front Slight #> 1789 Vehicle Nearside Slight #> 1790 Vehicle Front Slight #> 1791 Vehicle Back Slight #> 1792 Vehicle Front Slight #> 1793 None No impact Slight #> 1794 Pedestrian Nearside Serious #> 1795 None No impact Slight #> 1796 None No impact Slight #> 1797 Vehicle Back Serious #> 1798 Vehicle Front Serious #> 1799 Pedestrian Nearside Slight #> 1800 Pedestrian Nearside Slight #> 1801 Pedestrian Front Slight #> 1802 Vehicle Front Slight #> 1803 Vehicle Back Slight #> 1804 Pedestrian Back Slight #> 1805 Vehicle Back Slight #> 1806 Vehicle Front Slight #> 1807 Vehicle Front Slight #> 1808 Vehicle Nearside Slight #> 1809 None No impact Slight #> 1810 None No impact Slight #> 1811 None No impact Slight #> 1812 None No impact Slight #> 1813 None No impact Slight #> 1814 None No impact Serious #> 1815 Pedestrian Front Slight #> 1816 Vehicle Offside Slight #> 1817 Vehicle Nearside Slight #> 1818 Vehicle Front Slight #> 1819 Vehicle Offside Slight #> 1820 Vehicle Front Serious #> 1821 Vehicle Back Serious #> 1822 None No impact Slight #> 1823 Vehicle Back Slight #> 1824 Vehicle Nearside Slight #> 1825 Pedestrian Nearside Slight #> 1826 Pedestrian Nearside Slight #> 1827 Tree Nearside Slight #> 1828 Vehicle Back Slight #> 1829 Vehicle Front Slight #> 1830 Vehicle Back Slight #> 1831 Pedestrian Front Slight #> 1832 Vehicle Offside Slight #> 1833 None No impact Slight #> 1834 Vehicle Back Slight #> 1835 Vehicle Nearside Slight #> 1836 Pedestrian Front Slight #> 1837 Vehicle Back Serious #> 1838 Vehicle Front Serious #> 1839 Pedestrian Front Fatal #> 1840 Vehicle Back Slight #> 1841 Vehicle Front Slight #> 1842 Pedestrian Front Serious #> 1843 Vehicle Nearside Slight #> 1844 Vehicle Nearside Slight #> 1845 Vehicle Offside Slight #> 1846 Vehicle Back Slight #> 1847 Vehicle Front Slight #> 1848 Vehicle Back Slight #> 1849 Vehicle Front Slight #> 1850 Vehicle Back Slight #> 1851 None No impact Slight #> 1852 None No impact Slight #> 1853 Vehicle Front Slight #> 1854 Vehicle Back Slight #> 1855 Vehicle Offside Slight #> 1856 Vehicle Nearside Slight #> 1857 Vehicle Front Slight #> 1858 Vehicle Offside Slight #> 1859 None No impact Slight #> 1860 None No impact Slight #> 1861 Pedestrian Back Slight #> 1862 Vehicle Back Slight #> 1863 Vehicle Front Slight #> 1864 Vehicle Offside Slight #> 1865 Vehicle Nearside Slight #> 1866 Pedestrian Nearside Slight #> 1867 None No impact Slight #> 1868 Vehicle Front Slight #> 1869 Vehicle Back Slight #> 1870 Pedestrian Nearside Serious #> 1871 Vehicle Front Slight #> 1872 Vehicle Back Slight #> 1873 Pedestrian Front Slight #> 1874 Vehicle Front Slight #> 1875 Vehicle Back Slight #> 1876 Vehicle Back Slight #> 1877 Pedestrian Front Slight #> 1878 Vehicle Offside Serious #> 1879 Vehicle No impact Serious #> 1880 Vehicle Nearside Slight #> 1881 Vehicle Back Slight #> 1882 Pedestrian Front Slight #> 1883 Pedestrian Front Slight #> 1884 Vehicle Back Slight #> 1885 Vehicle Front Slight #> 1886 Vehicle Offside Slight #> 1887 Vehicle Nearside Slight #> 1888 Vehicle Offside Slight #> 1889 Vehicle Nearside Slight #> 1890 Vehicle Offside Serious #> 1891 Vehicle Nearside Serious #> 1892 None No impact Slight #> 1893 None No impact Slight #> 1894 Vehicle Back Slight #> 1895 Vehicle Front Slight #> 1896 Vehicle Nearside Slight #> 1897 Vehicle Offside Slight #> 1898 None No impact Slight #> 1899 Vehicle Front Serious #> 1900 Vehicle Back Serious #> 1901 Vehicle Offside Slight #> 1902 Vehicle Nearside Slight #> 1903 None No impact Slight #> 1904 Vehicle Nearside Slight #> 1905 Vehicle Offside Slight #> 1906 Pedestrian Nearside Serious #> 1907 Vehicle Front Slight #> 1908 Vehicle Front Slight #> 1909 Pedestrian Front Slight #> 1910 Vehicle Offside Slight #> 1911 Vehicle Front Slight #> 1912 Vehicle Nearside Slight #> 1913 Vehicle Offside Slight #> 1914 Vehicle Front Slight #> 1915 Vehicle Back Slight #> 1916 Vehicle Front Slight #> 1917 Vehicle Nearside Slight #> 1918 Vehicle Nearside Slight #> 1919 Vehicle Offside Slight #> 1920 Vehicle Nearside Slight #> 1921 Vehicle Offside Slight #> 1922 Vehicle Front Slight #> 1923 Vehicle Front Slight #> 1924 Vehicle Nearside Slight #> 1925 None No impact Slight #> 1926 None No impact Slight #> 1927 Utility company equipment Front Slight #> 1928 Vehicle Front Serious #> 1929 Vehicle Back Serious #> 1930 None No impact Slight #> 1931 Vehicle Back Slight #> 1932 Vehicle Front Slight #> 1933 Vehicle Back Slight #> 1934 Vehicle Back Slight #> 1935 Vehicle Back Slight #> 1936 Vehicle Front Slight #> 1937 None No impact Slight #> 1938 Pedestrian Front Serious #> 1939 Pedestrian Front Serious #> 1940 Vehicle Front Slight #> 1941 Vehicle Back Slight #> 1942 Pedestrian Front Slight #> 1943 None No impact Slight #> 1944 Vehicle Offside Slight #> 1945 Vehicle Nearside Slight #> 1946 Pedestrian Front Slight #> 1947 Vehicle Back Slight #> 1948 Vehicle Front Slight #> 1949 Pedestrian Nearside Slight #> 1950 None No impact Slight #> 1951 Vehicle Front Slight #> 1952 Vehicle Back Slight #> 1953 Pedestrian Nearside Slight #> 1954 Pedestrian Front Slight #> 1955 Vehicle Front Serious #> 1956 Vehicle Nearside Serious #> 1957 Vehicle Back Slight #> 1958 Vehicle Front Slight #> 1959 None No impact Slight #> 1960 None No impact Slight #> 1961 None No impact Slight #> 1962 Pedestrian Nearside Slight #> 1963 Vehicle Offside Slight #> 1964 Vehicle Offside Slight #> 1965 Vehicle Front Serious #> 1966 Vehicle Front Serious #> 1967 Vehicle Back Slight #> 1968 Vehicle Front Slight #> 1969 Pedestrian Back Slight #> 1970 None No impact Serious #> 1971 None No impact Serious #> 1972 None No impact Slight #> 1973 Vehicle Front Slight #> 1974 Vehicle Back Slight #> 1975 Vehicle Front Slight #> 1976 Vehicle Front Slight #> 1977 Pedestrian Nearside Serious #> 1978 Pedestrian Offside Slight #> 1979 None No impact Slight #> 1980 None No impact Serious #> 1981 Wall or bridge parapet Front Slight #> 1982 None No impact Slight #> 1983 Tree Front Slight #> 1984 Crash barrier Front Slight #> 1985 Vehicle Front Slight #> 1986 Pedestrian Front Serious #> 1987 Pedestrian Offside Serious #> 1988 Vehicle Offside Slight #> 1989 Vehicle Nearside Slight #> 1990 Vehicle Offside Slight #> 1991 Vehicle Nearside Slight #> 1992 Pedestrian Front Serious #> 1993 None No impact Serious #> 1994 Pedestrian Nearside Slight #> 1995 Pedestrian Front Slight #> 1996 Pedestrian Front Slight #> 1997 Pedestrian Offside Slight #> 1998 Pedestrian Front Serious #> 1999 Pedestrian Nearside Slight #> 2000 Pedestrian barrier rail Front Serious #> 2001 Vehicle Front Slight #> 2002 Vehicle Front Slight #> 2003 Tree Front Serious #> 2004 Pedestrian Front Serious #> 2005 Pedestrian Offside Slight #> 2006 Pedestrian Front Slight #> 2007 Vehicle Front Slight #> 2008 Vehicle Front Slight #> 2009 Vehicle Front Slight #> 2010 Vehicle Back Slight #> 2011 None No impact Slight #> 2012 Vehicle Back Slight #> 2013 Vehicle Front Slight #> 2014 None No impact Slight #> 2015 Vehicle Front Slight #> 2016 Vehicle Front Slight #> 2017 Vehicle Nearside Slight #> 2018 Vehicle Front Slight #> 2019 None No impact Slight #> 2020 Vehicle Back Slight #> 2021 None No impact Slight #> 2022 Vehicle Front Serious #> 2023 Vehicle Back Serious #> 2024 None No impact Slight #> 2025 Vehicle Back Slight #> 2026 Vehicle Back Slight #> 2027 Vehicle Front Slight #> 2028 Pedestrian Front Serious #> 2029 Pedestrian Front Slight #> 2030 Vehicle Front Slight #> 2031 Vehicle Back Slight #> 2032 Vehicle Front Serious #> 2033 Vehicle Back Serious #> 2034 None No impact Slight #> 2035 None No impact Slight #> 2036 Pedestrian Front Slight #> 2037 None No impact Slight #> 2038 None No impact Slight #> 2039 Pedestrian Front Slight #> 2040 Vehicle Front Slight #> 2041 Vehicle Front Slight #> 2042 Pedestrian Front Serious #> 2043 Vehicle Front Slight #> 2044 Vehicle Front Slight #> 2045 Pedestrian Front Serious #> 2046 Pedestrian Front Slight #> 2047 Pedestrian Front Slight #> 2048 Pedestrian Nearside Serious #> 2049 Pedestrian Nearside Slight #> 2050 Vehicle Back Slight #> 2051 Vehicle Front Slight #> 2052 Vehicle Front Serious #> 2053 Vehicle Front Serious #> 2054 Pedestrian Front Slight #> 2055 Vehicle Front Slight #> 2056 Vehicle Nearside Slight #> 2057 Pedestrian Front Slight #> 2058 Pedestrian Back Slight #> 2059 Vehicle Offside Slight #> 2060 Vehicle Nearside Slight #> 2061 Pedestrian Nearside Slight #> 2062 Pedestrian Nearside Slight #> 2063 Vehicle Front Slight #> 2064 Vehicle Back Slight #> 2065 None No impact Slight #> 2066 Vehicle Front Slight #> 2067 Vehicle Back Slight #> 2068 Vehicle Back Slight #> 2069 Vehicle Back Slight #> 2070 Vehicle Back Slight #> 2071 Vehicle Back Slight #> 2072 Vehicle Back Slight #> 2073 Vehicle Front Slight #> 2074 Vehicle Nearside Slight #> 2075 Vehicle Offside Slight #> 2076 Vehicle Offside Slight #> 2077 Vehicle Nearside Slight #> 2078 Vehicle Back Slight #> 2079 Vehicle Front Slight #> 2080 Vehicle Front Slight #> 2081 Vehicle Back Slight #> 2082 Vehicle Back Slight #> 2083 Vehicle Front Slight #> 2084 Vehicle Back Slight #> 2085 Vehicle Front Slight #> 2086 Vehicle Back Slight #> 2087 Vehicle Back Slight #> 2088 Pedestrian Front Serious #> 2089 None No impact Slight #> 2090 Vehicle Nearside Slight #> 2091 Vehicle Offside Slight #> 2092 Traffic signal post Front Slight #> 2093 Wall or bridge parapet Front Slight #> 2094 Vehicle Front Slight #> 2095 Vehicle Front Slight #> 2096 Vehicle Front Slight #> 2097 Vehicle Front Slight #> 2098 Pedestrian Front Slight #> 2099 Vehicle Nearside Slight #> 2100 Vehicle Offside Slight #> 2101 Pedestrian Front Slight #> 2102 Pedestrian Nearside Slight #> 2103 Pedestrian Nearside Serious #> 2104 Pedestrian Front Slight #> 2105 Vehicle Front Slight #> 2106 Vehicle Back Slight #> 2107 Vehicle Back Slight #> 2108 Vehicle Front Slight #> 2109 Pedestrian Back Slight #> 2110 None No impact Slight #> 2111 Pedestrian Front Serious #> 2112 Pedestrian Offside Slight #> 2113 None No impact Slight #> 2114 Pedestrian Nearside Serious #> 2115 Pedestrian Front Slight #> 2116 Vehicle Nearside Slight #> 2117 Vehicle Offside Slight #> 2118 None No impact Slight #> 2119 Pedestrian Front Slight #> 2120 None No impact Slight #> 2121 Vehicle Front Slight #> 2122 Vehicle Front Slight #> 2123 Pedestrian Front Slight #> 2124 Vehicle Front Slight #> 2125 Vehicle Back Slight #> 2126 Pedestrian Offside Slight #> 2127 None No impact Slight #> 2128 Vehicle Front Slight #> 2129 Vehicle Nearside Slight #> 2130 Vehicle Front Slight #> 2131 Vehicle Front Slight #> 2132 None No impact Slight #> 2133 None No impact Slight #> 2134 Pedestrian Front Slight #> 2135 Pedestrian Front Serious #> 2136 Wall or bridge parapet Front Slight #> 2137 Pedestrian Nearside Slight #> 2138 Vehicle Front Slight #> 2139 Vehicle Front Slight #> 2140 Vehicle Front Slight #> 2141 Vehicle Back Slight #> 2142 None No impact Slight #> 2143 None No impact Slight #> 2144 Vehicle Front Slight #> 2145 Vehicle Offside Slight #> 2146 Wall or bridge parapet Nearside Slight #> 2147 Vehicle Front Slight #> 2148 Vehicle Front Slight #> 2149 Vehicle Back Serious #> 2150 Vehicle Front Serious #> 2151 Pedestrian Nearside Slight #> 2152 None No impact Slight #> 2153 Vehicle Nearside Slight #> 2154 Vehicle Front Slight #> 2155 Vehicle Nearside Slight #> 2156 Vehicle Offside Slight #> 2157 Pedestrian barrier rail Front Slight #> 2158 None No impact Slight #> 2159 Pedestrian Front Slight #> 2160 None No impact Slight #> 2161 Pedestrian Nearside Slight #> 2162 Vehicle Back Slight #> 2163 None No impact Slight #> 2164 None No impact Slight #> 2165 Pedestrian Nearside Slight #> 2166 Wall or bridge parapet Front Slight #> 2167 Vehicle Front Slight #> 2168 Vehicle Front Slight #> 2169 Pedestrian Back Serious #> 2170 Vehicle Front Slight #> 2171 Vehicle Back Slight #> 2172 Vehicle Offside Slight #> 2173 Vehicle Nearside Slight #> 2174 Pedestrian Offside Slight #> 2175 Pedestrian Front Serious #> 2176 None No impact Slight #> 2177 None No impact Serious #> 2178 None No impact Slight #> 2179 None No impact Serious #> 2180 Vehicle Back Serious #> 2181 Pedestrian Front Serious #> 2182 Vehicle Back Serious #> 2183 Vehicle Offside Slight #> 2184 Vehicle Nearside Slight #> 2185 Vehicle Front Serious #> 2186 Vehicle Back Serious #> 2187 Pedestrian Back Slight #> 2188 Pedestrian Front Slight #> 2189 Pedestrian Front Slight #> 2190 Pedestrian Offside Slight #> 2191 Pedestrian Back Slight #> 2192 Pedestrian Front Slight #> 2193 Vehicle Offside Slight #> 2194 Vehicle Front Slight #> 2195 Vehicle Front Slight #> 2196 Vehicle Nearside Slight #> 2197 None No impact Slight #> 2198 Pedestrian Front Slight #> 2199 Pedestrian Offside Serious #> 2200 Vehicle Nearside Slight #> 2201 Vehicle Offside Slight #> 2202 None No impact Slight #> 2203 Vehicle Offside Slight #> 2204 Vehicle Nearside Slight #> 2205 Pedestrian Offside Slight #> 2206 Vehicle Back Slight #> 2207 Vehicle Front Slight #> 2208 None No impact Slight #> 2209 Pedestrian Offside Slight #> 2210 Pedestrian Front Slight #> 2211 Pedestrian Front Fatal #> 2212 Pedestrian Offside Slight #> 2213 Pedestrian Front Slight #> 2214 Vehicle Nearside Slight #> 2215 Vehicle Offside Slight #> 2216 Pedestrian Front Slight #> 2217 Pedestrian Front Slight #> 2218 None No impact Slight #> 2219 None No impact Serious #> 2220 None No impact Slight #> 2221 None No impact Slight #> 2222 Pedestrian Nearside Serious #> 2223 None No impact Slight #> 2224 Pedestrian Offside Slight #> 2225 Vehicle Nearside Slight #> 2226 Vehicle Front Slight #> 2227 Pedestrian Front Slight #> 2228 Pedestrian Offside Slight #> 2229 Vehicle Back Slight #> 2230 Vehicle Front Slight #> 2231 None No impact Slight #> 2232 Vehicle Back Slight #> 2233 Vehicle Back Slight #> 2234 Vehicle Front Slight #> 2235 Vehicle Back Slight #> 2236 Vehicle Front Serious #> 2237 Vehicle Front Serious #> 2238 Vehicle Front Serious #> 2239 Vehicle Offside Slight #> 2240 Vehicle Nearside Slight #> 2241 Vehicle Front Slight #> 2242 Vehicle Back Slight #> 2243 None No impact Slight #> 2244 Vehicle Back Slight #> 2245 Vehicle Back Slight #> 2246 Vehicle Front Slight #> 2247 Vehicle Front Slight #> 2248 Vehicle Back Slight #> 2249 Vehicle Front Slight #> 2250 Vehicle Back Slight #> 2251 Pedestrian Front Slight #> 2252 Vehicle Back Slight #> 2253 Vehicle Front Slight #> 2254 Vehicle Back Slight #> 2255 Vehicle Front Slight #> 2256 Vehicle Front Slight #> 2257 Pedestrian Nearside Slight #> 2258 Vehicle Back Slight #> 2259 Vehicle Front Slight #> 2260 Vehicle Back Slight #> 2261 Vehicle Back Slight #> 2262 Vehicle Back Serious #> 2263 Vehicle Back Serious #> 2264 Vehicle Back Serious #> 2265 Vehicle Front Serious #> 2266 Vehicle Back Serious #> 2267 Vehicle Front Serious #> 2268 Vehicle Front Slight #> 2269 Vehicle Back Slight #> 2270 None No impact Slight #> 2271 None No impact Slight #> 2272 Pedestrian Nearside Slight #> 2273 Vehicle Nearside Slight #> 2274 Vehicle Offside Slight #> 2275 Pedestrian Nearside Slight #> 2276 Pedestrian Nearside Slight #> 2277 None No impact Slight #> 2278 Pedestrian Nearside Serious #> 2279 None No impact Slight #> 2280 None No impact Serious #> 2281 Vehicle Front Slight #> 2282 Vehicle Nearside Slight #> 2283 None No impact Slight #> 2284 Vehicle Nearside Serious #> 2285 Vehicle Nearside Serious #> 2286 Vehicle Back Serious #> 2287 Vehicle Front Serious #> 2288 None No impact Slight #> 2289 Vehicle Nearside Serious #> 2290 Vehicle Offside Serious #> 2291 Pedestrian Front Serious #> 2292 None No impact Slight #> 2293 Vehicle Back Slight #> 2294 Vehicle Front Slight #> 2295 None No impact Slight #> 2296 Pedestrian Back Slight #> 2297 Vehicle Front Slight #> 2298 Vehicle Back Slight #> 2299 Vehicle Front Slight #> 2300 Vehicle Back Slight #> 2301 Pedestrian Front Slight #> 2302 Vehicle Front Slight #> 2303 Vehicle Back Slight #> 2304 Pedestrian Front Slight #> 2305 Pedestrian barrier rail Front Slight #> 2306 None No impact Slight #> 2307 None No impact Slight #> 2308 None No impact Slight #> 2309 Pedestrian Offside Slight #> 2310 Pedestrian Back Slight #> 2311 Vehicle Back Slight #> 2312 Vehicle Front Slight #> 2313 Vehicle Back Slight #> 2314 Vehicle Front Slight #> 2315 None No impact Slight #> 2316 None No impact Slight #> 2317 Vehicle Front Slight #> 2318 Vehicle Back Slight #> 2319 None No impact Slight #> 2320 Pedestrian Offside Slight #> 2321 None No impact Slight #> 2322 None No impact Slight #> 2323 Vehicle Nearside Slight #> 2324 Vehicle Offside Slight #> 2325 Vehicle Front Slight #> 2326 Vehicle Back Slight #> 2327 Vehicle Nearside Slight #> 2328 Vehicle Offside Slight #> 2329 Pedestrian Front Slight #> 2330 None No impact Slight #> 2331 None No impact Slight #> 2332 None No impact Slight #> 2333 Pedestrian Nearside Slight #> 2334 None No impact Slight #> 2335 Vehicle Nearside Slight #> 2336 Vehicle Offside Slight #> 2337 None No impact Slight #> 2338 Vehicle Back Slight #> 2339 Vehicle Back Slight #> 2340 Vehicle Front Slight #> 2341 Road sign Front Slight #> 2342 Pedestrian Nearside Slight #> 2343 Vehicle Nearside Slight #> 2344 Vehicle Front Slight #> 2345 Vehicle Front Slight #> 2346 Vehicle Front Slight #> 2347 Vehicle Front Slight #> 2348 Vehicle Back Slight #> 2349 Traffic signal post Front Slight #> 2350 Vehicle Front Serious #> 2351 Vehicle Back Serious #> 2352 None No impact Serious #> 2353 None No impact Serious #> 2354 Crash barrier Nearside Serious #> 2355 Pedestrian Front Slight #> 2356 Pedestrian Nearside Serious #> 2357 Vehicle Offside Slight #> 2358 Vehicle Offside Slight #> 2359 Pedestrian Nearside Slight #> 2360 Vehicle Back Slight #> 2361 Vehicle Front Slight #> 2362 None No impact Slight #> 2363 None No impact Slight #> 2364 None No impact Slight #> 2365 None No impact Slight #> 2366 Pedestrian Front Slight #> 2367 None No impact Slight #> 2368 Pedestrian Nearside Slight #> 2369 Pedestrian Front Slight #> 2370 Pedestrian Front Slight #> 2371 Crash barrier Front Slight #> 2372 None No impact Slight #> 2373 None No impact Slight #> 2374 Vehicle Front Serious #> 2375 Vehicle Offside Serious #> 2376 None No impact Slight #> 2377 None No impact Slight #> 2378 Vehicle Offside Slight #> 2379 Vehicle Nearside Slight #> 2380 Vehicle Offside Slight #> 2381 Vehicle Nearside Slight #> 2382 Pedestrian Front Slight #> 2383 Vehicle Nearside Slight #> 2384 Vehicle Offside Slight #> 2385 Vehicle Offside Slight #> 2386 None No impact Slight #> 2387 Vehicle Front Slight #> 2388 Vehicle Back Slight #> 2389 None No impact Slight #> 2390 Vehicle Nearside Slight #> 2391 Vehicle Offside Slight #> 2392 None No impact Slight #> 2393 None No impact Slight #> 2394 Vehicle Back Slight #> 2395 Vehicle Front Slight #> 2396 Pedestrian Front Slight #> 2397 Pedestrian Front Slight #> 2398 Pedestrian Front Slight #> 2399 Pedestrian Nearside Slight #> 2400 Pedestrian Front Serious #> 2401 Vehicle Back Slight #> 2402 Vehicle Front Slight #> 2403 Vehicle Back Slight #> 2404 Vehicle Back Slight #> 2405 Pedestrian Nearside Slight #> 2406 None No impact Slight #> 2407 None No impact Slight #> 2408 Pedestrian Offside Slight #> 2409 None No impact Serious #> 2410 Vehicle Back Slight #> 2411 Vehicle Front Slight #> 2412 Vehicle Back Serious #> 2413 Vehicle Front Serious #> 2414 Pedestrian Front Slight #> 2415 Vehicle Offside Slight #> 2416 Vehicle Front Slight #> 2417 Crash barrier Front Slight #> 2418 Vehicle Back Slight #> 2419 Vehicle Front Slight #> 2420 Pedestrian Front Serious #> 2421 None No impact Serious #> 2422 Pedestrian Front Serious #> 2423 None No impact Serious #> 2424 None No impact Serious #> 2425 Pedestrian Nearside Serious #> 2426 Pedestrian Front Slight #> 2427 None No impact Slight #> 2428 Vehicle Offside Slight #> 2429 Vehicle Nearside Slight #> 2430 Vehicle Front Slight #> 2431 Vehicle Back Slight #> 2432 Vehicle Offside Slight #> 2433 Vehicle Nearside Slight #> 2434 Pedestrian Nearside Serious #> 2435 Traffic signal post Front Slight #> 2436 Pedestrian Front Slight #> 2437 Pedestrian Front Slight #> 2438 Vehicle Back Slight #> 2439 Vehicle Front Slight #> 2440 Vehicle Front Slight #> 2441 Vehicle Back Slight #> 2442 Vehicle Back Slight #> 2443 Vehicle Front Slight #> 2444 Pedestrian Nearside Slight #> 2445 Vehicle Nearside Slight #> 2446 Vehicle Offside Slight #> 2447 None No impact Slight #> 2448 Vehicle Front Slight #> 2449 Vehicle Back Slight #> 2450 Vehicle Offside Slight #> 2451 Vehicle Nearside Slight #> 2452 Vehicle Front Slight #> 2453 Vehicle Back Slight #> 2454 Vehicle Back Slight #> 2455 Vehicle Front Serious #> 2456 Vehicle Back Serious #> 2457 Pedestrian Nearside Slight #> 2458 Pedestrian Nearside Slight #> 2459 Vehicle Front Slight #> 2460 Vehicle Front Slight #> 2461 Pedestrian Front Slight #> 2462 Vehicle Front Slight #> 2463 Vehicle Offside Slight #> 2464 Pedestrian Front Slight #> 2465 None No impact Slight #> 2466 Vehicle Back Slight #> 2467 Vehicle Front Slight #> 2468 None No impact Slight #> 2469 Other Front Slight #> 2470 Vehicle Back Slight #> 2471 Vehicle Front Slight #> 2472 Pedestrian Nearside Slight #> 2473 Vehicle Offside Slight #> 2474 None No impact Slight #> 2475 Wall or bridge parapet Front Slight #> 2476 Vehicle Front Serious #> 2477 Vehicle Back Serious #> 2478 Vehicle Front Slight #> 2479 Vehicle Front Slight #> 2480 Vehicle Front Slight #> 2481 Pedestrian Nearside Slight #> 2482 None No impact Slight #> 2483 None No impact Slight #> 2484 Vehicle Offside Slight #> 2485 Vehicle Nearside Slight #> 2486 Vehicle Back Slight #> 2487 Vehicle Back Slight #> 2488 Vehicle Front Slight #> 2489 None No impact Slight #> 2490 Vehicle Nearside Slight #> 2491 Vehicle Offside Slight #> 2492 Vehicle Back Slight #> 2493 Vehicle Front Slight #> 2494 Vehicle Back Slight #> 2495 Vehicle Back Slight #> 2496 Vehicle Back Slight #> 2497 Vehicle Front Slight #> 2498 Vehicle Offside Serious #> 2499 Vehicle Front Serious #> 2500 None No impact Slight #> 2501 Other Offside Slight #> 2502 Pedestrian Nearside Slight #> 2503 Vehicle Nearside Slight #> 2504 Vehicle Offside Slight #> 2505 Vehicle Back Slight #> 2506 Vehicle Front Slight #> 2507 Vehicle Offside Slight #> 2508 Vehicle Front Slight #> 2509 Vehicle Front Slight #> 2510 Vehicle Back Slight #> 2511 Pedestrian Front Slight #> 2512 None No impact Slight #> 2513 None No impact Slight #> 2514 Vehicle Front Slight #> 2515 Vehicle Back Slight #> 2516 Pedestrian Nearside Slight #> 2517 Lamp-post or telephone-post Front Serious #> 2518 Pedestrian Offside Slight #> 2519 Vehicle Front Slight #> 2520 Vehicle Front Slight #> 2521 None No impact Slight #> 2522 Pedestrian Front Slight #> 2523 Pedestrian Front Slight #> 2524 None No impact Slight #> 2525 Vehicle Front Serious #> 2526 Vehicle Front Serious #> 2527 Vehicle Back Serious #> 2528 Vehicle Back Slight #> 2529 Vehicle Front Slight #> 2530 Vehicle Front Slight #> 2531 Vehicle Back Slight #> 2532 Vehicle Back Slight #> 2533 Vehicle Back Slight #> 2534 None No impact Serious #> 2535 Vehicle Front Slight #> 2536 Vehicle Back Slight #> 2537 Pedestrian Front Slight #> 2538 Pedestrian Front Slight #> 2539 Vehicle Front Slight #> 2540 Vehicle Nearside Slight #> 2541 Vehicle Front Slight #> 2542 Vehicle Back Slight #> 2543 Vehicle Offside Serious #> 2544 Vehicle Front Serious #> 2545 Vehicle Front Slight #> 2546 Vehicle Front Slight #> 2547 Vehicle Back Slight #> 2548 Vehicle Back Slight #> 2549 Vehicle Front Slight #> 2550 Vehicle Front Slight #> 2551 Vehicle Back Slight #> 2552 None No impact Slight #> 2553 None No impact Slight #> 2554 None No impact Slight #> 2555 None No impact Slight #> 2556 None No impact Slight #> 2557 Vehicle Front Slight #> 2558 Vehicle Back Slight #> 2559 None No impact Slight #> 2560 Vehicle Back Slight #> 2561 Vehicle Front Slight #> 2562 Pedestrian Nearside Serious #> 2563 Pedestrian Front Slight #> 2564 None No impact Slight #> 2565 None No impact Slight #> 2566 None No impact Slight #> 2567 None No impact Slight #> 2568 Pedestrian Offside Slight #> 2569 Vehicle Front Slight #> 2570 Vehicle Nearside Slight #> 2571 Pedestrian Nearside Slight #> 2572 None No impact Slight #> 2573 Vehicle Back Slight #> 2574 Vehicle Front Slight #> 2575 Vehicle Offside Slight #> 2576 Vehicle Back Slight #> 2577 Vehicle Front Slight #> 2578 Vehicle Back Slight #> 2579 Vehicle Nearside Slight #> 2580 Vehicle Front Slight #> 2581 Vehicle Back Slight #> 2582 Vehicle Front Slight #> 2583 Vehicle Back Slight #> 2584 Vehicle Offside Slight #> 2585 Vehicle Offside Slight #> 2586 None No impact Slight #> 2587 Pedestrian Front Slight #> 2588 None No impact Slight #> 2589 None No impact Slight #> 2590 Pedestrian Front Serious #> 2591 Vehicle Nearside Serious #> 2592 Vehicle Back Serious #> 2593 Vehicle Back Slight #> 2594 Vehicle Front Slight #> 2595 Vehicle Front Slight #> 2596 Vehicle Back Slight #> 2597 None No impact Slight #> 2598 Vehicle Offside Slight #> 2599 Vehicle Nearside Slight #> 2600 Pedestrian Back Slight #> 2601 Pedestrian Front Slight #> 2602 None No impact Slight #> 2603 Pedestrian Front Slight #> 2604 Pedestrian Nearside Slight #> 2605 Vehicle Offside Slight #> 2606 Vehicle Nearside Slight #> 2607 Vehicle Front Slight #> 2608 Vehicle Front Slight #> 2609 Vehicle Back Slight #> 2610 None No impact Serious #> 2611 Vehicle Front Slight #> 2612 Vehicle Front Slight #> 2613 Vehicle Front Slight #> 2614 Vehicle Front Slight #> 2615 Vehicle Front Slight #> 2616 Vehicle Back Slight #> 2617 Vehicle Back Slight #> 2618 Vehicle Back Serious #> 2619 Vehicle Front Serious #> 2620 Pedestrian Front Slight #> 2621 None No impact Slight #> 2622 Pedestrian Front Slight #> 2623 Wall or bridge parapet Front Slight #> 2624 None No impact Slight #> 2625 Vehicle Front Slight #> 2626 Vehicle Back Slight #> 2627 None No impact Serious #> 2628 Pedestrian Front Slight #> 2629 Vehicle Front Slight #> 2630 Vehicle Back Slight #> 2631 Vehicle Front Slight #> 2632 Vehicle Back Slight #> 2633 Vehicle Back Slight #> 2634 Vehicle Back Slight #> 2635 Vehicle Back Slight #> 2636 Pedestrian Offside Serious #> 2637 Vehicle Front Slight #> 2638 Vehicle Back Slight #> 2639 Vehicle Back Slight #> 2640 Vehicle Front Slight #> 2641 Vehicle Nearside Slight #> 2642 Vehicle Offside Slight #> 2643 Pedestrian Nearside Slight #> 2644 Vehicle Back Slight #> 2645 Vehicle Front Slight #> 2646 Road sign Front Slight #> 2647 Pedestrian Nearside Slight #> 2648 None No impact Slight #> 2649 Pedestrian Front Slight #> 2650 Vehicle Front Slight #> 2651 Vehicle Back Slight #> 2652 Other Nearside Slight #> 2653 Vehicle Back Slight #> 2654 Vehicle Front Slight #> 2655 Pedestrian Front Slight #> 2656 Pedestrian Back Slight #> 2657 None No impact Slight #> 2658 Vehicle Back Slight #> 2659 Vehicle Front Slight #> 2660 Vehicle Offside Slight #> 2661 Vehicle Front Slight #> 2662 Pedestrian Offside Slight #> 2663 Pedestrian Front Serious #> 2664 Crash barrier Offside Slight #> 2665 Vehicle Front Serious #> 2666 Vehicle Front Serious #> 2667 Vehicle Front Slight #> 2668 Vehicle Front Slight #> 2669 Vehicle Back Slight #> 2670 Vehicle Back Slight #> 2671 Vehicle Front Slight #> 2672 Vehicle Back Slight #> 2673 Vehicle Back Slight #> 2674 None No impact Slight #> 2675 Vehicle Front Slight #> 2676 Vehicle Front Slight #> 2677 None No impact Slight #> 2678 None No impact Slight #> 2679 None No impact Slight #> 2680 Vehicle Front Slight #> 2681 Vehicle Nearside Slight #> 2682 None No impact Slight #> 2683 None No impact Slight #> 2684 Pedestrian Front Serious #> 2685 Vehicle Nearside Slight #> 2686 Vehicle Front Slight #> 2687 None No impact Slight #> 2688 Other Nearside Slight #> 2689 Vehicle Back Slight #> 2690 Vehicle Front Slight #> 2691 Vehicle Front Slight #> 2692 Vehicle Back Slight #> 2693 None No impact Serious #> 2694 Pedestrian Nearside Slight #> 2695 Vehicle Back Slight #> 2696 Vehicle Front Slight #> 2697 None No impact Slight #> 2698 None No impact Slight #> 2699 None No impact Slight #> 2700 None No impact Slight #> 2701 Vehicle Back Slight #> 2702 Vehicle Front Slight #> 2703 Vehicle Offside Slight #> 2704 Vehicle Offside Slight #> 2705 None No impact Slight #> 2706 None No impact Slight #> 2707 Vehicle Back Slight #> 2708 Vehicle Front Slight #> 2709 None No impact Slight #> 2710 None No impact Slight #> 2711 Vehicle Front Slight #> 2712 Vehicle Back Slight #> 2713 Vehicle Back Slight #> 2714 None No impact Slight #> 2715 Pedestrian Front Serious #> 2716 None No impact Slight #> 2717 None No impact Slight #> 2718 Pedestrian Nearside Slight #> 2719 Pedestrian Nearside Slight #> 2720 Pedestrian Front Serious #> 2721 None No impact Slight #> 2722 Pedestrian Offside Slight #> 2723 Vehicle Nearside Slight #> 2724 Vehicle Offside Slight #> 2725 Pedestrian Front Slight #> 2726 None No impact Slight #> 2727 Vehicle Back Slight #> 2728 Vehicle Front Slight #> 2729 Pedestrian Offside Slight #> 2730 Vehicle Front Slight #> 2731 Vehicle Front Slight #> 2732 Vehicle Front Slight #> 2733 Vehicle Back Slight #> 2734 Vehicle Front Slight #> 2735 Vehicle Back Slight #> 2736 None No impact Serious #> 2737 Vehicle Front Serious #> 2738 Vehicle Back Serious #> 2739 Vehicle Front Slight #> 2740 Vehicle Front Slight #> 2741 None No impact Slight #> 2742 None No impact Slight #> 2743 Pedestrian Nearside Slight #> 2744 None No impact Slight #> 2745 Pedestrian Nearside Slight #> 2746 None No impact Slight #> 2747 Pedestrian Offside Slight #> 2748 None No impact Slight #> 2749 None No impact Serious #> 2750 Vehicle Front Slight #> 2751 Vehicle Back Slight #> 2752 Pedestrian Offside Slight #> 2753 Vehicle Front Slight #> 2754 Vehicle Front Slight #> 2755 None No impact Slight #> 2756 Pedestrian Nearside Slight #> 2757 Vehicle Offside Slight #> 2758 Vehicle Nearside Slight #> 2759 Pedestrian Front Slight #> 2760 Vehicle Back Slight #> 2761 Vehicle Front Slight #> 2762 Vehicle Front Slight #> 2763 Vehicle Offside Slight #> 2764 Pedestrian Nearside Serious #> 2765 None No impact Slight #> 2766 Pedestrian Front Slight #> 2767 None No impact Slight #> 2768 Vehicle Front Slight #> 2769 Vehicle Back Slight #> 2770 Pedestrian Nearside Slight #> 2771 None No impact Serious #> 2772 None No impact Slight #> 2773 None No impact Slight #> 2774 None No impact Slight #> 2775 Vehicle Nearside Slight #> 2776 Vehicle Front Slight #> 2777 Vehicle Offside Slight #> 2778 Vehicle Nearside Slight #> 2779 Vehicle Nearside Serious #> 2780 Vehicle Offside Serious #> 2781 Pedestrian Front Slight #> 2782 None No impact Slight #> 2783 None No impact Serious #> 2784 None Front Slight #> 2785 Vehicle Nearside Slight #> 2786 Vehicle Back Slight #> 2787 Vehicle Front Slight #> 2788 Vehicle Nearside Slight #> 2789 Vehicle Front Slight #> 2790 Vehicle Front Serious #> 2791 Vehicle Front Serious #> 2792 Pedestrian Offside Slight #> 2793 Pedestrian Nearside Slight #> 2794 None No impact Slight #> 2795 Tree Nearside Slight #> 2796 Pedestrian Front Slight #> 2797 Vehicle Offside Slight #> 2798 Vehicle Nearside Slight #> 2799 Vehicle Offside Slight #> 2800 Vehicle Nearside Slight #> 2801 Pedestrian Front Slight #> 2802 Pedestrian Front Serious #> 2803 None No impact Serious #> 2804 None No impact Slight #> 2805 None No impact Slight #> 2806 None No impact Slight #> 2807 Pedestrian Nearside Slight #> 2808 Vehicle Back Slight #> 2809 Vehicle Front Slight #> 2810 Crash barrier Front Slight #> 2811 Vehicle Nearside Slight #> 2812 Vehicle Offside Slight #> 2813 Vehicle Front Slight #> 2814 Vehicle Back Slight #> 2815 Vehicle Nearside Slight #> 2816 Vehicle Offside Slight #> 2817 Pedestrian Offside Slight #> 2818 None No impact Serious #> 2819 None No impact Slight #> 2820 Vehicle Nearside Slight #> 2821 Vehicle Front Slight #> 2822 Vehicle Front Slight #> 2823 Vehicle Back Slight #> 2824 Vehicle Back Slight #> 2825 Vehicle Offside Slight #> 2826 Vehicle Front Slight #> 2827 Vehicle Front Serious #> 2828 Vehicle Front Serious #> 2829 Vehicle Back Slight #> 2830 Vehicle Front Slight #> 2831 Vehicle Back Slight #> 2832 Vehicle Back Slight #> 2833 None No impact Slight #> 2834 None No impact Serious #> 2835 Pedestrian Front Slight #> 2836 Pedestrian Back Slight #> 2837 Pedestrian Front Slight #> 2838 Vehicle Offside Slight #> 2839 Vehicle Front Slight #> 2840 None No impact Slight #> 2841 None No impact Slight #> 2842 None No impact Slight #> 2843 Other Front Slight #> 2844 Pedestrian Nearside Serious #> 2845 Vehicle Front Slight #> 2846 Vehicle Back Slight #> 2847 Vehicle Front Slight #> 2848 Vehicle Back Slight #> 2849 Vehicle Front Serious #> 2850 Vehicle Back Serious #> 2851 Pedestrian Front Slight #> 2852 Vehicle Back Slight #> 2853 Vehicle Front Slight #> 2854 Vehicle Back Slight #> 2855 Vehicle Front Slight #> 2856 Pedestrian Nearside Serious #> 2857 Pedestrian Offside Slight #> 2858 Pedestrian Front Slight #> 2859 None No impact Serious #> 2860 None No impact Slight #> 2861 Vehicle Back Slight #> 2862 Vehicle Back Slight #> 2863 Vehicle Front Slight #> 2864 Pedestrian Front Slight #> 2865 Pedestrian Nearside Slight #> 2866 Pedestrian Back Slight #> 2867 Vehicle Front Slight #> 2868 Vehicle Offside Slight #> 2869 Pedestrian Offside Slight #> 2870 Pedestrian Offside Slight #> 2871 Pedestrian Front Slight #> 2872 Pedestrian Front Slight #> 2873 Wall or bridge parapet Offside Slight #> 2874 None No impact Slight #> 2875 Vehicle Front Slight #> 2876 Vehicle Back Slight #> 2877 Vehicle Offside Slight #> 2878 None No impact Slight #> 2879 Vehicle Front Slight #> 2880 Vehicle Back Slight #> 2881 Vehicle Front Slight #> 2882 Vehicle Back Slight #> 2883 Vehicle Back Slight #> 2884 Vehicle Front Slight #> 2885 Vehicle Back Slight #> 2886 Vehicle Offside Slight #> 2887 Vehicle Offside Slight #> 2888 Vehicle Back Slight #> 2889 Vehicle Front Slight #> 2890 Pedestrian Nearside Slight #> 2891 Vehicle Front Slight #> 2892 Vehicle Front Slight #> 2893 Vehicle Back Slight #> 2894 Vehicle Front Slight #> 2895 Vehicle Back Slight #> 2896 Vehicle Back Slight #> 2897 Vehicle Front Slight #> 2898 Vehicle Offside Slight #> 2899 Vehicle Back Slight #> 2900 Pedestrian Front Slight #> 2901 Vehicle Back Slight #> 2902 Vehicle Front Slight #> 2903 None No impact Slight #> 2904 Vehicle Front Slight #> 2905 Vehicle Back Slight #> 2906 Vehicle Back Slight #> 2907 Vehicle Back Slight #> 2908 Vehicle Back Slight #> 2909 Wall or bridge parapet Offside Slight #> 2910 Vehicle Back Slight #> 2911 Vehicle Front Slight #> 2912 Vehicle Back Slight #> 2913 Vehicle Front Slight #> 2914 Vehicle Front Slight #> 2915 Vehicle Offside Slight #> 2916 Vehicle Back Slight #> 2917 Pedestrian Front Slight #> 2918 Pedestrian Back Slight #> 2919 Vehicle Front Slight #> 2920 Vehicle Back Slight #> 2921 Vehicle Back Slight #> 2922 Vehicle Back Slight #> 2923 None No impact Slight #> 2924 Vehicle Back Slight #> 2925 Vehicle Front Slight #> 2926 Vehicle Back Slight #> 2927 Vehicle Front Slight #> 2928 Vehicle Front Slight #> 2929 Vehicle Front Slight #> 2930 Vehicle Back Slight #> 2931 None No impact Slight #> 2932 None No impact Serious #> 2933 Pedestrian Front Slight #> 2934 Pedestrian Offside Serious #> 2935 Vehicle Offside Slight #> 2936 Vehicle Nearside Slight #> 2937 Vehicle Offside Slight #> 2938 Vehicle Front Slight #> 2939 None No impact Serious #> 2940 None No impact Serious #> 2941 None No impact Serious #> 2942 Pedestrian Back Slight #> 2943 None No impact Slight #> 2944 Wall or bridge parapet Offside Serious #> 2945 None No impact Slight #> 2946 Pedestrian Back Slight #> 2947 Pedestrian Offside Slight #> 2948 Vehicle Front Slight #> 2949 Vehicle Offside Slight #> 2950 None No impact Slight #> 2951 None No impact Slight #> 2952 Vehicle Nearside Slight #> 2953 Vehicle Offside Slight #> 2954 Pedestrian Front Serious #> 2955 Vehicle Back Slight #> 2956 Vehicle Front Slight #> 2957 Vehicle Back Slight #> 2958 Pedestrian Nearside Slight #> 2959 Vehicle Nearside Slight #> 2960 Vehicle Front Slight #> 2961 Pedestrian Front Serious #> 2962 Vehicle Front Slight #> 2963 Vehicle Offside Slight #> 2964 Vehicle Front Serious #> 2965 Vehicle Front Serious #> 2966 Pedestrian Front Serious #> 2967 Vehicle Front Slight #> 2968 Vehicle Offside Slight #> 2969 Pedestrian Offside Serious #> 2970 Vehicle Front Slight #> 2971 Vehicle Back Slight #> 2972 Vehicle Front Slight #> 2973 Vehicle Offside Slight #> 2974 Vehicle Back Slight #> 2975 Vehicle Front Slight #> 2976 Vehicle Front Slight #> 2977 Vehicle Front Slight #> 2978 Vehicle Nearside Slight #> 2979 Vehicle Front Slight #> 2980 Vehicle Front Serious #> 2981 Vehicle Back Serious #> 2982 Vehicle Back Serious #> 2983 Pedestrian Front Slight #> 2984 Pedestrian Front Serious #> 2985 Vehicle Nearside Slight #> 2986 Vehicle Offside Slight #> 2987 None No impact Slight #> 2988 None No impact Slight #> 2989 Vehicle Nearside Slight #> 2990 Vehicle Front Slight #> 2991 None No impact Slight #> 2992 Vehicle Front Slight #> 2993 Vehicle Front Slight #> 2994 Pedestrian Back Slight #> 2995 Vehicle Back Slight #> 2996 Vehicle Front Slight #> 2997 Vehicle Back Slight #> 2998 Vehicle Front Slight #> 2999 Pedestrian Front Slight #> 3000 None No impact Slight #> 3001 Vehicle Back Slight #> 3002 Vehicle Front Slight #> 3003 Vehicle Front Slight #> 3004 Vehicle Back Serious #> 3005 Vehicle Front Serious #> 3006 Pedestrian Front Slight #> 3007 Wall or bridge parapet Front Serious #> 3008 Pedestrian Front Slight #> 3009 Pedestrian Front Serious #> 3010 Vehicle Front Slight #> 3011 Vehicle Back Slight #> 3012 Vehicle Front Slight #> 3013 Vehicle Front Slight #> 3014 Vehicle Back Slight #> 3015 None No impact Slight #> 3016 None No impact Slight #> 3017 Vehicle Nearside Slight #> 3018 Vehicle Front Slight #> 3019 Pedestrian Unknown Serious #> 3020 None No impact Slight #> 3021 Vehicle Back Slight #> 3022 Vehicle Front Slight #> 3023 Vehicle Back Slight #> 3024 None No impact Slight #> 3025 Pedestrian Nearside Slight #> 3026 None No impact Slight #> 3027 Vehicle Back Serious #> 3028 Vehicle Back Serious #> 3029 Vehicle Front Serious #> 3030 None No impact Slight #> 3031 Pedestrian Nearside Slight #> 3032 Pedestrian Back Slight #> 3033 Lamp-post or telephone-post Front Serious #> 3034 Pedestrian Nearside Serious #> 3035 Vehicle Front Slight #> 3036 Vehicle Offside Slight #> 3037 Vehicle Front Slight #> 3038 Vehicle Front Slight #> 3039 None No impact Slight #> 3040 None No impact Slight #> 3041 Vehicle Front Slight #> 3042 Vehicle Front Slight #> 3043 Vehicle Back Slight #> 3044 Vehicle Front Serious #> 3045 Vehicle Back Serious #> 3046 None No impact Slight #> 3047 Vehicle Front Slight #> 3048 Vehicle Back Slight #> 3049 Vehicle Front Slight #> 3050 Vehicle Back Slight #> 3051 None No impact Serious #> 3052 Vehicle Front Slight #> 3053 Vehicle Offside Slight #> 3054 Vehicle Front Slight #> 3055 Vehicle Back Slight #> 3056 Vehicle Front Serious #> 3057 Vehicle Offside Serious #> 3058 Vehicle Front Slight #> 3059 Vehicle Back Slight #> 3060 Vehicle Nearside Slight #> 3061 Vehicle Front Slight #> 3062 Vehicle Offside Slight #> 3063 Vehicle Front Slight #> 3064 Vehicle Front Serious #> 3065 Vehicle Front Serious #> 3066 None No impact Slight #> 3067 Crash barrier Front Slight #> 3068 Pedestrian Nearside Slight #> 3069 Vehicle Front Slight #> 3070 Vehicle Front Slight #> 3071 Vehicle Front Slight #> 3072 Vehicle Back Slight #> 3073 Vehicle Nearside Serious #> 3074 Vehicle Offside Serious #> 3075 Vehicle Front Slight #> 3076 Vehicle Back Slight #> 3077 Vehicle Nearside Slight #> 3078 Vehicle Front Slight #> 3079 Pedestrian Front Serious #> 3080 Vehicle Back Slight #> 3081 Vehicle Back Slight #> 3082 Vehicle Front Slight #> 3083 Pedestrian Front Slight #> 3084 Pedestrian Front Serious #> 3085 Vehicle Front Slight #> 3086 Vehicle Front Slight #> 3087 Vehicle Back Slight #> 3088 None No impact Slight #> 3089 Pedestrian Front Slight #> 3090 None No impact Slight #> 3091 Vehicle Nearside Slight #> 3092 Vehicle Offside Slight #> 3093 Vehicle Back Slight #> 3094 Vehicle Front Slight #> 3095 Vehicle Front Slight #> 3096 Vehicle Front Slight #> 3097 Pedestrian Front Slight #> 3098 None No impact Serious #> 3099 None No impact Serious #> 3100 None No impact Slight #> 3101 Pedestrian Back Serious #> 3102 Pedestrian Front Serious #> 3103 None No impact Slight #> 3104 Pedestrian Front Slight #> 3105 None No impact Slight #> 3106 None No impact Slight #> 3107 Pedestrian Front Serious #> 3108 None No impact Slight #> 3109 Vehicle Front Slight #> 3110 Vehicle Front Slight #> 3111 Crash barrier Front Slight #> 3112 Vehicle Offside Slight #> 3113 Vehicle Nearside Slight #> 3114 Vehicle Nearside Slight #> 3115 Vehicle Offside Slight #> 3116 None No impact Slight #> 3117 None No impact Slight #> 3118 Vehicle Nearside Slight #> 3119 Vehicle Offside Slight #> 3120 Pedestrian Front Slight #> 3121 Vehicle Front Slight #> 3122 Vehicle Back Slight #> 3123 Pedestrian Front Slight #> 3124 None No impact Slight #> 3125 None No impact Slight #> 3126 Other Nearside Slight #> 3127 Vehicle Front Slight #> 3128 Vehicle Back Slight #> 3129 Vehicle Back Slight #> 3130 Pedestrian Back Serious #> 3131 Vehicle Front Slight #> 3132 Vehicle Back Slight #> 3133 Pedestrian Front Serious #> 3134 Pedestrian Front Slight #> 3135 None No impact Slight #> 3136 Vehicle Offside Slight #> 3137 Vehicle Front Slight #> 3138 None No impact Slight #> 3139 Pedestrian Front Serious #> 3140 Pedestrian Offside Slight #> 3141 Pedestrian Front Slight #> 3142 Vehicle Back Slight #> 3143 Vehicle Back Slight #> 3144 Vehicle Front Slight #> 3145 Vehicle Offside Slight #> 3146 None No impact Slight #> 3147 Vehicle Nearside Slight #> 3148 None No impact Serious #> 3149 Pedestrian Nearside Slight #> 3150 None No impact Slight #> 3151 Pedestrian Front Serious #> 3152 Vehicle Back Serious #> 3153 Vehicle Front Serious #> 3154 None No impact Slight #> 3155 None No impact Slight #> 3156 Pedestrian Back Slight #> 3157 Pedestrian Front Slight #> 3158 Pedestrian Front Serious #> 3159 Other Nearside Slight #> 3160 Vehicle Front Slight #> 3161 None No impact Slight #> 3162 None No impact Serious #> 3163 Pedestrian Nearside Slight #> 3164 Vehicle Front Slight #> 3165 Vehicle Back Slight #> 3166 Vehicle Back Slight #> 3167 Vehicle Back Slight #> 3168 Vehicle Back Slight #> 3169 Pedestrian Front Slight #> 3170 Pedestrian Nearside Slight #> 3171 Pedestrian Front Slight #> 3172 Pedestrian Front Slight #> 3173 None No impact Slight #> 3174 None No impact Slight #> 3175 Pedestrian Nearside Slight #> 3176 None No impact Slight #> 3177 Vehicle Front Slight #> 3178 Vehicle Back Slight #> 3179 Pedestrian Offside Serious #> 3180 Pedestrian Front Serious #> 3181 Vehicle Offside Slight #> 3182 Vehicle Nearside Slight #> 3183 Vehicle Front Slight #> 3184 Vehicle Front Serious #> 3185 Vehicle Back Serious #> 3186 Pedestrian Nearside Serious #> 3187 Pedestrian Front Slight #> 3188 None No impact Slight #> 3189 Vehicle Offside Slight #> 3190 Vehicle Nearside Slight #> 3191 Unknown Unknown Slight #> 3192 Lamp-post or telephone-post Front Slight #> 3193 Pedestrian Front Slight #> 3194 Pedestrian Nearside Serious #> 3195 Vehicle Back Fatal #> 3196 Vehicle Front Fatal #> 3197 None No impact Fatal #> 3198 None No impact Slight #> 3199 Vehicle Front Slight #> 3200 Vehicle Offside Slight #> 3201 Vehicle Nearside Slight #> 3202 Vehicle Front Slight #> 3203 Pedestrian Offside Serious #> 3204 Pedestrian Front Slight #> 3205 None No impact Slight #> 3206 Unknown Unknown Slight #> 3207 Vehicle Front Slight #> 3208 Vehicle Back Slight #> 3209 Vehicle Back Slight #> 3210 None No impact Slight #> 3211 Pedestrian barrier rail Front Slight #> 3212 None No impact Slight #> 3213 None No impact Slight #> 3214 None No impact Slight #> 3215 Wall or bridge parapet Front Slight #> 3216 Vehicle Nearside Slight #> 3217 Vehicle Front Slight #> 3218 Tree Front Slight #> 3219 None No impact Slight #> 3220 None No impact Slight #> 3221 Vehicle Front Slight #> 3222 Vehicle Nearside Slight #> 3223 Pedestrian Offside Slight #> 3224 Vehicle Back Serious #> 3225 Vehicle Nearside Serious #> 3226 Vehicle Front Serious #> 3227 Vehicle Front Slight #> 3228 Vehicle Front Slight #> 3229 Pedestrian Front Slight #> 3230 Vehicle Back Slight #> 3231 Vehicle Front Slight #> 3232 Crash barrier Front Slight #> 3233 Vehicle Back Slight #> 3234 Vehicle Offside Slight #> 3235 Vehicle Front Slight #> 3236 None No impact Slight #> 3237 Vehicle Back Slight #> 3238 Vehicle Front Slight #> 3239 Pedestrian Front Slight #> 3240 Vehicle Front Slight #> 3241 Vehicle Back Slight #> 3242 Pedestrian Nearside Slight #> 3243 Vehicle Offside Slight #> 3244 Vehicle Nearside Slight #> 3245 Vehicle Front Slight #> 3246 Vehicle Nearside Slight #> 3247 Vehicle Front Slight #> 3248 Vehicle Back Slight #> 3249 Vehicle Nearside Slight #> 3250 Vehicle Front Slight #> 3251 None No impact Slight #> 3252 Vehicle Front Slight #> 3253 Vehicle Front Slight #> 3254 Vehicle Back Slight #> 3255 Vehicle Front Slight #> 3256 Pedestrian Front Slight #> 3257 Vehicle Back Slight #> 3258 Vehicle Front Slight #> 3259 Pedestrian Front Slight #> 3260 Wall or bridge parapet Offside Serious #> 3261 None No impact Slight #> 3262 Vehicle Nearside Slight #> 3263 Vehicle Offside Slight #> 3264 None No impact Slight #> 3265 Vehicle Back Slight #> 3266 Vehicle Front Slight #> 3267 None No impact Slight #> 3268 None No impact Slight #> 3269 Pedestrian Offside Slight #> 3270 None No impact Slight #> 3271 Pedestrian Back Slight #> 3272 Vehicle Front Slight #> 3273 Vehicle Back Slight #> 3274 Vehicle Back Slight #> 3275 Vehicle Front Slight #> 3276 Pedestrian Front Serious #> 3277 Vehicle Front Slight #> 3278 Vehicle Nearside Slight #> 3279 Vehicle Front Slight #> 3280 Vehicle Front Slight #> 3281 Vehicle Front Slight #> 3282 Vehicle Back Slight #> 3283 Vehicle Back Slight #> 3284 Vehicle Front Slight #> 3285 Vehicle Back Slight #> 3286 Vehicle Back Slight #> 3287 None No impact Slight #> 3288 Loose object on carriageway Nearside Slight #> 3289 Vehicle Offside Slight #> 3290 Vehicle Nearside Slight #> 3291 Vehicle Back Slight #> 3292 Vehicle Front Slight #> 3293 None No impact Slight #> 3294 Vehicle Back Serious #> 3295 Vehicle Front Serious #> 3296 None No impact Slight #> 3297 Vehicle Nearside Slight #> 3298 Vehicle Offside Slight #> 3299 Wall or bridge parapet Nearside Slight #> 3300 Vehicle Front Slight #> 3301 Vehicle Back Slight #> 3302 Vehicle Front Slight #> 3303 Vehicle Back Slight #> 3304 Vehicle Front Slight #> 3305 Vehicle Back Slight #> 3306 Vehicle Front Slight #> 3307 Vehicle Offside Fatal #> 3308 Pedestrian Front Fatal #> 3309 Pedestrian Front Slight #> 3310 None No impact Slight #> 3311 Pedestrian Front Serious #> 3312 Vehicle Offside Slight #> 3313 Vehicle Nearside Slight #> 3314 Pedestrian Front Slight #> 3315 Vehicle Front Slight #> 3316 Vehicle Back Slight #> 3317 Vehicle Back Slight #> 3318 Pedestrian Front Serious #> 3319 Pedestrian Front Slight #> 3320 Vehicle Nearside Slight #> 3321 Vehicle Front Slight #> 3322 Vehicle Front Slight #> 3323 Vehicle Nearside Slight #> 3324 Pedestrian Front Slight #> 3325 Vehicle Back Slight #> 3326 Vehicle Offside Slight #> 3327 Pedestrian Front Slight #> 3328 None No impact Slight #> 3329 Vehicle Offside Slight #> 3330 Vehicle Nearside Slight #> 3331 Vehicle Back Slight #> 3332 Vehicle Front Slight #> 3333 Pedestrian Front Slight #> 3334 Vehicle Front Slight #> 3335 Vehicle Nearside Slight #> 3336 Vehicle Front Slight #> 3337 Vehicle Back Slight #> 3338 Pedestrian Nearside Serious #> 3339 Vehicle Back Slight #> 3340 Vehicle Front Slight #> 3341 Vehicle Offside Slight #> 3342 Vehicle Nearside Slight #> 3343 Pedestrian Front Serious #> 3344 Vehicle Front Slight #> 3345 Vehicle Back Slight #> 3346 Vehicle Front Slight #> 3347 Vehicle Back Slight #> 3348 Vehicle Front Slight #> 3349 None No impact Slight #> 3350 Pedestrian Front Slight #> 3351 Vehicle Back Slight #> 3352 Vehicle Front Slight #> 3353 Pedestrian Front Serious #> 3354 Vehicle Offside Slight #> 3355 Vehicle Nearside Slight #> 3356 Vehicle Front Slight #> 3357 Vehicle Nearside Slight #> 3358 Pedestrian Front Slight #> 3359 Vehicle Front Serious #> 3360 Vehicle Offside Serious #> 3361 Unknown Unknown Slight #> 3362 Pedestrian Front Slight #> 3363 Vehicle Nearside Slight #> 3364 Vehicle Offside Slight #> 3365 Pedestrian Nearside Slight #> 3366 Unknown Unknown Slight #> 3367 None No impact Slight #> 3368 Vehicle Offside Serious #> 3369 Vehicle Nearside Serious #> 3370 None No impact Slight #> 3371 Pedestrian Front Slight #> 3372 Pedestrian Nearside Slight #> 3373 Pedestrian Offside Slight #> 3374 None No impact Slight #> 3375 Vehicle Nearside Slight #> 3376 Vehicle Offside Slight #> 3377 Pedestrian Nearside Slight #> 3378 None No impact Serious #> 3379 Pedestrian Front Slight #> 3380 Vehicle Front Slight #> 3381 Vehicle Offside Slight #> 3382 Pedestrian Nearside Slight #> 3383 Vehicle Front Slight #> 3384 Vehicle Offside Slight #> 3385 Pedestrian Offside Slight #> 3386 Vehicle Front Slight #> 3387 Vehicle Front Slight #> 3388 Vehicle Offside Slight #> 3389 Vehicle Back Slight #> 3390 Vehicle Nearside Slight #> 3391 Pedestrian Front Serious #> 3392 Vehicle Front Slight #> 3393 Vehicle Back Slight #> 3394 Pedestrian Offside Slight #> 3395 Vehicle Back Slight #> 3396 Vehicle Front Slight #> 3397 Vehicle Back Slight #> 3398 None No impact Slight #> 3399 Pedestrian Front Slight #> 3400 Vehicle Offside Slight #> 3401 Vehicle Nearside Slight #> 3402 Vehicle Offside Slight #> 3403 None No impact Slight #> 3404 Vehicle Front Slight #> 3405 Vehicle Nearside Slight #> 3406 Pedestrian Front Slight #> 3407 None No impact Slight #> 3408 Vehicle Front Slight #> 3409 Vehicle Back Slight #> 3410 Other Offside Serious #> 3411 Vehicle Front Slight #> 3412 Vehicle Back Slight #> 3413 Pedestrian Nearside Slight #> 3414 Vehicle Offside Serious #> 3415 Vehicle Front Serious #> 3416 Vehicle Back Slight #> 3417 Vehicle Front Slight #> 3418 Vehicle Back Slight #> 3419 None No impact Slight #> 3420 Pedestrian Front Slight #> 3421 Vehicle Front Slight #> 3422 Vehicle Back Slight #> 3423 None No impact Slight #> 3424 Vehicle Back Slight #> 3425 Vehicle Front Slight #> 3426 None No impact Slight #> 3427 Vehicle Offside Fatal #> 3428 Vehicle Front Fatal #> 3429 Vehicle Front Fatal #> 3430 Vehicle Front Fatal #> 3431 Pedestrian Front Slight #> 3432 None No impact Slight #> 3433 Vehicle Front Slight #> 3434 Vehicle Front Slight #> 3435 Vehicle Back Slight #> 3436 Vehicle Back Slight #> 3437 Vehicle Front Slight #> 3438 Vehicle Back Slight #> 3439 Vehicle Front Slight #> 3440 None No impact Slight #> 3441 Vehicle Offside Slight #> 3442 Vehicle Nearside Slight #> 3443 None No impact Slight #> 3444 Pedestrian Nearside Slight #> 3445 Pedestrian barrier rail Front Slight #> 3446 Vehicle Back Slight #> 3447 Vehicle Front Slight #> 3448 None No impact Serious #> 3449 Vehicle Front Slight #> 3450 Vehicle Nearside Slight #> 3451 Pedestrian Front Slight #> 3452 Pedestrian Front Serious #> 3453 Vehicle Back Slight #> 3454 Vehicle Front Slight #> 3455 Vehicle Back Slight #> 3456 Vehicle Front Slight #> 3457 None No impact Slight #> 3458 Vehicle Front Slight #> 3459 Vehicle Back Slight #> 3460 Vehicle Back Slight #> 3461 Vehicle Back Slight #> 3462 Pedestrian Unknown Slight #> 3463 Pedestrian Front Serious #> 3464 Pedestrian Nearside Slight #> 3465 Pedestrian Front Slight #> 3466 Vehicle Back Slight #> 3467 Vehicle Front Slight #> 3468 Pedestrian Front Slight #> 3469 None No impact Slight #> 3470 Vehicle Nearside Slight #> 3471 Vehicle Offside Slight #> 3472 Vehicle Nearside Slight #> 3473 Vehicle Offside Slight #> 3474 None No impact Slight #> 3475 None No impact Slight #> 3476 Vehicle Back Slight #> 3477 Vehicle Nearside Slight #> 3478 Vehicle Front Slight #> 3479 Vehicle Offside Slight #> 3480 None No impact Slight #> 3481 Vehicle Front Slight #> 3482 Vehicle Back Slight #> 3483 Vehicle Offside Slight #> 3484 Vehicle Front Slight #> 3485 None No impact Slight #> 3486 Vehicle Front Slight #> 3487 Vehicle Front Slight #> 3488 Vehicle Front Slight #> 3489 Vehicle Back Slight #> 3490 Pedestrian Offside Slight #> 3491 Hoarding/walkway Front Serious #> 3492 Pedestrian Front Slight #> 3493 Vehicle Back Slight #> 3494 Vehicle Front Slight #> 3495 Vehicle Front Serious #> 3496 Vehicle Front Serious #> 3497 None No impact Slight #> 3498 Pedestrian Nearside Slight #> 3499 Wall or bridge parapet Front Slight #> 3500 Vehicle Back Slight #> 3501 Vehicle Back Slight #> 3502 Vehicle Front Slight #> 3503 Vehicle Nearside Slight #> 3504 Vehicle Front Slight #> 3505 Vehicle Back Slight #> 3506 Vehicle Front Slight #> 3507 Vehicle Offside Slight #> 3508 Vehicle Front Slight #> 3509 Vehicle Offside Slight #> 3510 Vehicle Offside Slight #> 3511 Pedestrian Front Slight #> 3512 Pedestrian Front Slight #> 3513 Vehicle Front Serious #> 3514 Vehicle Nearside Serious #> 3515 None No impact Slight #> 3516 None No impact Slight #> 3517 None No impact Slight #> 3518 Pedestrian Offside Serious #> 3519 Pedestrian Front Slight #> 3520 Pedestrian Back Slight #> 3521 Vehicle Nearside Slight #> 3522 Vehicle Offside Slight #> 3523 Pedestrian Front Slight #> 3524 None No impact Slight #> 3525 Loose object on carriageway Front Slight #> 3526 Pedestrian Front Serious #> 3527 Pedestrian Front Slight #> 3528 Pedestrian Front Serious #> 3529 Vehicle Back Slight #> 3530 Vehicle Front Slight #> 3531 Pedestrian Offside Slight #> 3532 Pedestrian Nearside Slight #> 3533 Vehicle Front Slight #> 3534 Vehicle Back Slight #> 3535 Vehicle Back Slight #> 3536 Vehicle Front Slight #> 3537 Vehicle Offside Slight #> 3538 Vehicle Nearside Slight #> 3539 Vehicle Nearside Slight #> 3540 Vehicle Offside Slight #> 3541 Pedestrian Front Serious #> 3542 None No impact Serious #> 3543 Pedestrian Nearside Slight #> 3544 None No impact Slight #> 3545 Pedestrian Nearside Slight #> 3546 Pedestrian Nearside Slight #> 3547 Pedestrian Offside Slight #> 3548 Vehicle Back Slight #> 3549 Vehicle Front Slight #> 3550 Vehicle Back Slight #> 3551 Vehicle Front Slight #> 3552 Pedestrian Nearside Slight #> 3553 Vehicle Back Slight #> 3554 Vehicle Front Slight #> 3555 Vehicle Nearside Slight #> 3556 Vehicle Offside Slight #> 3557 Pedestrian Back Slight #> 3558 Vehicle Back Slight #> 3559 Vehicle Front Slight #> 3560 Vehicle Back Slight #> 3561 None No impact Slight #> 3562 None No impact Slight #> 3563 None No impact Slight #> 3564 Wall or bridge parapet Front Slight #> 3565 Pedestrian Front Slight #> 3566 None No impact Slight #> 3567 Vehicle Front Slight #> 3568 Vehicle Back Slight #> 3569 Pedestrian barrier rail Front Slight #> 3570 Vehicle Nearside Slight #> 3571 Vehicle Front Slight #> 3572 None No impact Slight #> 3573 Pedestrian Nearside Slight #> 3574 Vehicle Nearside Slight #> 3575 Vehicle Offside Slight #> 3576 Pedestrian Nearside Slight #> 3577 Vehicle Front Slight #> 3578 Vehicle Front Slight #> 3579 Vehicle Front Slight #> 3580 Vehicle Back Slight #> 3581 Pedestrian Front Slight #> 3582 Pedestrian Front Slight #> 3583 Vehicle Front Slight #> 3584 Vehicle Nearside Slight #> 3585 Vehicle Front Slight #> 3586 Vehicle Back Slight #> 3587 Vehicle Back Serious #> 3588 Vehicle Front Serious #> 3589 None No impact Serious #> 3590 Vehicle Offside Slight #> 3591 Vehicle Front Slight #> 3592 Pedestrian Offside Slight #> 3593 Vehicle Front Slight #> 3594 Vehicle Back Slight #> 3595 Pedestrian Back Slight #> 3596 Vehicle Nearside Slight #> 3597 Vehicle Front Slight #> 3598 Vehicle Back Slight #> 3599 Vehicle Front Slight #> 3600 Vehicle Front Slight #> 3601 Vehicle Offside Slight #> 3602 Vehicle Back Slight #> 3603 Vehicle Front Slight #> 3604 Vehicle Back Slight #> 3605 None No impact Slight #> 3606 Vehicle Front Slight #> 3607 Vehicle Back Slight #> 3608 Pedestrian Offside Slight #> 3609 Pedestrian Front Slight #> 3610 None No impact Slight #> 3611 None No impact Slight #> 3612 None No impact Slight #> 3613 None No impact Slight #> 3614 Vehicle Front Slight #> 3615 Vehicle Back Slight #> 3616 Vehicle Back Slight #> 3617 Vehicle Front Slight #> 3618 Pedestrian Nearside Serious #> 3619 Vehicle Nearside Serious #> 3620 Vehicle Offside Serious #> 3621 Vehicle Offside Slight #> 3622 Vehicle Nearside Slight #> 3623 Pedestrian Front Serious #> 3624 Pedestrian Front Serious #> 3625 Pedestrian Nearside Slight #> 3626 None No impact Slight #> 3627 Pedestrian Offside Fatal #> 3628 None No impact Slight #> 3629 None No impact Slight #> 3630 None No impact Serious #> 3631 Vehicle Front Slight #> 3632 Vehicle Back Slight #> 3633 None No impact Slight #> 3634 Vehicle Offside Slight #> 3635 None No impact Slight #> 3636 Vehicle Nearside Slight #> 3637 None No impact Slight #> 3638 Vehicle Nearside Slight #> 3639 Vehicle Offside Slight #> 3640 Pedestrian Nearside Serious #> 3641 Vehicle Back Slight #> 3642 Vehicle Front Slight #> 3643 Vehicle Front Slight #> 3644 Vehicle Nearside Slight #> 3645 Pedestrian Offside Slight #> 3646 Vehicle Front Slight #> 3647 Vehicle Offside Slight #> 3648 Vehicle Front Slight #> 3649 Vehicle Front Slight #> 3650 Pedestrian Offside Slight #> 3651 Vehicle Back Slight #> 3652 Vehicle Front Slight #> 3653 Pedestrian Offside Slight #> 3654 None No impact Slight #> 3655 Vehicle Offside Slight #> 3656 Vehicle Front Slight #> 3657 Vehicle Front Slight #> 3658 Vehicle Back Slight #> 3659 Vehicle Front Slight #> 3660 Vehicle Back Slight #> 3661 Vehicle Back Slight #> 3662 Vehicle Back Slight #> 3663 Vehicle Front Slight #> 3664 Vehicle Back Slight #> 3665 Vehicle Front Slight #> 3666 Vehicle Back Slight #> 3667 Vehicle Back Slight #> 3668 Vehicle Back Slight #> 3669 Vehicle Front Slight #> 3670 Vehicle Back Slight #> 3671 Vehicle Front Serious #> 3672 Vehicle Back Serious #> 3673 Vehicle Front Serious #> 3674 Vehicle Back Serious #> 3675 Vehicle Back Serious #> 3676 None No impact Slight #> 3677 Vehicle Nearside Slight #> 3678 Vehicle Offside Slight #> 3679 None No impact Slight #> 3680 None No impact Slight #> 3681 None No impact Slight #> 3682 Vehicle Nearside Slight #> 3683 Vehicle Offside Slight #> 3684 Pedestrian Back Slight #> 3685 Vehicle Nearside Slight #> 3686 Vehicle Offside Slight #> 3687 None No impact Slight #> 3688 None No impact Serious #> 3689 Pedestrian Front Slight #> 3690 Vehicle Back Slight #> 3691 Vehicle Front Slight #> 3692 Vehicle Back Slight #> 3693 Pedestrian Offside Serious #> 3694 Vehicle Offside Slight #> 3695 Vehicle Nearside Slight #> 3696 None No impact Slight #> 3697 Vehicle Front Slight #> 3698 Vehicle Back Slight #> 3699 None No impact Slight #> 3700 None No impact Slight #> 3701 Pedestrian Front Slight #> 3702 None No impact Slight #> 3703 Vehicle Front Slight #> 3704 Vehicle Back Slight #> 3705 Vehicle Front Slight #> 3706 Vehicle Back Slight #> 3707 Vehicle Front Slight #> 3708 Vehicle Front Slight #> 3709 Vehicle Nearside Serious #> 3710 Vehicle Offside Serious #> 3711 Vehicle Back Slight #> 3712 Vehicle Front Slight #> 3713 None No impact Slight #> 3714 Vehicle Back Slight #> 3715 Vehicle Front Slight #> 3716 Pedestrian Front Serious #> 3717 Pedestrian Front Slight #> 3718 Vehicle Offside Slight #> 3719 Vehicle Front Slight #> 3720 Vehicle Nearside Slight #> 3721 Vehicle Offside Slight #> 3722 Pedestrian Front Slight #> 3723 Pedestrian Front Serious #> 3724 Pedestrian Offside Serious #> 3725 Vehicle Back Slight #> 3726 Vehicle Front Slight #> 3727 Vehicle Back Slight #> 3728 None No impact Slight #> 3729 None No impact Slight #> 3730 Pedestrian Front Slight #> 3731 Pedestrian Offside Slight #> 3732 None No impact Slight #> 3733 Pedestrian Offside Slight #> 3734 Pedestrian Offside Slight #> 3735 Pedestrian Back Slight #> 3736 None No impact Slight #> 3737 Vehicle Front Slight #> 3738 Vehicle Back Slight #> 3739 Pedestrian Front Slight #> 3740 None No impact Serious #> 3741 Pedestrian Back Slight #> 3742 None No impact Slight #> 3743 Pedestrian Nearside Slight #> 3744 None No impact Slight #> 3745 Vehicle Back Slight #> 3746 Vehicle Front Slight #> 3747 Vehicle Front Slight #> 3748 Vehicle Back Slight #> 3749 Vehicle Front Slight #> 3750 Vehicle Front Slight #> 3751 None No impact Slight #> 3752 None No impact Slight #> 3753 Vehicle Back Slight #> 3754 Vehicle Front Slight #> 3755 Vehicle Front Serious #> 3756 Vehicle Front Serious #> 3757 None No impact Serious #> 3758 Vehicle Front Serious #> 3759 Vehicle Nearside Serious #> 3760 Vehicle Nearside Slight #> 3761 Vehicle Offside Slight #> 3762 None No impact Slight #> 3763 None No impact Slight #> 3764 None No impact Slight #> 3765 Pedestrian Front Slight #> 3766 Pedestrian Nearside Slight #> 3767 Vehicle Front Slight #> 3768 Vehicle Offside Slight #> 3769 None No impact Serious #> 3770 None No impact Slight #> 3771 Vehicle Front Slight #> 3772 Vehicle Back Slight #> 3773 Crash barrier Front Slight #> 3774 Pedestrian Offside Slight #> 3775 None No impact Slight #> 3776 Pedestrian Front Serious #> 3777 None No impact Slight #> 3778 Vehicle Back Slight #> 3779 Vehicle Front Slight #> 3780 Vehicle Front Slight #> 3781 None No impact Slight #> 3782 Vehicle Back Serious #> 3783 Vehicle Offside Serious #> 3784 Vehicle Back Slight #> 3785 Vehicle Front Slight #> 3786 Vehicle Front Slight #> 3787 Vehicle Back Slight #> 3788 None No impact Slight #> 3789 None No impact Slight #> 3790 Vehicle Front Slight #> 3791 Vehicle Back Slight #> 3792 Pedestrian Front Slight #> 3793 None No impact Serious #> 3794 Pedestrian Front Slight #> 3795 None No impact Slight #> 3796 Vehicle Nearside Slight #> 3797 Vehicle Offside Slight #> 3798 None No impact Serious #> 3799 Pedestrian Front Slight #> 3800 Vehicle Front Slight #> 3801 Vehicle Offside Slight #> 3802 Pedestrian Front Slight #> 3803 Pedestrian Offside Slight #> 3804 Pedestrian Front Serious #> 3805 Vehicle Offside Slight #> 3806 Vehicle Front Slight #> 3807 Vehicle Back Slight #> 3808 Vehicle Front Slight #> 3809 None No impact Slight #> 3810 Vehicle Front Slight #> 3811 Vehicle Nearside Slight #> 3812 Crash barrier Front Slight #> 3813 Pedestrian Front Slight #> 3814 Vehicle Nearside Slight #> 3815 Vehicle Offside Slight #> 3816 None No impact Slight #> 3817 Pedestrian Nearside Slight #> 3818 Vehicle Back Slight #> 3819 Vehicle Front Slight #> 3820 Vehicle Back Slight #> 3821 Vehicle Front Slight #> 3822 Vehicle Back Slight #> 3823 Wall or bridge parapet Back Serious #> 3824 None No impact Slight #> 3825 None No impact Slight #> 3826 Vehicle Front Serious #> 3827 Vehicle Offside Serious #> 3828 Wall or bridge parapet Nearside Slight #> 3829 Vehicle Front Slight #> 3830 Vehicle Back Slight #> 3831 Pedestrian Front Serious #> 3832 Vehicle Offside Slight #> 3833 Vehicle Nearside Slight #> 3834 Pedestrian Front Slight #> 3835 Vehicle Front Slight #> 3836 Vehicle Back Slight #> 3837 None No impact Serious #> 3838 Pedestrian Nearside Slight #> 3839 Pedestrian Nearside Slight #> 3840 Pedestrian Back Slight #> 3841 Vehicle Front Serious #> 3842 Vehicle Back Serious #> 3843 Vehicle Offside Slight #> 3844 Vehicle Nearside Slight #> 3845 None No impact Slight #> 3846 Vehicle Front Slight #> 3847 Vehicle Nearside Slight #> 3848 Vehicle Nearside Slight #> 3849 Vehicle Offside Slight #> 3850 Pedestrian Nearside Slight #> 3851 Pedestrian Offside Slight #> 3852 Pedestrian Nearside Slight #> 3853 Vehicle Offside Slight #> 3854 Vehicle Offside Slight #> 3855 Pedestrian Front Slight #> 3856 Wall or bridge parapet Back Slight #> 3857 Vehicle Back Slight #> 3858 Vehicle Front Slight #> 3859 Vehicle Offside Slight #> 3860 Vehicle Nearside Slight #> 3861 Vehicle Back Slight #> 3862 Vehicle Front Slight #> 3863 Pedestrian Nearside Slight #> 3864 Pedestrian Front Slight #> 3865 Pedestrian Front Serious #> 3866 None No impact Serious #> 3867 Pedestrian Front Slight #> 3868 Vehicle Nearside Slight #> 3869 Vehicle Offside Slight #> 3870 Pedestrian Front Serious #> 3871 Pedestrian Front Slight #> 3872 Pedestrian Offside Slight #> 3873 Pedestrian Front Slight #> 3874 None No impact Slight #> 3875 Vehicle Offside Slight #> 3876 Vehicle Nearside Slight #> 3877 Crash barrier Front Slight #> 3878 Pedestrian Front Slight #> 3879 Vehicle Back Slight #> 3880 Vehicle Front Slight #> 3881 None No impact Slight #> 3882 Vehicle Nearside Slight #> 3883 Vehicle Offside Slight #> 3884 Vehicle Front Slight #> 3885 Vehicle Nearside Slight #> 3886 Pedestrian Offside Slight #> 3887 Pedestrian Nearside Serious #> 3888 Pedestrian Front Slight #> 3889 None No impact Slight #> 3890 Pedestrian Front Slight #> 3891 Pedestrian Nearside Slight #> 3892 Vehicle Front Slight #> 3893 Vehicle Front Slight #> 3894 Vehicle Nearside Slight #> 3895 Vehicle Front Slight #> 3896 None No impact Slight #> 3897 Pedestrian Front Slight #> 3898 Pedestrian Offside Slight #> 3899 Pedestrian Front Slight #> 3900 Vehicle Nearside Slight #> 3901 Vehicle Offside Slight #> 3902 Pedestrian Front Slight #> 3903 None No impact Slight #> 3904 Pedestrian Nearside Slight #> 3905 Vehicle Front Slight #> 3906 Vehicle Back Slight #> 3907 Vehicle Front Slight #> 3908 Vehicle Offside Slight #> 3909 Vehicle Back Slight #> 3910 Vehicle Front Slight #> 3911 None No impact Slight #> 3912 Pedestrian Nearside Serious #> 3913 Pedestrian Offside Slight #> 3914 Vehicle Back Slight #> 3915 Vehicle Front Slight #> 3916 None No impact Slight #> 3917 None No impact Slight #> 3918 None No impact Slight #> 3919 Pedestrian Nearside Serious #> 3920 Vehicle Nearside Serious #> 3921 Vehicle Front Serious #> 3922 Vehicle Back Slight #> 3923 Vehicle Front Slight #> 3924 Pedestrian Offside Serious #> 3925 Vehicle Front Slight #> 3926 Vehicle Back Slight #> 3927 Vehicle Back Slight #> 3928 Pedestrian Offside Slight #> 3929 Vehicle Offside Slight #> 3930 Vehicle Nearside Slight #> 3931 None No impact Serious #> 3932 Vehicle Front Slight #> 3933 Vehicle Back Slight #> 3934 Vehicle Back Slight #> 3935 Vehicle Front Slight #> 3936 Vehicle Front Slight #> 3937 Vehicle Front Slight #> 3938 Vehicle Back Slight #> 3939 None No impact Slight #> 3940 Crash barrier Front Slight #> 3941 Pedestrian Nearside Slight #> 3942 Pedestrian Front Slight #> 3943 None No impact Slight #> 3944 None No impact Slight #> 3945 None No impact Slight #> 3946 Pedestrian Front Slight #> 3947 Pedestrian Nearside Slight #> 3948 Vehicle Front Slight #> 3949 Vehicle Back Slight #> 3950 Pedestrian barrier rail Front Slight #> 3951 Pedestrian Front Serious #> 3952 Pedestrian Nearside Slight #> 3953 None No impact Slight #> 3954 None No impact Slight #> 3955 None No impact Slight #> 3956 Vehicle Front Slight #> 3957 Vehicle Front Slight #> 3958 None No impact Serious #> 3959 Vehicle Offside Serious #> 3960 Vehicle Front Serious #> 3961 Vehicle Offside Serious #> 3962 Pedestrian Front Slight #> 3963 Vehicle Front Slight #> 3964 Vehicle Back Slight #> 3965 Pedestrian Front Serious #> 3966 Vehicle Nearside Slight #> 3967 Vehicle Offside Slight #> 3968 Vehicle Nearside Slight #> 3969 Vehicle Front Slight #> 3970 None No impact Slight #> 3971 Pedestrian Front Slight #> 3972 None No impact Serious #> 3973 Pedestrian Front Slight #> 3974 Vehicle Back Slight #> 3975 Vehicle Back Slight #> 3976 Vehicle Front Slight #> 3977 Vehicle Offside Serious #> 3978 Vehicle Front Serious #> 3979 Vehicle Nearside Slight #> 3980 Vehicle Offside Slight #> 3981 Vehicle Offside Slight #> 3982 Vehicle Nearside Slight #> 3983 Vehicle Nearside Slight #> 3984 Vehicle Offside Slight #> 3985 Vehicle Nearside Slight #> 3986 Pedestrian Offside Serious #> 3987 Vehicle Back Slight #> 3988 Vehicle Back Slight #> 3989 Vehicle Back Slight #> 3990 Vehicle Front Slight #> 3991 Pedestrian Offside Slight #> 3992 None No impact Slight #> 3993 Vehicle Nearside Slight #> 3994 Vehicle Offside Slight #> 3995 Vehicle Nearside Slight #> 3996 Vehicle Offside Slight #> 3997 None No impact Slight #> 3998 Vehicle Back Slight #> 3999 Vehicle Front Slight #> 4000 Vehicle Back Slight #> 4001 Vehicle Nearside Slight #> 4002 Vehicle Offside Slight #> 4003 Vehicle Nearside Slight #> 4004 None No impact Slight #> 4005 Pedestrian Back Slight #> 4006 Pedestrian Back Slight #> 4007 None No impact Slight #> 4008 Pedestrian Front Slight #> 4009 None No impact Slight #> 4010 None No impact Slight #> 4011 Vehicle Offside Slight #> 4012 Vehicle Nearside Slight #> 4013 Pedestrian Offside Slight #> 4014 None No impact Slight #> 4015 None No impact Slight #> 4016 Vehicle Back Slight #> 4017 Vehicle Front Slight #> 4018 Vehicle Front Slight #> 4019 Vehicle Back Slight #> 4020 Vehicle Offside Slight #> 4021 Vehicle Nearside Slight #> 4022 Vehicle Offside Slight #> 4023 Vehicle Back Slight #> 4024 Vehicle Front Slight #> 4025 Vehicle Nearside Slight #> 4026 Vehicle Offside Slight #> 4027 Vehicle Nearside Slight #> 4028 Vehicle Back Slight #> 4029 Vehicle Front Slight #> 4030 Vehicle Front Slight #> 4031 Vehicle Offside Slight #> 4032 Pedestrian barrier rail Front Slight #> 4033 None No impact Slight #> 4034 Pedestrian Front Serious #> 4035 Vehicle Front Slight #> 4036 Vehicle Back Slight #> 4037 Vehicle Front Slight #> 4038 Vehicle Offside Slight #> 4039 Vehicle Front Serious #> 4040 Vehicle Back Serious #> 4041 Pedestrian Nearside Serious #> 4042 Vehicle Offside Slight #> 4043 Vehicle Nearside Slight #> 4044 Vehicle Offside Slight #> 4045 Crash barrier Back Slight #> 4046 None No impact Slight #> 4047 None No impact Slight #> 4048 Pedestrian Front Slight #> 4049 Vehicle Front Slight #> 4050 Vehicle Front Slight #> 4051 Vehicle Front Slight #> 4052 Vehicle Front Slight #> 4053 Vehicle Nearside Slight #> 4054 Vehicle Offside Slight #> 4055 Vehicle Back Serious #> 4056 Vehicle Back Serious #> 4057 Vehicle Front Serious #> 4058 Vehicle Front Serious #> 4059 Vehicle Front Serious #> 4060 Vehicle Nearside Serious #> 4061 None No impact Serious #> 4062 Pedestrian Offside Slight #> 4063 Vehicle Front Slight #> 4064 Vehicle Back Slight #> 4065 Pedestrian Front Slight #> 4066 Vehicle Nearside Slight #> 4067 Vehicle Offside Slight #> 4068 None No impact Slight #> 4069 None No impact Slight #> 4070 Vehicle Offside Slight #> 4071 Vehicle Front Slight #> 4072 Vehicle Offside Slight #> 4073 Vehicle Nearside Slight #> 4074 Vehicle Front Slight #> 4075 Vehicle Nearside Slight #> 4076 Vehicle Front Slight #> 4077 Vehicle Front Slight #> 4078 Pedestrian Front Slight #> 4079 Vehicle Nearside Slight #> 4080 Vehicle Front Slight #> 4081 Vehicle Nearside Slight #> 4082 Vehicle Front Slight #> 4083 Vehicle Front Slight #> 4084 Vehicle Offside Slight #> 4085 Pedestrian Front Slight #> 4086 Pedestrian Front Serious #> 4087 Pedestrian Front Slight #> 4088 Pedestrian Nearside Slight #> 4089 Pedestrian Front Slight #> 4090 Crash barrier Front Slight #> 4091 None No impact Slight #> 4092 Vehicle Offside Serious #> 4093 Vehicle Nearside Serious #> 4094 Vehicle Front Slight #> 4095 Vehicle Front Slight #> 4096 Road works barrier, sign or signal Front Slight #> 4097 None No impact Slight #> 4098 Vehicle Nearside Slight #> 4099 Vehicle Offside Slight #> 4100 Pedestrian Front Slight #> 4101 Pedestrian Front Slight #> 4102 Pedestrian Back Slight #> 4103 Vehicle Front Slight #> 4104 Vehicle Back Slight #> 4105 Pedestrian Back Slight #> 4106 None No impact Slight #> 4107 Vehicle Front Slight #> 4108 Vehicle Back Slight #> 4109 Vehicle Back Slight #> 4110 Vehicle Front Slight #> 4111 Vehicle Back Slight #> 4112 Vehicle Front Slight #> 4113 Vehicle Front Slight #> 4114 Vehicle Back Slight #> 4115 Vehicle Back Slight #> 4116 Pedestrian Front Serious #> 4117 None No impact Slight #> 4118 None No impact Slight #> 4119 None No impact Serious #> 4120 Vehicle Nearside Slight #> 4121 Vehicle Front Slight #> 4122 Pedestrian Offside Slight #> 4123 None No impact Slight #> 4124 None No impact Slight #> 4125 Vehicle Back Slight #> 4126 Vehicle Front Slight #> 4127 None No impact Slight #> 4128 None No impact Slight #> 4129 Crash barrier Nearside Slight #> 4130 None No impact Serious #> 4131 Vehicle Front Slight #> 4132 Vehicle Front Slight #> 4133 Vehicle Back Slight #> 4134 Vehicle Front Slight #> 4135 None No impact Slight #> 4136 Vehicle Offside Slight #> 4137 Vehicle Front Slight #> 4138 Vehicle Front Slight #> 4139 Vehicle Nearside Slight #> 4140 Vehicle Back Slight #> 4141 Vehicle Front Slight #> 4142 Pedestrian Front Slight #> 4143 Vehicle Nearside Slight #> 4144 Vehicle Front Slight #> 4145 Vehicle Offside Slight #> 4146 Vehicle Offside Slight #> 4147 None No impact Slight #> 4148 None No impact Slight #> 4149 Pedestrian Front Fatal #> 4150 Vehicle Back Slight #> 4151 Vehicle Front Slight #> 4152 Vehicle Back Slight #> 4153 Vehicle Front Serious #> 4154 Vehicle Nearside Serious #> 4155 None No impact Slight #> 4156 Vehicle Front Slight #> 4157 Vehicle Nearside Slight #> 4158 None No impact Slight #> 4159 Crash barrier Front Slight #> 4160 Vehicle Offside Slight #> 4161 Vehicle Nearside Slight #> 4162 None No impact Slight #> 4163 Pedestrian Front Slight #> 4164 None No impact Slight #> 4165 None No impact Slight #> 4166 None No impact Slight #> 4167 Vehicle Back Slight #> 4168 Vehicle Back Slight #> 4169 Vehicle Front Slight #> 4170 None No impact Serious #> 4171 None No impact Slight #> 4172 Pedestrian Front Slight #> 4173 Vehicle Front Slight #> 4174 Vehicle Back Slight #> 4175 Pedestrian Front Slight #> 4176 Vehicle Back Slight #> 4177 Vehicle Nearside Slight #> 4178 None No impact Slight #> 4179 Pedestrian Front Slight #> 4180 None No impact Slight #> 4181 None No impact Slight #> 4182 Pedestrian Front Slight #> 4183 Pedestrian Nearside Slight #> 4184 Vehicle Offside Serious #> 4185 Vehicle Nearside Serious #> 4186 None No impact Serious #> 4187 None No impact Slight #> 4188 Pedestrian Nearside Serious #> 4189 Vehicle Front Slight #> 4190 Vehicle Nearside Slight #> 4191 Vehicle Nearside Slight #> 4192 Vehicle Offside Slight #> 4193 Pedestrian Nearside Serious #> 4194 Pedestrian Offside Slight #> 4195 Pedestrian Offside Slight #> 4196 None No impact Slight #> 4197 Pedestrian Offside Slight #> 4198 None No impact Slight #> 4199 None No impact Slight #> 4200 None No impact Slight #> 4201 Pedestrian Front Slight #> 4202 Vehicle Nearside Slight #> 4203 Vehicle Offside Slight #> 4204 Vehicle Offside Slight #> 4205 Vehicle Nearside Slight #> 4206 Vehicle Front Slight #> 4207 Vehicle Back Slight #> 4208 None No impact Slight #> 4209 Pedestrian Front Serious #> 4210 Vehicle Nearside Slight #> 4211 Vehicle Offside Slight #> 4212 Vehicle Back Slight #> 4213 Vehicle Front Slight #> 4214 Pedestrian Front Serious #> 4215 Pedestrian Nearside Slight #> 4216 Vehicle Front Slight #> 4217 Vehicle Back Slight #> 4218 None No impact Serious #> 4219 Pedestrian Front Serious #> 4220 Vehicle Front Slight #> 4221 Vehicle Back Slight #> 4222 Pedestrian Offside Slight #> 4223 Vehicle Offside Slight #> 4224 Vehicle Nearside Slight #> 4225 None No impact Slight #> 4226 Vehicle Front Slight #> 4227 Vehicle Back Slight #> 4228 None No impact Slight #> 4229 Crash barrier Nearside Slight #> 4230 None No impact Slight #> 4231 None No impact Serious #> 4232 Vehicle Nearside Slight #> 4233 Vehicle Offside Slight #> 4234 Vehicle Offside Slight #> 4235 Vehicle Front Slight #> 4236 Vehicle Offside Slight #> 4237 Vehicle Front Slight #> 4238 Pedestrian Front Slight #> 4239 Pedestrian Nearside Serious #> 4240 Pedestrian Front Slight #> 4241 Pedestrian Back Slight #> 4242 Pedestrian Nearside Slight #> 4243 Vehicle Front Serious #> 4244 Vehicle Back Serious #> 4245 Vehicle Offside Slight #> 4246 Vehicle Nearside Slight #> 4247 None No impact Slight #> 4248 Vehicle Nearside Slight #> 4249 Vehicle Offside Slight #> 4250 Vehicle Nearside Slight #> 4251 Vehicle Offside Slight #> 4252 Vehicle Front Serious #> 4253 Vehicle Front Serious #> 4254 Pedestrian Front Slight #> 4255 Vehicle Back Slight #> 4256 Vehicle Back Slight #> 4257 Vehicle Front Slight #> 4258 None No impact Slight #> 4259 Pedestrian Offside Slight #> 4260 None No impact Slight #> 4261 None No impact Slight #> 4262 Pedestrian Front Slight #> 4263 Vehicle Offside Slight #> 4264 Vehicle Front Slight #> 4265 Vehicle Offside Slight #> 4266 Vehicle Nearside Slight #> 4267 Pedestrian Front Slight #> 4268 Vehicle Front Slight #> 4269 Vehicle Back Slight #> 4270 Vehicle Back Slight #> 4271 Pedestrian Front Slight #> 4272 Pedestrian Front Serious #> 4273 Crash barrier Front Serious #> 4274 Vehicle Front Slight #> 4275 Vehicle Front Slight #> 4276 Crash barrier Nearside Serious #> 4277 Pedestrian Front Slight #> 4278 Pedestrian Nearside Slight #> 4279 Pedestrian Front Slight #> 4280 None No impact Slight #> 4281 Pedestrian Front Slight #> 4282 Vehicle Front Slight #> 4283 Vehicle Back Slight #> 4284 Vehicle Back Serious #> 4285 Vehicle Front Serious #> 4286 Vehicle Back Serious #> 4287 None No impact Slight #> 4288 None No impact Slight #> 4289 None No impact Slight #> 4290 Pedestrian Nearside Slight #> 4291 Vehicle Offside Slight #> 4292 Vehicle Nearside Slight #> 4293 Vehicle Back Slight #> 4294 Vehicle Front Slight #> 4295 Vehicle Front Slight #> 4296 Vehicle Front Slight #> 4297 Vehicle Nearside Slight #> 4298 Vehicle Offside Slight #> 4299 Lamp-post or telephone-post Front Slight #> 4300 Vehicle Offside Slight #> 4301 Vehicle Back Slight #> 4302 Vehicle Front Slight #> 4303 Vehicle Back Slight #> 4304 None No impact Slight #> 4305 None No impact Slight #> 4306 None No impact Slight #> 4307 Pedestrian Front Slight #> 4308 None No impact Slight #> 4309 None No impact Slight #> 4310 None No impact Slight #> 4311 None No impact Serious #> 4312 None No impact Slight #> 4313 Vehicle Nearside Slight #> 4314 Vehicle Offside Slight #> 4315 Vehicle Nearside Slight #> 4316 Vehicle Offside Slight #> 4317 Vehicle Front Slight #> 4318 Vehicle Back Slight #> 4319 Pedestrian Front Serious #> 4320 None No impact Slight #> 4321 Pedestrian Offside Slight #> 4322 Pedestrian Offside Slight #> 4323 Vehicle Front Slight #> 4324 Vehicle Back Slight #> 4325 None No impact Serious #> 4326 None No impact Slight #> 4327 Vehicle Nearside Slight #> 4328 Vehicle Offside Slight #> 4329 Pedestrian Back Slight #> 4330 None No impact Slight #> 4331 Vehicle Nearside Slight #> 4332 Vehicle Front Slight #> 4333 Pedestrian Offside Slight #> 4334 Vehicle Back Slight #> 4335 Vehicle Front Slight #> 4336 Pedestrian Nearside Serious #> 4337 Pedestrian Front Slight #> 4338 Pedestrian Nearside Serious #> 4339 Vehicle Nearside Serious #> 4340 Vehicle Offside Serious #> 4341 None No impact Slight #> 4342 None No impact Slight #> 4343 Vehicle Offside Serious #> 4344 Vehicle Nearside Serious #> 4345 Vehicle Front Slight #> 4346 Vehicle Front Slight #> 4347 Pedestrian Nearside Slight #> 4348 Vehicle Front Serious #> 4349 Vehicle Back Serious #> 4350 Pedestrian Front Slight #> 4351 Pedestrian Nearside Slight #> 4352 Vehicle Back Slight #> 4353 Vehicle Front Slight #> 4354 Pedestrian Nearside Slight #> 4355 Pedestrian Nearside Slight #> 4356 None No impact Slight #> 4357 None No impact Slight #> 4358 None No impact Serious #> 4359 Pedestrian Offside Slight #> 4360 Vehicle Back Slight #> 4361 Vehicle Back Slight #> 4362 Vehicle Front Slight #> 4363 Vehicle Nearside Slight #> 4364 Vehicle Offside Slight #> 4365 None No impact Slight #> 4366 Pedestrian Front Serious #> 4367 Vehicle Front Slight #> 4368 Vehicle Front Slight #> 4369 Pedestrian Front Slight #> 4370 None No impact Slight #> 4371 Vehicle Nearside Slight #> 4372 Vehicle Offside Slight #> 4373 None No impact Slight #> 4374 Vehicle Nearside Slight #> 4375 Vehicle Offside Slight #> 4376 Vehicle Front Slight #> 4377 Vehicle Offside Slight #> 4378 Vehicle Front Slight #> 4379 Vehicle Back Slight #> 4380 None No impact Slight #> 4381 None No impact Slight #> 4382 Vehicle Front Slight #> 4383 Vehicle Back Slight #> 4384 Vehicle Front Slight #> 4385 Vehicle Front Slight #> 4386 None No impact Slight #> 4387 Pedestrian Offside Slight #> 4388 Road works barrier, sign or signal Front Slight #> 4389 None No impact Slight #> 4390 None No impact Slight #> 4391 None No impact Slight #> 4392 Vehicle Back Slight #> 4393 Vehicle Back Slight #> 4394 Vehicle Front Slight #> 4395 Pedestrian Offside Slight #> 4396 Vehicle Offside Slight #> 4397 Vehicle Nearside Slight #> 4398 None No impact Slight #> 4399 None No impact Slight #> 4400 Vehicle Back Slight #> 4401 Vehicle Front Slight #> 4402 Vehicle Front Slight #> 4403 Vehicle Back Slight #> 4404 Pedestrian Front Slight #> 4405 None No impact Slight #> 4406 None No impact Slight #> 4407 Vehicle Back Slight #> 4408 Vehicle Front Slight #> 4409 None No impact Slight #> 4410 None No impact Slight #> 4411 Pedestrian Front Slight #> 4412 None No impact Slight #> 4413 Vehicle Offside Slight #> 4414 Vehicle Nearside Slight #> 4415 None No impact Slight #> 4416 Pedestrian Offside Slight #> 4417 Vehicle Front Slight #> 4418 Vehicle Back Slight #> 4419 Vehicle Front Slight #> 4420 Vehicle Back Slight #> 4421 Vehicle Back Slight #> 4422 Vehicle Front Slight #> 4423 Pedestrian Offside Slight #> 4424 Pedestrian Back Slight #> 4425 Vehicle Front Slight #> 4426 Vehicle Back Slight #> 4427 None No impact Slight #> 4428 Pedestrian Nearside Slight #> 4429 Pedestrian Nearside Slight #> 4430 Road sign Front Slight #> 4431 Vehicle Front Slight #> 4432 Vehicle Front Slight #> 4433 Pedestrian Offside Slight #> 4434 Pedestrian Front Serious #> 4435 Pedestrian Front Slight #> 4436 None No impact Slight #> 4437 Pedestrian Front Slight #> 4438 Vehicle Back Slight #> 4439 Vehicle Nearside Slight #> 4440 None No impact Slight #> 4441 Vehicle Offside Serious #> 4442 Vehicle Nearside Serious #> 4443 Pedestrian Front Serious #> 4444 None No impact Slight #> 4445 Pedestrian Front Slight #> 4446 None No impact Slight #> 4447 None No impact Slight #> 4448 Vehicle Front Slight #> 4449 Vehicle Front Slight #> 4450 Vehicle Front Slight #> 4451 Vehicle Front Slight #> 4452 Vehicle Front Slight #> 4453 Pedestrian Front Slight #> 4454 None No impact Slight #> 4455 Pedestrian Front Slight #> 4456 Pedestrian Back Slight #> 4457 Pedestrian Offside Slight #> 4458 Vehicle Front Slight #> 4459 Vehicle Back Slight #> 4460 None No impact Slight #> 4461 Vehicle Back Slight #> 4462 Vehicle Front Slight #> 4463 Vehicle Back Slight #> 4464 Pedestrian Front Slight #> 4465 None No impact Slight #> 4466 None No impact Slight #> 4467 Vehicle Front Slight #> 4468 Vehicle Front Slight #> 4469 Pedestrian Nearside Slight #> 4470 Vehicle Nearside Slight #> 4471 Vehicle Front Slight #> 4472 None No impact Slight #> 4473 Vehicle Back Slight #> 4474 Vehicle Back Slight #> 4475 Vehicle Front Slight #> 4476 Pedestrian Back Slight #> 4477 None No impact Serious #> 4478 None No impact Serious #> 4479 None No impact Slight #> 4480 Vehicle Front Slight #> 4481 Vehicle Back Slight #> 4482 Pedestrian Front Slight #> 4483 Wall or bridge parapet Front Serious #> 4484 Pedestrian Back Serious #> 4485 Vehicle Offside Slight #> 4486 Vehicle Front Slight #> 4487 None No impact Slight #> 4488 None No impact Slight #> 4489 None No impact Slight #> 4490 Pedestrian Front Serious #> 4491 Pedestrian Nearside Slight #> 4492 Vehicle Front Slight #> 4493 Vehicle Back Slight #> 4494 None No impact Slight #> 4495 Pedestrian Front Serious #> 4496 Vehicle Offside Slight #> 4497 Vehicle Nearside Slight #> 4498 Pedestrian Nearside Slight #> 4499 None No impact Slight #> 4500 Unknown Unknown Slight #> 4501 Vehicle Offside Slight #> 4502 Vehicle Nearside Slight #> 4503 Vehicle Offside Slight #> 4504 Vehicle Front Slight #> 4505 Vehicle Offside Slight #> 4506 Traffic signal post Front Slight #> 4507 None No impact Slight #> 4508 None No impact Slight #> 4509 Pedestrian Front Slight #> 4510 Pedestrian Front Slight #> 4511 None No impact Slight #> 4512 Vehicle Back Slight #> 4513 Vehicle Front Slight #> 4514 Vehicle Offside Slight #> 4515 Pedestrian Nearside Slight #> 4516 Vehicle Front Slight #> 4517 Vehicle Offside Slight #> 4518 Pedestrian Front Serious #> 4519 Pedestrian Offside Slight #> 4520 Pedestrian Nearside Slight #> 4521 Vehicle Back Slight #> 4522 Vehicle Back Slight #> 4523 Vehicle Front Slight #> 4524 Pedestrian Offside Slight #> 4525 Vehicle Nearside Slight #> 4526 Vehicle Offside Slight #> 4527 Vehicle Front Slight #> 4528 Vehicle Front Slight #> 4529 Vehicle Front Slight #> 4530 Pedestrian Nearside Slight #> 4531 Vehicle Front Slight #> 4532 Vehicle Back Slight #> 4533 Vehicle Front Slight #> 4534 None No impact Slight #> 4535 None No impact Slight #> 4536 None No impact Slight #> 4537 Skips Front Slight #> 4538 Pedestrian Nearside Slight #> 4539 None No impact Slight #> 4540 None No impact Slight #> 4541 None No impact Slight #> 4542 Pedestrian Nearside Slight #> 4543 Vehicle Back Slight #> 4544 Vehicle Back Slight #> 4545 Vehicle Back Slight #> 4546 Vehicle Back Slight #> 4547 Vehicle Front Slight #> 4548 None No impact Slight #> 4549 Pedestrian Nearside Slight #> 4550 None No impact Slight #> 4551 Pedestrian Front Slight #> 4552 Vehicle Nearside Slight #> 4553 Vehicle Offside Slight #> 4554 None No impact Serious #> 4555 None No impact Slight #> 4556 None No impact Serious #> 4557 Vehicle Front Slight #> 4558 Vehicle Back Slight #> 4559 Crash barrier Front Slight #> 4560 Pedestrian Front Slight #> 4561 None No impact Slight #> 4562 Pedestrian barrier rail Back Slight #> 4563 None No impact Slight #> 4564 Pedestrian Front Slight #> 4565 None No impact Serious #> 4566 Pedestrian Nearside Slight #> 4567 None No impact Slight #> 4568 None No impact Slight #> 4569 Vehicle Front Slight #> 4570 Vehicle Back Slight #> 4571 None No impact Slight #> 4572 None No impact Slight #> 4573 Pedestrian Front Slight #> 4574 Vehicle Front Slight #> 4575 Vehicle Back Slight #> 4576 None No impact Slight #> 4577 Pedestrian Front Slight #> 4578 None No impact Slight #> 4579 Vehicle Back Slight #> 4580 Vehicle Front Slight #> 4581 None No impact Serious #> 4582 Pedestrian Nearside Slight #> 4583 Vehicle Back Slight #> 4584 Vehicle Front Slight #> 4585 Vehicle Back Slight #> 4586 Vehicle Front Slight #> 4587 None No impact Slight #> 4588 Vehicle Back Slight #> 4589 Vehicle Front Slight #> 4590 Vehicle Front Slight #> 4591 Vehicle Front Slight #> 4592 Vehicle Front Slight #> 4593 Vehicle Back Slight #> 4594 Vehicle Front Slight #> 4595 Vehicle Back Slight #> 4596 Vehicle Front Serious #> 4597 Vehicle Front Serious #> 4598 Vehicle Front Slight #> 4599 Vehicle Back Slight #> 4600 Vehicle Offside Slight #> 4601 Vehicle Nearside Slight #> 4602 Vehicle Front Slight #> 4603 Vehicle Front Slight #> 4604 Vehicle Front Slight #> 4605 Vehicle Back Slight #> 4606 Pedestrian Front Fatal #> 4607 None No impact Slight #> 4608 Pedestrian Offside Serious #> 4609 None No impact Slight #> 4610 None No impact Slight #> 4611 Vehicle Back Slight #> 4612 Vehicle Back Slight #> 4613 Vehicle Front Slight #> 4614 Vehicle Back Slight #> 4615 Vehicle Front Slight #> 4616 Vehicle Front Slight #> 4617 Vehicle Back Slight #> 4618 Vehicle Back Slight #> 4619 Pedestrian Back Slight #> 4620 None No impact Slight #> 4621 None No impact Slight #> 4622 None No impact Slight #> 4623 Vehicle Back Slight #> 4624 Vehicle Front Slight #> 4625 None No impact Serious #> 4626 Vehicle Front Slight #> 4627 Vehicle Nearside Slight #> 4628 Pedestrian Nearside Slight #> 4629 None No impact Slight #> 4630 Vehicle Front Slight #> 4631 Vehicle Offside Slight #> 4632 None No impact Slight #> 4633 Pedestrian Front Slight #> 4634 Vehicle Nearside Slight #> 4635 Vehicle Front Slight #> 4636 Vehicle Back Slight #> 4637 Vehicle Front Slight #> 4638 None No impact Slight #> 4639 Vehicle Front Slight #> 4640 Vehicle Back Slight #> 4641 Vehicle Offside Slight #> 4642 Vehicle Front Slight #> 4643 Vehicle Back Serious #> 4644 Vehicle Front Serious #> 4645 Vehicle Back Slight #> 4646 Vehicle Front Slight #> 4647 None No impact Serious #> 4648 Wall or bridge parapet Front Slight #> 4649 None No impact Slight #> 4650 None No impact Slight #> 4651 Pedestrian Offside Serious #> 4652 Vehicle Nearside Slight #> 4653 Vehicle Front Slight #> 4654 Vehicle Front Slight #> 4655 Vehicle Nearside Slight #> 4656 Vehicle Offside Slight #> 4657 Vehicle Nearside Slight #> 4658 Vehicle Back Slight #> 4659 Vehicle Front Slight #> 4660 Pedestrian Nearside Slight #> 4661 None No impact Slight #> 4662 Vehicle Front Slight #> 4663 Vehicle Nearside Slight #> 4664 None No impact Slight #> 4665 Vehicle Back Slight #> 4666 Vehicle Front Slight #> 4667 None No impact Slight #> 4668 None No impact Slight #> 4669 None No impact Slight #> 4670 Vehicle Nearside Slight #> 4671 Vehicle Front Slight #> 4672 Vehicle Back Slight #> 4673 Vehicle Front Slight #> 4674 Vehicle Back Slight #> 4675 Vehicle Front Slight #> 4676 Pedestrian Nearside Serious #> 4677 None No impact Serious #> 4678 Vehicle Front Slight #> 4679 Vehicle Back Slight #> 4680 Vehicle Back Slight #> 4681 Pedestrian Offside Slight #> 4682 Animal Front Slight #> 4683 Vehicle Back Slight #> 4684 Vehicle Front Slight #> 4685 Vehicle Nearside Slight #> 4686 Vehicle Offside Slight #> 4687 Pedestrian Front Serious #> 4688 None No impact Slight #> 4689 None No impact Slight #> 4690 None No impact Slight #> 4691 Pedestrian Nearside Slight #> 4692 Unknown Unknown Slight #> 4693 Pedestrian Back Slight #> 4694 Pedestrian Nearside Slight #> 4695 None No impact Slight #> 4696 None No impact Slight #> 4697 Vehicle Front Serious #> 4698 Vehicle Front Serious #> 4699 None No impact Slight #> 4700 Crash barrier Front Slight #> 4701 Vehicle Back Slight #> 4702 Vehicle Front Slight #> 4703 Vehicle Nearside Slight #> 4704 Vehicle Offside Slight #> 4705 None No impact Slight #> 4706 Vehicle Nearside Slight #> 4707 Vehicle Offside Slight #> 4708 Vehicle Nearside Slight #> 4709 Vehicle Offside Slight #> 4710 Vehicle Front Slight #> 4711 Vehicle Back Slight #> 4712 None No impact Slight #> 4713 Vehicle Front Slight #> 4714 Vehicle Offside Slight #> 4715 None No impact Slight #> 4716 None No impact Slight #> 4717 Bollard Front Slight #> 4718 Pedestrian Back Slight #> 4719 Pedestrian Nearside Slight #> 4720 Pedestrian Front Serious #> 4721 None No impact Slight #> 4722 Pedestrian Nearside Slight #> 4723 None No impact Serious #> 4724 Unknown Unknown Serious #> 4725 Pedestrian Front Serious #> 4726 Vehicle Nearside Slight #> 4727 Vehicle Offside Slight #> 4728 Vehicle Offside Slight #> 4729 Vehicle Front Slight #> 4730 Road sign Front Slight #> 4731 Vehicle Front Slight #> 4732 Vehicle Back Slight #> 4733 Vehicle Nearside Slight #> 4734 Vehicle No impact Slight #> 4735 Animal Offside Serious #> 4736 Vehicle Offside Slight #> 4737 Vehicle Front Slight #> 4738 Vehicle Front Serious #> 4739 Vehicle Front Serious #> 4740 None No impact Slight #> 4741 None No impact Slight #> 4742 None No impact Slight #> 4743 Pedestrian Front Slight #> 4744 None No impact Slight #> 4745 Pedestrian Front Slight #> 4746 None No impact Slight #> 4747 Crash barrier Offside Slight #> 4748 None No impact Slight #> 4749 Pedestrian Nearside Slight #> 4750 None No impact Slight #> 4751 None No impact Slight #> 4752 None No impact Slight #> 4753 Pedestrian Front Slight #> 4754 None No impact Slight #> 4755 Pedestrian barrier rail Nearside Serious #> 4756 None No impact Slight #> 4757 Vehicle Nearside Slight #> 4758 Vehicle Offside Slight #> 4759 Pedestrian Nearside Slight #> 4760 None No impact Serious #> 4761 Vehicle Front Slight #> 4762 Vehicle Back Slight #> 4763 Vehicle Front Slight #> 4764 Vehicle Front Slight #> 4765 Vehicle Front Slight #> 4766 Vehicle Front Slight #> 4767 Vehicle Back Slight #> 4768 Vehicle Front Slight #> 4769 Vehicle Back Slight #> 4770 Vehicle Back Slight #> 4771 None No impact Slight #> 4772 Vehicle Front Serious #> 4773 Vehicle Back Serious #> 4774 Crash barrier Front Slight #> 4775 None No impact Slight #> 4776 Vehicle Nearside Slight #> 4777 Vehicle Front Slight #> 4778 Pedestrian Back Slight #> 4779 Pedestrian Front Serious #> 4780 Pedestrian Back Slight #> 4781 Pedestrian Nearside Slight #> 4782 None No impact Slight #> 4783 Pedestrian Offside Serious #> 4784 Vehicle Front Slight #> 4785 Vehicle Back Slight #> 4786 Pedestrian Nearside Serious #> 4787 Vehicle Front Slight #> 4788 Vehicle Back Slight #> 4789 Pedestrian Nearside Serious #> 4790 None No impact Slight #> 4791 Animal Front Serious #> 4792 Pedestrian Offside Serious #> 4793 Vehicle Front Slight #> 4794 Vehicle Back Slight #> 4795 Pedestrian Front Slight #> 4796 Vehicle Back Slight #> 4797 Vehicle Front Slight #> 4798 Pedestrian Front Slight #> 4799 Vehicle Front Slight #> 4800 Vehicle Back Slight #> 4801 None No impact Slight #> 4802 None No impact Slight #> 4803 Pedestrian Offside Slight #> 4804 None No impact Serious #> 4805 None No impact Slight #> 4806 Pedestrian Front Serious #> 4807 Pedestrian Front Slight #> 4808 Vehicle Nearside Serious #> 4809 Vehicle Offside Serious #> 4810 None No impact Slight #> 4811 Vehicle Front Slight #> 4812 Vehicle Front Slight #> 4813 Vehicle Offside Slight #> 4814 Vehicle Nearside Slight #> 4815 Pedestrian Offside Serious #> 4816 None No impact Slight #> 4817 None No impact Slight #> 4818 None No impact Slight #> 4819 None No impact Slight #> 4820 None No impact Slight #> 4821 Vehicle Back Slight #> 4822 Vehicle Front Slight #> 4823 Pedestrian Nearside Slight #> 4824 Vehicle Back Slight #> 4825 Vehicle Front Slight #> 4826 Vehicle Back Slight #> 4827 Pedestrian Back Slight #> 4828 Pedestrian Nearside Serious #> 4829 Pedestrian Offside Slight #> 4830 Vehicle Offside Slight #> 4831 Vehicle Front Slight #> 4832 None No impact Slight #> 4833 Vehicle Front Slight #> 4834 Vehicle Back Slight #> 4835 Vehicle Front Slight #> 4836 Vehicle Back Slight #> 4837 Pedestrian Nearside Slight #> 4838 None No impact Slight #> 4839 Vehicle Offside Slight #> 4840 Vehicle Nearside Slight #> 4841 Vehicle Front Slight #> 4842 Vehicle Front Slight #> 4843 Vehicle Back Slight #> 4844 Vehicle Front Slight #> 4845 Vehicle Back Slight #> 4846 None No impact Slight #> 4847 None No impact Slight #> 4848 None No impact Slight #> 4849 Vehicle Offside Slight #> 4850 None No impact Slight #> 4851 Vehicle Nearside Slight #> 4852 Bollard Front Serious #> 4853 Vehicle Offside Slight #> 4854 Vehicle Nearside Slight #> 4855 Vehicle Offside Slight #> 4856 None No impact Slight #> 4857 None No impact Slight #> 4858 Pedestrian barrier rail Nearside Slight #> 4859 Pedestrian Front Slight #> 4860 Vehicle Front Slight #> 4861 Vehicle Front Slight #> 4862 Bollard Offside Slight #> 4863 Bollard Front Slight #> 4864 None No impact Serious #> 4865 Pedestrian Front Serious #> 4866 None No impact Slight #> 4867 None No impact Slight #> 4868 Pedestrian barrier rail Front Slight #> 4869 Pedestrian Offside Slight #> 4870 Vehicle Front Slight #> 4871 Vehicle Back Slight #> 4872 Vehicle Front Slight #> 4873 Vehicle Back Slight #> 4874 Vehicle Offside Slight #> 4875 Vehicle Nearside Slight #> 4876 None No impact Slight #> 4877 Vehicle Back Slight #> 4878 Vehicle Front Slight #> 4879 None No impact Slight #> 4880 Vehicle Back Slight #> 4881 Vehicle Front Slight #> 4882 None No impact Slight #> 4883 None No impact Serious #> 4884 Tree Front Slight #> 4885 Vehicle Front Slight #> 4886 Vehicle Front Slight #> 4887 None No impact Slight #> 4888 None No impact Slight #> 4889 Vehicle Front Slight #> 4890 Vehicle Back Slight #> 4891 None No impact Slight #> 4892 Pedestrian Front Slight #> 4893 Wall or bridge parapet Front Slight #> 4894 Pedestrian Nearside Slight #> 4895 Vehicle Front Slight #> 4896 Vehicle Back Slight #> 4897 None No impact Serious #> 4898 Wall or bridge parapet Front Serious #> 4899 Pedestrian Front Slight #> 4900 Vehicle Back Slight #> 4901 Vehicle Front Slight #> 4902 Pedestrian Front Slight #> 4903 None No impact Slight #> 4904 Vehicle Front Slight #> 4905 Vehicle Back Slight #> 4906 None No impact Slight #> 4907 Pedestrian Front Slight #> 4908 None No impact Slight #> 4909 None No impact Slight #> 4910 None No impact Slight #> 4911 None No impact Slight #> 4912 None No impact Serious #> 4913 Vehicle Offside Slight #> 4914 Vehicle Nearside Slight #> 4915 None No impact Slight #> 4916 None No impact Slight #> 4917 Pedestrian Front Serious #> 4918 Vehicle Nearside Slight #> 4919 Vehicle Front Slight #> 4920 Vehicle Nearside Slight #> 4921 Vehicle Offside Slight #> 4922 Pedestrian Front Fatal #> 4923 Vehicle Nearside Serious #> 4924 Vehicle Offside Serious #> 4925 Vehicle Back Slight #> 4926 Vehicle Front Slight #> 4927 Pedestrian Nearside Slight #> 4928 None No impact Serious #> 4929 Vehicle Back Slight #> 4930 Vehicle Front Slight #> 4931 None No impact Slight #> 4932 None No impact Slight #> 4933 Vehicle Back Slight #> 4934 Vehicle Front Slight #> 4935 Vehicle Front Slight #> 4936 Vehicle Offside Slight #> 4937 Pedestrian barrier rail Nearside Slight #> 4938 Vehicle Back Slight #> 4939 Vehicle Front Slight #> 4940 Vehicle Nearside Slight #> 4941 Vehicle Offside Slight #> 4942 Vehicle Nearside Slight #> 4943 Vehicle Front Slight #> 4944 Vehicle Front Slight #> 4945 Vehicle Back Slight #> 4946 Vehicle Offside Slight #> 4947 Vehicle Nearside Slight #> 4948 Vehicle Back Slight #> 4949 Vehicle Front Slight #> 4950 None No impact Slight #> 4951 Pedestrian Back Slight #> 4952 None No impact Slight #> 4953 Vehicle Offside Slight #> 4954 Vehicle Front Slight #> 4955 None No impact Slight #> 4956 Pedestrian Front Serious #> 4957 None No impact Slight #> 4958 Vehicle Nearside Slight #> 4959 Vehicle Offside Slight #> 4960 None No impact Slight #> 4961 None No impact Slight #> 4962 None No impact Slight #> 4963 Pedestrian Back Slight #> 4964 Pedestrian Front Slight #> 4965 Pedestrian Nearside Slight #> 4966 Vehicle Back Slight #> 4967 Vehicle Front Slight #> 4968 Pedestrian Nearside Slight #> 4969 Vehicle Front Slight #> 4970 Vehicle Back Slight #> 4971 Vehicle Back Slight #> 4972 None No impact Slight #> 4973 Crash barrier Offside Serious #> 4974 Pedestrian Front Slight #> 4975 None No impact Serious #> 4976 None No impact Slight #> 4977 None No impact Slight #> 4978 Pedestrian Front Slight #> 4979 None No impact Slight #> 4980 Vehicle Front Slight #> 4981 Vehicle Back Slight #> 4982 Vehicle Back Slight #> 4983 None No impact Slight #> 4984 None No impact Slight #> 4985 Vehicle Back Slight #> 4986 Vehicle Front Slight #> 4987 Vehicle Back Slight #> 4988 Vehicle Front Slight #> 4989 None No impact Slight #> 4990 None No impact Slight #> 4991 None No impact Slight #> 4992 Vehicle Front Serious #> 4993 Vehicle Front Serious #> 4994 Vehicle Offside Slight #> 4995 Vehicle Nearside Slight #> 4996 Pedestrian Nearside Slight #> 4997 None No impact Serious #> 4998 Vehicle Front Slight #> 4999 Vehicle Nearside Slight #> 5000 None No impact Serious #> 5001 Pedestrian Back Serious #> 5002 Vehicle Back Slight #> 5003 Vehicle Front Slight #> 5004 Vehicle Back Slight #> 5005 Vehicle Back Slight #> 5006 Vehicle Back Slight #> 5007 None No impact Slight #> 5008 None No impact Slight #> 5009 Pedestrian Front Slight #> 5010 Vehicle Front Slight #> 5011 Vehicle Front Slight #> 5012 Pedestrian Nearside Serious #> 5013 Pedestrian Offside Serious #> 5014 None No impact Slight #> 5015 Vehicle Offside Slight #> 5016 Vehicle Front Slight #> 5017 None No impact Serious #> 5018 Vehicle Front Slight #> 5019 Vehicle Back Slight #> 5020 None No impact Slight #> 5021 None No impact Slight #> 5022 Vehicle Front Slight #> 5023 Vehicle Back Slight #> 5024 Vehicle Offside Slight #> 5025 Vehicle Offside Slight #> 5026 None No impact Slight #> 5027 None No impact Slight #> 5028 None No impact Slight #> 5029 Pedestrian Back Slight #> 5030 None No impact Serious #> 5031 Pedestrian Offside Serious #> 5032 Vehicle Front Slight #> 5033 Vehicle Back Slight #> 5034 Vehicle Offside Slight #> 5035 Vehicle Front Slight #> 5036 Vehicle Front Slight #> 5037 Vehicle Back Slight #> 5038 Vehicle Back Slight #> 5039 Vehicle Front Slight #> 5040 Vehicle Offside Slight #> 5041 Vehicle Nearside Slight #> 5042 None No impact Slight #> 5043 None No impact Slight #> 5044 Pedestrian Front Slight #> 5045 Wall or bridge parapet Front Serious #> 5046 None No impact Slight #> 5047 Vehicle Front Slight #> 5048 Vehicle Back Slight #> 5049 Vehicle Back Slight #> 5050 Vehicle Front Slight #> 5051 None No impact Slight #> 5052 Lamp-post or telephone-post Front Serious #> 5053 Pedestrian Front Slight #> 5054 Vehicle Nearside Slight #> 5055 Vehicle Offside Slight #> 5056 Vehicle Nearside Slight #> 5057 Vehicle Offside Slight #> 5058 Vehicle Offside Slight #> 5059 Vehicle Nearside Slight #> 5060 None No impact Slight #> 5061 None No impact Slight #> 5062 Pedestrian Nearside Slight #> 5063 None No impact Slight #> 5064 None No impact Slight #> 5065 Vehicle Back Slight #> 5066 Vehicle Front Slight #> 5067 Vehicle Nearside Slight #> 5068 Vehicle Front Slight #> 5069 Vehicle Offside Slight #> 5070 Vehicle Nearside Slight #> 5071 None No impact Slight #> 5072 None No impact Slight #> 5073 Vehicle Front Slight #> 5074 Vehicle Nearside Slight #> 5075 Vehicle Front Slight #> 5076 Vehicle Front Slight #> 5077 None No impact Slight #> 5078 None No impact Slight #> 5079 None No impact Slight #> 5080 Vehicle Nearside Slight #> 5081 Vehicle Offside Slight #> 5082 Vehicle Front Serious #> 5083 Vehicle Nearside Serious #> 5084 Vehicle Back Slight #> 5085 Vehicle Front Slight #> 5086 Pedestrian Nearside Slight #> 5087 None No impact Slight #> 5088 None No impact Slight #> 5089 Vehicle Front Serious #> 5090 Vehicle Front Serious #> 5091 Vehicle Front Slight #> 5092 Vehicle Back Slight #> 5093 Vehicle Front Slight #> 5094 Vehicle Back Slight #> 5095 Pedestrian Nearside Slight #> 5096 Vehicle Back Slight #> 5097 Vehicle Front Slight #> 5098 Vehicle Front Slight #> 5099 Vehicle Back Slight #> 5100 Vehicle Back Slight #> 5101 Vehicle Front Slight #> 5102 Pedestrian Front Slight #> 5103 Vehicle Back Slight #> 5104 Vehicle Front Slight #> 5105 Vehicle Back Slight #> 5106 Vehicle Front Slight #> 5107 None No impact Serious #> 5108 Vehicle Offside Slight #> 5109 Vehicle Nearside Slight #> 5110 None No impact Slight #> 5111 Vehicle Offside Slight #> 5112 Vehicle Nearside Slight #> 5113 None No impact Slight #> 5114 None No impact Slight #> 5115 None No impact Slight #> 5116 None No impact Slight #> 5117 None No impact Slight #> 5118 None No impact Slight #> 5119 None No impact Slight #> 5120 Crash barrier Front Slight #> 5121 Vehicle Front Slight #> 5122 Vehicle Nearside Slight #> 5123 Wall or bridge parapet Offside Slight #> 5124 Vehicle Nearside Slight #> 5125 Vehicle Offside Slight #> 5126 Vehicle Offside Slight #> 5127 Vehicle Nearside Slight #> 5128 Vehicle Front Slight #> 5129 Vehicle Back Slight #> 5130 Vehicle Back Slight #> 5131 Vehicle Nearside Slight #> 5132 Vehicle Front Slight #> 5133 Vehicle Offside Slight #> 5134 Vehicle Front Slight #> 5135 Pedestrian Front Slight #> 5136 Vehicle Offside Slight #> 5137 Vehicle Front Slight #> 5138 None No impact Slight #> 5139 Animal Front Slight #> 5140 Vehicle Back Slight #> 5141 Vehicle Front Slight #> 5142 Vehicle Front Slight #> 5143 Vehicle Back Slight #> 5144 None No impact Slight #> 5145 None No impact Serious #> 5146 None No impact Slight #> 5147 Vehicle Offside Slight #> 5148 Vehicle Nearside Slight #> 5149 None No impact Slight #> 5150 None No impact Slight #> 5151 Vehicle Back Slight #> 5152 Vehicle Front Slight #> 5153 Pedestrian Front Slight #> 5154 Pedestrian Offside Serious #> 5155 Pedestrian Front Slight #> 5156 Pedestrian Front Slight #> 5157 Vehicle Front Slight #> 5158 Vehicle Back Slight #> 5159 Vehicle Front Slight #> 5160 Vehicle Back Slight #> 5161 Pedestrian Front Slight #> 5162 None No impact Slight #> 5163 None No impact Slight #> 5164 Vehicle Front Serious #> 5165 Vehicle Back Serious #> 5166 Vehicle Offside Slight #> 5167 Vehicle Nearside Slight #> 5168 Pedestrian Front Slight #> 5169 Vehicle Nearside Serious #> 5170 Vehicle Front Serious #> 5171 Vehicle Front Fatal #> 5172 Vehicle Front Fatal #> 5173 Pedestrian Back Slight #> 5174 Vehicle Back Slight #> 5175 Vehicle Front Slight #> 5176 None No impact Serious #> 5177 Pedestrian barrier rail Front Slight #> 5178 None No impact Slight #> 5179 None No impact Slight #> 5180 None No impact Slight #> 5181 Vehicle Nearside Slight #> 5182 Vehicle Offside Slight #> 5183 Vehicle Front Slight #> 5184 Vehicle Back Slight #> 5185 None No impact Slight #> 5186 Vehicle Front Slight #> 5187 Vehicle Front Slight #> 5188 Vehicle Back Slight #> 5189 Pedestrian Offside Slight #> 5190 None No impact Slight #> 5191 None No impact Serious #> 5192 None No impact Slight #> 5193 Pedestrian Front Slight #> 5194 Vehicle Offside Slight #> 5195 Vehicle Nearside Slight #> 5196 Pedestrian Front Fatal #> 5197 Pedestrian Front Slight #> 5198 None No impact Slight #> 5199 Vehicle Nearside Slight #> 5200 Vehicle Offside Slight #> 5201 Vehicle Front Serious #> 5202 Vehicle Front Serious #> 5203 Vehicle Offside Serious #> 5204 Vehicle Front Slight #> 5205 Vehicle Back Slight #> 5206 Vehicle Back Slight #> 5207 Vehicle Front Slight #> 5208 Lamp-post or telephone-post Front Slight #> 5209 Vehicle Back Slight #> 5210 Vehicle Front Slight #> 5211 Vehicle Back Slight #> 5212 Vehicle Front Slight #> 5213 Vehicle Back Slight #> 5214 Vehicle Front Slight #> 5215 Pedestrian Front Serious #> 5216 Vehicle Offside Slight #> 5217 Vehicle Nearside Slight #> 5218 Pedestrian Nearside Serious #> 5219 Pedestrian Back Serious #> 5220 Vehicle Back Slight #> 5221 Vehicle Front Slight #> 5222 Vehicle Nearside Slight #> 5223 Vehicle Offside Slight #> 5224 Vehicle Front Slight #> 5225 Vehicle Back Slight #> 5226 Vehicle Offside Serious #> 5227 Vehicle Front Serious #> 5228 None No impact Serious #> 5229 Pedestrian Front Slight #> 5230 None No impact Slight #> 5231 None No impact Slight #> 5232 Vehicle Back Slight #> 5233 Vehicle Back Slight #> 5234 Vehicle Front Slight #> 5235 None No impact Slight #> 5236 None No impact Serious #> 5237 Vehicle Back Slight #> 5238 Vehicle Offside Slight #> 5239 Pedestrian Front Serious #> 5240 Vehicle Offside Slight #> 5241 Vehicle Nearside Slight #> 5242 Pedestrian Offside Slight #> 5243 Pedestrian Front Slight #> 5244 Vehicle Offside Slight #> 5245 Vehicle Nearside Slight #> 5246 Vehicle Offside Slight #> 5247 Vehicle Nearside Slight #> 5248 Vehicle Back Slight #> 5249 Vehicle Front Slight #> 5250 Vehicle Back Slight #> 5251 Vehicle Back Slight #> 5252 Pedestrian Front Slight #> 5253 None No impact Slight #> 5254 Vehicle Front Slight #> 5255 Vehicle Back Slight #> 5256 Vehicle Nearside Slight #> 5257 Vehicle Front Slight #> 5258 None No impact Slight #> 5259 None No impact Serious #> 5260 Pedestrian Nearside Serious #> 5261 Vehicle Back Slight #> 5262 Vehicle Front Slight #> 5263 None No impact Slight #> 5264 Vehicle Back Serious #> 5265 Vehicle Front Serious #> 5266 None No impact Slight #> 5267 None No impact Slight #> 5268 Vehicle Nearside Slight #> 5269 Vehicle Offside Slight #> 5270 Vehicle Nearside Slight #> 5271 Vehicle Back Slight #> 5272 Vehicle Front Slight #> 5273 Vehicle Front Serious #> 5274 Vehicle Front Serious #> 5275 Vehicle Offside Slight #> 5276 Vehicle Nearside Slight #> 5277 Pedestrian Nearside Slight #> 5278 Vehicle Nearside Serious #> 5279 Vehicle Front Serious #> 5280 Pedestrian Front Slight #> 5281 Vehicle Back Slight #> 5282 Vehicle Front Slight #> 5283 Vehicle Back Slight #> 5284 Vehicle Back Slight #> 5285 Vehicle Offside Slight #> 5286 None No impact Slight #> 5287 Vehicle Back Slight #> 5288 Vehicle Back Slight #> 5289 Vehicle Front Slight #> 5290 Pedestrian Front Serious #> 5291 Pedestrian Offside Slight #> 5292 Vehicle Front Slight #> 5293 Vehicle Offside Slight #> 5294 None No impact Slight #> 5295 None No impact Slight #> 5296 Vehicle Back Slight #> 5297 Vehicle Front Slight #> 5298 None No impact Slight #> 5299 Vehicle Back Slight #> 5300 Vehicle Front Slight #> 5301 Pedestrian Offside Slight #> 5302 Vehicle Front Slight #> 5303 Vehicle Nearside Slight #> 5304 None No impact Slight #> 5305 Vehicle Front Slight #> 5306 Vehicle Nearside Slight #> 5307 Animal Front Slight #> 5308 Vehicle Front Slight #> 5309 Vehicle Nearside Slight #> 5310 Vehicle Nearside Slight #> 5311 Vehicle Nearside Slight #> 5312 Vehicle Back Slight #> 5313 Vehicle Front Slight #> 5314 Vehicle Back Slight #> 5315 Vehicle Front Slight #> 5316 None No impact Serious #> 5317 None No impact Slight #> 5318 None No impact Slight #> 5319 Vehicle Front Slight #> 5320 Vehicle Nearside Slight #> 5321 Pedestrian Back Slight #> 5322 Pedestrian Offside Slight #> 5323 Pedestrian Front Slight #> 5324 None No impact Slight #> 5325 Vehicle Back Slight #> 5326 Vehicle Front Slight #> 5327 Vehicle Back Slight #> 5328 Pedestrian Front Serious #> 5329 Pedestrian barrier rail Front Slight #> 5330 None No impact Slight #> 5331 Vehicle Offside Slight #> 5332 Vehicle Offside Slight #> 5333 None No impact Slight #> 5334 Pedestrian Front Slight #> 5335 Utility company equipment Front Slight #> 5336 Vehicle Nearside Slight #> 5337 Vehicle Offside Slight #> 5338 Loose object on carriageway Front Serious #> 5339 Vehicle Front Serious #> 5340 Vehicle Back Serious #> 5341 Wall or bridge parapet Front Slight #> 5342 Pedestrian Nearside Serious #> 5343 Vehicle Front Slight #> 5344 Vehicle Back Slight #> 5345 None No impact Slight #> 5346 Vehicle Back Slight #> 5347 Vehicle Front Slight #> 5348 Vehicle Back Slight #> 5349 None No impact Slight #> 5350 Pedestrian Nearside Serious #> 5351 Vehicle Front Slight #> 5352 Vehicle Front Slight #> 5353 Vehicle Back Slight #> 5354 Vehicle Back Slight #> 5355 Vehicle Back Slight #> 5356 None No impact Slight #> 5357 Vehicle Back Slight #> 5358 Vehicle Front Slight #> 5359 Vehicle Nearside Slight #> 5360 Vehicle Front Slight #> 5361 Vehicle Front Slight #> 5362 Vehicle Back Slight #> 5363 Vehicle Front Slight #> 5364 Vehicle Back Slight #> 5365 Vehicle Back Slight #> 5366 Vehicle Front Slight #> 5367 Pedestrian barrier rail Front Slight #> 5368 Vehicle Back Slight #> 5369 Vehicle Front Slight #> 5370 Vehicle Back Slight #> 5371 Vehicle Back Slight #> 5372 Vehicle Front Slight #> 5373 Pedestrian Offside Slight #> 5374 Vehicle Front Slight #> 5375 Vehicle Back Slight #> 5376 Vehicle Back Slight #> 5377 Vehicle Back Slight #> 5378 Pedestrian Nearside Slight #> 5379 None No impact Slight #> 5380 Pedestrian Back Slight #> 5381 Vehicle Back Slight #> 5382 Vehicle Front Slight #> 5383 None No impact Slight #> 5384 Vehicle Front Slight #> 5385 Vehicle Nearside Slight #> 5386 None No impact Slight #> 5387 None No impact Slight #> 5388 Pedestrian Offside Slight #> 5389 Vehicle Nearside Slight #> 5390 Vehicle Offside Slight #> 5391 Vehicle Front Slight #> 5392 Vehicle Back Slight #> 5393 Vehicle Back Slight #> 5394 None No impact Slight #> 5395 None No impact Slight #> 5396 Pedestrian Front Slight #> 5397 Pedestrian Nearside Slight #> 5398 None No impact Serious #> 5399 None No impact Serious #> 5400 Vehicle Front Slight #> 5401 Vehicle Back Slight #> 5402 None No impact Slight #> 5403 None No impact Slight #> 5404 Vehicle Nearside Slight #> 5405 Vehicle Offside Slight #> 5406 None No impact Slight #> 5407 Pedestrian Front Slight #> 5408 Vehicle Back Slight #> 5409 Vehicle Front Slight #> 5410 Vehicle Back Slight #> 5411 None No impact Serious #> 5412 None No impact Serious #> 5413 None No impact Slight #> 5414 None No impact Slight #> 5415 None No impact Slight #> 5416 Vehicle Back Slight #> 5417 Vehicle Front Slight #> 5418 Vehicle Back Slight #> 5419 Vehicle Nearside Slight #> 5420 Vehicle Front Slight #> 5421 Vehicle Offside Slight #> 5422 Vehicle Front Slight #> 5423 Vehicle Back Serious #> 5424 Vehicle Front Serious #> 5425 Vehicle Back Slight #> 5426 Vehicle Front Slight #> 5427 Pedestrian Front Serious #> 5428 Pedestrian Front Slight #> 5429 Vehicle Front Slight #> 5430 Vehicle Front Slight #> 5431 Vehicle Back Slight #> 5432 Vehicle Front Slight #> 5433 None No impact Slight #> 5434 Vehicle Nearside Slight #> 5435 Vehicle Front Slight #> 5436 Pedestrian Front Slight #> 5437 Pedestrian Front Slight #> 5438 Vehicle Front Slight #> 5439 Vehicle Offside Slight #> 5440 Vehicle Offside Slight #> 5441 Vehicle Nearside Slight #> 5442 Vehicle Front Slight #> 5443 Vehicle Back Slight #> 5444 Vehicle Nearside Slight #> 5445 Vehicle Front Slight #> 5446 Pedestrian Front Slight #> 5447 Vehicle Front Slight #> 5448 Vehicle Back Slight #> 5449 None No impact Slight #> 5450 None No impact Slight #> 5451 Pedestrian Front Serious #> 5452 None No impact Serious #> 5453 Vehicle Back Slight #> 5454 Vehicle Back Slight #> 5455 Vehicle Front Slight #> 5456 Vehicle Front Slight #> 5457 Vehicle Offside Slight #> 5458 Vehicle Nearside Slight #> 5459 Vehicle Back Slight #> 5460 Vehicle Front Slight #> 5461 None No impact Serious #> 5462 Vehicle Offside Slight #> 5463 Vehicle Nearside Slight #> 5464 None No impact Serious #> 5465 None No impact Slight #> 5466 Vehicle Nearside Slight #> 5467 Vehicle Front Slight #> 5468 Vehicle Nearside Slight #> 5469 Vehicle Offside Slight #> 5470 None No impact Slight #> 5471 Vehicle Front Slight #> 5472 Vehicle Back Slight #> 5473 None No impact Slight #> 5474 Vehicle Offside Slight #> 5475 Vehicle Front Slight #> 5476 Vehicle Back Slight #> 5477 Vehicle Front Slight #> 5478 None No impact Serious #> 5479 Vehicle Back Slight #> 5480 Vehicle Front Slight #> 5481 Vehicle Nearside Slight #> 5482 Vehicle Front Slight #> 5483 Vehicle Back Slight #> 5484 Vehicle Front Slight #> 5485 None No impact Slight #> 5486 Vehicle Front Slight #> 5487 Vehicle Back Slight #> 5488 Lamp-post or telephone-post Front Serious #> 5489 Vehicle Offside Slight #> 5490 Vehicle Front Slight #> 5491 Pedestrian Front Serious #> 5492 Pedestrian Front Slight #> 5493 Pedestrian Front Serious #> 5494 Vehicle Front Slight #> 5495 Vehicle Back Slight #> 5496 Pedestrian Front Slight #> 5497 Pedestrian Offside Slight #> 5498 Vehicle Offside Slight #> 5499 Vehicle Nearside Slight #> 5500 Pedestrian Nearside Slight #> 5501 Pedestrian Front Slight #> 5502 None No impact Slight #> 5503 Vehicle Back Slight #> 5504 Vehicle Back Slight #> 5505 Vehicle Front Slight #> 5506 Vehicle Back Slight #> 5507 None No impact Serious #> 5508 Vehicle Back Slight #> 5509 Vehicle Front Slight #> 5510 None No impact Slight #> 5511 Road works barrier, sign or signal Front Slight #> 5512 None No impact Slight #> 5513 Vehicle Front Slight #> 5514 Vehicle Nearside Slight #> 5515 None No impact Slight #> 5516 None No impact Serious #> 5517 None No impact Slight #> 5518 Vehicle Nearside Slight #> 5519 Vehicle Offside Slight #> 5520 None No impact Slight #> 5521 Vehicle Front Slight #> 5522 Vehicle Back Slight #> 5523 Vehicle Front Serious #> 5524 Vehicle Nearside Serious #> 5525 None No impact Slight #> 5526 None No impact Slight #> 5527 None No impact Slight #> 5528 Pedestrian Front Slight #> 5529 None No impact Slight #> 5530 None No impact Slight #> 5531 Pedestrian barrier rail Front Slight #> 5532 None No impact Slight #> 5533 None No impact Slight #> 5534 None No impact Serious #> 5535 Vehicle Offside Slight #> 5536 Vehicle Nearside Slight #> 5537 Vehicle Nearside Slight #> 5538 Vehicle Front Slight #> 5539 None No impact Slight #> 5540 None No impact Slight #> 5541 Pedestrian Front Slight #> 5542 None No impact Slight #> 5543 None No impact Slight #> 5544 None No impact Slight #> 5545 Vehicle Back Slight #> 5546 Vehicle Front Slight #> 5547 Vehicle Front Slight #> 5548 Vehicle Back Slight #> 5549 None No impact Slight #> 5550 None No impact Slight #> 5551 Vehicle Back Slight #> 5552 Vehicle Back Slight #> 5553 Vehicle Front Slight #> 5554 None No impact Slight #> 5555 Vehicle Back Slight #> 5556 Vehicle Back Slight #> 5557 Vehicle Front Slight #> 5558 None No impact Slight #> 5559 Pedestrian Back Slight #> 5560 None No impact Slight #> 5561 Vehicle Front Slight #> 5562 Vehicle Back Slight #> 5563 Pedestrian barrier rail Front Slight #> 5564 Vehicle Front Slight #> 5565 Vehicle Back Slight #> 5566 Vehicle Front Slight #> 5567 Vehicle Back Slight #> 5568 Vehicle Back Slight #> 5569 None No impact Serious #> 5570 None No impact Slight #> 5571 None No impact Slight #> 5572 Vehicle Front Slight #> 5573 Vehicle Back Slight #> 5574 Vehicle Offside Fatal #> 5575 Vehicle Front Fatal #> 5576 Vehicle Nearside Slight #> 5577 Vehicle Back Slight #> 5578 Vehicle Front Slight #> 5579 Vehicle Back Slight #> 5580 Vehicle Back Slight #> 5581 Vehicle Front Slight #> 5582 Pedestrian Front Slight #> 5583 Pedestrian Nearside Serious #> 5584 Vehicle Front Slight #> 5585 Vehicle Front Slight #> 5586 None No impact Slight #> 5587 Pedestrian Nearside Slight #> 5588 Pedestrian Front Slight #> 5589 Vehicle Front Serious #> 5590 Vehicle Nearside Serious #> 5591 None No impact Slight #> 5592 Vehicle Front Slight #> 5593 Vehicle Offside Slight #> 5594 Vehicle Front Slight #> 5595 Vehicle Nearside Slight #> 5596 None No impact Slight #> 5597 None No impact Slight #> 5598 Wall or bridge parapet Front Slight #> 5599 Pedestrian barrier rail Nearside Serious #> 5600 Vehicle Nearside Slight #> 5601 Vehicle Front Slight #> 5602 Pedestrian Nearside Slight #> 5603 Vehicle Front Slight #> 5604 Vehicle Back Slight #> 5605 Vehicle Back Slight #> 5606 Vehicle Back Slight #> 5607 Vehicle Front Slight #> 5608 Vehicle Back Slight #> 5609 Vehicle Front Slight #> 5610 Vehicle Back Slight #> 5611 Vehicle Back Slight #> 5612 Vehicle Front Slight #> 5613 Vehicle Back Slight #> 5614 Vehicle Front Slight #> 5615 Vehicle Back Slight #> 5616 None No impact Slight #> 5617 None No impact Slight #> 5618 Vehicle Nearside Serious #> 5619 Vehicle Front Serious #> 5620 None No impact Slight #> 5621 Pedestrian Nearside Slight #> 5622 None No impact Slight #> 5623 Wall or bridge parapet Front Slight #> 5624 Vehicle Back Slight #> 5625 Vehicle Front Slight #> 5626 Vehicle Front Slight #> 5627 Vehicle Back Slight #> 5628 Vehicle Front Slight #> 5629 Vehicle Back Slight #> 5630 Vehicle Front Slight #> 5631 Vehicle Back Slight #> 5632 Pedestrian barrier rail Back Slight #> 5633 Pedestrian Nearside Slight #> 5634 None No impact Slight #> 5635 Vehicle Front Slight #> 5636 Vehicle Front Slight #> 5637 None No impact Slight #> 5638 Vehicle Back Slight #> 5639 Vehicle Front Slight #> 5640 Pedestrian barrier rail Front Serious #> 5641 None No impact Serious #> 5642 None No impact Slight #> 5643 None No impact Slight #> 5644 None No impact Slight #> 5645 Vehicle Front Serious #> 5646 Vehicle Front Serious #> 5647 Pedestrian Front Slight #> 5648 None No impact Slight #> 5649 Vehicle Offside Slight #> 5650 Vehicle Nearside Slight #> 5651 Loose object on carriageway Front Slight #> 5652 Pedestrian Front Slight #> 5653 None No impact Slight #> 5654 Vehicle Nearside Slight #> 5655 Vehicle Offside Slight #> 5656 None No impact Slight #> 5657 Vehicle Front Slight #> 5658 Vehicle Back Slight #> 5659 None No impact Slight #> 5660 Vehicle Offside Slight #> 5661 Vehicle Nearside Slight #> 5662 None No impact Slight #> 5663 None No impact Slight #> 5664 None No impact Serious #> 5665 Pedestrian Nearside Slight #> 5666 Vehicle Front Slight #> 5667 Vehicle Back Slight #> 5668 Wall or bridge parapet Front Slight #> 5669 Pedestrian barrier rail Front Slight #> 5670 Crash barrier Front Slight #> 5671 Vehicle Back Serious #> 5672 Vehicle Back Serious #> 5673 Vehicle Front Serious #> 5674 Wall or bridge parapet Front Slight #> 5675 Bollard Front Slight #> 5676 Vehicle Nearside Slight #> 5677 Vehicle Offside Slight #> 5678 None No impact Slight #> 5679 Vehicle Back Slight #> 5680 Vehicle Front Slight #> 5681 Pedestrian Front Serious #> 5682 None No impact Slight #> 5683 Vehicle Nearside Slight #> 5684 Vehicle Front Slight #> 5685 Vehicle Front Slight #> 5686 Vehicle Offside Slight #> 5687 None No impact Slight #> 5688 Vehicle Back Slight #> 5689 Vehicle Front Slight #> 5690 Vehicle Offside Slight #> 5691 Vehicle Front Slight #> 5692 Vehicle Back Slight #> 5693 Vehicle Front Slight #> 5694 None No impact Slight #> 5695 None No impact Slight #> 5696 None No impact Slight #> 5697 Vehicle Front Slight #> 5698 Vehicle Back Slight #> 5699 Pedestrian Nearside Slight #> 5700 Vehicle Back Slight #> 5701 Vehicle Front Slight #> 5702 Wall or bridge parapet Front Slight #> 5703 Pedestrian Front Slight #> 5704 Pedestrian Offside Slight #> 5705 Vehicle Nearside Serious #> 5706 Vehicle Offside Serious #> 5707 Pedestrian Front Slight #> 5708 Vehicle Back Slight #> 5709 Vehicle Front Slight #> 5710 Vehicle Back Slight #> 5711 Vehicle Front Slight #> 5712 Vehicle Front Slight #> 5713 Vehicle Back Slight #> 5714 Wall or bridge parapet Front Slight #> 5715 None No impact Slight #> 5716 None No impact Slight #> 5717 Vehicle Front Slight #> 5718 Vehicle Front Slight #> 5719 Vehicle Front Slight #> 5720 Vehicle Back Slight #> 5721 Vehicle Back Serious #> 5722 Vehicle Nearside Serious #> 5723 None No impact Slight #> 5724 Vehicle Back Slight #> 5725 Vehicle Front Slight #> 5726 Vehicle Back Slight #> 5727 Vehicle Back Slight #> 5728 Vehicle Back Slight #> 5729 None No impact Slight #> 5730 Pedestrian Front Serious #> 5731 None No impact Serious #> 5732 Pedestrian Front Slight #> 5733 None No impact Slight #> 5734 None No impact Slight #> 5735 Pedestrian Back Serious #> 5736 Vehicle Back Serious #> 5737 Vehicle Back Serious #> 5738 Vehicle Front Serious #> 5739 Vehicle Front Serious #> 5740 Vehicle Front Serious #> 5741 Vehicle Front Serious #> 5742 Vehicle Back Serious #> 5743 Vehicle Front Slight #> 5744 Vehicle Front Slight #> 5745 None No impact Slight #> 5746 Vehicle Back Slight #> 5747 None No impact Slight #> 5748 Vehicle Front Slight #> 5749 None No impact Serious #> 5750 Vehicle Offside Slight #> 5751 Vehicle Nearside Slight #> 5752 Vehicle Offside Slight #> 5753 Vehicle Front Slight #> 5754 Vehicle Back Slight #> 5755 Vehicle Nearside Slight #> 5756 Vehicle Offside Slight #> 5757 Pedestrian Front Slight #> 5758 None No impact Slight #> 5759 Vehicle Offside Slight #> 5760 Vehicle Nearside Slight #> 5761 Vehicle Back Slight #> 5762 Vehicle Front Slight #> 5763 Pedestrian Front Slight #> 5764 Vehicle Front Serious #> 5765 Vehicle Offside Serious #> 5766 None No impact Slight #> 5767 Vehicle Nearside Slight #> 5768 Vehicle Offside Slight #> 5769 None No impact Serious #> 5770 Vehicle Back Slight #> 5771 Vehicle Front Slight #> 5772 None No impact Serious #> 5773 None No impact Serious #> 5774 Pedestrian Front Slight #> 5775 Vehicle Offside Serious #> 5776 Vehicle Front Serious #> 5777 Vehicle Back Slight #> 5778 Vehicle Front Slight #> 5779 None No impact Slight #> 5780 Pedestrian Offside Slight #> 5781 None No impact Slight #> 5782 Vehicle Offside Serious #> 5783 Vehicle Front Serious #> 5784 None No impact Slight #> 5785 Vehicle Back Slight #> 5786 Vehicle Front Slight #> 5787 Vehicle Front Slight #> 5788 Vehicle Front Slight #> 5789 Vehicle Back Slight #> 5790 Vehicle Front Slight #> 5791 Pedestrian Nearside Slight #> 5792 Vehicle Front Slight #> 5793 Vehicle Back Slight #> 5794 Vehicle Front Slight #> 5795 Vehicle Back Slight #> 5796 Vehicle Offside Serious #> 5797 None No impact Serious #> 5798 Vehicle Nearside Serious #> 5799 Wall or bridge parapet Front Slight #> 5800 Wall or bridge parapet Front Serious #> 5801 Vehicle Back Slight #> 5802 Vehicle Back Slight #> 5803 Vehicle Front Slight #> 5804 Vehicle Back Slight #> 5805 Vehicle Back Slight #> 5806 Vehicle Back Slight #> 5807 Vehicle Front Slight #> 5808 Pedestrian Front Slight #> 5809 Vehicle Back Slight #> 5810 Vehicle Front Slight #> 5811 None No impact Slight #> 5812 None No impact Slight #> 5813 None No impact Slight #> 5814 Animal Front Slight #> 5815 None No impact Slight #> 5816 Vehicle Back Slight #> 5817 Vehicle Front Slight #> 5818 Vehicle Offside Slight #> 5819 Vehicle Nearside Slight #> 5820 None No impact Slight #> 5821 None No impact Slight #> 5822 None No impact Slight #> 5823 Vehicle Back Slight #> 5824 Vehicle Front Slight #> 5825 Pedestrian Front Slight #> 5826 Pedestrian Front Serious #> 5827 Pedestrian Back Slight #> 5828 Pedestrian Front Serious #> 5829 None No impact Slight #> 5830 None No impact Slight #> 5831 Pedestrian Nearside Slight #> 5832 Pedestrian barrier rail Nearside Serious #> 5833 Vehicle Front Serious #> 5834 Vehicle Offside Serious #> 5835 Vehicle Offside Slight #> 5836 Vehicle Nearside Slight #> 5837 Pedestrian Front Serious #> 5838 None No impact Slight #> 5839 None No impact Slight #> 5840 Vehicle Back Slight #> 5841 Vehicle Front Slight #> 5842 Vehicle Back Slight #> 5843 Vehicle Back Slight #> 5844 Vehicle Front Slight #> 5845 Vehicle Back Slight #> 5846 Vehicle Front Slight #> 5847 Vehicle Back Slight #> 5848 Vehicle Front Slight #> 5849 Vehicle Back Slight #> 5850 None No impact Slight #> 5851 None No impact Slight #> 5852 Vehicle Front Slight #> 5853 Vehicle Back Slight #> 5854 Vehicle Front Slight #> 5855 Vehicle Back Slight #> 5856 Pedestrian Offside Slight #> 5857 Vehicle Offside Slight #> 5858 Vehicle Nearside Slight #> 5859 None No impact Slight #> 5860 Vehicle Offside Slight #> 5861 Vehicle Nearside Slight #> 5862 Pedestrian Back Slight #> 5863 Pedestrian Front Slight #> 5864 Pedestrian Offside Slight #> 5865 None No impact Slight #> 5866 Vehicle Nearside Slight #> 5867 Vehicle Offside Slight #> 5868 Vehicle Back Slight #> 5869 Vehicle Front Slight #> 5870 Vehicle Front Slight #> 5871 Vehicle Front Slight #> 5872 None No impact Serious #> 5873 Vehicle Back Slight #> 5874 Vehicle Front Slight #> 5875 Pedestrian Front Slight #> 5876 Vehicle Front Slight #> 5877 Vehicle Front Slight #> 5878 None No impact Serious #> 5879 Hoarding/walkway Nearside Serious #> 5880 Pedestrian Front Serious #> 5881 Pedestrian Back Serious #> 5882 None No impact Slight #> 5883 Pedestrian Front Slight #> 5884 Pedestrian Front Serious #> 5885 Crash barrier Front Serious #> 5886 None No impact Slight #> 5887 Vehicle Back Slight #> 5888 Vehicle Front Slight #> 5889 None No impact Slight #> 5890 Vehicle Offside Serious #> 5891 Vehicle Offside Serious #> 5892 Pedestrian barrier rail Front Slight #> 5893 None No impact Slight #> 5894 None No impact Slight #> 5895 Wall or bridge parapet Nearside Slight #> 5896 None No impact Slight #> 5897 Vehicle Offside Slight #> 5898 Vehicle Front Slight #> 5899 Vehicle Back Slight #> 5900 Vehicle Offside Slight #> 5901 Vehicle Back Slight #> 5902 Vehicle Back Slight #> 5903 Vehicle Front Slight #> 5904 None No impact Slight #> 5905 Pedestrian Offside Serious #> 5906 Vehicle Back Slight #> 5907 Vehicle Front Slight #> 5908 Pedestrian Nearside Serious #> 5909 None No impact Slight #> 5910 Pedestrian Back Slight #> 5911 None No impact Slight #> 5912 None No impact Serious #> 5913 Pedestrian Offside Serious #> 5914 None No impact Slight #> 5915 Vehicle Front Slight #> 5916 Vehicle Offside Slight #> 5917 None No impact Serious #> 5918 None No impact Slight #> 5919 None No impact Slight #> 5920 Vehicle Nearside Slight #> 5921 Vehicle Offside Slight #> 5922 Vehicle Front Slight #> 5923 Vehicle Front Slight #> 5924 Vehicle Offside Slight #> 5925 Vehicle Nearside Slight #> 5926 None No impact Slight #> 5927 Pedestrian Back Slight #> 5928 Vehicle Offside Slight #> 5929 Vehicle Nearside Slight #> 5930 Pedestrian Nearside Slight #> 5931 Vehicle Front Slight #> 5932 Vehicle Nearside Slight #> 5933 Pedestrian Offside Slight #> 5934 None No impact Slight #> 5935 Pedestrian Front Fatal #> 5936 Vehicle Offside Slight #> 5937 Vehicle Nearside Slight #> 5938 None No impact Slight #> 5939 Vehicle Front Slight #> 5940 Vehicle Back Slight #> 5941 Vehicle Front Serious #> 5942 Vehicle Back Serious #> 5943 None No impact Slight #> 5944 None No impact Slight #> 5945 None No impact Slight #> 5946 None No impact Slight #> 5947 None No impact Slight #> 5948 Vehicle Back Slight #> 5949 Vehicle Front Slight #> 5950 Traffic signal post Front Slight #> 5951 None No impact Serious #> 5952 Pedestrian Front Slight #> 5953 Pedestrian Front Serious #> 5954 Vehicle Offside Slight #> 5955 Vehicle Back Slight #> 5956 None No impact Slight #> 5957 None No impact Slight #> 5958 Vehicle Nearside Slight #> 5959 Vehicle Offside Slight #> 5960 None No impact Slight #> 5961 Vehicle Offside Slight #> 5962 Vehicle Front Slight #> 5963 Pedestrian Front Slight #> 5964 Vehicle Front Serious #> 5965 Vehicle Back Serious #> 5966 None No impact Slight #> 5967 None No impact Slight #> 5968 None No impact Slight #> 5969 Vehicle Offside Slight #> 5970 Vehicle Nearside Slight #> 5971 Pedestrian Front Slight #> 5972 Pedestrian Nearside Slight #> 5973 Vehicle Offside Slight #> 5974 Vehicle Front Slight #> 5975 Vehicle Front Slight #> 5976 Vehicle Front Slight #> 5977 Vehicle Offside Slight #> 5978 Vehicle Front Slight #> 5979 None No impact Slight #> 5980 Vehicle Front Slight #> 5981 Vehicle Front Slight #> 5982 Vehicle Front Slight #> 5983 Vehicle Back Slight #> 5984 None No impact Slight #> 5985 Vehicle Back Slight #> 5986 Vehicle Back Slight #> 5987 Vehicle Front Slight #> 5988 Vehicle Back Slight #> 5989 Wall or bridge parapet Front Slight #> 5990 Pedestrian Front Fatal #> 5991 Vehicle Front Slight #> 5992 Vehicle Back Slight #> 5993 Pedestrian Front Slight #> 5994 Vehicle Offside Slight #> 5995 Vehicle Front Slight #> 5996 Vehicle Front Serious #> 5997 Vehicle Back Serious #> 5998 Pedestrian Front Serious #> 5999 Unknown Unknown Serious #> 6000 None No impact Slight #> 6001 None No impact Slight #> 6002 Pedestrian Front Fatal #> 6003 None No impact Slight #> 6004 Pedestrian Front Slight #> 6005 None No impact Slight #> 6006 Vehicle Back Slight #> 6007 Vehicle Back Slight #> 6008 Vehicle Front Slight #> 6009 None No impact Slight #> 6010 Vehicle Front Slight #> 6011 Vehicle Offside Slight #> 6012 Crash barrier Front Serious #> 6013 None No impact Slight #> 6014 Vehicle Front Slight #> 6015 Vehicle Back Slight #> 6016 Vehicle Back Slight #> 6017 Vehicle Front Slight #> 6018 Pedestrian Offside Slight #> 6019 Pedestrian Front Slight #> 6020 None No impact Slight #> 6021 Vehicle Front Slight #> 6022 Vehicle Back Slight #> 6023 Vehicle Back Slight #> 6024 None No impact Slight #> 6025 Vehicle Front Slight #> 6026 Vehicle Back Slight #> 6027 Vehicle Back Slight #> 6028 Vehicle Front Slight #> 6029 Vehicle Back Slight #> 6030 Vehicle Front Slight #> 6031 Vehicle Back Slight #> 6032 Vehicle Back Slight #> 6033 Pedestrian Nearside Slight #> 6034 Vehicle Front Slight #> 6035 Vehicle Back Slight #> 6036 None No impact Serious #> 6037 Vehicle Nearside Slight #> 6038 Vehicle Nearside Slight #> 6039 Vehicle Front Slight #> 6040 Vehicle Back Slight #> 6041 Vehicle Back Slight #> 6042 Vehicle Front Slight #> 6043 None No impact Slight #> 6044 Pedestrian Front Slight #> 6045 Vehicle Back Slight #> 6046 Vehicle Nearside Slight #> 6047 Vehicle Front Slight #> 6048 Vehicle Back Slight #> 6049 Vehicle Back Slight #> 6050 Vehicle Front Slight #> 6051 Vehicle Offside Slight #> 6052 Vehicle Nearside Slight #> 6053 Vehicle Front Slight #> 6054 Vehicle Front Slight #> 6055 None No impact Serious #> 6056 None No impact Slight #> 6057 None No impact Serious #> 6058 Vehicle Back Slight #> 6059 Vehicle Front Slight #> 6060 Vehicle Front Slight #> 6061 Vehicle Back Slight #> 6062 Vehicle Offside Slight #> 6063 Vehicle Front Slight #> 6064 Vehicle Back Serious #> 6065 Vehicle Front Serious #> 6066 Vehicle Back Serious #> 6067 Vehicle Back Serious #> 6068 Vehicle Back Serious #> 6069 Pedestrian Back Serious #> 6070 Vehicle Back Slight #> 6071 Vehicle Front Slight #> 6072 None No impact Serious #> 6073 None No impact Slight #> 6074 None No impact Slight #> 6075 Vehicle Back Slight #> 6076 Vehicle Front Slight #> 6077 Pedestrian Front Slight #> 6078 Vehicle Front Slight #> 6079 Vehicle Back Slight #> 6080 None No impact Slight #> 6081 Vehicle Back Slight #> 6082 Vehicle Front Slight #> 6083 None No impact Slight #> 6084 None No impact Slight #> 6085 Vehicle Nearside Slight #> 6086 Vehicle Offside Slight #> 6087 Vehicle Front Slight #> 6088 Vehicle Front Slight #> 6089 Vehicle Front Slight #> 6090 Vehicle Back Slight #> 6091 Pedestrian Front Slight #> 6092 Pedestrian Offside Serious #> 6093 Vehicle Nearside Slight #> 6094 Vehicle Front Slight #> 6095 None No impact Slight #> 6096 Vehicle Nearside Serious #> 6097 Vehicle Front Serious #> 6098 Vehicle Front Slight #> 6099 Vehicle Back Slight #> 6100 Pedestrian Back Slight #> 6101 None No impact Slight #> 6102 None No impact Serious #> 6103 None No impact Slight #> 6104 Vehicle Front Slight #> 6105 Vehicle Back Slight #> 6106 None No impact Slight #> 6107 Vehicle Back Slight #> 6108 Vehicle Front Slight #> 6109 Pedestrian Nearside Slight #> 6110 None No impact Serious #> 6111 None No impact Slight #> 6112 Vehicle Nearside Slight #> 6113 Vehicle Back Slight #> 6114 None No impact Slight #> 6115 None No impact Slight #> 6116 Pedestrian Front Slight #> 6117 Pedestrian Offside Slight #> 6118 Vehicle Nearside Slight #> 6119 Vehicle Front Slight #> 6120 Vehicle Nearside Slight #> 6121 Vehicle Offside Slight #> 6122 Vehicle Back Slight #> 6123 Vehicle Front Slight #> 6124 Vehicle Back Slight #> 6125 Vehicle Front Slight #> 6126 None No impact Slight #> 6127 None No impact Slight #> 6128 None No impact Slight #> 6129 Vehicle Nearside Slight #> 6130 Vehicle Front Slight #> 6131 Vehicle Front Slight #> 6132 Vehicle Back Slight #> 6133 Vehicle Front Slight #> 6134 Vehicle Front Slight #> 6135 Vehicle Back Slight #> 6136 Vehicle Front Slight #> 6137 Wall or bridge parapet Front Slight #> 6138 Pedestrian barrier rail Front Slight #> 6139 Pedestrian Front Slight #> 6140 Vehicle Front Slight #> 6141 Vehicle Offside Slight #> 6142 None No impact Serious #> 6143 None No impact Slight #> 6144 Vehicle Back Slight #> 6145 Vehicle Front Slight #> 6146 Vehicle Front Slight #> 6147 Vehicle Nearside Slight #> 6148 Vehicle Offside Slight #> 6149 Vehicle Back Serious #> 6150 Vehicle Front Serious #> 6151 Pedestrian Offside Slight #> 6152 Vehicle Back Slight #> 6153 Vehicle Front Slight #> 6154 Road sign Front Serious #> 6155 Vehicle Front Slight #> 6156 Vehicle Back Slight #> 6157 None No impact Slight #> 6158 Pedestrian Nearside Slight #> 6159 Pedestrian barrier rail Front Serious #> 6160 Vehicle Back Slight #> 6161 Vehicle Front Slight #> 6162 None No impact Slight #> 6163 None No impact Slight #> 6164 Vehicle Front Slight #> 6165 Vehicle Back Slight #> 6166 Vehicle Back Slight #> 6167 Vehicle Front Slight #> 6168 None No impact Slight #> 6169 None No impact Serious #> 6170 Pedestrian Nearside Slight #> 6171 Pedestrian Front Slight #> 6172 Pedestrian barrier rail Front Slight #> 6173 None No impact Slight #> 6174 Vehicle Offside Slight #> 6175 Vehicle Nearside Slight #> 6176 Pedestrian Nearside Slight #> 6177 Vehicle Front Slight #> 6178 Vehicle Offside Slight #> 6179 Pedestrian Front Serious #> 6180 None No impact Slight #> 6181 Vehicle Back Slight #> 6182 Vehicle Back Slight #> 6183 Vehicle Front Slight #> 6184 Vehicle Back Slight #> 6185 Vehicle Front Slight #> 6186 Vehicle Front Slight #> 6187 Vehicle Back Serious #> 6188 Vehicle Front Serious #> 6189 None No impact Slight #> 6190 Vehicle Back Serious #> 6191 Vehicle Front Serious #> 6192 Vehicle Front Slight #> 6193 Vehicle Front Slight #> 6194 Vehicle Nearside Slight #> 6195 Vehicle Offside Slight #> 6196 Vehicle Front Slight #> 6197 Vehicle Back Slight #> 6198 Vehicle Offside Slight #> 6199 Vehicle Offside Slight #> 6200 Vehicle Front Slight #> 6201 Vehicle Back Slight #> 6202 Vehicle Back Slight #> 6203 Vehicle Front Slight #> 6204 Vehicle Front Slight #> 6205 Vehicle Back Slight #> 6206 Vehicle Front Slight #> 6207 Vehicle Front Slight #> 6208 Vehicle Back Slight #> 6209 None No impact Slight #> 6210 Vehicle Back Slight #> 6211 Vehicle Front Slight #> 6212 None No impact Slight #> 6213 None No impact Slight #> 6214 Vehicle Back Slight #> 6215 Vehicle Front Slight #> 6216 Vehicle Back Slight #> 6217 Vehicle Front Slight #> 6218 None No impact Slight #> 6219 None No impact Slight #> 6220 Vehicle Offside Serious #> 6221 Vehicle Nearside Serious #> 6222 Pedestrian Front Slight #> 6223 Pedestrian Front Serious #> 6224 Vehicle Back Slight #> 6225 Vehicle Back Slight #> 6226 Vehicle Nearside Slight #> 6227 Vehicle Offside Slight #> 6228 Pedestrian Front Serious #> 6229 Pedestrian barrier rail Offside Slight #> 6230 Vehicle Front Slight #> 6231 Vehicle Back Slight #> 6232 Pedestrian Nearside Slight #> 6233 Vehicle Offside Slight #> 6234 Vehicle Back Slight #> 6235 Vehicle Front Slight #> 6236 Vehicle Back Slight #> 6237 Vehicle Offside Slight #> 6238 Vehicle Front Slight #> 6239 Pedestrian Front Slight #> 6240 Vehicle Front Slight #> 6241 Vehicle Nearside Slight #> 6242 None No impact Slight #> 6243 Vehicle Front Serious #> 6244 Vehicle Front Serious #> 6245 Pedestrian Front Slight #> 6246 None No impact Slight #> 6247 Vehicle Nearside Slight #> 6248 Vehicle Front Slight #> 6249 Pedestrian Front Serious #> 6250 Pedestrian Nearside Slight #> 6251 Pedestrian Front Slight #> 6252 None No impact Slight #> 6253 Vehicle Back Slight #> 6254 Vehicle Front Slight #> 6255 None No impact Slight #> 6256 Wall or bridge parapet Front Serious #> 6257 Wall or bridge parapet Front Slight #> 6258 None No impact Serious #> 6259 Wall or bridge parapet Offside Slight #> 6260 None No impact Serious #> 6261 Vehicle Nearside Slight #> 6262 Vehicle Offside Slight #> 6263 Vehicle Back Slight #> 6264 Vehicle Back Slight #> 6265 Vehicle Front Slight #> 6266 None No impact Serious #> 6267 None No impact Slight #> 6268 Pedestrian Front Slight #> 6269 Pedestrian Front Slight #> 6270 Vehicle Back Slight #> 6271 Vehicle Front Slight #> 6272 Vehicle Back Slight #> 6273 Vehicle Back Slight #> 6274 Vehicle Front Slight #> 6275 Vehicle Nearside Slight #> 6276 None No impact Slight #> 6277 None No impact Slight #> 6278 Pedestrian Offside Slight #> 6279 None No impact Slight #> 6280 None No impact Slight #> 6281 Pedestrian Front Serious #> 6282 None No impact Serious #> 6283 Vehicle Back Slight #> 6284 Vehicle Front Slight #> 6285 Vehicle Back Slight #> 6286 None No impact Serious #> 6287 Vehicle Back Slight #> 6288 Vehicle Nearside Slight #> 6289 None No impact Slight #> 6290 Pedestrian Offside Slight #> 6291 None No impact Slight #> 6292 None No impact Slight #> 6293 Vehicle Nearside Slight #> 6294 Vehicle Offside Slight #> 6295 None No impact Slight #> 6296 Vehicle Front Serious #> 6297 Vehicle Back Serious #> 6298 Vehicle Front Slight #> 6299 Vehicle Back Slight #> 6300 Vehicle Front Serious #> 6301 Vehicle Front Serious #> 6302 Vehicle Offside Serious #> 6303 Vehicle Offside Serious #> 6304 None No impact Slight #> 6305 Vehicle Back Serious #> 6306 Vehicle Front Serious #> 6307 Vehicle Back Serious #> 6308 Vehicle Back Serious #> 6309 None Unknown Slight #> 6310 None No impact Slight #> 6311 Vehicle Front Slight #> 6312 Vehicle Front Slight #> 6313 Vehicle Front Slight #> 6314 Vehicle Back Slight #> 6315 Pedestrian Offside Slight #> 6316 Pedestrian Front Slight #> 6317 Pedestrian Offside Slight #> 6318 Pedestrian Offside Slight #> 6319 Pedestrian Front Slight #> 6320 Vehicle Front Slight #> 6321 Vehicle Back Slight #> 6322 None No impact Slight #> 6323 Vehicle Offside Slight #> 6324 Vehicle Nearside Slight #> 6325 Pedestrian Nearside Slight #> 6326 None No impact Slight #> 6327 Pedestrian Front Serious #> 6328 Pedestrian Nearside Slight #> 6329 Vehicle Back Slight #> 6330 Vehicle Front Slight #> 6331 None No impact Slight #> 6332 Pedestrian Nearside Slight #> 6333 Pedestrian Front Slight #> 6334 None No impact Slight #> 6335 None No impact Serious #> 6336 Pedestrian Front Slight #> 6337 Pedestrian barrier rail Front Slight #> 6338 Vehicle Back Slight #> 6339 Vehicle Back Slight #> 6340 Vehicle Front Slight #> 6341 None No impact Slight #> 6342 None No impact Slight #> 6343 None No impact Slight #> 6344 Vehicle Back Slight #> 6345 Vehicle Front Slight #> 6346 Pedestrian Front Slight #> 6347 None No impact Slight #> 6348 Vehicle Front Slight #> 6349 Vehicle Back Slight #> 6350 None No impact Slight #> 6351 Vehicle Back Slight #> 6352 Vehicle Front Slight #> 6353 Vehicle Back Slight #> 6354 None No impact Serious #> 6355 Vehicle Front Slight #> 6356 Vehicle Back Slight #> 6357 Pedestrian Front Serious #> 6358 Pedestrian Front Serious #> 6359 Vehicle Front Slight #> 6360 Vehicle Back Slight #> 6361 Vehicle Front Slight #> 6362 Vehicle Front Slight #> 6363 Vehicle Back Slight #> 6364 Vehicle Front Slight #> 6365 None No impact Slight #> 6366 Pedestrian Offside Slight #> 6367 Vehicle Back Serious #> 6368 Vehicle Front Serious #> 6369 Pedestrian barrier rail Front Slight #> 6370 Pedestrian Offside Slight #> 6371 Vehicle Offside Slight #> 6372 Vehicle Nearside Slight #> 6373 None No impact Slight #> 6374 Vehicle Front Slight #> 6375 Vehicle Back Slight #> 6376 None No impact Serious #> 6377 Vehicle Front Slight #> 6378 Vehicle Front Slight #> 6379 Vehicle Offside Serious #> 6380 Vehicle Nearside Serious #> 6381 Vehicle Front Serious #> 6382 Vehicle Back Serious #> 6383 Vehicle Offside Slight #> 6384 Vehicle Front Slight #> 6385 None No impact Slight #> 6386 Vehicle Nearside Slight #> 6387 Vehicle Offside Slight #> 6388 Vehicle Back Slight #> 6389 Vehicle Front Slight #> 6390 None No impact Slight #> 6391 Pedestrian Nearside Slight #> 6392 Pedestrian Back Slight #> 6393 Vehicle Back Slight #> 6394 Vehicle Front Slight #> 6395 Vehicle Front Slight #> 6396 Vehicle Back Slight #> 6397 Vehicle Front Slight #> 6398 Pedestrian Nearside Slight #> 6399 Vehicle Nearside Slight #> 6400 Vehicle Nearside Slight #> 6401 Vehicle Back Slight #> 6402 Vehicle Front Slight #> 6403 None No impact Serious #> 6404 None No impact Slight #> 6405 None No impact Serious #> 6406 Vehicle Offside Slight #> 6407 Vehicle Nearside Slight #> 6408 None No impact Slight #> 6409 Vehicle Nearside Slight #> 6410 Vehicle Offside Slight #> 6411 None No impact Slight #> 6412 None No impact Slight #> 6413 None No impact Slight #> 6414 None No impact Serious #> 6415 None No impact Slight #> 6416 Vehicle Back Slight #> 6417 Vehicle Back Slight #> 6418 Vehicle Back Slight #> 6419 Vehicle Front Slight #> 6420 None No impact Slight #> 6421 None No impact Slight #> 6422 Pedestrian Nearside Slight #> 6423 None No impact Slight #> 6424 Pedestrian Offside Slight #> 6425 Vehicle Front Slight #> 6426 Vehicle Front Slight #> 6427 Vehicle Front Slight #> 6428 Vehicle Back Slight #> 6429 Vehicle Front Slight #> 6430 Vehicle Back Slight #> 6431 Vehicle Back Slight #> 6432 Vehicle Front Slight #> 6433 Vehicle Front Slight #> 6434 None No impact Slight #> 6435 None No impact Slight #> 6436 Vehicle Offside Slight #> 6437 Vehicle Back Slight #> 6438 Vehicle Front Slight #> 6439 Vehicle Back Slight #> 6440 Vehicle Front Slight #> 6441 Vehicle Nearside Slight #> 6442 Vehicle Front Slight #> 6443 Vehicle Back Slight #> 6444 Vehicle Front Slight #> 6445 Vehicle Front Slight #> 6446 None No impact Slight #> 6447 Vehicle Front Slight #> 6448 Vehicle Back Slight #> 6449 Vehicle Back Slight #> 6450 Vehicle Front Slight #> 6451 Crash barrier Offside Serious #> 6452 None No impact Slight #> 6453 Vehicle Offside Slight #> 6454 Vehicle Nearside Slight #> 6455 Vehicle Front Slight #> 6456 Vehicle Back Slight #> 6457 Pedestrian Front Serious #> 6458 Lamp-post or telephone-post Front Slight #> 6459 None No impact Slight #> 6460 None No impact Slight #> 6461 Vehicle Front Slight #> 6462 Vehicle Front Slight #> 6463 None No impact Slight #> 6464 Vehicle Offside Slight #> 6465 Vehicle Front Slight #> 6466 Pedestrian Front Serious #> 6467 None No impact Slight #> 6468 Vehicle Back Slight #> 6469 Vehicle Front Slight #> 6470 Vehicle Back Slight #> 6471 Vehicle Front Slight #> 6472 Vehicle Back Slight #> 6473 Vehicle Back Slight #> 6474 Vehicle Back Slight #> 6475 Vehicle Back Slight #> 6476 Vehicle Back Slight #> 6477 None No impact Slight #> 6478 None No impact Slight #> 6479 Vehicle Nearside Slight #> 6480 Vehicle Offside Slight #> 6481 Vehicle Back Slight #> 6482 Vehicle Front Slight #> 6483 None No impact Slight #> 6484 None No impact Slight #> 6485 None No impact Slight #> 6486 Pedestrian Offside Slight #> 6487 None No impact Slight #> 6488 None No impact Slight #> 6489 Vehicle Offside Slight #> 6490 Vehicle Front Slight #> 6491 Vehicle Back Slight #> 6492 Vehicle Nearside Slight #> 6493 Vehicle Front Slight #> 6494 Vehicle Front Slight #> 6495 Vehicle Front Slight #> 6496 Vehicle Back Slight #> 6497 None No impact Serious #> 6498 Pedestrian Front Slight #> 6499 Vehicle Front Serious #> 6500 Vehicle Offside Serious #> 6501 None No impact Slight #> 6502 Vehicle Nearside Slight #> 6503 Vehicle Front Slight #> 6504 Pedestrian Front Slight #> 6505 Vehicle Back Slight #> 6506 Vehicle Front Slight #> 6507 Vehicle Nearside Slight #> 6508 Vehicle Offside Slight #> 6509 None No impact Serious #> 6510 Vehicle Offside Serious #> 6511 Vehicle Nearside Serious #> 6512 Vehicle Front Slight #> 6513 Vehicle Nearside Slight #> 6514 None No impact Slight #> 6515 None No impact Slight #> 6516 None No impact Slight #> 6517 Pedestrian Nearside Slight #> 6518 None No impact Slight #> 6519 Vehicle Back Serious #> 6520 Vehicle Back Serious #> 6521 Vehicle Front Serious #> 6522 Vehicle Back Slight #> 6523 None No impact Slight #> 6524 Vehicle Back Slight #> 6525 Vehicle Front Slight #> 6526 Pedestrian Front Slight #> 6527 Pedestrian Back Slight #> 6528 None No impact Slight #> 6529 Vehicle Front Slight #> 6530 Vehicle Front Slight #> 6531 None No impact Slight #> 6532 Vehicle Offside Slight #> 6533 Vehicle Nearside Slight #> 6534 None No impact Slight #> 6535 None No impact Slight #> 6536 Vehicle Nearside Slight #> 6537 Vehicle Offside Slight #> 6538 None No impact Slight #> 6539 None No impact Serious #> 6540 None No impact Slight #> 6541 None No impact Serious #> 6542 Vehicle Front Slight #> 6543 Vehicle Offside Slight #> 6544 Pedestrian Offside Slight #> 6545 Vehicle Back Slight #> 6546 Vehicle Front Slight #> 6547 None No impact Slight #> 6548 Vehicle Front Slight #> 6549 Vehicle Front Slight #> 6550 None No impact Slight #> 6551 Vehicle Front Slight #> 6552 Vehicle Back Slight #> 6553 None No impact Slight #> 6554 Vehicle Offside Slight #> 6555 Vehicle Nearside Slight #> 6556 Vehicle Front Slight #> 6557 Vehicle Front Slight #> 6558 Vehicle Offside Serious #> 6559 Vehicle Nearside Serious #> 6560 None No impact Slight #> 6561 Pedestrian Front Slight #> 6562 Vehicle Front Slight #> 6563 Vehicle Offside Slight #> 6564 None No impact Serious #> 6565 Pedestrian Nearside Slight #> 6566 Vehicle Front Slight #> 6567 Vehicle Back Slight #> 6568 Pedestrian Nearside Slight #> 6569 Pedestrian Offside Slight #> 6570 None No impact Slight #> 6571 Vehicle Front Slight #> 6572 Vehicle Nearside Slight #> 6573 Vehicle Offside Slight #> 6574 Pedestrian Front Slight #> 6575 Vehicle Front Slight #> 6576 Vehicle Back Slight #> 6577 Vehicle Back Slight #> 6578 Vehicle Front Slight #> 6579 Vehicle Back Slight #> 6580 Vehicle Front Slight #> 6581 None No impact Slight #> 6582 None No impact Slight #> 6583 Pedestrian Front Slight #> 6584 Vehicle Back Slight #> 6585 Vehicle Front Slight #> 6586 Vehicle Back Slight #> 6587 None No impact Slight #> 6588 Vehicle Front Slight #> 6589 Vehicle Back Slight #> 6590 Vehicle Back Serious #> 6591 Vehicle Offside Serious #> 6592 Vehicle Back Slight #> 6593 Vehicle Front Slight #> 6594 None No impact Slight #> 6595 None No impact Serious #> 6596 Vehicle Back Slight #> 6597 Vehicle Front Slight #> 6598 Pedestrian Front Slight #> 6599 Vehicle Back Slight #> 6600 Vehicle Front Slight #> 6601 Vehicle Back Slight #> 6602 Vehicle Offside Serious #> 6603 Vehicle Nearside Serious #> 6604 Pedestrian Offside Slight #> 6605 None No impact Slight #> 6606 None No impact Serious #> 6607 None No impact Serious #> 6608 Vehicle Offside Slight #> 6609 Vehicle Front Slight #> 6610 Vehicle Front Slight #> 6611 Vehicle Back Slight #> 6612 Pedestrian barrier rail Front Slight #> 6613 Pedestrian Front Serious #> 6614 Wall or bridge parapet Front Slight #> 6615 Vehicle Front Slight #> 6616 Vehicle Back Slight #> 6617 None No impact Slight #> 6618 Vehicle Offside Slight #> 6619 Vehicle Nearside Slight #> 6620 Pedestrian Front Serious #> 6621 Vehicle Front Slight #> 6622 Vehicle Offside Slight #> 6623 None No impact Slight #> 6624 None No impact Slight #> 6625 Vehicle Back Slight #> 6626 Vehicle Front Slight #> 6627 None No impact Slight #> 6628 Vehicle Back Slight #> 6629 Vehicle Front Slight #> 6630 Road sign Front Slight #> 6631 Vehicle Offside Slight #> 6632 Vehicle Front Slight #> 6633 Vehicle Front Slight #> 6634 Vehicle Back Slight #> 6635 None No impact Slight #> 6636 Vehicle Front Slight #> 6637 Vehicle Front Slight #> 6638 None No impact Slight #> 6639 Vehicle Nearside Slight #> 6640 Vehicle Offside Slight #> 6641 Vehicle Front Slight #> 6642 Vehicle Back Slight #> 6643 Vehicle Back Slight #> 6644 Vehicle Front Slight #> 6645 Pedestrian Front Serious #> 6646 Vehicle Front Slight #> 6647 Vehicle Back Slight #> 6648 None No impact Slight #> 6649 None No impact Slight #> 6650 None No impact Slight #> 6651 Vehicle Front Slight #> 6652 Vehicle Front Slight #> 6653 Vehicle Back Slight #> 6654 Vehicle Front Slight #> 6655 Vehicle Back Slight #> 6656 Vehicle Back Slight #> 6657 None No impact Serious #> 6658 Pedestrian Offside Serious #> 6659 None No impact Slight #> 6660 Vehicle Offside Slight #> 6661 Vehicle Front Slight #> 6662 Vehicle Back Slight #> 6663 Vehicle Front Slight #> 6664 Vehicle Offside Slight #> 6665 Vehicle Back Slight #> 6666 Vehicle Front Slight #> 6667 None No impact Slight #> 6668 Vehicle Nearside Slight #> 6669 Vehicle Offside Slight #> 6670 None No impact Slight #> 6671 Pedestrian Offside Serious #> 6672 Pedestrian Front Slight #> 6673 Pedestrian Offside Serious #> 6674 None No impact Slight #> 6675 None No impact Slight #> 6676 Vehicle Front Slight #> 6677 Vehicle Offside Slight #> 6678 Vehicle Front Slight #> 6679 Vehicle Offside Slight #> 6680 None No impact Serious #> 6681 Pedestrian Front Slight #> 6682 None No impact Slight #> 6683 Vehicle Back Slight #> 6684 Vehicle Front Slight #> 6685 None No impact Slight #> 6686 None No impact Serious #> 6687 Vehicle Front Slight #> 6688 Vehicle Nearside Slight #> 6689 Vehicle Front Slight #> 6690 Vehicle Nearside Slight #> 6691 None No impact Slight #> 6692 Pedestrian Front Serious #> 6693 Vehicle Front Slight #> 6694 Vehicle Front Slight #> 6695 Vehicle Back Slight #> 6696 Vehicle Front Slight #> 6697 Pedestrian Front Slight #> 6698 None No impact Slight #> 6699 Pedestrian Front Fatal #> 6700 Pedestrian Nearside Serious #> 6701 Vehicle Back Serious #> 6702 Vehicle Front Serious #> 6703 Vehicle Back Serious #> 6704 None No impact Slight #> 6705 Vehicle Front Slight #> 6706 None No impact Slight #> 6707 None No impact Slight #> 6708 Vehicle Back Slight #> 6709 Vehicle Front Slight #> 6710 Vehicle Front Slight #> 6711 Vehicle Back Slight #> 6712 Pedestrian Front Slight #> 6713 Pedestrian Front Serious #> 6714 Vehicle Back Serious #> 6715 Vehicle Front Serious #> 6716 None No impact Slight #> 6717 Vehicle Back Slight #> 6718 Vehicle Front Slight #> 6719 Vehicle Front Slight #> 6720 Vehicle Offside Slight #> 6721 None No impact Serious #> 6722 None No impact Slight #> 6723 Vehicle Front Slight #> 6724 Vehicle Back Slight #> 6725 Vehicle Front Slight #> 6726 Vehicle Back Slight #> 6727 Vehicle Front Slight #> 6728 Vehicle Front Slight #> 6729 None No impact Serious #> 6730 None No impact Slight #> 6731 Vehicle Offside Serious #> 6732 Vehicle Front Serious #> 6733 None No impact Slight #> 6734 Pedestrian Nearside Slight #> 6735 Pedestrian Offside Serious #> 6736 None No impact Slight #> 6737 Lamp-post or telephone-post Front Slight #> 6738 Vehicle Back Slight #> 6739 Vehicle Front Slight #> 6740 Vehicle Offside Slight #> 6741 Vehicle Front Slight #> 6742 Vehicle Back Slight #> 6743 Vehicle Offside Slight #> 6744 Vehicle Front Slight #> 6745 Vehicle Nearside Serious #> 6746 Vehicle Offside Serious #> 6747 Vehicle Front Slight #> 6748 Vehicle Back Slight #> 6749 Tree Front Slight #> 6750 Crash barrier Front Slight #> 6751 Vehicle Front Slight #> 6752 Vehicle Front Slight #> 6753 Vehicle Back Slight #> 6754 Vehicle Nearside Slight #> 6755 Vehicle Offside Slight #> 6756 Vehicle Back Slight #> 6757 Vehicle Front Slight #> 6758 Vehicle Offside Slight #> 6759 Vehicle Nearside Slight #> 6760 Pedestrian Nearside Serious #> 6761 None No impact Slight #> 6762 Pedestrian barrier rail Offside Slight #> 6763 None No impact Slight #> 6764 Vehicle Back Slight #> 6765 Vehicle Back Slight #> 6766 Vehicle Back Slight #> 6767 Vehicle Front Slight #> 6768 Vehicle Front Slight #> 6769 Vehicle Front Slight #> 6770 Pedestrian barrier rail Nearside Slight #> 6771 Vehicle Back Slight #> 6772 Vehicle Front Slight #> 6773 Vehicle Nearside Slight #> 6774 Vehicle Offside Slight #> 6775 Road sign Nearside Slight #> 6776 Pedestrian Nearside Slight #> 6777 None No impact Serious #> 6778 Vehicle Back Slight #> 6779 Vehicle Front Slight #> 6780 Pedestrian Nearside Slight #> 6781 Pedestrian Front Slight #> 6782 None No impact Slight #> 6783 Pedestrian Front Slight #> 6784 Vehicle Back Slight #> 6785 Vehicle Back Slight #> 6786 Vehicle Back Slight #> 6787 None No impact Slight #> 6788 Vehicle Nearside Slight #> 6789 Vehicle Front Slight #> 6790 Pedestrian Nearside Slight #> 6791 Pedestrian Front Slight #> 6792 Pedestrian Front Slight #> 6793 Vehicle Nearside Slight #> 6794 Vehicle Front Slight #> 6795 None No impact Slight #> 6796 Vehicle Back Slight #> 6797 Vehicle Front Slight #> 6798 Vehicle Offside Slight #> 6799 Vehicle Nearside Slight #> 6800 Vehicle Nearside Slight #> 6801 Vehicle Offside Slight #> 6802 Pedestrian Front Slight #> 6803 None No impact Slight #> 6804 Vehicle Front Slight #> 6805 Vehicle Back Slight #> 6806 None No impact Slight #> 6807 None No impact Slight #> 6808 Vehicle Front Slight #> 6809 Vehicle Offside Slight #> 6810 Vehicle Front Slight #> 6811 Vehicle Back Slight #> 6812 Pedestrian Offside Slight #> 6813 Pedestrian Nearside Slight #> 6814 None No impact Slight #> 6815 Vehicle Front Slight #> 6816 Vehicle Back Slight #> 6817 None No impact Serious #> 6818 Vehicle Back Serious #> 6819 Vehicle Front Serious #> 6820 None No impact Slight #> 6821 Vehicle Back Slight #> 6822 Vehicle Back Slight #> 6823 Vehicle Front Slight #> 6824 Vehicle Back Slight #> 6825 Vehicle Front Slight #> 6826 Vehicle Nearside Slight #> 6827 Vehicle Nearside Slight #> 6828 Vehicle Offside Slight #> 6829 Wall or bridge parapet Nearside Slight #> 6830 Vehicle Front Serious #> 6831 Vehicle Back Serious #> 6832 Pedestrian Nearside Slight #> 6833 Vehicle Offside Slight #> 6834 Vehicle Nearside Slight #> 6835 None No impact Serious #> 6836 Vehicle Back Slight #> 6837 Vehicle Front Slight #> 6838 None No impact Slight #> 6839 None No impact Slight #> 6840 None No impact Slight #> 6841 Vehicle Front Slight #> 6842 Vehicle Offside Slight #> 6843 Vehicle Front Slight #> 6844 Vehicle Offside Slight #> 6845 Pedestrian Front Serious #> 6846 Loose object on carriageway Front Slight #> 6847 None No impact Slight #> 6848 None No impact Slight #> 6849 None No impact Slight #> 6850 Vehicle Front Slight #> 6851 Vehicle Offside Slight #> 6852 Pedestrian Back Serious #> 6853 Vehicle Front Slight #> 6854 Vehicle Back Slight #> 6855 None No impact Serious #> 6856 Vehicle Nearside Slight #> 6857 Vehicle Front Slight #> 6858 None No impact Slight #> 6859 Pedestrian Nearside Serious #> 6860 None No impact Slight #> 6861 Vehicle Back Slight #> 6862 Vehicle Front Slight #> 6863 Vehicle Offside Slight #> 6864 Vehicle Front Slight #> 6865 Vehicle Nearside Slight #> 6866 Vehicle Offside Slight #> 6867 Vehicle Back Slight #> 6868 Vehicle Front Slight #> 6869 None No impact Slight #> 6870 Road sign Front Slight #> 6871 Vehicle Offside Slight #> 6872 Vehicle Nearside Slight #> 6873 Vehicle Back Slight #> 6874 Vehicle Front Slight #> 6875 None No impact Slight #> 6876 Bollard Front Slight #> 6877 Vehicle Offside Slight #> 6878 Vehicle Nearside Slight #> 6879 Vehicle Nearside Slight #> 6880 Vehicle Offside Slight #> 6881 Vehicle Offside Slight #> 6882 Vehicle Nearside Slight #> 6883 Vehicle Back Slight #> 6884 Vehicle Front Slight #> 6885 Vehicle Back Slight #> 6886 Pedestrian Nearside Slight #> 6887 Vehicle Front Slight #> 6888 Vehicle Back Slight #> 6889 None No impact Slight #> 6890 None No impact Slight #> 6891 Vehicle Back Slight #> 6892 Vehicle Front Slight #> 6893 None No impact Slight #> 6894 Pedestrian Front Slight #> 6895 Pedestrian Nearside Slight #> 6896 Vehicle Front Slight #> 6897 Vehicle Back Slight #> 6898 Vehicle Front Slight #> 6899 Pedestrian Front Slight #> 6900 Vehicle Front Slight #> 6901 Vehicle Back Slight #> 6902 Vehicle Back Slight #> 6903 Vehicle Back Slight #> 6904 Vehicle Back Slight #> 6905 Vehicle Back Slight #> 6906 Vehicle Front Slight #> 6907 Vehicle Front Slight #> 6908 Vehicle Back Slight #> 6909 Pedestrian Back Slight #> 6910 None No impact Serious #> 6911 Vehicle Back Slight #> 6912 Vehicle Front Slight #> 6913 Vehicle Offside Slight #> 6914 Vehicle Nearside Slight #> 6915 None No impact Slight #> 6916 Vehicle Front Slight #> 6917 Vehicle Front Slight #> 6918 Vehicle Offside Slight #> 6919 Vehicle Front Slight #> 6920 None No impact Slight #> 6921 Vehicle Front Slight #> 6922 Vehicle Back Slight #> 6923 Vehicle Front Slight #> 6924 Vehicle Front Slight #> 6925 None No impact Slight #> 6926 Vehicle Front Slight #> 6927 Vehicle Back Slight #> 6928 Vehicle Back Slight #> 6929 None No impact Slight #> 6930 Vehicle Front Slight #> 6931 Vehicle Front Slight #> 6932 Vehicle Back Slight #> 6933 Pedestrian barrier rail Front Slight #> 6934 None No impact Slight #> 6935 Vehicle Nearside Slight #> 6936 Vehicle Front Slight #> 6937 Vehicle Offside Slight #> 6938 Vehicle Back Slight #> 6939 Vehicle Front Slight #> 6940 Vehicle Nearside Slight #> 6941 Vehicle Back Slight #> 6942 Vehicle Front Slight #> 6943 Vehicle Offside Slight #> 6944 Pedestrian Front Serious #> 6945 Pedestrian Nearside Slight #> 6946 Vehicle Nearside Slight #> 6947 Vehicle Offside Slight #> 6948 Vehicle Front Slight #> 6949 Vehicle Back Slight #> 6950 Vehicle Offside Slight #> 6951 Vehicle Nearside Slight #> 6952 Vehicle Nearside Slight #> 6953 Vehicle Front Slight #> 6954 Road sign Front Serious #> 6955 None No impact Slight #> 6956 None No impact Serious #> 6957 None No impact Slight #> 6958 Pedestrian Nearside Slight #> 6959 None No impact Slight #> 6960 Vehicle Offside Serious #> 6961 Vehicle Nearside Serious #> 6962 Vehicle Front Slight #> 6963 Vehicle Back Slight #> 6964 Vehicle Offside Slight #> 6965 Vehicle Nearside Slight #> 6966 Vehicle Front Slight #> 6967 Vehicle Offside Slight #> 6968 None No impact Slight #> 6969 None No impact Slight #> 6970 Pedestrian Offside Slight #> 6971 None No impact Slight #> 6972 Pedestrian Front Serious #> 6973 None No impact Slight #> 6974 None No impact Serious #> 6975 None No impact Slight #> 6976 Crash barrier Front Slight #> 6977 None No impact Slight #> 6978 None No impact Slight #> 6979 None No impact Slight #> 6980 None No impact Slight #> 6981 Vehicle Front Slight #> 6982 Vehicle Front Slight #> 6983 Vehicle Front Slight #> 6984 Pedestrian Front Slight #> 6985 None No impact Serious #> 6986 Pedestrian Nearside Slight #> 6987 Pedestrian Front Slight #> 6988 Vehicle Front Slight #> 6989 Vehicle Back Slight #> 6990 Vehicle Front Slight #> 6991 Vehicle Nearside Slight #> 6992 None No impact Slight #> 6993 Hoarding/walkway Front Slight #> 6994 Vehicle Front Slight #> 6995 Vehicle Back Slight #> 6996 Vehicle Offside Slight #> 6997 Vehicle Nearside Slight #> 6998 None No impact Slight #> 6999 Vehicle Front Slight #> 7000 Vehicle Front Slight #> 7001 Vehicle Front Slight #> 7002 Pedestrian Nearside Serious #> 7003 Wall or bridge parapet Front Slight #> 7004 Vehicle Back Serious #> 7005 Vehicle Front Serious #> 7006 Vehicle Front Serious #> 7007 Vehicle Back Slight #> 7008 Vehicle Front Slight #> 7009 Vehicle Back Slight #> 7010 Vehicle Back Slight #> 7011 Vehicle Nearside Slight #> 7012 Vehicle Offside Slight #> 7013 Pedestrian Front Serious #> 7014 None No impact Slight #> 7015 Wall or bridge parapet Front Slight #> 7016 None No impact Slight #> 7017 None No impact Slight #> 7018 None No impact Slight #> 7019 None No impact Serious #> 7020 Vehicle Back Serious #> 7021 Vehicle Front Serious #> 7022 Pedestrian Front Slight #> 7023 None No impact Serious #> 7024 None No impact Slight #> 7025 Pedestrian Offside Slight #> 7026 Vehicle Nearside Slight #> 7027 Vehicle Offside Slight #> 7028 Vehicle Front Slight #> 7029 Vehicle Back Slight #> 7030 Vehicle Front Slight #> 7031 None No impact Slight #> 7032 Vehicle Back Slight #> 7033 Vehicle Front Slight #> 7034 Vehicle Back Slight #> 7035 Vehicle Front Slight #> 7036 Vehicle Front Slight #> 7037 Vehicle Offside Slight #> 7038 Vehicle Front Slight #> 7039 Vehicle Front Slight #> 7040 Vehicle Offside Slight #> 7041 Vehicle Nearside Slight #> 7042 Pedestrian Front Slight #> 7043 Vehicle Offside Slight #> 7044 Vehicle Nearside Slight #> 7045 Vehicle Back Serious #> 7046 Vehicle Front Serious #> 7047 Vehicle Offside Slight #> 7048 Vehicle Offside Slight #> 7049 None No impact Slight #> 7050 Pedestrian Front Slight #> 7051 Vehicle Front Slight #> 7052 Vehicle Back Slight #> 7053 Vehicle Front Slight #> 7054 Vehicle Front Slight #> 7055 Vehicle Front Slight #> 7056 Vehicle Back Slight #> 7057 Pedestrian Nearside Serious #> 7058 None No impact Serious #> 7059 Vehicle Back Slight #> 7060 Vehicle Front Slight #> 7061 Vehicle Front Slight #> 7062 Vehicle Front Slight #> 7063 Vehicle Nearside Slight #> 7064 Vehicle Back Slight #> 7065 Vehicle Back Slight #> 7066 Vehicle Front Slight #> 7067 Vehicle Front Slight #> 7068 None No impact Slight #> 7069 Vehicle Front Serious #> 7070 Vehicle Nearside Serious #> 7071 Vehicle Front Serious #> 7072 Vehicle Offside Serious #> 7073 Vehicle Back Slight #> 7074 Vehicle Front Slight #> 7075 Pedestrian Front Fatal #> 7076 None No impact Slight #> 7077 None No impact Serious #> 7078 Vehicle Back Slight #> 7079 Vehicle Front Slight #> 7080 Vehicle Front Slight #> 7081 Vehicle Back Slight #> 7082 Pedestrian Front Slight #> 7083 Vehicle Back Serious #> 7084 Vehicle Back Serious #> 7085 Vehicle Front Serious #> 7086 None No impact Slight #> 7087 None No impact Slight #> 7088 Animal Front Slight #> 7089 Vehicle Offside Slight #> 7090 Vehicle Nearside Slight #> 7091 Vehicle Back Serious #> 7092 Vehicle Front Serious #> 7093 None No impact Slight #> 7094 Wall or bridge parapet Front Slight #> 7095 Vehicle Nearside Slight #> 7096 Vehicle Offside Slight #> 7097 None No impact Slight #> 7098 None No impact Slight #> 7099 Pedestrian Nearside Slight #> 7100 Pedestrian Nearside Slight #> 7101 Pedestrian Nearside Slight #> 7102 Crash barrier Nearside Slight #> 7103 Pedestrian Front Slight #> 7104 Pedestrian Front Slight #> 7105 None No impact Slight #> 7106 None No impact Serious #> 7107 None No impact Slight #> 7108 Pedestrian Front Serious #> 7109 Pedestrian Front Serious #> 7110 None No impact Slight #> 7111 Pedestrian barrier rail Front Slight #> 7112 Vehicle Front Slight #> 7113 Vehicle Back Slight #> 7114 Pedestrian Offside Serious #> 7115 Vehicle Back Slight #> 7116 Vehicle Front Slight #> 7117 None No impact Slight #> 7118 None No impact Slight #> 7119 None No impact Serious #> 7120 None No impact Slight #> 7121 Vehicle Front Slight #> 7122 Vehicle Offside Slight #> 7123 Vehicle Nearside Slight #> 7124 Vehicle Nearside Slight #> 7125 Vehicle Back Slight #> 7126 Vehicle Front Slight #> 7127 None No impact Slight #> 7128 None No impact Slight #> 7129 None No impact Slight #> 7130 None No impact Serious #> 7131 Vehicle Front Slight #> 7132 Vehicle Back Slight #> 7133 Vehicle Front Slight #> 7134 None No impact Slight #> 7135 None No impact Slight #> 7136 Pedestrian Front Serious #> 7137 None No impact Slight #> 7138 Pedestrian Front Slight #> 7139 Road sign Front Serious #> 7140 Vehicle Front Slight #> 7141 Vehicle Front Slight #> 7142 Vehicle Nearside Slight #> Driver_Age Driver_Sex Main_vehicle #> 1 28 Male Going straight ahead (with priority) #> 2 56 Male Going straight ahead (with priority) #> 3 54 Male Going straight ahead (with priority) #> 4 62 Male Going straight ahead (with priority) #> 5 38 Male Stopped in traffic #> 6 64 Male Making right turn #> 7 35 Male Making right turn #> 8 23 Male Other #> 9 38 Male Making right turn #> 10 36 Male Slowing or stopping #> 11 52 Male Going straight ahead (with priority) #> 12 25 Male Going straight ahead (with priority) #> 13 42 Male Going straight ahead (with priority) #> 14 35 Male Going straight ahead (with priority) #> 15 61 Male Going straight ahead (with priority) #> 16 60 Male Slowing or stopping #> 17 52 Male Slowing or stopping #> 18 31 Male Going straight ahead (with priority) #> 19 35 Male Going straight ahead (with priority) #> 20 27 Male Going straight ahead (with priority) #> 21 52 Male Making U turn #> 22 35 Male Going straight ahead (with priority) #> 23 56 Male Going straight ahead (with priority) #> 24 32 Male Going straight ahead (with priority) #> 25 62 Male Going straight ahead (with priority) #> 26 59 Male Going straight ahead (with priority) #> 27 46 Male Going straight ahead (with priority) #> 28 31 Male Reversing #> 29 19 Male Making right turn #> 30 48 Male Going straight ahead (with priority) #> 31 45 Male Slowing or stopping #> 32 40 Male Going straight ahead (with priority) #> 33 56 Male Going straight ahead (with priority) #> 34 42 Male Going straight ahead (with priority) #> 35 44 Male Going straight ahead (with priority) #> 36 67 Male Going straight ahead (with priority) #> 37 40 Male Going straight ahead (with priority) #> 38 63 Male Going straight ahead (with priority) #> 39 57 Male Going straight ahead (with priority) #> 40 61 Male Going straight ahead (with priority) #> 41 69 Male Going straight ahead (with priority) #> 42 56 Male Making right turn #> 43 55 Female Going straight ahead (with priority) #> 44 35 Male Making right turn #> 45 37 Male Making right turn #> 46 51 Male Making left turn #> 47 68 Male Changing lanes or merging #> 48 37 Female Slowing or stopping #> 49 46 Male Going straight ahead (with priority) #> 50 35 Male Going straight ahead (with priority) #> 51 54 Male Overtaking on off-side #> 52 36 Male Going straight ahead (with priority) #> 53 37 Male Going straight ahead (with priority) #> 54 40 Male Going straight ahead (with priority) #> 55 63 Male Going straight ahead (with priority) #> 56 62 Male Going straight ahead (with priority) #> 57 53 Male Going straight ahead (with priority) #> 58 53 Male Going straight ahead (with priority) #> 59 30 Male Going straight ahead (with priority) #> 60 46 Male Going straight ahead (with priority) #> 61 44 Male Going straight ahead (with priority) #> 62 34 Male Other #> 63 51 Male Parked #> 64 20 Female Going straight ahead (with priority) #> 65 34 Male Other #> 66 59 Male Other #> 67 39 Male Going straight ahead (with priority) #> 68 37 Female Slowing or stopping #> 69 59 Male Going straight ahead (with priority) #> 70 47 Male Changing lanes or merging #> 71 57 Male Going straight ahead (with priority) #> 72 38 Male Going straight ahead (with priority) #> 73 31 Male Going straight ahead (with priority) #> 74 61 Male Going straight ahead (with priority) #> 75 41 Male Going straight ahead (with priority) #> 76 41 Female Going straight ahead (with priority) #> 77 43 Male Overtaking on off-side #> 78 48 Male Going straight ahead (with priority) #> 79 32 Female Going straight ahead (with priority) #> 80 NA Not known Changing lanes or merging #> 81 25 Male Going straight ahead (with priority) #> 82 46 Male Going straight ahead (with priority) #> 83 31 Male Going straight ahead (with priority) #> 84 45 Male Going straight ahead (with priority) #> 85 57 Male Making left turn #> 86 45 Male Going Straight Ahead (against priority) #> 87 43 Male Going straight ahead (with priority) #> 88 57 Male Going straight ahead (with priority) #> 89 26 Male Going straight ahead (with priority) #> 90 60 Male Going straight ahead (with priority) #> 91 85 Male Going straight ahead (with priority) #> 92 34 Male Going straight ahead (with priority) #> 93 58 Male Starting in traffic #> 94 55 Male Going straight ahead (with priority) #> 95 39 Male Going straight ahead (with priority) #> 96 57 Male Going straight ahead (with priority) #> 97 45 Male Reversing #> 98 37 Male Going straight ahead (with priority) #> 99 28 Male Changing lanes or merging #> 100 42 Male Going straight ahead (with priority) #> 101 NA Not known Going straight ahead (with priority) #> 102 28 Female Making right turn #> 103 43 Male Going straight ahead (with priority) #> 104 26 Male Going straight ahead (with priority) #> 105 31 Male Going straight ahead (with priority) #> 106 47 Male Going straight ahead (with priority) #> 107 53 Male Going straight ahead (with priority) #> 108 60 Male Reversing #> 109 63 Male Slowing or stopping #> 110 38 Male Going straight ahead (with priority) #> 111 30 Male Going straight ahead (with priority) #> 112 35 Male Going straight ahead (with priority) #> 113 25 Male Going straight ahead (with priority) #> 114 45 Female Going straight ahead (with priority) #> 115 51 Male Going straight ahead (with priority) #> 116 44 Male Slowing or stopping #> 117 45 Male Going straight ahead (with priority) #> 118 55 Male Going straight ahead (with priority) #> 119 51 Male Going straight ahead (with priority) #> 120 58 Male Going straight ahead (with priority) #> 121 48 Male Going straight ahead (with priority) #> 122 48 Male Going straight ahead (with priority) #> 123 51 Male Slowing or stopping #> 124 48 Male Slowing or stopping #> 125 49 Male Going straight ahead (with priority) #> 126 32 Male Slowing or stopping #> 127 62 Male Slowing or stopping #> 128 54 Male Slowing or stopping #> 129 45 Male Going straight ahead (with priority) #> 130 65 Male Slowing or stopping #> 131 44 Male Slowing or stopping #> 132 44 Not known Unknown #> 133 54 Male Going straight ahead (with priority) #> 134 54 Male Going straight ahead (with priority) #> 135 47 Female Going straight ahead (with priority) #> 136 53 Male Going straight ahead (with priority) #> 137 48 Male Going straight ahead (with priority) #> 138 54 Male Going straight ahead (with priority) #> 139 59 Male Going straight ahead (with priority) #> 140 65 Male Ran off road #> 141 28 Male Going straight ahead (with priority) #> 142 57 Male Going straight ahead (with priority) #> 143 60 Male Going straight ahead (with priority) #> 144 49 Male Going straight ahead (with priority) #> 145 55 Male Changing lanes or merging #> 146 29 Male Going straight ahead (with priority) #> 147 44 Male Going straight ahead (with priority) #> 148 50 Male Going straight ahead (with priority) #> 149 36 Male Going straight ahead (with priority) #> 150 49 Male Going straight ahead (with priority) #> 151 64 Female Going straight ahead (with priority) #> 152 55 Male Going straight ahead (with priority) #> 153 55 Male Reversing #> 154 41 Male Going straight ahead (with priority) #> 155 46 Male Other #> 156 43 Male Going straight ahead (with priority) #> 157 49 Male Going straight ahead (with priority) #> 158 57 Female Going straight ahead (with priority) #> 159 35 Female Going Straight Ahead (against priority) #> 160 46 Male Slowing or stopping #> 161 59 Male Going straight ahead (with priority) #> 162 31 Male Slowing or stopping #> 163 60 Male Going straight ahead (with priority) #> 164 59 Male Going straight ahead (with priority) #> 165 56 Male Going straight ahead (with priority) #> 166 55 Male Going Straight Ahead (against priority) #> 167 47 Male Going straight ahead (with priority) #> 168 45 Male Going straight ahead (with priority) #> 169 59 Male Going Straight Ahead (against priority) #> 170 42 Male Going straight ahead (with priority) #> 171 30 Male Going straight ahead (with priority) #> 172 55 Male Making right turn #> 173 37 Male Stopped in traffic #> 174 29 Male Going straight ahead (with priority) #> 175 48 Male Slowing or stopping #> 176 52 Male Going straight ahead (with priority) #> 177 54 Male Going straight ahead (with priority) #> 178 NA Not known Changing lanes or merging #> 179 75 Male Going straight ahead (with priority) #> 180 30 Male Slowing or stopping #> 181 21 Male Going straight ahead (with priority) #> 182 38 Male Slowing or stopping #> 183 34 Male Slowing or stopping #> 184 43 Male Slowing or stopping #> 185 42 Male Going straight ahead (with priority) #> 186 60 Male Going straight ahead (with priority) #> 187 73 Male Going straight ahead (with priority) #> 188 27 Male Going straight ahead (with priority) #> 189 30 Male Going straight ahead (with priority) #> 190 41 Male Going straight ahead (with priority) #> 191 33 Male Going straight ahead (with priority) #> 192 56 Male Going straight ahead (with priority) #> 193 51 Male Going Straight Ahead (against priority) #> 194 52 Male Going straight ahead (with priority) #> 195 56 Male Going straight ahead (with priority) #> 196 30 Male Going straight ahead (with priority) #> 197 57 Male Going straight ahead (with priority) #> 198 50 Male Slowing or stopping #> 199 40 Male Slowing or stopping #> 200 57 Male Going straight ahead (with priority) #> 201 51 Male Slowing or stopping #> 202 60 Male Other #> 203 59 Male Going straight ahead (with priority) #> 204 53 Male Going straight ahead (with priority) #> 205 34 Male Going straight ahead (with priority) #> 206 61 Male Going straight ahead (with priority) #> 207 57 Male Going straight ahead (with priority) #> 208 61 Male Going straight ahead (with priority) #> 209 37 Male Making right turn #> 210 25 Male Going straight ahead (with priority) #> 211 27 Male Going straight ahead (with priority) #> 212 28 Male Going straight ahead (with priority) #> 213 47 Male Going straight ahead (with priority) #> 214 61 Male Going straight ahead (with priority) #> 215 45 Male Going straight ahead (with priority) #> 216 NA Not known Changing lanes or merging #> 217 49 Male Reversing #> 218 71 Male Going straight ahead (with priority) #> 219 56 Male Going straight ahead (with priority) #> 220 65 Male Going straight ahead (with priority) #> 221 52 Male Going straight ahead (with priority) #> 222 30 Male Going straight ahead (with priority) #> 223 55 Male Going straight ahead (with priority) #> 224 53 Male Going straight ahead (with priority) #> 225 40 Male Starting in traffic #> 226 51 Male Making right turn #> 227 48 Male Going straight ahead (with priority) #> 228 26 Male Going straight ahead (with priority) #> 229 17 Male Other #> 230 66 Male Going straight ahead (with priority) #> 231 66 Male Going straight ahead (with priority) #> 232 32 Male Going straight ahead (with priority) #> 233 43 Male Going straight ahead (with priority) #> 234 56 Male Going straight ahead (with priority) #> 235 49 Male Making right turn #> 236 52 Male Going straight ahead (with priority) #> 237 52 Male Going straight ahead (with priority) #> 238 27 Male Going straight ahead (with priority) #> 239 56 Male Going straight ahead (with priority) #> 240 NA Not known Going straight ahead (with priority) #> 241 57 Male Going straight ahead (with priority) #> 242 33 Male Making left turn #> 243 30 Male Going straight ahead (with priority) #> 244 31 Male Going straight ahead (with priority) #> 245 54 Male Going straight ahead (with priority) #> 246 31 Male Going straight ahead (with priority) #> 247 59 Male Going straight ahead (with priority) #> 248 60 Male Going straight ahead (with priority) #> 249 36 Male Slowing or stopping #> 250 39 Female Going straight ahead (with priority) #> 251 61 Male Making right turn #> 252 31 Male Going straight ahead (with priority) #> 253 32 Male Going Straight Ahead (against priority) #> 254 51 Male Overtaking on near-side #> 255 59 Male Going straight ahead (with priority) #> 256 44 Male Slowing or stopping #> 257 58 Male Reversing #> 258 44 Male Going straight ahead (with priority) #> 259 39 Male Going straight ahead (with priority) #> 260 47 Male Going straight ahead (with priority) #> 261 52 Male Going straight ahead (with priority) #> 262 46 Male Going straight ahead (with priority) #> 263 45 Male Going straight ahead (with priority) #> 264 NA Not known Stopped in traffic #> 265 49 Male Making right turn #> 266 40 Male Slowing or stopping #> 267 55 Male Slowing or stopping #> 268 43 Male Going straight ahead (with priority) #> 269 49 Male Slowing or stopping #> 270 49 Male Going straight ahead (with priority) #> 271 36 Male Going straight ahead (with priority) #> 272 57 Male Going straight ahead (with priority) #> 273 38 Male Going straight ahead (with priority) #> 274 58 Male Going straight ahead (with priority) #> 275 44 Male Going straight ahead (with priority) #> 276 58 Male Parked #> 277 29 Male Going straight ahead (with priority) #> 278 67 Male Going straight ahead (with priority) #> 279 55 Male Going straight ahead (with priority) #> 280 52 Male Going straight ahead (with priority) #> 281 50 Male Going Straight Ahead (against priority) #> 282 39 Male Going straight ahead (with priority) #> 283 48 Male Going straight ahead (with priority) #> 284 23 Male Overtaking on off-side #> 285 51 Male Changing lanes or merging #> 286 54 Male Changing lanes or merging #> 287 70 Male Going straight ahead (with priority) #> 288 55 Male Slowing or stopping #> 289 41 Male Going straight ahead (with priority) #> 290 46 Male Going straight ahead (with priority) #> 291 39 Male Going straight ahead (with priority) #> 292 60 Male Going straight ahead (with priority) #> 293 44 Male Going straight ahead (with priority) #> 294 28 Male Slowing or stopping #> 295 47 Female Going straight ahead (with priority) #> 296 41 Male Going straight ahead (with priority) #> 297 37 Male Going straight ahead (with priority) #> 298 30 Male Going straight ahead (with priority) #> 299 32 Male Going straight ahead (with priority) #> 300 60 Male Going straight ahead (with priority) #> 301 36 Male Changing lanes or merging #> 302 42 Male Going straight ahead (with priority) #> 303 36 Male Going straight ahead (with priority) #> 304 58 Male Slowing or stopping #> 305 35 Male Going straight ahead (with priority) #> 306 26 Male Going straight ahead (with priority) #> 307 28 Male Going straight ahead (with priority) #> 308 54 Male Going straight ahead (with priority) #> 309 44 Male Going straight ahead (with priority) #> 310 53 Male Going straight ahead (with priority) #> 311 43 Male Going straight ahead (with priority) #> 312 50 Male Going straight ahead (with priority) #> 313 46 Male Parked #> 314 77 Male Going straight ahead (with priority) #> 315 8 Male Going straight ahead (with priority) #> 316 38 Male Reversing #> 317 43 Male Stopped in traffic #> 318 23 Male Going straight ahead (with priority) #> 319 62 Male Going straight ahead (with priority) #> 320 51 Male Making right turn #> 321 50 Male Going straight ahead (with priority) #> 322 46 Male Going straight ahead (with priority) #> 323 31 Male Going Straight Ahead (against priority) #> 324 32 Male Going straight ahead (with priority) #> 325 27 Male Going straight ahead (with priority) #> 326 25 Male Making right turn #> 327 40 Male Making right turn #> 328 39 Male Making right turn #> 329 NA Male Reversing #> 330 52 Male Going straight ahead (with priority) #> 331 NA Not known Going straight ahead (with priority) #> 332 55 Male Starting in traffic #> 333 76 Male Going straight ahead (with priority) #> 334 26 Male Going straight ahead (with priority) #> 335 38 Male Starting in traffic #> 336 39 Male Going straight ahead (with priority) #> 337 38 Male Going straight ahead (with priority) #> 338 29 Male Going straight ahead (with priority) #> 339 41 Male Going straight ahead (with priority) #> 340 60 Male Going straight ahead (with priority) #> 341 53 Male Making right turn #> 342 28 Male Making right turn #> 343 45 Male Other #> 344 29 Male Going straight ahead (with priority) #> 345 67 Male Going straight ahead (with priority) #> 346 48 Female Going straight ahead (with priority) #> 347 52 Male Making left turn #> 348 34 Male Making left turn #> 349 46 Male Going straight ahead (with priority) #> 350 27 Female Going straight ahead (with priority) #> 351 58 Male Changing lanes or merging #> 352 36 Male Going straight ahead (with priority) #> 353 60 Male Going straight ahead (with priority) #> 354 51 Male Going straight ahead (with priority) #> 355 55 Male Changing lanes or merging #> 356 52 Male Going straight ahead (with priority) #> 357 52 Male Going straight ahead (with priority) #> 358 26 Male Going straight ahead (with priority) #> 359 51 Male Going straight ahead (with priority) #> 360 56 Male Making right turn #> 361 24 Male Going straight ahead (with priority) #> 362 47 Male Making right turn #> 363 30 Male Going straight ahead (with priority) #> 364 42 Male Going straight ahead (with priority) #> 365 65 Male Going straight ahead (with priority) #> 366 33 Male Going straight ahead (with priority) #> 367 48 Male Going straight ahead (with priority) #> 368 36 Male Going straight ahead (with priority) #> 369 53 Male Going straight ahead (with priority) #> 370 53 Male Going straight ahead (with priority) #> 371 52 Male Going straight ahead (with priority) #> 372 52 Male Going straight ahead (with priority) #> 373 41 Male Going straight ahead (with priority) #> 374 43 Male Going straight ahead (with priority) #> 375 54 Male Changing lanes or merging #> 376 51 Male Going straight ahead (with priority) #> 377 58 Male Making right turn #> 378 53 Male Starting in traffic #> 379 50 Male Going straight ahead (with priority) #> 380 36 Male Going straight ahead (with priority) #> 381 33 Male Going straight ahead (with priority) #> 382 58 Male Going straight ahead (with priority) #> 383 60 Male Going straight ahead (with priority) #> 384 23 Male Making left turn #> 385 35 Male Going straight ahead (with priority) #> 386 51 Male Going straight ahead (with priority) #> 387 48 Male Going straight ahead (with priority) #> 388 58 Male Going straight ahead (with priority) #> 389 52 Male Parked #> 390 49 Male Making right turn #> 391 68 Male Making right turn #> 392 27 Male Going straight ahead (with priority) #> 393 58 Male Going straight ahead (with priority) #> 394 61 Male Overtaking on off-side #> 395 41 Male Making right turn #> 396 46 Male Going straight ahead (with priority) #> 397 47 Male Going straight ahead (with priority) #> 398 46 Male Going straight ahead (with priority) #> 399 61 Male Going straight ahead (with priority) #> 400 26 Male Making left turn #> 401 46 Female Reversing #> 402 49 Male Going straight ahead (with priority) #> 403 29 Male Going Straight Ahead (against priority) #> 404 22 Male Going straight ahead (with priority) #> 405 57 Male Going straight ahead (with priority) #> 406 46 Male Going straight ahead (with priority) #> 407 44 Male Going straight ahead (with priority) #> 408 57 Male Other #> 409 62 Male Making right turn #> 410 48 Female Reversing #> 411 33 Male Stopped in traffic #> 412 38 Female Going straight ahead (with priority) #> 413 30 Female Other #> 414 NA Not known Going straight ahead (with priority) #> 415 41 Male Going straight ahead (with priority) #> 416 41 Male Going straight ahead (with priority) #> 417 62 Male Making left turn #> 418 25 Male Going straight ahead (with priority) #> 419 39 Male Going straight ahead (with priority) #> 420 52 Male Making left turn #> 421 58 Male Going straight ahead (with priority) #> 422 11 Female Going straight ahead (with priority) #> 423 47 Male Going straight ahead (with priority) #> 424 61 Male Going straight ahead (with priority) #> 425 61 Male Stopped in traffic #> 426 52 Female Going straight ahead (with priority) #> 427 52 Male Going straight ahead (with priority) #> 428 61 Male Going straight ahead (with priority) #> 429 32 Male Going straight ahead (with priority) #> 430 57 Male Going straight ahead (with priority) #> 431 52 Male Going straight ahead (with priority) #> 432 41 Male Stopped in traffic #> 433 27 Male Going Straight Ahead (against priority) #> 434 36 Male Reversing #> 435 31 Male Going straight ahead (with priority) #> 436 56 Male Starting in traffic #> 437 57 Male Going straight ahead (with priority) #> 438 47 Male Making right turn #> 439 35 Male Going straight ahead (with priority) #> 440 52 Male Stopped in traffic #> 441 52 Male Going straight ahead (with priority) #> 442 52 Male Going straight ahead (with priority) #> 443 48 Male Going straight ahead (with priority) #> 444 35 Male Going straight ahead (with priority) #> 445 47 Male Stopped in traffic #> 446 32 Male Going straight ahead (with priority) #> 447 45 Male Slowing or stopping #> 448 64 Male Making right turn #> 449 43 Male Going straight ahead (with priority) #> 450 52 Male Going straight ahead (with priority) #> 451 50 Male Going straight ahead (with priority) #> 452 38 Male Going straight ahead (with priority) #> 453 23 Male Going Straight Ahead (against priority) #> 454 49 Female Going straight ahead (with priority) #> 455 49 Male Other #> 456 55 Male Going straight ahead (with priority) #> 457 45 Female Going straight ahead (with priority) #> 458 50 Male Going straight ahead (with priority) #> 459 62 Male Other #> 460 65 Male Going straight ahead (with priority) #> 461 45 Male Going straight ahead (with priority) #> 462 55 Male Going straight ahead (with priority) #> 463 54 Male Going straight ahead (with priority) #> 464 34 Male Going straight ahead (with priority) #> 465 69 Male Going straight ahead (with priority) #> 466 60 Male Going straight ahead (with priority) #> 467 55 Male Making right turn #> 468 47 Male Going straight ahead (with priority) #> 469 41 Male Other #> 470 72 Male Going Straight Ahead (against priority) #> 471 44 Male Going straight ahead (with priority) #> 472 73 Male Going straight ahead (with priority) #> 473 56 Male Overtaking on off-side #> 474 33 Female Overtaking on off-side #> 475 59 Male Going straight ahead (with priority) #> 476 57 Male Going straight ahead (with priority) #> 477 59 Male Going straight ahead (with priority) #> 478 47 Male Going straight ahead (with priority) #> 479 NA Not known Changing lanes or merging #> 480 60 Male Going straight ahead (with priority) #> 481 37 Male Reversing #> 482 33 Male Making right turn #> 483 25 Male Going straight ahead (with priority) #> 484 58 Male Going straight ahead (with priority) #> 485 25 Male Going straight ahead (with priority) #> 486 60 Male Slowing or stopping #> 487 55 Male Going straight ahead (with priority) #> 488 57 Male Other #> 489 53 Male Going straight ahead (with priority) #> 490 35 Male Going straight ahead (with priority) #> 491 41 Male Going straight ahead (with priority) #> 492 26 Male Going straight ahead (with priority) #> 493 83 Male Going straight ahead (with priority) #> 494 69 Male Going straight ahead (with priority) #> 495 60 Male Going straight ahead (with priority) #> 496 33 Male Going straight ahead (with priority) #> 497 57 Male Going straight ahead (with priority) #> 498 61 Male Going straight ahead (with priority) #> 499 55 Male Going straight ahead (with priority) #> 500 41 Male Going straight ahead (with priority) #> 501 59 Male Making left turn #> 502 54 Male Going straight ahead (with priority) #> 503 74 Male Going straight ahead (with priority) #> 504 48 Male Making left turn #> 505 50 Male Going straight ahead (with priority) #> 506 33 Female Going straight ahead (with priority) #> 507 43 Female Going straight ahead (with priority) #> 508 48 Male Going straight ahead (with priority) #> 509 58 Male Going straight ahead (with priority) #> 510 44 Female Going straight ahead (with priority) #> 511 56 Male Going straight ahead (with priority) #> 512 39 Male Making left turn #> 513 26 Male Overtaking on near-side #> 514 46 Male Overtaking on near-side #> 515 50 Male Going straight ahead (with priority) #> 516 51 Male Going straight ahead (with priority) #> 517 55 Male Overtaking on near-side #> 518 33 Male Going straight ahead (with priority) #> 519 55 Male Stopped in traffic #> 520 52 Male Stopped in traffic #> 521 56 Male Going straight ahead (with priority) #> 522 51 Male Stopped in traffic #> 523 60 Male Going straight ahead (with priority) #> 524 64 Male Making right turn #> 525 55 Male Going straight ahead (with priority) #> 526 37 Male Going straight ahead (with priority) #> 527 62 Male Going straight ahead (with priority) #> 528 55 Male Going straight ahead (with priority) #> 529 59 Male Going straight ahead (with priority) #> 530 49 Male Going straight ahead (with priority) #> 531 55 Male Going straight ahead (with priority) #> 532 41 Male Going straight ahead (with priority) #> 533 45 Male Changing lanes or merging #> 534 38 Male Making right turn #> 535 34 Male Going straight ahead (with priority) #> 536 36 Male Going straight ahead (with priority) #> 537 45 Male Going straight ahead (with priority) #> 538 49 Male Going straight ahead (with priority) #> 539 43 Male Going straight ahead (with priority) #> 540 40 Male Going straight ahead (with priority) #> 541 41 Male Going straight ahead (with priority) #> 542 35 Female Stopped in traffic #> 543 67 Male Going straight ahead (with priority) #> 544 34 Male Going straight ahead (with priority) #> 545 32 Male Going straight ahead (with priority) #> 546 43 Male Going straight ahead (with priority) #> 547 29 Male Making right turn #> 548 31 Male Going straight ahead (with priority) #> 549 33 Male Going straight ahead (with priority) #> 550 63 Male Going straight ahead (with priority) #> 551 37 Male Going straight ahead (with priority) #> 552 NA Not known Going straight ahead (with priority) #> 553 50 Female Going straight ahead (with priority) #> 554 57 Male Parked #> 555 54 Male Going straight ahead (with priority) #> 556 46 Male Slowing or stopping #> 557 32 Male Slowing or stopping #> 558 40 Male Slowing or stopping #> 559 55 Male Going straight ahead (with priority) #> 560 55 Male Changing lanes or merging #> 561 64 Male Going Straight Ahead (against priority) #> 562 58 Male Going straight ahead (with priority) #> 563 59 Male Other #> 564 44 Male Slowing or stopping #> 565 40 Male Going straight ahead (with priority) #> 566 46 Male Stopped in traffic #> 567 49 Male Stopped in traffic #> 568 59 Male Going Straight Ahead (against priority) #> 569 50 Male Making left turn #> 570 54 Male Going straight ahead (with priority) #> 571 29 Male Slowing or stopping #> 572 26 Male Slowing or stopping #> 573 63 Male Going straight ahead (with priority) #> 574 30 Male Going straight ahead (with priority) #> 575 NA Not known Going straight ahead (with priority) #> 576 54 Male Going straight ahead (with priority) #> 577 51 Male Going straight ahead (with priority) #> 578 54 Male Going straight ahead (with priority) #> 579 NA Not known Going straight ahead (with priority) #> 580 53 Male Making left turn #> 581 58 Male Going straight ahead (with priority) #> 582 62 Male Going Straight Ahead (against priority) #> 583 58 Male Making right turn #> 584 50 Male Going straight ahead (with priority) #> 585 47 Male Going straight ahead (with priority) #> 586 56 Male Going straight ahead (with priority) #> 587 31 Male Stopped in traffic #> 588 39 Male Changing lanes or merging #> 589 50 Male Stopped in traffic #> 590 36 Male Stopped in traffic #> 591 41 Male Going straight ahead (with priority) #> 592 29 Male Going straight ahead (with priority) #> 593 50 Male Changing lanes or merging #> 594 53 Male Going straight ahead (with priority) #> 595 54 Male Going straight ahead (with priority) #> 596 53 Male Going straight ahead (with priority) #> 597 24 Male Going straight ahead (with priority) #> 598 63 Male Making right turn #> 599 50 Male Going straight ahead (with priority) #> 600 45 Male Going straight ahead (with priority) #> 601 55 Male Making right turn #> 602 39 Female Going straight ahead (with priority) #> 603 55 Male Making right turn #> 604 40 Male Making right turn #> 605 54 Male Going straight ahead (with priority) #> 606 35 Male Going straight ahead (with priority) #> 607 41 Male Going straight ahead (with priority) #> 608 43 Male Going straight ahead (with priority) #> 609 52 Male Going straight ahead (with priority) #> 610 45 Male Going straight ahead (with priority) #> 611 51 Male Going straight ahead (with priority) #> 612 43 Male Going straight ahead (with priority) #> 613 63 Male Going straight ahead (with priority) #> 614 NA Not known Going straight ahead (with priority) #> 615 38 Male Going straight ahead (with priority) #> 616 60 Male Changing lanes or merging #> 617 53 Male Going straight ahead (with priority) #> 618 22 Male Going straight ahead (with priority) #> 619 35 Male Going straight ahead (with priority) #> 620 53 Male Going straight ahead (with priority) #> 621 NA Not known Going straight ahead (with priority) #> 622 33 Male Changing lanes or merging #> 623 NA Not known Changing lanes or merging #> 624 32 Male Going straight ahead (with priority) #> 625 54 Male Stopped in traffic #> 626 44 Male Making left turn #> 627 51 Male Slowing or stopping #> 628 57 Male Changing lanes or merging #> 629 48 Male Going straight ahead (with priority) #> 630 32 Male Going straight ahead (with priority) #> 631 39 Male Going straight ahead (with priority) #> 632 25 Male Going straight ahead (with priority) #> 633 59 Male Going straight ahead (with priority) #> 634 23 Male Going straight ahead (with priority) #> 635 57 Male Changing lanes or merging #> 636 32 Male Other #> 637 53 Male Slowing or stopping #> 638 61 Male Other #> 639 NA Not known Other #> 640 52 Male Other #> 641 21 Male Slowing or stopping #> 642 57 Male Making U turn #> 643 59 Male Going straight ahead (with priority) #> 644 38 Male Going straight ahead (with priority) #> 645 33 Male Slowing or stopping #> 646 50 Male Going straight ahead (with priority) #> 647 48 Male Going straight ahead (with priority) #> 648 55 Male Going straight ahead (with priority) #> 649 61 Male Changing lanes or merging #> 650 41 Male Going straight ahead (with priority) #> 651 34 Male Going straight ahead (with priority) #> 652 57 Male Going straight ahead (with priority) #> 653 57 Male Going straight ahead (with priority) #> 654 44 Male Going straight ahead (with priority) #> 655 55 Male Making U turn #> 656 44 Male Slowing or stopping #> 657 52 Male Going straight ahead (with priority) #> 658 54 Male Going straight ahead (with priority) #> 659 60 Male Going straight ahead (with priority) #> 660 57 Male Going straight ahead (with priority) #> 661 21 Male Going straight ahead (with priority) #> 662 46 Male Slowing or stopping #> 663 49 Male Going straight ahead (with priority) #> 664 56 Male Going straight ahead (with priority) #> 665 67 Male Going straight ahead (with priority) #> 666 58 Male Going straight ahead (with priority) #> 667 51 Male Going straight ahead (with priority) #> 668 52 Male Going straight ahead (with priority) #> 669 57 Male Going straight ahead (with priority) #> 670 80 Male Making right turn #> 671 40 Male Going straight ahead (with priority) #> 672 59 Male Going straight ahead (with priority) #> 673 57 Male Going straight ahead (with priority) #> 674 46 Male Reversing #> 675 45 Male Other #> 676 33 Male Other #> 677 52 Male Stopped in traffic #> 678 43 Male Going straight ahead (with priority) #> 679 33 Male Going straight ahead (with priority) #> 680 35 Male Going straight ahead (with priority) #> 681 43 Male Starting in traffic #> 682 64 Male Going straight ahead (with priority) #> 683 27 Female Making right turn #> 684 55 Male Going straight ahead (with priority) #> 685 47 Male Making right turn #> 686 52 Male Going straight ahead (with priority) #> 687 53 Male Going straight ahead (with priority) #> 688 60 Male Going straight ahead (with priority) #> 689 54 Male Going straight ahead (with priority) #> 690 58 Male Going straight ahead (with priority) #> 691 48 Male Slowing or stopping #> 692 33 Male Going straight ahead (with priority) #> 693 49 Male Going straight ahead (with priority) #> 694 63 Male Going straight ahead (with priority) #> 695 33 Male Going straight ahead (with priority) #> 696 32 Male Going Straight Ahead (against priority) #> 697 54 Male Going straight ahead (with priority) #> 698 32 Male Going straight ahead (with priority) #> 699 46 Male Going straight ahead (with priority) #> 700 61 Male Going straight ahead (with priority) #> 701 53 Male Going straight ahead (with priority) #> 702 58 Male Going straight ahead (with priority) #> 703 44 Male Changing lanes or merging #> 704 58 Male Going straight ahead (with priority) #> 705 NA Not known Going straight ahead (with priority) #> 706 41 Male Going straight ahead (with priority) #> 707 62 Male Going straight ahead (with priority) #> 708 46 Male Going straight ahead (with priority) #> 709 40 Male Going straight ahead (with priority) #> 710 32 Male Going straight ahead (with priority) #> 711 28 Male Going straight ahead (with priority) #> 712 51 Male Making right turn #> 713 63 Male Going straight ahead (with priority) #> 714 38 Male Going Straight Ahead (against priority) #> 715 58 Male Going straight ahead (with priority) #> 716 48 Male Going straight ahead (with priority) #> 717 40 Male Going straight ahead (with priority) #> 718 NA Not known Making right turn #> 719 43 Male Slowing or stopping #> 720 30 Male Going straight ahead (with priority) #> 721 32 Male Going straight ahead (with priority) #> 722 38 Male Going straight ahead (with priority) #> 723 34 Male Going straight ahead (with priority) #> 724 43 Male Changing lanes or merging #> 725 36 Male Going straight ahead (with priority) #> 726 52 Male Making right turn #> 727 18 Male Going straight ahead (with priority) #> 728 26 Male Going straight ahead (with priority) #> 729 41 Male Changing lanes or merging #> 730 30 Male Going straight ahead (with priority) #> 731 57 Male Going straight ahead (with priority) #> 732 56 Male Changing lanes or merging #> 733 23 Male Going straight ahead (with priority) #> 734 54 Male Going straight ahead (with priority) #> 735 29 Male Going straight ahead (with priority) #> 736 49 Male Going straight ahead (with priority) #> 737 52 Male Going straight ahead (with priority) #> 738 42 Male Going straight ahead (with priority) #> 739 54 Male Going straight ahead (with priority) #> 740 54 Female Going straight ahead (with priority) #> 741 53 Male Going Straight Ahead (against priority) #> 742 27 Male Going straight ahead (with priority) #> 743 27 Male Going straight ahead (with priority) #> 744 31 Male Going straight ahead (with priority) #> 745 29 Male Overtaking on off-side #> 746 60 Male Making right turn #> 747 62 Male Making right turn #> 748 18 Male Going straight ahead (with priority) #> 749 31 Male Parked #> 750 33 Male Going straight ahead (with priority) #> 751 57 Male Reversing #> 752 48 Male Going straight ahead (with priority) #> 753 42 Male Other #> 754 44 Male Going straight ahead (with priority) #> 755 69 Male Going straight ahead (with priority) #> 756 56 Male Going Straight Ahead (against priority) #> 757 54 Male Slowing or stopping #> 758 31 Male Going straight ahead (with priority) #> 759 42 Male Starting in traffic #> 760 62 Male Parked #> 761 46 Male Going straight ahead (with priority) #> 762 26 Male Going straight ahead (with priority) #> 763 29 Male Slowing or stopping #> 764 69 Male Going straight ahead (with priority) #> 765 62 Male Making right turn #> 766 34 Male Making right turn #> 767 47 Male Going straight ahead (with priority) #> 768 42 Female Going straight ahead (with priority) #> 769 29 Male Going straight ahead (with priority) #> 770 34 Female Going straight ahead (with priority) #> 771 64 Male Parked #> 772 43 Male Going straight ahead (with priority) #> 773 39 Male Making left turn #> 774 38 Male Starting in traffic #> 775 37 Male Changing lanes or merging #> 776 38 Male Other #> 777 22 Male Making right turn #> 778 29 Male Going straight ahead (with priority) #> 779 60 Male Going straight ahead (with priority) #> 780 40 Female Going straight ahead (with priority) #> 781 53 Male Going straight ahead (with priority) #> 782 38 Male Going straight ahead (with priority) #> 783 51 Male Going straight ahead (with priority) #> 784 58 Male Going straight ahead (with priority) #> 785 64 Male Going straight ahead (with priority) #> 786 39 Male Other #> 787 62 Male Going straight ahead (with priority) #> 788 23 Female Going straight ahead (with priority) #> 789 59 Male Going straight ahead (with priority) #> 790 51 Male Going straight ahead (with priority) #> 791 20 Male Going straight ahead (with priority) #> 792 38 Male Changing lanes or merging #> 793 61 Male Going straight ahead (with priority) #> 794 48 Female Going straight ahead (with priority) #> 795 23 Male Going straight ahead (with priority) #> 796 43 Male Going straight ahead (with priority) #> 797 54 Male Going straight ahead (with priority) #> 798 52 Male Going straight ahead (with priority) #> 799 63 Male Making right turn #> 800 39 Male Going straight ahead (with priority) #> 801 37 Male Making left turn #> 802 27 Male Going straight ahead (with priority) #> 803 65 Male Going straight ahead (with priority) #> 804 68 Male Making left turn #> 805 71 Male Making right turn #> 806 51 Male Going straight ahead (with priority) #> 807 30 Male Going straight ahead (with priority) #> 808 52 Male Making right turn #> 809 44 Male Going straight ahead (with priority) #> 810 47 Male Slowing or stopping #> 811 NA Not known Changing lanes or merging #> 812 50 Male Going straight ahead (with priority) #> 813 49 Male Going straight ahead (with priority) #> 814 53 Male Going straight ahead (with priority) #> 815 32 Male Slowing or stopping #> 816 56 Male Going straight ahead (with priority) #> 817 42 Male Going straight ahead (with priority) #> 818 57 Male Going straight ahead (with priority) #> 819 54 Male Slowing or stopping #> 820 69 Male Going straight ahead (with priority) #> 821 57 Male Going straight ahead (with priority) #> 822 43 Male Going straight ahead (with priority) #> 823 58 Male Going straight ahead (with priority) #> 824 47 Male Going straight ahead (with priority) #> 825 39 Male Going straight ahead (with priority) #> 826 57 Male Going straight ahead (with priority) #> 827 56 Male Going straight ahead (with priority) #> 828 68 Male Going straight ahead (with priority) #> 829 56 Male Going straight ahead (with priority) #> 830 45 Male Going straight ahead (with priority) #> 831 53 Male Making U turn #> 832 26 Male Going straight ahead (with priority) #> 833 67 Male Going straight ahead (with priority) #> 834 35 Male Going straight ahead (with priority) #> 835 43 Male Changing lanes or merging #> 836 41 Male Overtaking on near-side #> 837 39 Male Going straight ahead (with priority) #> 838 52 Male Going straight ahead (with priority) #> 839 64 Male Parked #> 840 61 Female Going straight ahead (with priority) #> 841 53 Male Going straight ahead (with priority) #> 842 60 Male Going straight ahead (with priority) #> 843 50 Male Going straight ahead (with priority) #> 844 46 Male Going straight ahead (with priority) #> 845 60 Male Going straight ahead (with priority) #> 846 25 Male Going straight ahead (with priority) #> 847 32 Male Slowing or stopping #> 848 65 Male Going straight ahead (with priority) #> 849 46 Male Going straight ahead (with priority) #> 850 37 Male Slowing or stopping #> 851 30 Male Going straight ahead (with priority) #> 852 27 Male Going straight ahead (with priority) #> 853 41 Male Going straight ahead (with priority) #> 854 61 Male Making right turn #> 855 38 Male Going straight ahead (with priority) #> 856 32 Male Going straight ahead (with priority) #> 857 38 Male Parked #> 858 46 Male Making right turn #> 859 61 Male Going straight ahead (with priority) #> 860 59 Male Making right turn #> 861 52 Male Changing lanes or merging #> 862 66 Male Changing lanes or merging #> 863 57 Male Going straight ahead (with priority) #> 864 52 Male Going straight ahead (with priority) #> 865 54 Male Going straight ahead (with priority) #> 866 56 Male Going straight ahead (with priority) #> 867 48 Male Going straight ahead (with priority) #> 868 30 Male Going straight ahead (with priority) #> 869 41 Male Going straight ahead (with priority) #> 870 33 Male Going straight ahead (with priority) #> 871 29 Male Going straight ahead (with priority) #> 872 45 Female Stopped in traffic #> 873 50 Male Reversing #> 874 63 Female Going straight ahead (with priority) #> 875 52 Male Going straight ahead (with priority) #> 876 42 Female Going straight ahead (with priority) #> 877 52 Male Other #> 878 49 Male Other #> 879 54 Male Going straight ahead (with priority) #> 880 24 Male Going straight ahead (with priority) #> 881 48 Female Going straight ahead (with priority) #> 882 34 Not known Going straight ahead (with priority) #> 883 28 Male Going straight ahead (with priority) #> 884 59 Male Making right turn #> 885 46 Male Going straight ahead (with priority) #> 886 46 Female Going straight ahead (with priority) #> 887 49 Female Going straight ahead (with priority) #> 888 36 Male Going straight ahead (with priority) #> 889 54 Male Going straight ahead (with priority) #> 890 39 Male Slowing or stopping #> 891 32 Male Going straight ahead (with priority) #> 892 37 Male Going straight ahead (with priority) #> 893 68 Male Going straight ahead (with priority) #> 894 50 Male Going straight ahead (with priority) #> 895 56 Female Going straight ahead (with priority) #> 896 60 Male Going straight ahead (with priority) #> 897 51 Male Going straight ahead (with priority) #> 898 28 Male Going straight ahead (with priority) #> 899 57 Male Making right turn #> 900 51 Male Going straight ahead (with priority) #> 901 62 Male Going straight ahead (with priority) #> 902 31 Male Going straight ahead (with priority) #> 903 63 Male Stopped in traffic #> 904 36 Female Going straight ahead (with priority) #> 905 40 Female Going straight ahead (with priority) #> 906 44 Male Going straight ahead (with priority) #> 907 37 Male Going straight ahead (with priority) #> 908 35 Female Going straight ahead (with priority) #> 909 58 Male Going straight ahead (with priority) #> 910 38 Female Going straight ahead (with priority) #> 911 37 Male Slowing or stopping #> 912 43 Male Going Straight Ahead (against priority) #> 913 54 Male Going straight ahead (with priority) #> 914 36 Male Reversing #> 915 64 Male Going straight ahead (with priority) #> 916 31 Female Going straight ahead (with priority) #> 917 68 Male Going straight ahead (with priority) #> 918 30 Male Going straight ahead (with priority) #> 919 49 Male Going straight ahead (with priority) #> 920 38 Male Making right turn #> 921 50 Female Going straight ahead (with priority) #> 922 35 Male Going straight ahead (with priority) #> 923 44 Male Going straight ahead (with priority) #> 924 65 Male Going straight ahead (with priority) #> 925 42 Male Going straight ahead (with priority) #> 926 58 Male Going straight ahead (with priority) #> 927 56 Male Going straight ahead (with priority) #> 928 50 Male Going straight ahead (with priority) #> 929 60 Male Going straight ahead (with priority) #> 930 45 Male Going straight ahead (with priority) #> 931 44 Male Going straight ahead (with priority) #> 932 21 Male Going Straight Ahead (against priority) #> 933 34 Female Going straight ahead (with priority) #> 934 56 Male Making right turn #> 935 42 Male Overtaking on off-side #> 936 60 Male Going straight ahead (with priority) #> 937 59 Male Making right turn #> 938 61 Male Going straight ahead (with priority) #> 939 37 Male Going straight ahead (with priority) #> 940 32 Male Going straight ahead (with priority) #> 941 59 Male Going straight ahead (with priority) #> 942 58 Male Going Straight Ahead (against priority) #> 943 43 Male Changing lanes or merging #> 944 54 Male Going straight ahead (with priority) #> 945 36 Male Going straight ahead (with priority) #> 946 55 Male Going straight ahead (with priority) #> 947 61 Male Going straight ahead (with priority) #> 948 37 Male Going straight ahead (with priority) #> 949 27 Male Making right turn #> 950 41 Male Unknown #> 951 67 Male Going straight ahead (with priority) #> 952 57 Male Changing lanes or merging #> 953 35 Male Other #> 954 57 Male Other #> 955 43 Male Slowing or stopping #> 956 71 Male Going straight ahead (with priority) #> 957 58 Male Changing lanes or merging #> 958 32 Male Going Straight Ahead (against priority) #> 959 55 Male Stopped in traffic #> 960 46 Male Going straight ahead (with priority) #> 961 57 Female Making left turn #> 962 53 Male Leaving parking place #> 963 37 Male Slowing or stopping #> 964 53 Male Going straight ahead (with priority) #> 965 56 Male Slowing or stopping #> 966 44 Female Going straight ahead (with priority) #> 967 49 Female Going straight ahead (with priority) #> 968 52 Male Going straight ahead (with priority) #> 969 58 Male Going straight ahead (with priority) #> 970 40 Male Going straight ahead (with priority) #> 971 62 Male Going straight ahead (with priority) #> 972 53 Male Going straight ahead (with priority) #> 973 48 Male Going straight ahead (with priority) #> 974 35 Male Going straight ahead (with priority) #> 975 43 Male Slowing or stopping #> 976 73 Male Going straight ahead (with priority) #> 977 30 Male Slowing or stopping #> 978 60 Male Slowing or stopping #> 979 53 Male Slowing or stopping #> 980 52 Male Slowing or stopping #> 981 50 Male Going straight ahead (with priority) #> 982 51 Male Going straight ahead (with priority) #> 983 61 Female Reversing #> 984 38 Male Going straight ahead (with priority) #> 985 69 Male Going Straight Ahead (against priority) #> 986 44 Male Going straight ahead (with priority) #> 987 63 Male Going straight ahead (with priority) #> 988 64 Male Going straight ahead (with priority) #> 989 45 Male Going straight ahead (with priority) #> 990 54 Male Going straight ahead (with priority) #> 991 56 Male Starting in traffic #> 992 46 Female Going straight ahead (with priority) #> 993 60 Male Going straight ahead (with priority) #> 994 23 Male Going straight ahead (with priority) #> 995 28 Female Going straight ahead (with priority) #> 996 59 Male Going straight ahead (with priority) #> 997 54 Male Changing lanes or merging #> 998 46 Male Going straight ahead (with priority) #> 999 30 Male Going straight ahead (with priority) #> 1000 24 Female Going straight ahead (with priority) #> 1001 58 Male Going straight ahead (with priority) #> 1002 36 Male Going straight ahead (with priority) #> 1003 47 Male Going straight ahead (with priority) #> 1004 NA Not known Going straight ahead (with priority) #> 1005 54 Male Reversing #> 1006 59 Male Other #> 1007 45 Male Going straight ahead (with priority) #> 1008 62 Male Other #> 1009 40 Male Going straight ahead (with priority) #> 1010 46 Male Going straight ahead (with priority) #> 1011 54 Male Going straight ahead (with priority) #> 1012 26 Male Slowing or stopping #> 1013 44 Male Going straight ahead (with priority) #> 1014 60 Male Going straight ahead (with priority) #> 1015 45 Female Going straight ahead (with priority) #> 1016 50 Male Going straight ahead (with priority) #> 1017 27 Male Going straight ahead (with priority) #> 1018 58 Male Going straight ahead (with priority) #> 1019 4 Male Going straight ahead (with priority) #> 1020 31 Male Stopped in traffic #> 1021 20 Male Starting in traffic #> 1022 50 Female Going straight ahead (with priority) #> 1023 52 Male Slowing or stopping #> 1024 40 Male Slowing or stopping #> 1025 39 Female Going straight ahead (with priority) #> 1026 36 Female Going straight ahead (with priority) #> 1027 49 Male Parked #> 1028 40 Male Going straight ahead (with priority) #> 1029 22 Male Making right turn #> 1030 NA Not known Unknown #> 1031 50 Male Going straight ahead (with priority) #> 1032 46 Male Reversing #> 1033 56 Male Going straight ahead (with priority) #> 1034 20 Female Changing lanes or merging #> 1035 48 Male Going straight ahead (with priority) #> 1036 54 Male Stopped in traffic #> 1037 50 Male Going straight ahead (with priority) #> 1038 53 Male Going straight ahead (with priority) #> 1039 NA Not known Changing lanes or merging #> 1040 43 Male Going straight ahead (with priority) #> 1041 47 Male Going straight ahead (with priority) #> 1042 46 Male Going straight ahead (with priority) #> 1043 62 Male Going straight ahead (with priority) #> 1044 40 Female Going straight ahead (with priority) #> 1045 53 Male Going straight ahead (with priority) #> 1046 68 Male Going straight ahead (with priority) #> 1047 59 Male Starting in traffic #> 1048 42 Male Going straight ahead (with priority) #> 1049 28 Male Stopped in traffic #> 1050 28 Male Slowing or stopping #> 1051 36 Male Slowing or stopping #> 1052 66 Male Going straight ahead (with priority) #> 1053 67 Male Starting in traffic #> 1054 50 Male Stopped in traffic #> 1055 60 Male Making left turn #> 1056 67 Male Making left turn #> 1057 49 Male Stopped in traffic #> 1058 51 Male Going straight ahead (with priority) #> 1059 40 Male Overtaking on off-side #> 1060 32 Male Parked #> 1061 35 Male Going straight ahead (with priority) #> 1062 33 Male Going straight ahead (with priority) #> 1063 57 Male Parked #> 1064 65 Male Going straight ahead (with priority) #> 1065 48 Male Going straight ahead (with priority) #> 1066 51 Male Going straight ahead (with priority) #> 1067 56 Male Making right turn #> 1068 33 Male Going straight ahead (with priority) #> 1069 52 Male Going straight ahead (with priority) #> 1070 36 Male Parked #> 1071 49 Male Going straight ahead (with priority) #> 1072 63 Male Changing lanes or merging #> 1073 60 Male Changing lanes or merging #> 1074 43 Male Going straight ahead (with priority) #> 1075 37 Male Going straight ahead (with priority) #> 1076 34 Male Going straight ahead (with priority) #> 1077 23 Female Going straight ahead (with priority) #> 1078 55 Male Going straight ahead (with priority) #> 1079 40 Male Going straight ahead (with priority) #> 1080 45 Male Going straight ahead (with priority) #> 1081 61 Male Going straight ahead (with priority) #> 1082 50 Male Going straight ahead (with priority) #> 1083 44 Male Parked #> 1084 60 Male Going straight ahead (with priority) #> 1085 53 Male Starting in traffic #> 1086 50 Male Making right turn #> 1087 35 Male Other #> 1088 63 Male Going straight ahead (with priority) #> 1089 33 Male Going straight ahead (with priority) #> 1090 49 Male Going straight ahead (with priority) #> 1091 41 Female Going straight ahead (with priority) #> 1092 41 Male Going straight ahead (with priority) #> 1093 37 Female Making left turn #> 1094 31 Male Going straight ahead (with priority) #> 1095 38 Male Making right turn #> 1096 27 Male Going straight ahead (with priority) #> 1097 50 Male Making right turn #> 1098 35 Male Going straight ahead (with priority) #> 1099 56 Male Going straight ahead (with priority) #> 1100 32 Male Other #> 1101 36 Male Going straight ahead (with priority) #> 1102 57 Male Making right turn #> 1103 54 Male Going straight ahead (with priority) #> 1104 40 Male Going straight ahead (with priority) #> 1105 34 Male Going straight ahead (with priority) #> 1106 43 Female Going straight ahead (with priority) #> 1107 58 Male Going straight ahead (with priority) #> 1108 50 Male Reversing #> 1109 NA Not known Going straight ahead (with priority) #> 1110 47 Female Slowing or stopping #> 1111 39 Male Going straight ahead (with priority) #> 1112 47 Male Going straight ahead (with priority) #> 1113 49 Male Slowing or stopping #> 1114 63 Male Starting in traffic #> 1115 54 Male Going straight ahead (with priority) #> 1116 19 Male Going straight ahead (with priority) #> 1117 50 Female Making right turn #> 1118 33 Male Making right turn #> 1119 46 Male Stopped in traffic #> 1120 60 Male Going straight ahead (with priority) #> 1121 41 Male Going straight ahead (with priority) #> 1122 53 Male Going straight ahead (with priority) #> 1123 44 Female Going straight ahead (with priority) #> 1124 37 Male Going straight ahead (with priority) #> 1125 46 Male Making left turn #> 1126 57 Male Going straight ahead (with priority) #> 1127 33 Male Slowing or stopping #> 1128 46 Male Slowing or stopping #> 1129 43 Male Slowing or stopping #> 1130 55 Male Slowing or stopping #> 1131 25 Male Going Straight Ahead (against priority) #> 1132 52 Male Going straight ahead (with priority) #> 1133 28 Male Making left turn #> 1134 41 Male Going straight ahead (with priority) #> 1135 74 Male Going straight ahead (with priority) #> 1136 49 Male Going straight ahead (with priority) #> 1137 49 Male Going straight ahead (with priority) #> 1138 66 Male Other #> 1139 40 Male Changing lanes or merging #> 1140 56 Male Going straight ahead (with priority) #> 1141 45 Male Going straight ahead (with priority) #> 1142 34 Male Going straight ahead (with priority) #> 1143 23 Male Going straight ahead (with priority) #> 1144 56 Male Going straight ahead (with priority) #> 1145 59 Male Other #> 1146 45 Male Making right turn #> 1147 43 Male Going straight ahead (with priority) #> 1148 71 Male Other #> 1149 36 Male Going straight ahead (with priority) #> 1150 39 Male Other #> 1151 59 Male Going straight ahead (with priority) #> 1152 57 Male Stopped in traffic #> 1153 41 Female Stopped in traffic #> 1154 45 Male Going straight ahead (with priority) #> 1155 60 Male Going Straight Ahead (against priority) #> 1156 43 Male Slowing or stopping #> 1157 41 Male Making left turn #> 1158 63 Male Going straight ahead (with priority) #> 1159 59 Male Overtaking on off-side #> 1160 40 Male Making left turn #> 1161 56 Male Going straight ahead (with priority) #> 1162 51 Male Going straight ahead (with priority) #> 1163 39 Male Going straight ahead (with priority) #> 1164 44 Male Going straight ahead (with priority) #> 1165 51 Male Stopped in traffic #> 1166 38 Male Going straight ahead (with priority) #> 1167 52 Male Going straight ahead (with priority) #> 1168 56 Male Going straight ahead (with priority) #> 1169 60 Male Going straight ahead (with priority) #> 1170 57 Male Going straight ahead (with priority) #> 1171 57 Male Going straight ahead (with priority) #> 1172 58 Male Stopped in traffic #> 1173 69 Male Going Straight Ahead (against priority) #> 1174 54 Male Going straight ahead (with priority) #> 1175 57 Male Slowing or stopping #> 1176 53 Male Slowing or stopping #> 1177 48 Male Going straight ahead (with priority) #> 1178 58 Male Going straight ahead (with priority) #> 1179 38 Male Going straight ahead (with priority) #> 1180 64 Male Going straight ahead (with priority) #> 1181 66 Male Going straight ahead (with priority) #> 1182 65 Female Changing lanes or merging #> 1183 64 Male Going straight ahead (with priority) #> 1184 50 Male Going straight ahead (with priority) #> 1185 51 Male Making right turn #> 1186 28 Male Going straight ahead (with priority) #> 1187 56 Male Going straight ahead (with priority) #> 1188 54 Male Going straight ahead (with priority) #> 1189 39 Male Going straight ahead (with priority) #> 1190 30 Male Going straight ahead (with priority) #> 1191 39 Male Other #> 1192 44 Male Going straight ahead (with priority) #> 1193 26 Male Going straight ahead (with priority) #> 1194 42 Male Going straight ahead (with priority) #> 1195 51 Male Going straight ahead (with priority) #> 1196 28 Male Making right turn #> 1197 41 Male Going straight ahead (with priority) #> 1198 65 Male Going straight ahead (with priority) #> 1199 42 Male Parked #> 1200 31 Male Stopped in traffic #> 1201 49 Male Parked #> 1202 52 Male Overtaking on near-side #> 1203 56 Male Going straight ahead (with priority) #> 1204 51 Male Going straight ahead (with priority) #> 1205 31 Male Parked #> 1206 58 Male Going straight ahead (with priority) #> 1207 30 Male Going straight ahead (with priority) #> 1208 49 Male Going straight ahead (with priority) #> 1209 27 Female Going straight ahead (with priority) #> 1210 47 Male Reversing #> 1211 40 Male Going straight ahead (with priority) #> 1212 46 Male Making right turn #> 1213 24 Not known Going straight ahead (with priority) #> 1214 64 Male Going straight ahead (with priority) #> 1215 56 Male Going straight ahead (with priority) #> 1216 49 Male Changing lanes or merging #> 1217 53 Male Going straight ahead (with priority) #> 1218 37 Male Reversing #> 1219 38 Female Going straight ahead (with priority) #> 1220 59 Male Making right turn #> 1221 49 Male Going straight ahead (with priority) #> 1222 59 Male Stopped in traffic #> 1223 37 Male Other #> 1224 63 Male Other #> 1225 62 Male Going straight ahead (with priority) #> 1226 61 Male Going straight ahead (with priority) #> 1227 32 Male Making right turn #> 1228 32 Male Other #> 1229 32 Male Making right turn #> 1230 50 Male Stopped in traffic #> 1231 59 Male Going straight ahead (with priority) #> 1232 60 Male Going straight ahead (with priority) #> 1233 34 Male Going straight ahead (with priority) #> 1234 51 Male Going straight ahead (with priority) #> 1235 43 Male Going straight ahead (with priority) #> 1236 39 Male Other #> 1237 60 Male Going straight ahead (with priority) #> 1238 29 Male Going Straight Ahead (against priority) #> 1239 60 Male Going straight ahead (with priority) #> 1240 57 Male Going straight ahead (with priority) #> 1241 50 Female Going straight ahead (with priority) #> 1242 63 Male Stopped in traffic #> 1243 52 Male Going straight ahead (with priority) #> 1244 37 Male Going straight ahead (with priority) #> 1245 62 Male Going straight ahead (with priority) #> 1246 30 Male Going straight ahead (with priority) #> 1247 59 Male Going straight ahead (with priority) #> 1248 40 Male Stopped in traffic #> 1249 63 Male Stopped in traffic #> 1250 31 Male Going Straight Ahead (against priority) #> 1251 49 Male Going straight ahead (with priority) #> 1252 NA Not known Changing lanes or merging #> 1253 42 Male Going straight ahead (with priority) #> 1254 27 Male Starting in traffic #> 1255 60 Male Slowing or stopping #> 1256 44 Male Going straight ahead (with priority) #> 1257 41 Male Starting in traffic #> 1258 45 Male Starting in traffic #> 1259 40 Male Going straight ahead (with priority) #> 1260 47 Male Going straight ahead (with priority) #> 1261 42 Male Parked #> 1262 55 Male Slowing or stopping #> 1263 50 Male Going straight ahead (with priority) #> 1264 43 Male Stopped in traffic #> 1265 25 Male Stopped in traffic #> 1266 49 Male Going straight ahead (with priority) #> 1267 41 Male Making right turn #> 1268 57 Male Going straight ahead (with priority) #> 1269 57 Female Going straight ahead (with priority) #> 1270 61 Male Going straight ahead (with priority) #> 1271 44 Male Going straight ahead (with priority) #> 1272 56 Male Going straight ahead (with priority) #> 1273 63 Male Going straight ahead (with priority) #> 1274 66 Male Making right turn #> 1275 57 Male Going straight ahead (with priority) #> 1276 28 Male Going straight ahead (with priority) #> 1277 68 Male Going Straight Ahead (against priority) #> 1278 46 Female Slowing or stopping #> 1279 39 Male Going straight ahead (with priority) #> 1280 38 Male Going straight ahead (with priority) #> 1281 55 Male Going straight ahead (with priority) #> 1282 48 Male Going straight ahead (with priority) #> 1283 61 Male Parked #> 1284 32 Male Going straight ahead (with priority) #> 1285 45 Male Going straight ahead (with priority) #> 1286 55 Female Going straight ahead (with priority) #> 1287 25 Male Reversing #> 1288 50 Male Making right turn #> 1289 69 Male Going straight ahead (with priority) #> 1290 24 Male Going straight ahead (with priority) #> 1291 65 Male Going straight ahead (with priority) #> 1292 54 Male Going straight ahead (with priority) #> 1293 51 Female Making right turn #> 1294 61 Male Going straight ahead (with priority) #> 1295 59 Male Stopped in traffic #> 1296 68 Male Going straight ahead (with priority) #> 1297 35 Female Going straight ahead (with priority) #> 1298 56 Male Making left turn #> 1299 65 Male Reversing #> 1300 34 Male Parked #> 1301 26 Male Going straight ahead (with priority) #> 1302 41 Female Stopped in traffic #> 1303 43 Male Going straight ahead (with priority) #> 1304 55 Male Going straight ahead (with priority) #> 1305 29 Male Making right turn #> 1306 51 Male Going straight ahead (with priority) #> 1307 58 Male Going straight ahead (with priority) #> 1308 34 Male Going straight ahead (with priority) #> 1309 36 Male Going straight ahead (with priority) #> 1310 57 Male Going straight ahead (with priority) #> 1311 39 Male Other #> 1312 49 Male Other #> 1313 32 Female Going straight ahead (with priority) #> 1314 37 Male Going straight ahead (with priority) #> 1315 27 Male Going straight ahead (with priority) #> 1316 15 Male Going straight ahead (with priority) #> 1317 NA Not known Parked #> 1318 25 Male Going straight ahead (with priority) #> 1319 50 Male Going straight ahead (with priority) #> 1320 44 Male Going straight ahead (with priority) #> 1321 52 Male Making right turn #> 1322 27 Male Making U turn #> 1323 45 Female Going straight ahead (with priority) #> 1324 27 Male Reversing #> 1325 49 Male Going straight ahead (with priority) #> 1326 33 Female Other #> 1327 54 Male Starting in traffic #> 1328 42 Male Starting in traffic #> 1329 33 Male Going straight ahead (with priority) #> 1330 33 Male Going Straight Ahead (against priority) #> 1331 54 Male Going straight ahead (with priority) #> 1332 36 Male Stopped in traffic #> 1333 33 Male Going straight ahead (with priority) #> 1334 49 Male Going straight ahead (with priority) #> 1335 45 Male Going straight ahead (with priority) #> 1336 49 Female Making right turn #> 1337 30 Male Going straight ahead (with priority) #> 1338 61 Male Going straight ahead (with priority) #> 1339 43 Male Other #> 1340 48 Female Changing lanes or merging #> 1341 57 Male Going Straight Ahead (against priority) #> 1342 25 Male Going Straight Ahead (against priority) #> 1343 56 Male Going straight ahead (with priority) #> 1344 53 Male Going straight ahead (with priority) #> 1345 32 Male Going straight ahead (with priority) #> 1346 67 Male Going straight ahead (with priority) #> 1347 55 Male Going Straight Ahead (against priority) #> 1348 27 Male Going straight ahead (with priority) #> 1349 NA Not known Going straight ahead (with priority) #> 1350 71 Male Changing lanes or merging #> 1351 40 Male Going straight ahead (with priority) #> 1352 38 Male Starting in traffic #> 1353 42 Male Stopped in traffic #> 1354 49 Male Slowing or stopping #> 1355 40 Male Making right turn #> 1356 28 Male Going straight ahead (with priority) #> 1357 50 Male Going straight ahead (with priority) #> 1358 50 Male Going straight ahead (with priority) #> 1359 59 Male Other #> 1360 60 Male Going straight ahead (with priority) #> 1361 55 Male Going straight ahead (with priority) #> 1362 37 Male Going straight ahead (with priority) #> 1363 61 Male Changing lanes or merging #> 1364 46 Male Going straight ahead (with priority) #> 1365 43 Male Going straight ahead (with priority) #> 1366 39 Male Going straight ahead (with priority) #> 1367 63 Male Going straight ahead (with priority) #> 1368 32 Male Going straight ahead (with priority) #> 1369 45 Male Going straight ahead (with priority) #> 1370 54 Male Going straight ahead (with priority) #> 1371 28 Male Making U turn #> 1372 59 Male Going Straight Ahead (against priority) #> 1373 11 Female Unknown #> 1374 37 Male Going straight ahead (with priority) #> 1375 63 Male Making right turn #> 1376 49 Male Going straight ahead (with priority) #> 1377 51 Female Going straight ahead (with priority) #> 1378 45 Male Slowing or stopping #> 1379 49 Male Stopped in traffic #> 1380 50 Male Changing lanes or merging #> 1381 52 Male Going straight ahead (with priority) #> 1382 53 Male Going straight ahead (with priority) #> 1383 57 Male Other #> 1384 54 Female Making left turn #> 1385 35 Male Going straight ahead (with priority) #> 1386 24 Male Going straight ahead (with priority) #> 1387 31 Male Making right turn #> 1388 NA Not known Going Straight Ahead (against priority) #> 1389 48 Male Reversing #> 1390 53 Male Slowing or stopping #> 1391 61 Male Going straight ahead (with priority) #> 1392 59 Male Making right turn #> 1393 52 Male Going straight ahead (with priority) #> 1394 33 Male Changing lanes or merging #> 1395 43 Male Going straight ahead (with priority) #> 1396 57 Male Starting in traffic #> 1397 NA Not known Changing lanes or merging #> 1398 43 Male Going straight ahead (with priority) #> 1399 60 Male Going straight ahead (with priority) #> 1400 54 Male Going straight ahead (with priority) #> 1401 53 Male Other #> 1402 56 Male Going straight ahead (with priority) #> 1403 58 Male Changing lanes or merging #> 1404 57 Male Going straight ahead (with priority) #> 1405 35 Male Going straight ahead (with priority) #> 1406 55 Male Going straight ahead (with priority) #> 1407 58 Male Changing lanes or merging #> 1408 51 Male Making right turn #> 1409 67 Male Going straight ahead (with priority) #> 1410 63 Male Making U turn #> 1411 37 Male Going straight ahead (with priority) #> 1412 26 Male Going straight ahead (with priority) #> 1413 48 Male Changing lanes or merging #> 1414 48 Male Going straight ahead (with priority) #> 1415 34 Male Going straight ahead (with priority) #> 1416 67 Male Going straight ahead (with priority) #> 1417 55 Male Slowing or stopping #> 1418 24 Male Going straight ahead (with priority) #> 1419 43 Male Going straight ahead (with priority) #> 1420 71 Male Going straight ahead (with priority) #> 1421 42 Female Slowing or stopping #> 1422 35 Male Going straight ahead (with priority) #> 1423 53 Male Going Straight Ahead (against priority) #> 1424 22 Male Going straight ahead (with priority) #> 1425 65 Male Going straight ahead (with priority) #> 1426 46 Male Going straight ahead (with priority) #> 1427 52 Male Going straight ahead (with priority) #> 1428 54 Female Going straight ahead (with priority) #> 1429 58 Male Overtaking on off-side #> 1430 39 Male Going straight ahead (with priority) #> 1431 69 Male Going straight ahead (with priority) #> 1432 58 Male Going straight ahead (with priority) #> 1433 36 Male Going straight ahead (with priority) #> 1434 NA Not known Going straight ahead (with priority) #> 1435 38 Male Going straight ahead (with priority) #> 1436 43 Male Going straight ahead (with priority) #> 1437 50 Male Making right turn #> 1438 45 Male Going straight ahead (with priority) #> 1439 49 Female Going straight ahead (with priority) #> 1440 50 Male Going straight ahead (with priority) #> 1441 45 Male Going straight ahead (with priority) #> 1442 51 Male Going straight ahead (with priority) #> 1443 57 Male Going straight ahead (with priority) #> 1444 66 Male Going straight ahead (with priority) #> 1445 61 Male Going straight ahead (with priority) #> 1446 44 Male Going straight ahead (with priority) #> 1447 51 Male Starting in traffic #> 1448 53 Male Going straight ahead (with priority) #> 1449 37 Male Going straight ahead (with priority) #> 1450 65 Male Going straight ahead (with priority) #> 1451 52 Female Going straight ahead (with priority) #> 1452 59 Male Going straight ahead (with priority) #> 1453 41 Male Other #> 1454 60 Male Making right turn #> 1455 30 Male Going straight ahead (with priority) #> 1456 30 Male Going straight ahead (with priority) #> 1457 43 Female Going straight ahead (with priority) #> 1458 39 Male Reversing #> 1459 NA Not known Going straight ahead (with priority) #> 1460 33 Male Going straight ahead (with priority) #> 1461 43 Male Changing lanes or merging #> 1462 29 Male Changing lanes or merging #> 1463 26 Male Parked #> 1464 27 Male Going straight ahead (with priority) #> 1465 30 Female Going straight ahead (with priority) #> 1466 33 Male Parked #> 1467 32 Male Slowing or stopping #> 1468 55 Male Going straight ahead (with priority) #> 1469 55 Male Slowing or stopping #> 1470 52 Male Going straight ahead (with priority) #> 1471 41 Male Reversing #> 1472 67 Male Going straight ahead (with priority) #> 1473 46 Male Parked #> 1474 36 Female Changing lanes or merging #> 1475 40 Male Going straight ahead (with priority) #> 1476 50 Male Going straight ahead (with priority) #> 1477 49 Male Going straight ahead (with priority) #> 1478 23 Male Going straight ahead (with priority) #> 1479 56 Male Going straight ahead (with priority) #> 1480 37 Male Going straight ahead (with priority) #> 1481 52 Male Going straight ahead (with priority) #> 1482 19 Male Going straight ahead (with priority) #> 1483 31 Male Going straight ahead (with priority) #> 1484 32 Male Going straight ahead (with priority) #> 1485 41 Male Going straight ahead (with priority) #> 1486 NA Not known Going Straight Ahead (against priority) #> 1487 23 Male Going straight ahead (with priority) #> 1488 35 Male Going straight ahead (with priority) #> 1489 40 Male Making right turn #> 1490 47 Male Other #> 1491 60 Male Making right turn #> 1492 39 Male Going straight ahead (with priority) #> 1493 59 Male Going Straight Ahead (against priority) #> 1494 62 Male Going straight ahead (with priority) #> 1495 41 Male Going straight ahead (with priority) #> 1496 46 Female Reversing #> 1497 63 Male Going straight ahead (with priority) #> 1498 61 Male Going straight ahead (with priority) #> 1499 64 Male Going straight ahead (with priority) #> 1500 62 Male Going straight ahead (with priority) #> 1501 50 Male Going straight ahead (with priority) #> 1502 36 Male Going straight ahead (with priority) #> 1503 65 Male Going straight ahead (with priority) #> 1504 44 Male Going straight ahead (with priority) #> 1505 45 Male Going straight ahead (with priority) #> 1506 47 Male Going straight ahead (with priority) #> 1507 36 Male Making right turn #> 1508 27 Male Going straight ahead (with priority) #> 1509 48 Male Going straight ahead (with priority) #> 1510 62 Male Going straight ahead (with priority) #> 1511 42 Male Making right turn #> 1512 55 Male Making right turn #> 1513 46 Male Stopped in traffic #> 1514 42 Male Slowing or stopping #> 1515 51 Male Reversing #> 1516 62 Male Going straight ahead (with priority) #> 1517 NA Not known Going straight ahead (with priority) #> 1518 21 Female Going straight ahead (with priority) #> 1519 59 Male Going straight ahead (with priority) #> 1520 53 Male Making left turn #> 1521 33 Male Going straight ahead (with priority) #> 1522 63 Male Going straight ahead (with priority) #> 1523 61 Male Going straight ahead (with priority) #> 1524 47 Male Going straight ahead (with priority) #> 1525 52 Male Slowing or stopping #> 1526 37 Male Going straight ahead (with priority) #> 1527 24 Male Other #> 1528 31 Male Other #> 1529 44 Male Going straight ahead (with priority) #> 1530 50 Male Making right turn #> 1531 55 Male Going straight ahead (with priority) #> 1532 58 Male Going straight ahead (with priority) #> 1533 69 Male Going straight ahead (with priority) #> 1534 56 Male Parked #> 1535 45 Female Going straight ahead (with priority) #> 1536 50 Female Going straight ahead (with priority) #> 1537 41 Male Slowing or stopping #> 1538 48 Male Slowing or stopping #> 1539 41 Male Slowing or stopping #> 1540 31 Male Going straight ahead (with priority) #> 1541 52 Male Going straight ahead (with priority) #> 1542 NA Not known Going straight ahead (with priority) #> 1543 47 Male Going straight ahead (with priority) #> 1544 69 Male Going straight ahead (with priority) #> 1545 43 Female Going straight ahead (with priority) #> 1546 31 Male Going straight ahead (with priority) #> 1547 44 Male Making right turn #> 1548 47 Male Parked #> 1549 48 Male Going straight ahead (with priority) #> 1550 65 Male Making left turn #> 1551 60 Male Going straight ahead (with priority) #> 1552 NA Not known Going straight ahead (with priority) #> 1553 46 Male Going straight ahead (with priority) #> 1554 57 Male Making right turn #> 1555 31 Male Making left turn #> 1556 29 Male Making left turn #> 1557 49 Male Going straight ahead (with priority) #> 1558 64 Male Going straight ahead (with priority) #> 1559 52 Male Going straight ahead (with priority) #> 1560 30 Male Going straight ahead (with priority) #> 1561 61 Male Going straight ahead (with priority) #> 1562 35 Male Going straight ahead (with priority) #> 1563 26 Male Going straight ahead (with priority) #> 1564 50 Male Starting in traffic #> 1565 42 Male Changing lanes or merging #> 1566 43 Male Slowing or stopping #> 1567 61 Male Going straight ahead (with priority) #> 1568 67 Male Going straight ahead (with priority) #> 1569 57 Male Making left turn #> 1570 36 Male Going straight ahead (with priority) #> 1571 33 Male Going straight ahead (with priority) #> 1572 32 Male Making left turn #> 1573 31 Male Changing lanes or merging #> 1574 58 Male Changing lanes or merging #> 1575 47 Male Going straight ahead (with priority) #> 1576 50 Male Going straight ahead (with priority) #> 1577 30 Male Going Straight Ahead (against priority) #> 1578 74 Female Going straight ahead (with priority) #> 1579 62 Male Going straight ahead (with priority) #> 1580 49 Male Going straight ahead (with priority) #> 1581 38 Male Going straight ahead (with priority) #> 1582 49 Male Going straight ahead (with priority) #> 1583 48 Male Going straight ahead (with priority) #> 1584 48 Male Changing lanes or merging #> 1585 65 Male Making right turn #> 1586 25 Male Going straight ahead (with priority) #> 1587 32 Male Going straight ahead (with priority) #> 1588 39 Male Going straight ahead (with priority) #> 1589 51 Male Going straight ahead (with priority) #> 1590 29 Male Going straight ahead (with priority) #> 1591 40 Male Going straight ahead (with priority) #> 1592 35 Male Going straight ahead (with priority) #> 1593 58 Male Leaving parking place #> 1594 28 Male Going straight ahead (with priority) #> 1595 35 Female Going straight ahead (with priority) #> 1596 30 Male Making left turn #> 1597 54 Male Going straight ahead (with priority) #> 1598 56 Male Going straight ahead (with priority) #> 1599 64 Male Other #> 1600 37 Male Going straight ahead (with priority) #> 1601 43 Male Making right turn #> 1602 30 Male Going straight ahead (with priority) #> 1603 26 Male Going straight ahead (with priority) #> 1604 62 Male Going straight ahead (with priority) #> 1605 61 Male Going straight ahead (with priority) #> 1606 24 Male Other #> 1607 44 Male Going straight ahead (with priority) #> 1608 55 Male Going straight ahead (with priority) #> 1609 NA Not known Going straight ahead (with priority) #> 1610 64 Male Going Straight Ahead (against priority) #> 1611 25 Male Going straight ahead (with priority) #> 1612 33 Male Going straight ahead (with priority) #> 1613 62 Male Going straight ahead (with priority) #> 1614 44 Male Going straight ahead (with priority) #> 1615 33 Male Going straight ahead (with priority) #> 1616 32 Male Going straight ahead (with priority) #> 1617 66 Male Going straight ahead (with priority) #> 1618 54 Male Going straight ahead (with priority) #> 1619 57 Male Going straight ahead (with priority) #> 1620 58 Male Going straight ahead (with priority) #> 1621 20 Male Overtaking on near-side #> 1622 63 Male Going straight ahead (with priority) #> 1623 50 Male Going straight ahead (with priority) #> 1624 52 Male Going straight ahead (with priority) #> 1625 29 Male Stopped in traffic #> 1626 53 Male Reversing #> 1627 46 Male Going straight ahead (with priority) #> 1628 50 Male Other #> 1629 NA Not known Going straight ahead (with priority) #> 1630 53 Male Going straight ahead (with priority) #> 1631 51 Male Going straight ahead (with priority) #> 1632 49 Male Going straight ahead (with priority) #> 1633 33 Male Going straight ahead (with priority) #> 1634 67 Male Going straight ahead (with priority) #> 1635 56 Male Going straight ahead (with priority) #> 1636 61 Male Going straight ahead (with priority) #> 1637 NA Not known Going straight ahead (with priority) #> 1638 24 Male Going straight ahead (with priority) #> 1639 38 Male Going straight ahead (with priority) #> 1640 41 Male Going straight ahead (with priority) #> 1641 29 Male Going straight ahead (with priority) #> 1642 53 Male Going straight ahead (with priority) #> 1643 53 Male Going straight ahead (with priority) #> 1644 51 Male Going straight ahead (with priority) #> 1645 66 Male Going straight ahead (with priority) #> 1646 52 Male Going straight ahead (with priority) #> 1647 NA Not known Unknown #> 1648 45 Male Going straight ahead (with priority) #> 1649 42 Male Going straight ahead (with priority) #> 1650 53 Male Making right turn #> 1651 52 Male Going straight ahead (with priority) #> 1652 47 Male Going straight ahead (with priority) #> 1653 46 Male Going straight ahead (with priority) #> 1654 48 Female Slowing or stopping #> 1655 50 Male Going straight ahead (with priority) #> 1656 56 Male Changing lanes or merging #> 1657 37 Female Going straight ahead (with priority) #> 1658 48 Male Going straight ahead (with priority) #> 1659 37 Male Slowing or stopping #> 1660 55 Male Going straight ahead (with priority) #> 1661 59 Male Slowing or stopping #> 1662 54 Male Slowing or stopping #> 1663 58 Male Slowing or stopping #> 1664 49 Male Going straight ahead (with priority) #> 1665 42 Female Going straight ahead (with priority) #> 1666 55 Male Going straight ahead (with priority) #> 1667 61 Male Going straight ahead (with priority) #> 1668 64 Male Going straight ahead (with priority) #> 1669 52 Male Going straight ahead (with priority) #> 1670 56 Male Overtaking on off-side #> 1671 33 Male Going straight ahead (with priority) #> 1672 43 Male Going straight ahead (with priority) #> 1673 NA Not known Changing lanes or merging #> 1674 52 Female Going straight ahead (with priority) #> 1675 23 Male Parked #> 1676 54 Male Reversing #> 1677 35 Male Going straight ahead (with priority) #> 1678 49 Male Going straight ahead (with priority) #> 1679 40 Male Making left turn #> 1680 48 Male Making left turn #> 1681 40 Male Going straight ahead (with priority) #> 1682 61 Male Going straight ahead (with priority) #> 1683 58 Male Making left turn #> 1684 33 Male Making right turn #> 1685 47 Male Going straight ahead (with priority) #> 1686 40 Male Going straight ahead (with priority) #> 1687 68 Male Going straight ahead (with priority) #> 1688 57 Male Going straight ahead (with priority) #> 1689 43 Male Making right turn #> 1690 43 Male Going straight ahead (with priority) #> 1691 51 Male Other #> 1692 61 Male Going straight ahead (with priority) #> 1693 33 Male Going straight ahead (with priority) #> 1694 66 Male Making right turn #> 1695 59 Male Going straight ahead (with priority) #> 1696 45 Male Reversing #> 1697 65 Male Going straight ahead (with priority) #> 1698 38 Female Going straight ahead (with priority) #> 1699 61 Male Changing lanes or merging #> 1700 47 Male Going straight ahead (with priority) #> 1701 54 Male Going straight ahead (with priority) #> 1702 38 Male Going straight ahead (with priority) #> 1703 53 Male Starting in traffic #> 1704 51 Male Going straight ahead (with priority) #> 1705 59 Female Going straight ahead (with priority) #> 1706 53 Male Going straight ahead (with priority) #> 1707 41 Male Starting in traffic #> 1708 65 Male Going straight ahead (with priority) #> 1709 NA Not known Going straight ahead (with priority) #> 1710 NA Not known Going straight ahead (with priority) #> 1711 33 Female Slowing or stopping #> 1712 44 Male Overtaking on near-side #> 1713 31 Female Going straight ahead (with priority) #> 1714 64 Female Going straight ahead (with priority) #> 1715 48 Male Going straight ahead (with priority) #> 1716 54 Male Going straight ahead (with priority) #> 1717 21 Male Making right turn #> 1718 18 Male Going straight ahead (with priority) #> 1719 58 Male Starting in traffic #> 1720 26 Male Going straight ahead (with priority) #> 1721 47 Male Going straight ahead (with priority) #> 1722 64 Male Going straight ahead (with priority) #> 1723 36 Male Going straight ahead (with priority) #> 1724 49 Male Parked #> 1725 27 Female Reversing #> 1726 34 Male Going straight ahead (with priority) #> 1727 65 Male Overtaking on off-side #> 1728 49 Male Slowing or stopping #> 1729 30 Male Slowing or stopping #> 1730 25 Female Slowing or stopping #> 1731 53 Male Slowing or stopping #> 1732 27 Male Making right turn #> 1733 60 Male Going straight ahead (with priority) #> 1734 63 Male Making left turn #> 1735 40 Male Parked #> 1736 78 Male Reversing #> 1737 49 Male Going straight ahead (with priority) #> 1738 46 Male Going straight ahead (with priority) #> 1739 54 Male Going straight ahead (with priority) #> 1740 42 Male Going straight ahead (with priority) #> 1741 48 Male Going straight ahead (with priority) #> 1742 43 Male Going Straight Ahead (against priority) #> 1743 60 Male Going straight ahead (with priority) #> 1744 61 Male Going straight ahead (with priority) #> 1745 55 Male Going straight ahead (with priority) #> 1746 55 Male Going straight ahead (with priority) #> 1747 49 Male Going straight ahead (with priority) #> 1748 50 Male Going straight ahead (with priority) #> 1749 NA Not known Going straight ahead (with priority) #> 1750 30 Male Going straight ahead (with priority) #> 1751 52 Male Going straight ahead (with priority) #> 1752 50 Male Going straight ahead (with priority) #> 1753 66 Male Going straight ahead (with priority) #> 1754 40 Male Going straight ahead (with priority) #> 1755 37 Male Going straight ahead (with priority) #> 1756 49 Male Going straight ahead (with priority) #> 1757 72 Male Changing lanes or merging #> 1758 33 Male Going straight ahead (with priority) #> 1759 42 Male Stopped in traffic #> 1760 26 Male Going straight ahead (with priority) #> 1761 43 Male Going straight ahead (with priority) #> 1762 53 Male Stopped in traffic #> 1763 62 Male Making right turn #> 1764 48 Male Parked #> 1765 36 Male Going straight ahead (with priority) #> 1766 62 Female Other #> 1767 60 Male Making left turn #> 1768 61 Male Going straight ahead (with priority) #> 1769 59 Male Going straight ahead (with priority) #> 1770 50 Male Making right turn #> 1771 61 Male Slowing or stopping #> 1772 65 Male Slowing or stopping #> 1773 55 Male Going straight ahead (with priority) #> 1774 56 Male Making right turn #> 1775 37 Male Going Straight Ahead (against priority) #> 1776 25 Male Going straight ahead (with priority) #> 1777 42 Male Slowing or stopping #> 1778 63 Male Slowing or stopping #> 1779 55 Male Slowing or stopping #> 1780 38 Male Going straight ahead (with priority) #> 1781 39 Male Changing lanes or merging #> 1782 60 Male Going straight ahead (with priority) #> 1783 64 Male Changing lanes or merging #> 1784 68 Male Going straight ahead (with priority) #> 1785 63 Male Going straight ahead (with priority) #> 1786 NA Male Going straight ahead (with priority) #> 1787 21 Male Going straight ahead (with priority) #> 1788 59 Male Going straight ahead (with priority) #> 1789 38 Male Making right turn #> 1790 50 Male Going straight ahead (with priority) #> 1791 42 Male Going straight ahead (with priority) #> 1792 57 Male Going straight ahead (with priority) #> 1793 52 Male Going straight ahead (with priority) #> 1794 43 Male Making left turn #> 1795 65 Male Changing lanes or merging #> 1796 55 Male Going straight ahead (with priority) #> 1797 48 Male Going straight ahead (with priority) #> 1798 68 Male Going straight ahead (with priority) #> 1799 45 Male Going straight ahead (with priority) #> 1800 59 Male Going straight ahead (with priority) #> 1801 64 Male Going straight ahead (with priority) #> 1802 54 Male Going straight ahead (with priority) #> 1803 29 Male Going straight ahead (with priority) #> 1804 53 Male Reversing #> 1805 54 Male Other #> 1806 37 Male Other #> 1807 55 Male Going straight ahead (with priority) #> 1808 40 Male Going straight ahead (with priority) #> 1809 39 Male Going Straight Ahead (against priority) #> 1810 36 Male Going straight ahead (with priority) #> 1811 29 Male Going straight ahead (with priority) #> 1812 50 Male Going straight ahead (with priority) #> 1813 42 Male Stopped in traffic #> 1814 42 Male Going straight ahead (with priority) #> 1815 55 Male Going straight ahead (with priority) #> 1816 58 Male Parked #> 1817 60 Male Going straight ahead (with priority) #> 1818 47 Male Going straight ahead (with priority) #> 1819 54 Female Making left turn #> 1820 45 Male Going straight ahead (with priority) #> 1821 55 Male Going straight ahead (with priority) #> 1822 NA Not known Going straight ahead (with priority) #> 1823 54 Male Going straight ahead (with priority) #> 1824 44 Male Going straight ahead (with priority) #> 1825 65 Male Slowing or stopping #> 1826 58 Male Starting in traffic #> 1827 57 Male Going straight ahead (with priority) #> 1828 37 Male Stopped in traffic #> 1829 56 Male Going straight ahead (with priority) #> 1830 30 Male Stopped in traffic #> 1831 58 Male Going straight ahead (with priority) #> 1832 NA Not known Making left turn #> 1833 NA Not known Going straight ahead (with priority) #> 1834 51 Male Going straight ahead (with priority) #> 1835 35 Male Going straight ahead (with priority) #> 1836 52 Male Making right turn #> 1837 49 Male Slowing or stopping #> 1838 42 Male Going straight ahead (with priority) #> 1839 53 Male Going straight ahead (with priority) #> 1840 53 Male Going straight ahead (with priority) #> 1841 65 Male Going straight ahead (with priority) #> 1842 37 Male Going straight ahead (with priority) #> 1843 68 Male Going straight ahead (with priority) #> 1844 54 Female Going straight ahead (with priority) #> 1845 41 Female Going straight ahead (with priority) #> 1846 36 Male Slowing or stopping #> 1847 45 Male Going straight ahead (with priority) #> 1848 40 Male Going straight ahead (with priority) #> 1849 35 Male Going straight ahead (with priority) #> 1850 41 Male Going straight ahead (with priority) #> 1851 32 Male Going straight ahead (with priority) #> 1852 37 Male Slowing or stopping #> 1853 38 Male Going straight ahead (with priority) #> 1854 71 Male Going straight ahead (with priority) #> 1855 42 Male Going straight ahead (with priority) #> 1856 58 Male Other #> 1857 46 Male Going straight ahead (with priority) #> 1858 46 Male Making right turn #> 1859 NA Not known Unknown #> 1860 52 Male Going straight ahead (with priority) #> 1861 56 Male Reversing #> 1862 56 Male Going Straight Ahead (against priority) #> 1863 60 Male Going straight ahead (with priority) #> 1864 34 Male Going straight ahead (with priority) #> 1865 50 Male Starting in traffic #> 1866 61 Male Going straight ahead (with priority) #> 1867 37 Male Going straight ahead (with priority) #> 1868 35 Male Going straight ahead (with priority) #> 1869 44 Male Stopped in traffic #> 1870 52 Female Going straight ahead (with priority) #> 1871 37 Male Going straight ahead (with priority) #> 1872 50 Male Going straight ahead (with priority) #> 1873 48 Male Going straight ahead (with priority) #> 1874 40 Male Going straight ahead (with priority) #> 1875 48 Male Slowing or stopping #> 1876 55 Male Slowing or stopping #> 1877 55 Male Going straight ahead (with priority) #> 1878 36 Male Unknown #> 1879 28 Male Overtaking on off-side #> 1880 38 Male Going Straight Ahead (against priority) #> 1881 49 Male Going straight ahead (with priority) #> 1882 62 Male Going straight ahead (with priority) #> 1883 56 Male Going straight ahead (with priority) #> 1884 39 Male Stopped in traffic #> 1885 48 Male Starting in traffic #> 1886 55 Male Going straight ahead (with priority) #> 1887 27 Male Overtaking on off-side #> 1888 NA Not known Going straight ahead (with priority) #> 1889 NA Not known Going straight ahead (with priority) #> 1890 43 Male Making right turn #> 1891 36 Male Making right turn #> 1892 43 Male Slowing or stopping #> 1893 46 Male Going straight ahead (with priority) #> 1894 53 Male Going straight ahead (with priority) #> 1895 44 Male Going straight ahead (with priority) #> 1896 44 Female Changing lanes or merging #> 1897 50 Male Changing lanes or merging #> 1898 35 Male Making right turn #> 1899 28 Male Going straight ahead (with priority) #> 1900 25 Male Changing lanes or merging #> 1901 22 Male Changing lanes or merging #> 1902 43 Male Going straight ahead (with priority) #> 1903 64 Male Going straight ahead (with priority) #> 1904 21 Male Other #> 1905 67 Male Going straight ahead (with priority) #> 1906 49 Male Making left turn #> 1907 41 Male Going straight ahead (with priority) #> 1908 43 Male Going straight ahead (with priority) #> 1909 57 Male Making left turn #> 1910 37 Male Making right turn #> 1911 45 Male Going straight ahead (with priority) #> 1912 41 Male Going straight ahead (with priority) #> 1913 50 Male Going straight ahead (with priority) #> 1914 52 Male Going straight ahead (with priority) #> 1915 40 Male Stopped in traffic #> 1916 32 Male Going straight ahead (with priority) #> 1917 39 Male Changing lanes or merging #> 1918 55 Male Slowing or stopping #> 1919 42 Male Going straight ahead (with priority) #> 1920 30 Male Making left turn #> 1921 46 Male Changing lanes or merging #> 1922 25 Male Going straight ahead (with priority) #> 1923 NA Not known Changing lanes or merging #> 1924 57 Male Going straight ahead (with priority) #> 1925 49 Male Making left turn #> 1926 47 Male Going straight ahead (with priority) #> 1927 37 Male Going straight ahead (with priority) #> 1928 55 Male Parked #> 1929 55 Male Going straight ahead (with priority) #> 1930 40 Male Other #> 1931 55 Male Slowing or stopping #> 1932 61 Male Going straight ahead (with priority) #> 1933 52 Male Going straight ahead (with priority) #> 1934 42 Male Going straight ahead (with priority) #> 1935 58 Male Going straight ahead (with priority) #> 1936 34 Female Going straight ahead (with priority) #> 1937 57 Male Going straight ahead (with priority) #> 1938 51 Male Going straight ahead (with priority) #> 1939 66 Male Going straight ahead (with priority) #> 1940 55 Female Going straight ahead (with priority) #> 1941 65 Male Going straight ahead (with priority) #> 1942 43 Male Going straight ahead (with priority) #> 1943 52 Male Going straight ahead (with priority) #> 1944 54 Male Going straight ahead (with priority) #> 1945 57 Male Going straight ahead (with priority) #> 1946 60 Male Making right turn #> 1947 40 Male Stopped in traffic #> 1948 59 Male Going straight ahead (with priority) #> 1949 60 Male Making left turn #> 1950 54 Male Going straight ahead (with priority) #> 1951 57 Male Going straight ahead (with priority) #> 1952 49 Male Slowing or stopping #> 1953 58 Male Starting in traffic #> 1954 44 Male Going straight ahead (with priority) #> 1955 52 Male Going straight ahead (with priority) #> 1956 61 Male Going straight ahead (with priority) #> 1957 54 Female Going straight ahead (with priority) #> 1958 43 Male Going Straight Ahead (against priority) #> 1959 47 Male Going straight ahead (with priority) #> 1960 25 Female Making left turn #> 1961 59 Male Going straight ahead (with priority) #> 1962 53 Male Going straight ahead (with priority) #> 1963 26 Male Making right turn #> 1964 66 Male Going straight ahead (with priority) #> 1965 29 Male Going straight ahead (with priority) #> 1966 52 Female Going straight ahead (with priority) #> 1967 52 Female Going straight ahead (with priority) #> 1968 24 Male Going straight ahead (with priority) #> 1969 57 Male Reversing #> 1970 NA Male Going straight ahead (with priority) #> 1971 37 Male Going straight ahead (with priority) #> 1972 NA Not known Starting in traffic #> 1973 52 Male Going straight ahead (with priority) #> 1974 39 Male Stopped in traffic #> 1975 36 Male Going Straight Ahead (against priority) #> 1976 42 Male Going straight ahead (with priority) #> 1977 60 Male Going straight ahead (with priority) #> 1978 45 Male Going straight ahead (with priority) #> 1979 21 Male Making left turn #> 1980 20 Male Going straight ahead (with priority) #> 1981 55 Male Going straight ahead (with priority) #> 1982 51 Male Going straight ahead (with priority) #> 1983 56 Male Going straight ahead (with priority) #> 1984 56 Male Making left turn #> 1985 43 Male Going straight ahead (with priority) #> 1986 58 Male Going straight ahead (with priority) #> 1987 41 Male Going straight ahead (with priority) #> 1988 35 Male Going straight ahead (with priority) #> 1989 56 Male Changing lanes or merging #> 1990 41 Male Going straight ahead (with priority) #> 1991 39 Female Going straight ahead (with priority) #> 1992 36 Male Making right turn #> 1993 48 Male Going straight ahead (with priority) #> 1994 39 Male Making right turn #> 1995 48 Male Going straight ahead (with priority) #> 1996 60 Male Other #> 1997 59 Male Going straight ahead (with priority) #> 1998 41 Male Making right turn #> 1999 34 Male Going straight ahead (with priority) #> 2000 48 Male Going straight ahead (with priority) #> 2001 80 Female Going straight ahead (with priority) #> 2002 47 Male Making right turn #> 2003 54 Male Going straight ahead (with priority) #> 2004 47 Male Starting in traffic #> 2005 46 Male Going straight ahead (with priority) #> 2006 34 Male Going straight ahead (with priority) #> 2007 57 Male Going straight ahead (with priority) #> 2008 42 Male Going straight ahead (with priority) #> 2009 62 Male Going Straight Ahead (against priority) #> 2010 41 Male Going straight ahead (with priority) #> 2011 49 Male Going Straight Ahead (against priority) #> 2012 30 Male Going straight ahead (with priority) #> 2013 54 Male Going straight ahead (with priority) #> 2014 19 Male Going straight ahead (with priority) #> 2015 45 Male Going straight ahead (with priority) #> 2016 44 Male Going straight ahead (with priority) #> 2017 48 Male Going straight ahead (with priority) #> 2018 48 Male Going Straight Ahead (against priority) #> 2019 38 Female Changing lanes or merging #> 2020 33 Male Going straight ahead (with priority) #> 2021 36 Male Driverless moving vehicle #> 2022 55 Male Going straight ahead (with priority) #> 2023 33 Male Going straight ahead (with priority) #> 2024 21 Male Going straight ahead (with priority) #> 2025 31 Male Going straight ahead (with priority) #> 2026 30 Male Going straight ahead (with priority) #> 2027 19 Male Going straight ahead (with priority) #> 2028 62 Male Going straight ahead (with priority) #> 2029 59 Male Making right turn #> 2030 55 Male Other #> 2031 44 Male Other #> 2032 NA Not known Going straight ahead (with priority) #> 2033 NA Not known Going straight ahead (with priority) #> 2034 47 Male Going straight ahead (with priority) #> 2035 55 Male Changing lanes or merging #> 2036 61 Male Going straight ahead (with priority) #> 2037 NA Not known Slowing or stopping #> 2038 64 Male Slowing or stopping #> 2039 50 Male Making right turn #> 2040 67 Male Going straight ahead (with priority) #> 2041 30 Male Going straight ahead (with priority) #> 2042 49 Male Making right turn #> 2043 49 Male Going straight ahead (with priority) #> 2044 30 Male Going straight ahead (with priority) #> 2045 54 Female Going straight ahead (with priority) #> 2046 49 Male Going straight ahead (with priority) #> 2047 62 Male Going straight ahead (with priority) #> 2048 39 Male Making left turn #> 2049 NA Not known Going straight ahead (with priority) #> 2050 43 Male Going straight ahead (with priority) #> 2051 65 Male Going straight ahead (with priority) #> 2052 40 Male Going straight ahead (with priority) #> 2053 50 Male Going straight ahead (with priority) #> 2054 62 Male Going straight ahead (with priority) #> 2055 53 Male Making right turn #> 2056 53 Male Going straight ahead (with priority) #> 2057 53 Male Going straight ahead (with priority) #> 2058 54 Male Reversing #> 2059 53 Male Going straight ahead (with priority) #> 2060 26 Male Going straight ahead (with priority) #> 2061 NA Not known Going straight ahead (with priority) #> 2062 47 Male Making left turn #> 2063 37 Female Going straight ahead (with priority) #> 2064 60 Male Going straight ahead (with priority) #> 2065 33 Male Going straight ahead (with priority) #> 2066 46 Male Going Straight Ahead (against priority) #> 2067 46 Male Going straight ahead (with priority) #> 2068 45 Male Going Straight Ahead (against priority) #> 2069 47 Male Going Straight Ahead (against priority) #> 2070 55 Male Going straight ahead (with priority) #> 2071 55 Male Going Straight Ahead (against priority) #> 2072 26 Male Going Straight Ahead (against priority) #> 2073 47 Female Going Straight Ahead (against priority) #> 2074 64 Male Going straight ahead (with priority) #> 2075 57 Male Changing lanes or merging #> 2076 49 Male Going straight ahead (with priority) #> 2077 48 Female Changing lanes or merging #> 2078 58 Male Going Straight Ahead (against priority) #> 2079 42 Male Going straight ahead (with priority) #> 2080 71 Male Going Straight Ahead (against priority) #> 2081 54 Male Going straight ahead (with priority) #> 2082 38 Male Going straight ahead (with priority) #> 2083 39 Male Other #> 2084 37 Female Stopped in traffic #> 2085 54 Male Going straight ahead (with priority) #> 2086 43 Male Stopped in traffic #> 2087 53 Male Stopped in traffic #> 2088 44 Male Going straight ahead (with priority) #> 2089 54 Male Starting in traffic #> 2090 44 Male Overtaking on off-side #> 2091 46 Male Going straight ahead (with priority) #> 2092 22 Female Going straight ahead (with priority) #> 2093 47 Male Going straight ahead (with priority) #> 2094 49 Male Going straight ahead (with priority) #> 2095 51 Male Going straight ahead (with priority) #> 2096 56 Male Changing lanes or merging #> 2097 61 Male Going straight ahead (with priority) #> 2098 47 Female Other #> 2099 38 Male Making left turn #> 2100 52 Male Stopped in traffic #> 2101 54 Male Making right turn #> 2102 56 Male Going straight ahead (with priority) #> 2103 45 Male Going straight ahead (with priority) #> 2104 61 Male Going straight ahead (with priority) #> 2105 44 Male Going straight ahead (with priority) #> 2106 60 Male Going straight ahead (with priority) #> 2107 43 Male Going straight ahead (with priority) #> 2108 66 Male Slowing or stopping #> 2109 22 Male Reversing #> 2110 33 Male Going straight ahead (with priority) #> 2111 71 Male Making right turn #> 2112 61 Male Making right turn #> 2113 32 Male Going straight ahead (with priority) #> 2114 NA Not known Going straight ahead (with priority) #> 2115 22 Male Going straight ahead (with priority) #> 2116 35 Male Going straight ahead (with priority) #> 2117 40 Male Changing lanes or merging #> 2118 60 Male Going straight ahead (with priority) #> 2119 55 Male Going straight ahead (with priority) #> 2120 51 Male Going straight ahead (with priority) #> 2121 49 Male Going straight ahead (with priority) #> 2122 50 Male Going straight ahead (with priority) #> 2123 40 Female Going straight ahead (with priority) #> 2124 25 Male Going straight ahead (with priority) #> 2125 41 Male Going straight ahead (with priority) #> 2126 38 Male Going straight ahead (with priority) #> 2127 61 Male Going straight ahead (with priority) #> 2128 57 Male Stopped in traffic #> 2129 55 Male Going straight ahead (with priority) #> 2130 43 Male Going straight ahead (with priority) #> 2131 56 Male Going straight ahead (with priority) #> 2132 52 Male Changing lanes or merging #> 2133 34 Male Going straight ahead (with priority) #> 2134 28 Male Going straight ahead (with priority) #> 2135 30 Male Slowing or stopping #> 2136 51 Male Going straight ahead (with priority) #> 2137 42 Male Making right turn #> 2138 34 Male Going straight ahead (with priority) #> 2139 60 Male Going straight ahead (with priority) #> 2140 58 Male Slowing or stopping #> 2141 34 Male Slowing or stopping #> 2142 60 Male Stopped in traffic #> 2143 34 Male Going straight ahead (with priority) #> 2144 49 Male Going straight ahead (with priority) #> 2145 64 Male Going straight ahead (with priority) #> 2146 53 Male Going straight ahead (with priority) #> 2147 40 Male Going straight ahead (with priority) #> 2148 56 Male Going straight ahead (with priority) #> 2149 46 Male Going straight ahead (with priority) #> 2150 34 Male Going straight ahead (with priority) #> 2151 35 Male Going straight ahead (with priority) #> 2152 44 Male Other #> 2153 25 Male Going straight ahead (with priority) #> 2154 43 Male Going straight ahead (with priority) #> 2155 49 Male Going straight ahead (with priority) #> 2156 28 Male Going straight ahead (with priority) #> 2157 62 Male Going straight ahead (with priority) #> 2158 49 Male Stopped in traffic #> 2159 55 Male Going straight ahead (with priority) #> 2160 27 Male Changing lanes or merging #> 2161 33 Male Making left turn #> 2162 74 Male Parked #> 2163 47 Male Going straight ahead (with priority) #> 2164 58 Male Going straight ahead (with priority) #> 2165 38 Male Going Straight Ahead (against priority) #> 2166 27 Male Making right turn #> 2167 35 Male Going straight ahead (with priority) #> 2168 49 Male Going straight ahead (with priority) #> 2169 35 Male Reversing #> 2170 44 Female Going straight ahead (with priority) #> 2171 27 Male Slowing or stopping #> 2172 55 Male Going straight ahead (with priority) #> 2173 58 Male Going straight ahead (with priority) #> 2174 26 Male Reversing #> 2175 50 Male Leaving parking place #> 2176 37 Male Going straight ahead (with priority) #> 2177 21 Male Going straight ahead (with priority) #> 2178 34 Male Going straight ahead (with priority) #> 2179 48 Male Going straight ahead (with priority) #> 2180 36 Male Stopped in traffic #> 2181 55 Male Other #> 2182 51 Female Stopped in traffic #> 2183 50 Male Going Straight Ahead (against priority) #> 2184 56 Male Going straight ahead (with priority) #> 2185 52 Male Going straight ahead (with priority) #> 2186 38 Male Going straight ahead (with priority) #> 2187 44 Male Stopped in traffic #> 2188 64 Male Stopped in traffic #> 2189 32 Male Making right turn #> 2190 60 Male Stopped in traffic #> 2191 55 Male Reversing #> 2192 24 Male Going straight ahead (with priority) #> 2193 22 Male Going straight ahead (with priority) #> 2194 60 Male Going straight ahead (with priority) #> 2195 56 Male Making right turn #> 2196 44 Male Going straight ahead (with priority) #> 2197 43 Male Slowing or stopping #> 2198 47 Female Going straight ahead (with priority) #> 2199 32 Male Going straight ahead (with priority) #> 2200 44 Female Going straight ahead (with priority) #> 2201 38 Male Changing lanes or merging #> 2202 42 Male Other #> 2203 56 Male Going straight ahead (with priority) #> 2204 34 Male Going straight ahead (with priority) #> 2205 65 Male Going straight ahead (with priority) #> 2206 50 Male Going straight ahead (with priority) #> 2207 34 Female Going straight ahead (with priority) #> 2208 51 Male Going straight ahead (with priority) #> 2209 63 Male Going straight ahead (with priority) #> 2210 62 Male Going straight ahead (with priority) #> 2211 56 Male Going straight ahead (with priority) #> 2212 54 Male Going straight ahead (with priority) #> 2213 46 Male Going straight ahead (with priority) #> 2214 43 Male Going straight ahead (with priority) #> 2215 55 Female Going straight ahead (with priority) #> 2216 40 Male Going straight ahead (with priority) #> 2217 NA Not known Going straight ahead (with priority) #> 2218 17 Male Going straight ahead (with priority) #> 2219 31 Male Slowing or stopping #> 2220 26 Male Going straight ahead (with priority) #> 2221 54 Male Going straight ahead (with priority) #> 2222 57 Male Starting in traffic #> 2223 38 Male Stopped in traffic #> 2224 NA Not known Going straight ahead (with priority) #> 2225 35 Male Making left turn #> 2226 52 Male Going straight ahead (with priority) #> 2227 50 Male Going straight ahead (with priority) #> 2228 62 Male Making left turn #> 2229 31 Male Slowing or stopping #> 2230 37 Male Slowing or stopping #> 2231 48 Male Going straight ahead (with priority) #> 2232 37 Male Slowing or stopping #> 2233 52 Male Going straight ahead (with priority) #> 2234 45 Male Going straight ahead (with priority) #> 2235 37 Male Slowing or stopping #> 2236 49 Male Other #> 2237 43 Male Other #> 2238 44 Male Other #> 2239 34 Male Going straight ahead (with priority) #> 2240 50 Male Changing lanes or merging #> 2241 43 Male Other #> 2242 52 Female Going straight ahead (with priority) #> 2243 54 Male Going straight ahead (with priority) #> 2244 78 Male Going straight ahead (with priority) #> 2245 49 Male Going straight ahead (with priority) #> 2246 58 Male Going straight ahead (with priority) #> 2247 NA Not known Going straight ahead (with priority) #> 2248 36 Female Going straight ahead (with priority) #> 2249 52 Male Going straight ahead (with priority) #> 2250 51 Male Going straight ahead (with priority) #> 2251 58 Male Making right turn #> 2252 49 Male Stopped in traffic #> 2253 26 Male Going straight ahead (with priority) #> 2254 31 Male Stopped in traffic #> 2255 40 Female Going straight ahead (with priority) #> 2256 76 Male Going straight ahead (with priority) #> 2257 21 Male Going straight ahead (with priority) #> 2258 35 Male Reversing #> 2259 23 Male Changing lanes or merging #> 2260 62 Male Going straight ahead (with priority) #> 2261 52 Male Unknown #> 2262 65 Male Going straight ahead (with priority) #> 2263 57 Male Going straight ahead (with priority) #> 2264 55 Male Going straight ahead (with priority) #> 2265 57 Male Going straight ahead (with priority) #> 2266 56 Male Going straight ahead (with priority) #> 2267 45 Female Going straight ahead (with priority) #> 2268 47 Male Going straight ahead (with priority) #> 2269 60 Male Stopped in traffic #> 2270 54 Male Unknown #> 2271 56 Male Going straight ahead (with priority) #> 2272 54 Male Parked #> 2273 65 Male Going straight ahead (with priority) #> 2274 64 Male Going straight ahead (with priority) #> 2275 28 Male Going straight ahead (with priority) #> 2276 56 Male Going straight ahead (with priority) #> 2277 25 Male Making U turn #> 2278 63 Male Making right turn #> 2279 35 Male Going straight ahead (with priority) #> 2280 43 Male Going straight ahead (with priority) #> 2281 45 Male Making right turn #> 2282 51 Male Going straight ahead (with priority) #> 2283 57 Male Going straight ahead (with priority) #> 2284 16 Male Overtaking on near-side #> 2285 34 Male Stopped in traffic #> 2286 49 Male Starting in traffic #> 2287 35 Male Starting in traffic #> 2288 22 Male Going straight ahead (with priority) #> 2289 44 Male Changing lanes or merging #> 2290 53 Male Going straight ahead (with priority) #> 2291 38 Male Going straight ahead (with priority) #> 2292 62 Male Going straight ahead (with priority) #> 2293 57 Male Going straight ahead (with priority) #> 2294 32 Male Going straight ahead (with priority) #> 2295 55 Male Going straight ahead (with priority) #> 2296 40 Male Reversing #> 2297 56 Male Other #> 2298 35 Male Going straight ahead (with priority) #> 2299 44 Male Going Straight Ahead (against priority) #> 2300 41 Male Slowing or stopping #> 2301 NA Not known Unknown #> 2302 35 Male Going straight ahead (with priority) #> 2303 58 Male Going straight ahead (with priority) #> 2304 10 Female Going straight ahead (with priority) #> 2305 38 Male Making left turn #> 2306 47 Male Stopped in traffic #> 2307 72 Male Stopped in traffic #> 2308 37 Male Slowing or stopping #> 2309 36 Male Going straight ahead (with priority) #> 2310 48 Male Reversing #> 2311 24 Male Going straight ahead (with priority) #> 2312 53 Male Going straight ahead (with priority) #> 2313 39 Male Changing lanes or merging #> 2314 38 Male Going straight ahead (with priority) #> 2315 53 Male Going straight ahead (with priority) #> 2316 54 Male Slowing or stopping #> 2317 77 Male Going Straight Ahead (against priority) #> 2318 62 Male Going Straight Ahead (against priority) #> 2319 52 Male Other #> 2320 56 Male Unknown #> 2321 46 Male Going straight ahead (with priority) #> 2322 NA Not known Changing lanes or merging #> 2323 29 Male Going straight ahead (with priority) #> 2324 38 Male Changing lanes or merging #> 2325 31 Male Making right turn #> 2326 46 Male Making right turn #> 2327 55 Male Going straight ahead (with priority) #> 2328 50 Male Going straight ahead (with priority) #> 2329 60 Male Going straight ahead (with priority) #> 2330 44 Male Going straight ahead (with priority) #> 2331 31 Female Going straight ahead (with priority) #> 2332 70 Male Going straight ahead (with priority) #> 2333 60 Male Going straight ahead (with priority) #> 2334 52 Male Going straight ahead (with priority) #> 2335 52 Male Changing lanes or merging #> 2336 53 Male Going straight ahead (with priority) #> 2337 25 Male Making right turn #> 2338 48 Male Going straight ahead (with priority) #> 2339 52 Male Going straight ahead (with priority) #> 2340 57 Male Going straight ahead (with priority) #> 2341 25 Male Making right turn #> 2342 57 Male Going straight ahead (with priority) #> 2343 67 Male Making right turn #> 2344 35 Male Going straight ahead (with priority) #> 2345 48 Male Other #> 2346 57 Male Other #> 2347 36 Male Going straight ahead (with priority) #> 2348 34 Male Changing lanes or merging #> 2349 58 Male Making right turn #> 2350 44 Male Going straight ahead (with priority) #> 2351 36 Male Other #> 2352 21 Male Going straight ahead (with priority) #> 2353 NA Not known Changing lanes or merging #> 2354 19 Male Going straight ahead (with priority) #> 2355 24 Male Going straight ahead (with priority) #> 2356 57 Male Going straight ahead (with priority) #> 2357 46 Male Going straight ahead (with priority) #> 2358 53 Male Going straight ahead (with priority) #> 2359 46 Male Going straight ahead (with priority) #> 2360 57 Male Slowing or stopping #> 2361 67 Male Slowing or stopping #> 2362 47 Female Slowing or stopping #> 2363 51 Male Slowing or stopping #> 2364 58 Male Overtaking on off-side #> 2365 67 Male Going straight ahead (with priority) #> 2366 43 Male Making right turn #> 2367 48 Male Going straight ahead (with priority) #> 2368 42 Male Going straight ahead (with priority) #> 2369 53 Male Going straight ahead (with priority) #> 2370 44 Male Starting in traffic #> 2371 40 Male Going straight ahead (with priority) #> 2372 45 Male Going straight ahead (with priority) #> 2373 39 Male Going straight ahead (with priority) #> 2374 31 Male Going straight ahead (with priority) #> 2375 57 Male Changing lanes or merging #> 2376 63 Male Going straight ahead (with priority) #> 2377 43 Male Going straight ahead (with priority) #> 2378 15 Male Overtaking on near-side #> 2379 60 Male Stopped in traffic #> 2380 31 Female Going straight ahead (with priority) #> 2381 62 Male Going straight ahead (with priority) #> 2382 49 Male Making left turn #> 2383 28 Male Changing lanes or merging #> 2384 50 Male Changing lanes or merging #> 2385 35 Male Slowing or stopping #> 2386 35 Male Going straight ahead (with priority) #> 2387 57 Male Going straight ahead (with priority) #> 2388 57 Male Slowing or stopping #> 2389 62 Male Slowing or stopping #> 2390 58 Male Changing lanes or merging #> 2391 37 Male Going straight ahead (with priority) #> 2392 56 Male Going straight ahead (with priority) #> 2393 55 Male Making left turn #> 2394 35 Female Slowing or stopping #> 2395 36 Male Going straight ahead (with priority) #> 2396 49 Male Going straight ahead (with priority) #> 2397 28 Female Going straight ahead (with priority) #> 2398 NA Not known Going straight ahead (with priority) #> 2399 66 Female Going straight ahead (with priority) #> 2400 61 Male Going straight ahead (with priority) #> 2401 47 Male Going straight ahead (with priority) #> 2402 49 Male Going straight ahead (with priority) #> 2403 61 Male Going straight ahead (with priority) #> 2404 40 Male Going straight ahead (with priority) #> 2405 46 Male Going straight ahead (with priority) #> 2406 60 Male Going straight ahead (with priority) #> 2407 41 Male Going straight ahead (with priority) #> 2408 24 Male Reversing #> 2409 49 Male Going straight ahead (with priority) #> 2410 51 Male Slowing or stopping #> 2411 67 Male Going straight ahead (with priority) #> 2412 41 Male Changing lanes or merging #> 2413 38 Male Going straight ahead (with priority) #> 2414 40 Male Going straight ahead (with priority) #> 2415 48 Male Going straight ahead (with priority) #> 2416 51 Male Making right turn #> 2417 41 Male Going straight ahead (with priority) #> 2418 57 Male Slowing or stopping #> 2419 58 Male Slowing or stopping #> 2420 64 Male Slowing or stopping #> 2421 41 Male Making right turn #> 2422 60 Male Other #> 2423 NA Not known Changing lanes or merging #> 2424 53 Male Going straight ahead (with priority) #> 2425 47 Male Reversing #> 2426 43 Male Other #> 2427 50 Male Stopped in traffic #> 2428 58 Male Changing lanes or merging #> 2429 37 Male Parked #> 2430 48 Male Going straight ahead (with priority) #> 2431 26 Male Slowing or stopping #> 2432 25 Male Going straight ahead (with priority) #> 2433 50 Male Changing lanes or merging #> 2434 24 Male Going straight ahead (with priority) #> 2435 74 Male Going straight ahead (with priority) #> 2436 64 Male Making right turn #> 2437 53 Male Going straight ahead (with priority) #> 2438 37 Male Slowing or stopping #> 2439 53 Male Slowing or stopping #> 2440 33 Male Going Straight Ahead (against priority) #> 2441 31 Male Going straight ahead (with priority) #> 2442 39 Male Going straight ahead (with priority) #> 2443 26 Male Going straight ahead (with priority) #> 2444 NA Not known Going straight ahead (with priority) #> 2445 56 Male Stopped in traffic #> 2446 32 Male Overtaking on near-side #> 2447 62 Male Going straight ahead (with priority) #> 2448 58 Male Going straight ahead (with priority) #> 2449 44 Male Going straight ahead (with priority) #> 2450 53 Male Making left turn #> 2451 46 Male Making left turn #> 2452 22 Male Going straight ahead (with priority) #> 2453 68 Male Slowing or stopping #> 2454 54 Male Slowing or stopping #> 2455 50 Male Going straight ahead (with priority) #> 2456 43 Male Going straight ahead (with priority) #> 2457 53 Male Making left turn #> 2458 55 Male Slowing or stopping #> 2459 63 Male Making right turn #> 2460 32 Male Going straight ahead (with priority) #> 2461 47 Male Going straight ahead (with priority) #> 2462 35 Male Making left turn #> 2463 29 Male Going straight ahead (with priority) #> 2464 43 Male Going straight ahead (with priority) #> 2465 28 Male Going straight ahead (with priority) #> 2466 46 Male Going straight ahead (with priority) #> 2467 25 Male Going straight ahead (with priority) #> 2468 24 Male Going straight ahead (with priority) #> 2469 55 Male Going straight ahead (with priority) #> 2470 68 Male Stopped in traffic #> 2471 63 Male Going straight ahead (with priority) #> 2472 40 Male Making left turn #> 2473 40 Male Going straight ahead (with priority) #> 2474 55 Male Making right turn #> 2475 46 Male Going straight ahead (with priority) #> 2476 55 Male Other #> 2477 46 Male Other #> 2478 52 Male Going straight ahead (with priority) #> 2479 26 Male Going straight ahead (with priority) #> 2480 41 Male Going straight ahead (with priority) #> 2481 57 Male Going straight ahead (with priority) #> 2482 38 Male Going straight ahead (with priority) #> 2483 51 Male Going straight ahead (with priority) #> 2484 67 Male Changing lanes or merging #> 2485 53 Female Going straight ahead (with priority) #> 2486 52 Male Going straight ahead (with priority) #> 2487 61 Male Slowing or stopping #> 2488 20 Male Going straight ahead (with priority) #> 2489 46 Male Going straight ahead (with priority) #> 2490 40 Male Starting in traffic #> 2491 32 Female Going straight ahead (with priority) #> 2492 35 Male Going straight ahead (with priority) #> 2493 61 Male Going straight ahead (with priority) #> 2494 36 Male Going straight ahead (with priority) #> 2495 55 Male Going straight ahead (with priority) #> 2496 37 Male Going straight ahead (with priority) #> 2497 39 Male Going straight ahead (with priority) #> 2498 30 Male Changing lanes or merging #> 2499 67 Male Going straight ahead (with priority) #> 2500 41 Male Going straight ahead (with priority) #> 2501 65 Male Going straight ahead (with priority) #> 2502 40 Female Making right turn #> 2503 35 Male Going straight ahead (with priority) #> 2504 41 Male Going Straight Ahead (against priority) #> 2505 57 Male Going straight ahead (with priority) #> 2506 40 Male Going straight ahead (with priority) #> 2507 47 Male Going Straight Ahead (against priority) #> 2508 45 Male Going straight ahead (with priority) #> 2509 36 Male Other #> 2510 40 Male Other #> 2511 33 Male Going straight ahead (with priority) #> 2512 NA Not known Making U turn #> 2513 53 Male Starting in traffic #> 2514 56 Male Going straight ahead (with priority) #> 2515 43 Male Going straight ahead (with priority) #> 2516 NA Not known Going straight ahead (with priority) #> 2517 23 Male Going straight ahead (with priority) #> 2518 65 Male Going straight ahead (with priority) #> 2519 44 Male Going straight ahead (with priority) #> 2520 28 Male Making right turn #> 2521 63 Male Going straight ahead (with priority) #> 2522 55 Male Going straight ahead (with priority) #> 2523 51 Male Going straight ahead (with priority) #> 2524 50 Male Going straight ahead (with priority) #> 2525 43 Male Going straight ahead (with priority) #> 2526 40 Male Going straight ahead (with priority) #> 2527 47 Male Going straight ahead (with priority) #> 2528 47 Male Going straight ahead (with priority) #> 2529 50 Male Going straight ahead (with priority) #> 2530 36 Male Going straight ahead (with priority) #> 2531 67 Male Stopped in traffic #> 2532 47 Male Stopped in traffic #> 2533 45 Male Stopped in traffic #> 2534 57 Male Starting in traffic #> 2535 53 Male Going Straight Ahead (against priority) #> 2536 35 Female Stopped in traffic #> 2537 37 Male Going straight ahead (with priority) #> 2538 39 Male Going straight ahead (with priority) #> 2539 8 Male Going straight ahead (with priority) #> 2540 62 Male Going straight ahead (with priority) #> 2541 41 Male Slowing or stopping #> 2542 22 Male Stopped in traffic #> 2543 37 Male Going straight ahead (with priority) #> 2544 32 Male Going straight ahead (with priority) #> 2545 35 Male Going straight ahead (with priority) #> 2546 53 Male Going straight ahead (with priority) #> 2547 48 Male Going straight ahead (with priority) #> 2548 20 Male Going straight ahead (with priority) #> 2549 28 Male Going straight ahead (with priority) #> 2550 27 Male Changing lanes or merging #> 2551 32 Female Changing lanes or merging #> 2552 25 Male Other #> 2553 NA Not known Making right turn #> 2554 34 Male Making left turn #> 2555 48 Male Slowing or stopping #> 2556 39 Male Going straight ahead (with priority) #> 2557 29 Male Going straight ahead (with priority) #> 2558 53 Male Going straight ahead (with priority) #> 2559 35 Male Going straight ahead (with priority) #> 2560 43 Male Stopped in traffic #> 2561 59 Male Going straight ahead (with priority) #> 2562 55 Male Going straight ahead (with priority) #> 2563 43 Male Going straight ahead (with priority) #> 2564 58 Male Going straight ahead (with priority) #> 2565 33 Male Going straight ahead (with priority) #> 2566 63 Male Going straight ahead (with priority) #> 2567 54 Male Going straight ahead (with priority) #> 2568 53 Male Going straight ahead (with priority) #> 2569 53 Male Going straight ahead (with priority) #> 2570 49 Male Making right turn #> 2571 57 Male Making right turn #> 2572 57 Male Going straight ahead (with priority) #> 2573 41 Male Going straight ahead (with priority) #> 2574 68 Male Going straight ahead (with priority) #> 2575 37 Male Making left turn #> 2576 44 Male Reversing #> 2577 33 Male Parked #> 2578 49 Male Stopped in traffic #> 2579 54 Male Parked #> 2580 66 Male Going straight ahead (with priority) #> 2581 62 Male Stopped in traffic #> 2582 58 Female Slowing or stopping #> 2583 38 Male Stopped in traffic #> 2584 40 Male Going straight ahead (with priority) #> 2585 54 Male Going straight ahead (with priority) #> 2586 44 Male Other #> 2587 66 Male Going straight ahead (with priority) #> 2588 63 Male Going straight ahead (with priority) #> 2589 27 Male Going Straight Ahead (against priority) #> 2590 41 Male Going straight ahead (with priority) #> 2591 40 Female Going straight ahead (with priority) #> 2592 NA Not known Going straight ahead (with priority) #> 2593 51 Male Going straight ahead (with priority) #> 2594 36 Male Going Straight Ahead (against priority) #> 2595 36 Male Leaving parking place #> 2596 37 Male Parked #> 2597 27 Male Making right turn #> 2598 27 Male Going straight ahead (with priority) #> 2599 51 Male Making left turn #> 2600 56 Male Reversing #> 2601 27 Male Going straight ahead (with priority) #> 2602 53 Female Parked #> 2603 59 Male Going straight ahead (with priority) #> 2604 64 Male Going straight ahead (with priority) #> 2605 NA Not known Parked #> 2606 59 Male Going straight ahead (with priority) #> 2607 52 Male Going straight ahead (with priority) #> 2608 32 Male Going straight ahead (with priority) #> 2609 56 Male Going straight ahead (with priority) #> 2610 76 Male Going straight ahead (with priority) #> 2611 36 Male Going straight ahead (with priority) #> 2612 39 Male Making right turn #> 2613 22 Male Going straight ahead (with priority) #> 2614 57 Male Going straight ahead (with priority) #> 2615 33 Male Going straight ahead (with priority) #> 2616 46 Female Going straight ahead (with priority) #> 2617 39 Male Going straight ahead (with priority) #> 2618 38 Male Going straight ahead (with priority) #> 2619 NA Not known Going straight ahead (with priority) #> 2620 57 Male Going straight ahead (with priority) #> 2621 20 Female Going straight ahead (with priority) #> 2622 30 Female Going straight ahead (with priority) #> 2623 13 Male Going straight ahead (with priority) #> 2624 28 Male Going straight ahead (with priority) #> 2625 30 Male Going straight ahead (with priority) #> 2626 61 Male Going straight ahead (with priority) #> 2627 35 Female Going straight ahead (with priority) #> 2628 NA Not known Making left turn #> 2629 44 Female Changing lanes or merging #> 2630 58 Male Going straight ahead (with priority) #> 2631 39 Male Going straight ahead (with priority) #> 2632 49 Male Going straight ahead (with priority) #> 2633 25 Male Going straight ahead (with priority) #> 2634 39 Male Going straight ahead (with priority) #> 2635 50 Female Going straight ahead (with priority) #> 2636 40 Male Making right turn #> 2637 31 Male Going straight ahead (with priority) #> 2638 35 Male Going straight ahead (with priority) #> 2639 52 Male Going straight ahead (with priority) #> 2640 55 Male Going straight ahead (with priority) #> 2641 60 Male Going straight ahead (with priority) #> 2642 77 Female Going straight ahead (with priority) #> 2643 51 Male Going straight ahead (with priority) #> 2644 46 Male Slowing or stopping #> 2645 26 Male Going Straight Ahead (against priority) #> 2646 26 Male Going straight ahead (with priority) #> 2647 61 Female Going straight ahead (with priority) #> 2648 58 Male Going straight ahead (with priority) #> 2649 64 Male Going straight ahead (with priority) #> 2650 31 Female Going straight ahead (with priority) #> 2651 45 Male Slowing or stopping #> 2652 57 Male Going straight ahead (with priority) #> 2653 56 Male Going straight ahead (with priority) #> 2654 57 Male Changing lanes or merging #> 2655 34 Male Going straight ahead (with priority) #> 2656 61 Male Reversing #> 2657 42 Male Other #> 2658 32 Male Parked #> 2659 29 Male Parked #> 2660 51 Male Parked #> 2661 65 Male Going straight ahead (with priority) #> 2662 49 Male Going straight ahead (with priority) #> 2663 32 Male Going straight ahead (with priority) #> 2664 53 Male Making right turn #> 2665 50 Male Going straight ahead (with priority) #> 2666 27 Male Going straight ahead (with priority) #> 2667 57 Male Going straight ahead (with priority) #> 2668 45 Male Going straight ahead (with priority) #> 2669 25 Male Stopped in traffic #> 2670 34 Male Stopped in traffic #> 2671 37 Male Going straight ahead (with priority) #> 2672 45 Male Stopped in traffic #> 2673 27 Male Stopped in traffic #> 2674 43 Male Leaving parking place #> 2675 47 Male Going straight ahead (with priority) #> 2676 43 Male Going straight ahead (with priority) #> 2677 48 Male Making right turn #> 2678 34 Male Going straight ahead (with priority) #> 2679 43 Male Going straight ahead (with priority) #> 2680 53 Male Going straight ahead (with priority) #> 2681 67 Male Going Straight Ahead (against priority) #> 2682 46 Male Slowing or stopping #> 2683 58 Male Going straight ahead (with priority) #> 2684 70 Male Changing lanes or merging #> 2685 67 Male Going straight ahead (with priority) #> 2686 42 Male Going straight ahead (with priority) #> 2687 59 Male Other #> 2688 54 Male Making left turn #> 2689 49 Female Going straight ahead (with priority) #> 2690 45 Male Going straight ahead (with priority) #> 2691 61 Male Going straight ahead (with priority) #> 2692 50 Female Slowing or stopping #> 2693 35 Male Going straight ahead (with priority) #> 2694 52 Male Going straight ahead (with priority) #> 2695 65 Male Slowing or stopping #> 2696 37 Male Going straight ahead (with priority) #> 2697 40 Male Going straight ahead (with priority) #> 2698 35 Male Going straight ahead (with priority) #> 2699 64 Male Going straight ahead (with priority) #> 2700 36 Male Going straight ahead (with priority) #> 2701 39 Male Going straight ahead (with priority) #> 2702 25 Male Going straight ahead (with priority) #> 2703 24 Male Going straight ahead (with priority) #> 2704 42 Male Going straight ahead (with priority) #> 2705 49 Male Going straight ahead (with priority) #> 2706 60 Male Going straight ahead (with priority) #> 2707 66 Male Slowing or stopping #> 2708 50 Male Going straight ahead (with priority) #> 2709 64 Male Starting in traffic #> 2710 47 Male Going straight ahead (with priority) #> 2711 53 Male Going straight ahead (with priority) #> 2712 62 Male Going straight ahead (with priority) #> 2713 40 Female Going straight ahead (with priority) #> 2714 41 Male Going straight ahead (with priority) #> 2715 64 Male Going straight ahead (with priority) #> 2716 30 Male Going straight ahead (with priority) #> 2717 46 Male Going straight ahead (with priority) #> 2718 64 Male Going straight ahead (with priority) #> 2719 37 Male Going straight ahead (with priority) #> 2720 61 Male Going straight ahead (with priority) #> 2721 53 Male Going straight ahead (with priority) #> 2722 45 Male Stopped in traffic #> 2723 56 Male Making left turn #> 2724 49 Male Making left turn #> 2725 59 Male Going straight ahead (with priority) #> 2726 39 Male Going straight ahead (with priority) #> 2727 55 Male Other #> 2728 48 Male Other #> 2729 53 Male Going straight ahead (with priority) #> 2730 64 Male Making right turn #> 2731 61 Male Going straight ahead (with priority) #> 2732 33 Male Going straight ahead (with priority) #> 2733 57 Male Going straight ahead (with priority) #> 2734 37 Male Other #> 2735 54 Male Other #> 2736 60 Male Going straight ahead (with priority) #> 2737 40 Male Going straight ahead (with priority) #> 2738 52 Male Slowing or stopping #> 2739 48 Male Going straight ahead (with priority) #> 2740 53 Male Going straight ahead (with priority) #> 2741 40 Male Going straight ahead (with priority) #> 2742 51 Male Stopped in traffic #> 2743 28 Male Starting in traffic #> 2744 61 Male Going straight ahead (with priority) #> 2745 NA Not known Starting in traffic #> 2746 61 Male Stopped in traffic #> 2747 42 Male Going straight ahead (with priority) #> 2748 60 Male Going straight ahead (with priority) #> 2749 48 Male Going straight ahead (with priority) #> 2750 39 Male Going straight ahead (with priority) #> 2751 48 Female Going straight ahead (with priority) #> 2752 55 Male Going straight ahead (with priority) #> 2753 39 Male Going straight ahead (with priority) #> 2754 52 Male Going straight ahead (with priority) #> 2755 64 Male Going straight ahead (with priority) #> 2756 NA Not known Going straight ahead (with priority) #> 2757 56 Male Going straight ahead (with priority) #> 2758 51 Male Going straight ahead (with priority) #> 2759 75 Male Making left turn #> 2760 47 Male Going straight ahead (with priority) #> 2761 56 Male Going straight ahead (with priority) #> 2762 52 Male Going straight ahead (with priority) #> 2763 32 Male Going straight ahead (with priority) #> 2764 54 Male Going straight ahead (with priority) #> 2765 56 Male Making right turn #> 2766 52 Male Going straight ahead (with priority) #> 2767 43 Male Going straight ahead (with priority) #> 2768 24 Male Going straight ahead (with priority) #> 2769 65 Male Going straight ahead (with priority) #> 2770 40 Male Going straight ahead (with priority) #> 2771 63 Male Going straight ahead (with priority) #> 2772 56 Male Slowing or stopping #> 2773 25 Male Going straight ahead (with priority) #> 2774 61 Male Going straight ahead (with priority) #> 2775 31 Male Going straight ahead (with priority) #> 2776 59 Male Changing lanes or merging #> 2777 49 Male Changing lanes or merging #> 2778 45 Male Going straight ahead (with priority) #> 2779 51 Male Starting in traffic #> 2780 40 Male Parked #> 2781 55 Male Going straight ahead (with priority) #> 2782 14 Male Other #> 2783 52 Male Going straight ahead (with priority) #> 2784 52 Male Going straight ahead (with priority) #> 2785 31 Male Going straight ahead (with priority) #> 2786 40 Male Going straight ahead (with priority) #> 2787 32 Male Going straight ahead (with priority) #> 2788 60 Male Going straight ahead (with priority) #> 2789 67 Male Going straight ahead (with priority) #> 2790 50 Male Changing lanes or merging #> 2791 56 Male Making U turn #> 2792 30 Male Going straight ahead (with priority) #> 2793 52 Male Making left turn #> 2794 59 Male Going straight ahead (with priority) #> 2795 27 Male Going straight ahead (with priority) #> 2796 25 Male Making right turn #> 2797 42 Male Changing lanes or merging #> 2798 40 Male Going straight ahead (with priority) #> 2799 27 Male Going straight ahead (with priority) #> 2800 58 Male Changing lanes or merging #> 2801 35 Male Going straight ahead (with priority) #> 2802 65 Male Going straight ahead (with priority) #> 2803 65 Male Going straight ahead (with priority) #> 2804 23 Male Making right turn #> 2805 NA Not known Changing lanes or merging #> 2806 40 Male Going straight ahead (with priority) #> 2807 62 Male Going Straight Ahead (against priority) #> 2808 50 Male Other #> 2809 58 Male Other #> 2810 22 Male Going straight ahead (with priority) #> 2811 74 Male Going straight ahead (with priority) #> 2812 51 Male Going straight ahead (with priority) #> 2813 34 Male Slowing or stopping #> 2814 38 Male Slowing or stopping #> 2815 NA Not known Going straight ahead (with priority) #> 2816 38 Male Going straight ahead (with priority) #> 2817 73 Male Going straight ahead (with priority) #> 2818 42 Male Going straight ahead (with priority) #> 2819 26 Male Going straight ahead (with priority) #> 2820 28 Female Going straight ahead (with priority) #> 2821 57 Male Going Straight Ahead (against priority) #> 2822 59 Male Going straight ahead (with priority) #> 2823 NA Male Reversing #> 2824 58 Male Making right turn #> 2825 54 Male Going straight ahead (with priority) #> 2826 46 Male Going straight ahead (with priority) #> 2827 45 Female Going straight ahead (with priority) #> 2828 59 Male Going straight ahead (with priority) #> 2829 39 Male Going straight ahead (with priority) #> 2830 39 Male Going straight ahead (with priority) #> 2831 20 Male Going straight ahead (with priority) #> 2832 53 Male Going straight ahead (with priority) #> 2833 43 Male Going straight ahead (with priority) #> 2834 47 Male Going straight ahead (with priority) #> 2835 51 Male Going straight ahead (with priority) #> 2836 42 Male Going straight ahead (with priority) #> 2837 37 Male Going straight ahead (with priority) #> 2838 NA Not known Going straight ahead (with priority) #> 2839 NA Not known Going straight ahead (with priority) #> 2840 29 Male Going straight ahead (with priority) #> 2841 57 Male Parked #> 2842 57 Male Stopped in traffic #> 2843 52 Male Other #> 2844 25 Male Going straight ahead (with priority) #> 2845 37 Male Other #> 2846 53 Male Other #> 2847 33 Female Other #> 2848 59 Male Other #> 2849 27 Male Going Straight Ahead (against priority) #> 2850 29 Male Going straight ahead (with priority) #> 2851 37 Male Going straight ahead (with priority) #> 2852 60 Male Slowing or stopping #> 2853 36 Male Going straight ahead (with priority) #> 2854 21 Female Stopped in traffic #> 2855 35 Male Going straight ahead (with priority) #> 2856 55 Male Going straight ahead (with priority) #> 2857 30 Male Making right turn #> 2858 50 Male Going straight ahead (with priority) #> 2859 30 Male Going straight ahead (with priority) #> 2860 21 Male Going straight ahead (with priority) #> 2861 46 Female Going straight ahead (with priority) #> 2862 51 Male Going straight ahead (with priority) #> 2863 55 Male Going straight ahead (with priority) #> 2864 60 Male Going straight ahead (with priority) #> 2865 52 Male Going straight ahead (with priority) #> 2866 38 Male Reversing #> 2867 53 Male Going straight ahead (with priority) #> 2868 25 Male Reversing #> 2869 38 Male Making right turn #> 2870 55 Male Going Straight Ahead (against priority) #> 2871 26 Male Going straight ahead (with priority) #> 2872 33 Male Going straight ahead (with priority) #> 2873 53 Male Going straight ahead (with priority) #> 2874 53 Male Leaving parking place #> 2875 39 Male Going straight ahead (with priority) #> 2876 51 Male Going straight ahead (with priority) #> 2877 36 Male Changing lanes or merging #> 2878 51 Male Going straight ahead (with priority) #> 2879 46 Female Going straight ahead (with priority) #> 2880 19 Male Going straight ahead (with priority) #> 2881 70 Male Going straight ahead (with priority) #> 2882 54 Male Slowing or stopping #> 2883 64 Male Going straight ahead (with priority) #> 2884 56 Male Going straight ahead (with priority) #> 2885 54 Male Going straight ahead (with priority) #> 2886 54 Male Going straight ahead (with priority) #> 2887 33 Male Going straight ahead (with priority) #> 2888 62 Not known Going straight ahead (with priority) #> 2889 40 Male Going straight ahead (with priority) #> 2890 29 Male Going straight ahead (with priority) #> 2891 42 Male Going straight ahead (with priority) #> 2892 42 Female Going straight ahead (with priority) #> 2893 26 Male Going straight ahead (with priority) #> 2894 58 Male Going straight ahead (with priority) #> 2895 57 Male Going straight ahead (with priority) #> 2896 65 Male Going straight ahead (with priority) #> 2897 25 Male Going straight ahead (with priority) #> 2898 21 Male Overtaking on near-side #> 2899 56 Male Stopped in traffic #> 2900 51 Male Making right turn #> 2901 64 Male Slowing or stopping #> 2902 40 Male Going straight ahead (with priority) #> 2903 32 Female Going straight ahead (with priority) #> 2904 48 Male Going Straight Ahead (against priority) #> 2905 35 Female Going Straight Ahead (against priority) #> 2906 51 Female Going Straight Ahead (against priority) #> 2907 47 Male Going straight ahead (with priority) #> 2908 28 Male Going Straight Ahead (against priority) #> 2909 40 Male Making right turn #> 2910 36 Male Going straight ahead (with priority) #> 2911 40 Male Going straight ahead (with priority) #> 2912 NA Not known Making left turn #> 2913 60 Male Going straight ahead (with priority) #> 2914 36 Male Going straight ahead (with priority) #> 2915 49 Male Going straight ahead (with priority) #> 2916 65 Male Changing lanes or merging #> 2917 47 Male Going straight ahead (with priority) #> 2918 50 Male Going straight ahead (with priority) #> 2919 71 Female Going straight ahead (with priority) #> 2920 58 Male Going straight ahead (with priority) #> 2921 50 Male Going straight ahead (with priority) #> 2922 48 Male Going straight ahead (with priority) #> 2923 44 Male Changing lanes or merging #> 2924 23 Male Reversing #> 2925 47 Male Stopped in traffic #> 2926 56 Male Going straight ahead (with priority) #> 2927 62 Male Going straight ahead (with priority) #> 2928 44 Male Other #> 2929 36 Female Other #> 2930 42 Male Other #> 2931 56 Female Going straight ahead (with priority) #> 2932 51 Male Going straight ahead (with priority) #> 2933 32 Female Going straight ahead (with priority) #> 2934 61 Male Going straight ahead (with priority) #> 2935 58 Male Going straight ahead (with priority) #> 2936 48 Male Changing lanes or merging #> 2937 49 Male Making right turn #> 2938 55 Male Making right turn #> 2939 51 Male Going straight ahead (with priority) #> 2940 NA Not known Changing lanes or merging #> 2941 NA Not known Changing lanes or merging #> 2942 50 Female Reversing #> 2943 NA Not known Starting in traffic #> 2944 48 Male Going straight ahead (with priority) #> 2945 54 Male Other #> 2946 55 Female Reversing #> 2947 57 Male Unknown #> 2948 46 Male Other #> 2949 52 Male Other #> 2950 41 Male Going straight ahead (with priority) #> 2951 NA Not known Changing lanes or merging #> 2952 43 Male Other #> 2953 51 Male Going straight ahead (with priority) #> 2954 22 Male Going straight ahead (with priority) #> 2955 63 Male Going Straight Ahead (against priority) #> 2956 51 Male Going Straight Ahead (against priority) #> 2957 55 Male Going straight ahead (with priority) #> 2958 44 Male Going straight ahead (with priority) #> 2959 47 Male Slowing or stopping #> 2960 45 Male Going straight ahead (with priority) #> 2961 63 Male Going straight ahead (with priority) #> 2962 63 Male Going straight ahead (with priority) #> 2963 56 Male Going Straight Ahead (against priority) #> 2964 50 Male Going straight ahead (with priority) #> 2965 43 Male Going straight ahead (with priority) #> 2966 39 Male Other #> 2967 55 Male Going straight ahead (with priority) #> 2968 53 Male Going straight ahead (with priority) #> 2969 62 Male Going straight ahead (with priority) #> 2970 55 Male Going Straight Ahead (against priority) #> 2971 35 Female Stopped in traffic #> 2972 46 Male Going straight ahead (with priority) #> 2973 59 Male Making left turn #> 2974 57 Male Slowing or stopping #> 2975 47 Female Going straight ahead (with priority) #> 2976 58 Male Going straight ahead (with priority) #> 2977 51 Male Making right turn #> 2978 39 Female Making left turn #> 2979 30 Male Making left turn #> 2980 32 Male Going straight ahead (with priority) #> 2981 55 Male Going straight ahead (with priority) #> 2982 60 Male Going straight ahead (with priority) #> 2983 54 Male Other #> 2984 57 Male Going straight ahead (with priority) #> 2985 50 Male Going straight ahead (with priority) #> 2986 48 Male Going Straight Ahead (against priority) #> 2987 50 Male Going straight ahead (with priority) #> 2988 50 Male Changing lanes or merging #> 2989 71 Male Making right turn #> 2990 13 Male Going straight ahead (with priority) #> 2991 52 Male Going straight ahead (with priority) #> 2992 64 Male Going straight ahead (with priority) #> 2993 47 Male Going straight ahead (with priority) #> 2994 NA Not known Reversing #> 2995 55 Male Going straight ahead (with priority) #> 2996 61 Male Going straight ahead (with priority) #> 2997 51 Male Going straight ahead (with priority) #> 2998 52 Male Going straight ahead (with priority) #> 2999 47 Male Unknown #> 3000 58 Male Going straight ahead (with priority) #> 3001 36 Male Parked #> 3002 32 Male Parked #> 3003 25 Male Going straight ahead (with priority) #> 3004 47 Male Going straight ahead (with priority) #> 3005 55 Female Going straight ahead (with priority) #> 3006 59 Male Going straight ahead (with priority) #> 3007 25 Male Going straight ahead (with priority) #> 3008 40 Male Going straight ahead (with priority) #> 3009 56 Male Other #> 3010 47 Male Going straight ahead (with priority) #> 3011 54 Male Going straight ahead (with priority) #> 3012 42 Male Going straight ahead (with priority) #> 3013 42 Male Going straight ahead (with priority) #> 3014 36 Male Going straight ahead (with priority) #> 3015 43 Male Starting in traffic #> 3016 52 Male Other #> 3017 59 Female Going straight ahead (with priority) #> 3018 65 Male Going straight ahead (with priority) #> 3019 NA Not known Going straight ahead (with priority) #> 3020 63 Male Stopped in traffic #> 3021 40 Male Going straight ahead (with priority) #> 3022 54 Male Going straight ahead (with priority) #> 3023 66 Male Going straight ahead (with priority) #> 3024 57 Male Parked #> 3025 33 Male Going straight ahead (with priority) #> 3026 32 Male Going straight ahead (with priority) #> 3027 36 Male Going straight ahead (with priority) #> 3028 41 Female Going straight ahead (with priority) #> 3029 32 Male Going straight ahead (with priority) #> 3030 57 Male Going straight ahead (with priority) #> 3031 55 Male Going straight ahead (with priority) #> 3032 55 Male Reversing #> 3033 74 Male Going straight ahead (with priority) #> 3034 57 Male Going Straight Ahead (against priority) #> 3035 22 Male Going straight ahead (with priority) #> 3036 53 Male Making U turn #> 3037 40 Female Going straight ahead (with priority) #> 3038 57 Male Going straight ahead (with priority) #> 3039 35 Male Going straight ahead (with priority) #> 3040 64 Male Going Straight Ahead (against priority) #> 3041 45 Male Going straight ahead (with priority) #> 3042 55 Male Going straight ahead (with priority) #> 3043 47 Female Going straight ahead (with priority) #> 3044 52 Male Going straight ahead (with priority) #> 3045 49 Male Going straight ahead (with priority) #> 3046 47 Male Starting in traffic #> 3047 50 Male Going straight ahead (with priority) #> 3048 51 Male Going straight ahead (with priority) #> 3049 30 Male Making right turn #> 3050 52 Male Stopped in traffic #> 3051 56 Male Going straight ahead (with priority) #> 3052 36 Male Going straight ahead (with priority) #> 3053 67 Male Going straight ahead (with priority) #> 3054 38 Male Going straight ahead (with priority) #> 3055 60 Male Slowing or stopping #> 3056 57 Male Going straight ahead (with priority) #> 3057 54 Male Making U turn #> 3058 31 Male Going straight ahead (with priority) #> 3059 42 Male Changing lanes or merging #> 3060 48 Male Going straight ahead (with priority) #> 3061 50 Male Changing lanes or merging #> 3062 30 Male Changing lanes or merging #> 3063 40 Male Going straight ahead (with priority) #> 3064 45 Female Going straight ahead (with priority) #> 3065 36 Male Going straight ahead (with priority) #> 3066 28 Male Making left turn #> 3067 32 Male Other #> 3068 53 Male Going straight ahead (with priority) #> 3069 49 Female Going straight ahead (with priority) #> 3070 15 Male Going straight ahead (with priority) #> 3071 74 Male Going straight ahead (with priority) #> 3072 56 Male Stopped in traffic #> 3073 66 Male Making right turn #> 3074 20 Male Going straight ahead (with priority) #> 3075 33 Male Going straight ahead (with priority) #> 3076 60 Male Going straight ahead (with priority) #> 3077 35 Male Going straight ahead (with priority) #> 3078 35 Male Going straight ahead (with priority) #> 3079 52 Male Making right turn #> 3080 52 Female Going straight ahead (with priority) #> 3081 35 Male Making left turn #> 3082 52 Male Going straight ahead (with priority) #> 3083 19 Male Going straight ahead (with priority) #> 3084 35 Male Making left turn #> 3085 42 Male Going Straight Ahead (against priority) #> 3086 66 Male Going Straight Ahead (against priority) #> 3087 60 Male Going straight ahead (with priority) #> 3088 37 Male Going straight ahead (with priority) #> 3089 57 Male Going straight ahead (with priority) #> 3090 46 Male Going straight ahead (with priority) #> 3091 62 Male Changing lanes or merging #> 3092 39 Male Going straight ahead (with priority) #> 3093 47 Male Going straight ahead (with priority) #> 3094 49 Male Going straight ahead (with priority) #> 3095 30 Male Making right turn #> 3096 26 Male Going straight ahead (with priority) #> 3097 56 Male Going straight ahead (with priority) #> 3098 43 Male Making right turn #> 3099 53 Male Going straight ahead (with priority) #> 3100 58 Male Going straight ahead (with priority) #> 3101 62 Male Reversing #> 3102 41 Male Other #> 3103 50 Male Going straight ahead (with priority) #> 3104 47 Male Going straight ahead (with priority) #> 3105 NA Not known Changing lanes or merging #> 3106 65 Male Going straight ahead (with priority) #> 3107 47 Male Making left turn #> 3108 46 Male Going straight ahead (with priority) #> 3109 55 Male Going straight ahead (with priority) #> 3110 NA Not known Going straight ahead (with priority) #> 3111 46 Male Going straight ahead (with priority) #> 3112 47 Male Going straight ahead (with priority) #> 3113 24 Male Going straight ahead (with priority) #> 3114 58 Male Changing lanes or merging #> 3115 47 Male Changing lanes or merging #> 3116 40 Male Going straight ahead (with priority) #> 3117 56 Male Going straight ahead (with priority) #> 3118 46 Male Going straight ahead (with priority) #> 3119 53 Male Going straight ahead (with priority) #> 3120 38 Male Making right turn #> 3121 38 Male Going straight ahead (with priority) #> 3122 50 Male Going straight ahead (with priority) #> 3123 52 Male Going straight ahead (with priority) #> 3124 50 Male Going straight ahead (with priority) #> 3125 43 Male Going straight ahead (with priority) #> 3126 53 Male Going straight ahead (with priority) #> 3127 30 Male Going straight ahead (with priority) #> 3128 64 Male Going straight ahead (with priority) #> 3129 61 Male Going straight ahead (with priority) #> 3130 26 Male Reversing #> 3131 55 Male Going straight ahead (with priority) #> 3132 50 Male Going straight ahead (with priority) #> 3133 34 Male Going straight ahead (with priority) #> 3134 38 Male Going straight ahead (with priority) #> 3135 39 Male Going straight ahead (with priority) #> 3136 49 Male Going straight ahead (with priority) #> 3137 38 Female Making right turn #> 3138 58 Male Going straight ahead (with priority) #> 3139 48 Male Going straight ahead (with priority) #> 3140 NA Not known Going straight ahead (with priority) #> 3141 49 Male Going straight ahead (with priority) #> 3142 42 Male Going straight ahead (with priority) #> 3143 57 Male Going straight ahead (with priority) #> 3144 66 Male Going straight ahead (with priority) #> 3145 42 Male Going straight ahead (with priority) #> 3146 NA Not known Changing lanes or merging #> 3147 52 Male Going straight ahead (with priority) #> 3148 38 Male Slowing or stopping #> 3149 55 Male Going straight ahead (with priority) #> 3150 58 Male Stopped in traffic #> 3151 64 Female Parked #> 3152 60 Male Going straight ahead (with priority) #> 3153 45 Male Going straight ahead (with priority) #> 3154 52 Male Overtaking on off-side #> 3155 41 Male Slowing or stopping #> 3156 53 Male Reversing #> 3157 69 Male Making right turn #> 3158 57 Male Going straight ahead (with priority) #> 3159 40 Male Going straight ahead (with priority) #> 3160 24 Male Parked #> 3161 49 Male Stopped in traffic #> 3162 30 Male Going straight ahead (with priority) #> 3163 59 Male Going straight ahead (with priority) #> 3164 70 Male Going straight ahead (with priority) #> 3165 36 Female Going straight ahead (with priority) #> 3166 39 Male Going straight ahead (with priority) #> 3167 62 Male Going straight ahead (with priority) #> 3168 33 Male Going straight ahead (with priority) #> 3169 27 Male Going straight ahead (with priority) #> 3170 60 Female Going straight ahead (with priority) #> 3171 40 Male Going straight ahead (with priority) #> 3172 55 Male Going straight ahead (with priority) #> 3173 77 Male Going straight ahead (with priority) #> 3174 33 Male Going straight ahead (with priority) #> 3175 49 Male Making right turn #> 3176 27 Male Other #> 3177 46 Male Going straight ahead (with priority) #> 3178 38 Male Going straight ahead (with priority) #> 3179 48 Male Making right turn #> 3180 45 Male Reversing #> 3181 51 Male Slowing or stopping #> 3182 69 Male Making right turn #> 3183 46 Male Going straight ahead (with priority) #> 3184 53 Male Going straight ahead (with priority) #> 3185 27 Male Going straight ahead (with priority) #> 3186 54 Male Going straight ahead (with priority) #> 3187 64 Female Other #> 3188 65 Male Going straight ahead (with priority) #> 3189 42 Male Changing lanes or merging #> 3190 65 Male Going straight ahead (with priority) #> 3191 NA Not known Unknown #> 3192 61 Male Going straight ahead (with priority) #> 3193 49 Male Making left turn #> 3194 53 Male Going straight ahead (with priority) #> 3195 58 Male Parked #> 3196 44 Male Changing lanes or merging #> 3197 62 Male Going straight ahead (with priority) #> 3198 62 Male Slowing or stopping #> 3199 56 Male Changing lanes or merging #> 3200 32 Male Changing lanes or merging #> 3201 66 Male Going straight ahead (with priority) #> 3202 56 Female Going straight ahead (with priority) #> 3203 65 Male Going straight ahead (with priority) #> 3204 54 Male Making right turn #> 3205 33 Male Going straight ahead (with priority) #> 3206 NA Not known Unknown #> 3207 60 Male Going straight ahead (with priority) #> 3208 46 Female Slowing or stopping #> 3209 44 Male Slowing or stopping #> 3210 59 Male Going straight ahead (with priority) #> 3211 39 Male Making right turn #> 3212 26 Male Going straight ahead (with priority) #> 3213 35 Male Going straight ahead (with priority) #> 3214 49 Male Going straight ahead (with priority) #> 3215 39 Male Going straight ahead (with priority) #> 3216 60 Male Making right turn #> 3217 50 Male Going straight ahead (with priority) #> 3218 55 Male Going straight ahead (with priority) #> 3219 52 Male Going straight ahead (with priority) #> 3220 69 Female Making right turn #> 3221 21 Male Going straight ahead (with priority) #> 3222 49 Male Going straight ahead (with priority) #> 3223 NA Not known Making right turn #> 3224 29 Male Going straight ahead (with priority) #> 3225 41 Male Slowing or stopping #> 3226 27 Male Changing lanes or merging #> 3227 43 Male Going Straight Ahead (against priority) #> 3228 31 Male Changing lanes or merging #> 3229 27 Male Starting in traffic #> 3230 36 Male Slowing or stopping #> 3231 64 Male Going straight ahead (with priority) #> 3232 41 Male Going straight ahead (with priority) #> 3233 38 Male Parked #> 3234 34 Male Parked #> 3235 62 Male Going Straight Ahead (against priority) #> 3236 56 Male Starting in traffic #> 3237 50 Male Going straight ahead (with priority) #> 3238 59 Male Going straight ahead (with priority) #> 3239 48 Female Going straight ahead (with priority) #> 3240 20 Male Making left turn #> 3241 52 Male Going straight ahead (with priority) #> 3242 40 Male Making left turn #> 3243 29 Male Changing lanes or merging #> 3244 53 Female Going straight ahead (with priority) #> 3245 40 Male Going straight ahead (with priority) #> 3246 66 Female Making left turn #> 3247 45 Male Going straight ahead (with priority) #> 3248 35 Male Stopped in traffic #> 3249 38 Female Going straight ahead (with priority) #> 3250 62 Male Going straight ahead (with priority) #> 3251 60 Male Going straight ahead (with priority) #> 3252 32 Male Going straight ahead (with priority) #> 3253 45 Male Going straight ahead (with priority) #> 3254 43 Female Reversing #> 3255 61 Male Stopped in traffic #> 3256 20 Male Going straight ahead (with priority) #> 3257 39 Male Going straight ahead (with priority) #> 3258 60 Male Going straight ahead (with priority) #> 3259 45 Male Going straight ahead (with priority) #> 3260 28 Male Going straight ahead (with priority) #> 3261 41 Male Going straight ahead (with priority) #> 3262 42 Male Going straight ahead (with priority) #> 3263 67 Male Making left turn #> 3264 NA Not known Unknown #> 3265 58 Male Slowing or stopping #> 3266 51 Male Slowing or stopping #> 3267 59 Male Going straight ahead (with priority) #> 3268 30 Male Going straight ahead (with priority) #> 3269 39 Male Going straight ahead (with priority) #> 3270 NA Not known Unknown #> 3271 36 Male Reversing #> 3272 NA Not known Going Straight Ahead (against priority) #> 3273 77 Male Going straight ahead (with priority) #> 3274 27 Male Going straight ahead (with priority) #> 3275 36 Male Going straight ahead (with priority) #> 3276 38 Male Going straight ahead (with priority) #> 3277 59 Male Making left turn #> 3278 25 Male Going straight ahead (with priority) #> 3279 39 Male Slowing or stopping #> 3280 55 Male Slowing or stopping #> 3281 41 Male Slowing or stopping #> 3282 30 Male Slowing or stopping #> 3283 28 Female Slowing or stopping #> 3284 22 Male Going straight ahead (with priority) #> 3285 53 Female Going straight ahead (with priority) #> 3286 28 Male Going straight ahead (with priority) #> 3287 37 Male Going straight ahead (with priority) #> 3288 37 Male Going straight ahead (with priority) #> 3289 57 Male Going straight ahead (with priority) #> 3290 24 Male Going straight ahead (with priority) #> 3291 52 Male Going straight ahead (with priority) #> 3292 50 Male Going straight ahead (with priority) #> 3293 45 Male Making right turn #> 3294 58 Male Slowing or stopping #> 3295 49 Male Going straight ahead (with priority) #> 3296 26 Male Making left turn #> 3297 38 Male Going straight ahead (with priority) #> 3298 26 Male Changing lanes or merging #> 3299 32 Male Making left turn #> 3300 57 Male Going straight ahead (with priority) #> 3301 58 Male Going straight ahead (with priority) #> 3302 55 Male Going straight ahead (with priority) #> 3303 25 Male Going straight ahead (with priority) #> 3304 59 Male Going straight ahead (with priority) #> 3305 34 Male Going straight ahead (with priority) #> 3306 22 Male Going Straight Ahead (against priority) #> 3307 84 Female Making right turn #> 3308 64 Male Going straight ahead (with priority) #> 3309 8 Male Going straight ahead (with priority) #> 3310 47 Male Going straight ahead (with priority) #> 3311 63 Male Going straight ahead (with priority) #> 3312 22 Male Going straight ahead (with priority) #> 3313 37 Male Starting in traffic #> 3314 50 Male Going straight ahead (with priority) #> 3315 39 Male Going straight ahead (with priority) #> 3316 41 Male Going straight ahead (with priority) #> 3317 66 Male Going straight ahead (with priority) #> 3318 51 Male Making left turn #> 3319 54 Male Going straight ahead (with priority) #> 3320 42 Male Going straight ahead (with priority) #> 3321 59 Male Starting in traffic #> 3322 41 Female Going straight ahead (with priority) #> 3323 63 Male Making right turn #> 3324 53 Male Making left turn #> 3325 57 Male Going straight ahead (with priority) #> 3326 61 Female Going straight ahead (with priority) #> 3327 64 Male Going straight ahead (with priority) #> 3328 65 Male Going straight ahead (with priority) #> 3329 63 Male Going straight ahead (with priority) #> 3330 36 Female Making left turn #> 3331 60 Male Stopped in traffic #> 3332 65 Male Going straight ahead (with priority) #> 3333 51 Male Going straight ahead (with priority) #> 3334 49 Male Leaving parking place #> 3335 29 Male Going straight ahead (with priority) #> 3336 58 Male Going straight ahead (with priority) #> 3337 42 Female Going straight ahead (with priority) #> 3338 48 Male Going straight ahead (with priority) #> 3339 49 Male Going straight ahead (with priority) #> 3340 51 Female Changing lanes or merging #> 3341 77 Male Making right turn #> 3342 32 Male Making right turn #> 3343 39 Male Going straight ahead (with priority) #> 3344 46 Male Going straight ahead (with priority) #> 3345 41 Male Going straight ahead (with priority) #> 3346 58 Male Going straight ahead (with priority) #> 3347 36 Female Going straight ahead (with priority) #> 3348 44 Male Going straight ahead (with priority) #> 3349 51 Male Going straight ahead (with priority) #> 3350 43 Male Going straight ahead (with priority) #> 3351 53 Male Stopped in traffic #> 3352 33 Male Going straight ahead (with priority) #> 3353 46 Male Going straight ahead (with priority) #> 3354 57 Male Going straight ahead (with priority) #> 3355 39 Male Going straight ahead (with priority) #> 3356 68 Male Going straight ahead (with priority) #> 3357 66 Male Going straight ahead (with priority) #> 3358 65 Male Going straight ahead (with priority) #> 3359 58 Male Going straight ahead (with priority) #> 3360 59 Male Going straight ahead (with priority) #> 3361 NA Not known Unknown #> 3362 59 Male Going straight ahead (with priority) #> 3363 51 Male Going straight ahead (with priority) #> 3364 68 Male Changing lanes or merging #> 3365 28 Male Going straight ahead (with priority) #> 3366 NA Not known Unknown #> 3367 59 Male Going straight ahead (with priority) #> 3368 44 Male Making right turn #> 3369 35 Male Going straight ahead (with priority) #> 3370 43 Male Going straight ahead (with priority) #> 3371 37 Male Going straight ahead (with priority) #> 3372 49 Male Making left turn #> 3373 21 Male Overtaking on near-side #> 3374 49 Male Stopped in traffic #> 3375 49 Male Going straight ahead (with priority) #> 3376 25 Male Changing lanes or merging #> 3377 32 Male Making left turn #> 3378 NA Not known Going straight ahead (with priority) #> 3379 64 Male Going straight ahead (with priority) #> 3380 35 Male Making right turn #> 3381 58 Male Going straight ahead (with priority) #> 3382 37 Male Going straight ahead (with priority) #> 3383 45 Male Going straight ahead (with priority) #> 3384 52 Male Making right turn #> 3385 61 Male Going straight ahead (with priority) #> 3386 48 Male Parked #> 3387 53 Female Going straight ahead (with priority) #> 3388 48 Male Going straight ahead (with priority) #> 3389 54 Male Going straight ahead (with priority) #> 3390 49 Male Going straight ahead (with priority) #> 3391 48 Male Going straight ahead (with priority) #> 3392 56 Male Going straight ahead (with priority) #> 3393 55 Male Going straight ahead (with priority) #> 3394 31 Male Going straight ahead (with priority) #> 3395 59 Male Going straight ahead (with priority) #> 3396 42 Male Going straight ahead (with priority) #> 3397 58 Male Going straight ahead (with priority) #> 3398 29 Male Making left turn #> 3399 30 Male Going straight ahead (with priority) #> 3400 46 Male Slowing or stopping #> 3401 45 Male Going straight ahead (with priority) #> 3402 60 Male Slowing or stopping #> 3403 35 Male Going straight ahead (with priority) #> 3404 49 Male Going straight ahead (with priority) #> 3405 55 Male Making right turn #> 3406 57 Male Starting in traffic #> 3407 33 Male Slowing or stopping #> 3408 47 Male Going straight ahead (with priority) #> 3409 30 Male Going straight ahead (with priority) #> 3410 58 Male Going straight ahead (with priority) #> 3411 52 Male Changing lanes or merging #> 3412 54 Male Going straight ahead (with priority) #> 3413 66 Male Going straight ahead (with priority) #> 3414 38 Male Making left turn #> 3415 9 Male Going straight ahead (with priority) #> 3416 30 Male Going straight ahead (with priority) #> 3417 25 Male Going straight ahead (with priority) #> 3418 52 Female Going straight ahead (with priority) #> 3419 33 Male Going straight ahead (with priority) #> 3420 22 Male Making right turn #> 3421 51 Male Going straight ahead (with priority) #> 3422 39 Male Going straight ahead (with priority) #> 3423 28 Male Going straight ahead (with priority) #> 3424 53 Male Going straight ahead (with priority) #> 3425 32 Male Going Straight Ahead (against priority) #> 3426 57 Male Parked #> 3427 26 Male Other #> 3428 36 Male Overtaking on off-side #> 3429 34 Male Slowing or stopping #> 3430 29 Male Going straight ahead (with priority) #> 3431 32 Male Going straight ahead (with priority) #> 3432 54 Male Going straight ahead (with priority) #> 3433 31 Male Going straight ahead (with priority) #> 3434 43 Male Making right turn #> 3435 47 Male Stopped in traffic #> 3436 63 Male Slowing or stopping #> 3437 60 Male Going Straight Ahead (against priority) #> 3438 41 Male Going straight ahead (with priority) #> 3439 65 Male Going Straight Ahead (against priority) #> 3440 34 Male Going straight ahead (with priority) #> 3441 46 Female Changing lanes or merging #> 3442 56 Male Going straight ahead (with priority) #> 3443 47 Male Slowing or stopping #> 3444 45 Male Going straight ahead (with priority) #> 3445 68 Female Going straight ahead (with priority) #> 3446 57 Male Stopped in traffic #> 3447 59 Male Going straight ahead (with priority) #> 3448 46 Male Going straight ahead (with priority) #> 3449 42 Male Going straight ahead (with priority) #> 3450 51 Male Going straight ahead (with priority) #> 3451 50 Male Going straight ahead (with priority) #> 3452 66 Male Making right turn #> 3453 28 Male Going straight ahead (with priority) #> 3454 63 Male Going straight ahead (with priority) #> 3455 54 Male Slowing or stopping #> 3456 61 Male Going straight ahead (with priority) #> 3457 38 Male Going straight ahead (with priority) #> 3458 26 Male Going straight ahead (with priority) #> 3459 52 Male Going straight ahead (with priority) #> 3460 47 Male Going straight ahead (with priority) #> 3461 42 Male Going straight ahead (with priority) #> 3462 NA Not known Going straight ahead (with priority) #> 3463 53 Male Going straight ahead (with priority) #> 3464 53 Male Going straight ahead (with priority) #> 3465 63 Male Going Straight Ahead (against priority) #> 3466 47 Male Going straight ahead (with priority) #> 3467 31 Male Going straight ahead (with priority) #> 3468 54 Male Making right turn #> 3469 47 Male Going straight ahead (with priority) #> 3470 NA Not known Slowing or stopping #> 3471 41 Male Going straight ahead (with priority) #> 3472 70 Male Stopped in traffic #> 3473 39 Male Overtaking on near-side #> 3474 49 Male Going straight ahead (with priority) #> 3475 51 Male Going straight ahead (with priority) #> 3476 53 Male Going straight ahead (with priority) #> 3477 46 Male Going straight ahead (with priority) #> 3478 31 Male Going straight ahead (with priority) #> 3479 64 Male Going straight ahead (with priority) #> 3480 25 Male Going straight ahead (with priority) #> 3481 57 Male Going straight ahead (with priority) #> 3482 NA Not known Going straight ahead (with priority) #> 3483 58 Male Going straight ahead (with priority) #> 3484 30 Male Going straight ahead (with priority) #> 3485 51 Male Going straight ahead (with priority) #> 3486 46 Male Going Straight Ahead (against priority) #> 3487 59 Male Going Straight Ahead (against priority) #> 3488 50 Male Going Straight Ahead (against priority) #> 3489 39 Female Going straight ahead (with priority) #> 3490 47 Male Going straight ahead (with priority) #> 3491 46 Male Going straight ahead (with priority) #> 3492 52 Female Going straight ahead (with priority) #> 3493 43 Male Going straight ahead (with priority) #> 3494 50 Male Going straight ahead (with priority) #> 3495 61 Male Going straight ahead (with priority) #> 3496 58 Male Going straight ahead (with priority) #> 3497 36 Male Going straight ahead (with priority) #> 3498 NA Not known Going straight ahead (with priority) #> 3499 77 Male Going straight ahead (with priority) #> 3500 63 Male Stopped in traffic #> 3501 63 Male Stopped in traffic #> 3502 56 Male Making right turn #> 3503 44 Male Making right turn #> 3504 45 Female Making left turn #> 3505 34 Female Slowing or stopping #> 3506 63 Male Going straight ahead (with priority) #> 3507 43 Female Making right turn #> 3508 34 Male Going straight ahead (with priority) #> 3509 25 Male Going straight ahead (with priority) #> 3510 38 Female Going straight ahead (with priority) #> 3511 61 Male Going straight ahead (with priority) #> 3512 59 Male Going straight ahead (with priority) #> 3513 32 Male Going straight ahead (with priority) #> 3514 61 Male Making left turn #> 3515 35 Male Going straight ahead (with priority) #> 3516 28 Male Going straight ahead (with priority) #> 3517 40 Male Going straight ahead (with priority) #> 3518 40 Male Going straight ahead (with priority) #> 3519 38 Male Going straight ahead (with priority) #> 3520 45 Male Reversing #> 3521 56 Male Going straight ahead (with priority) #> 3522 59 Male Going straight ahead (with priority) #> 3523 33 Male Going straight ahead (with priority) #> 3524 36 Male Going straight ahead (with priority) #> 3525 43 Male Going straight ahead (with priority) #> 3526 42 Male Making left turn #> 3527 39 Male Making right turn #> 3528 59 Male Going straight ahead (with priority) #> 3529 33 Male Stopped in traffic #> 3530 51 Male Going straight ahead (with priority) #> 3531 66 Male Going straight ahead (with priority) #> 3532 25 Female Going straight ahead (with priority) #> 3533 44 Male Changing lanes or merging #> 3534 42 Female Stopped in traffic #> 3535 55 Male Slowing or stopping #> 3536 24 Female Going straight ahead (with priority) #> 3537 47 Male Going straight ahead (with priority) #> 3538 53 Male Changing lanes or merging #> 3539 65 Male Going straight ahead (with priority) #> 3540 53 Male Making left turn #> 3541 39 Male Making right turn #> 3542 52 Male Going straight ahead (with priority) #> 3543 45 Male Going straight ahead (with priority) #> 3544 44 Male Starting in traffic #> 3545 54 Male Going straight ahead (with priority) #> 3546 41 Male Going straight ahead (with priority) #> 3547 53 Female Going straight ahead (with priority) #> 3548 30 Male Going straight ahead (with priority) #> 3549 32 Male Going straight ahead (with priority) #> 3550 57 Male Going straight ahead (with priority) #> 3551 29 Male Going straight ahead (with priority) #> 3552 53 Male Going straight ahead (with priority) #> 3553 40 Male Going straight ahead (with priority) #> 3554 61 Male Going straight ahead (with priority) #> 3555 51 Male Going straight ahead (with priority) #> 3556 53 Male Going straight ahead (with priority) #> 3557 NA Male Reversing #> 3558 63 Male Going straight ahead (with priority) #> 3559 28 Male Going straight ahead (with priority) #> 3560 33 Male Going straight ahead (with priority) #> 3561 45 Male Changing lanes or merging #> 3562 51 Male Going straight ahead (with priority) #> 3563 56 Male Going straight ahead (with priority) #> 3564 53 Male Going straight ahead (with priority) #> 3565 33 Male Going straight ahead (with priority) #> 3566 35 Male Going straight ahead (with priority) #> 3567 22 Male Going straight ahead (with priority) #> 3568 41 Male Parked #> 3569 36 Male Going straight ahead (with priority) #> 3570 55 Male Going straight ahead (with priority) #> 3571 68 Male Making left turn #> 3572 62 Male Going straight ahead (with priority) #> 3573 73 Male Making left turn #> 3574 52 Male Going straight ahead (with priority) #> 3575 50 Male Going straight ahead (with priority) #> 3576 40 Male Slowing or stopping #> 3577 62 Male Going straight ahead (with priority) #> 3578 36 Male Going straight ahead (with priority) #> 3579 54 Female Going Straight Ahead (against priority) #> 3580 53 Male Going straight ahead (with priority) #> 3581 60 Male Going straight ahead (with priority) #> 3582 47 Male Going straight ahead (with priority) #> 3583 53 Male Making left turn #> 3584 26 Male Making left turn #> 3585 31 Male Stopped in traffic #> 3586 36 Male Reversing #> 3587 55 Male Stopped in traffic #> 3588 58 Male Going straight ahead (with priority) #> 3589 59 Male Going straight ahead (with priority) #> 3590 29 Male Going straight ahead (with priority) #> 3591 65 Male Making right turn #> 3592 49 Male Going straight ahead (with priority) #> 3593 62 Male Going Straight Ahead (against priority) #> 3594 63 Male Slowing or stopping #> 3595 56 Male Going straight ahead (with priority) #> 3596 54 Male Making right turn #> 3597 29 Male Going straight ahead (with priority) #> 3598 25 Male Parked #> 3599 49 Female Making left turn #> 3600 51 Male Making right turn #> 3601 59 Male Making right turn #> 3602 57 Male Going straight ahead (with priority) #> 3603 44 Male Going straight ahead (with priority) #> 3604 46 Male Going straight ahead (with priority) #> 3605 59 Male Stopped in traffic #> 3606 47 Male Going straight ahead (with priority) #> 3607 52 Male Slowing or stopping #> 3608 57 Male Going straight ahead (with priority) #> 3609 30 Male Making right turn #> 3610 48 Male Going straight ahead (with priority) #> 3611 NA Not known Going straight ahead (with priority) #> 3612 50 Male Changing lanes or merging #> 3613 26 Male Going straight ahead (with priority) #> 3614 48 Male Going straight ahead (with priority) #> 3615 41 Male Going straight ahead (with priority) #> 3616 49 Male Stopped in traffic #> 3617 38 Male Going straight ahead (with priority) #> 3618 64 Male Reversing #> 3619 28 Male Going Straight Ahead (against priority) #> 3620 39 Male Slowing or stopping #> 3621 56 Male Going straight ahead (with priority) #> 3622 62 Male Changing lanes or merging #> 3623 53 Male Going straight ahead (with priority) #> 3624 27 Male Going straight ahead (with priority) #> 3625 27 Male Going straight ahead (with priority) #> 3626 44 Male Going straight ahead (with priority) #> 3627 44 Male Making U turn #> 3628 64 Male Making left turn #> 3629 24 Female Making left turn #> 3630 62 Male Going straight ahead (with priority) #> 3631 54 Male Going Straight Ahead (against priority) #> 3632 74 Male Going straight ahead (with priority) #> 3633 33 Female Going straight ahead (with priority) #> 3634 32 Male Going straight ahead (with priority) #> 3635 36 Male Going straight ahead (with priority) #> 3636 38 Male Going straight ahead (with priority) #> 3637 42 Male Going straight ahead (with priority) #> 3638 NA Male Changing lanes or merging #> 3639 57 Male Going straight ahead (with priority) #> 3640 57 Male Parked #> 3641 45 Male Slowing or stopping #> 3642 43 Male Going straight ahead (with priority) #> 3643 47 Male Going straight ahead (with priority) #> 3644 59 Male Going straight ahead (with priority) #> 3645 36 Female Making left turn #> 3646 63 Male Going straight ahead (with priority) #> 3647 60 Male Making left turn #> 3648 63 Male Making right turn #> 3649 55 Male Going straight ahead (with priority) #> 3650 65 Male Going straight ahead (with priority) #> 3651 53 Male Going straight ahead (with priority) #> 3652 25 Male Going straight ahead (with priority) #> 3653 NA Not known Making right turn #> 3654 63 Male Going straight ahead (with priority) #> 3655 55 Female Making left turn #> 3656 46 Male Going straight ahead (with priority) #> 3657 51 Female Slowing or stopping #> 3658 31 Male Slowing or stopping #> 3659 55 Male Going Straight Ahead (against priority) #> 3660 66 Male Slowing or stopping #> 3661 40 Male Slowing or stopping #> 3662 40 Male Slowing or stopping #> 3663 56 Male Going Straight Ahead (against priority) #> 3664 49 Female Slowing or stopping #> 3665 35 Male Going Straight Ahead (against priority) #> 3666 66 Male Slowing or stopping #> 3667 56 Male Slowing or stopping #> 3668 41 Male Slowing or stopping #> 3669 33 Male Going Straight Ahead (against priority) #> 3670 63 Female Slowing or stopping #> 3671 39 Male Going straight ahead (with priority) #> 3672 62 Male Stopped in traffic #> 3673 38 Male Going straight ahead (with priority) #> 3674 32 Male Going straight ahead (with priority) #> 3675 40 Male Going straight ahead (with priority) #> 3676 24 Male Going straight ahead (with priority) #> 3677 35 Male Going straight ahead (with priority) #> 3678 45 Male Going straight ahead (with priority) #> 3679 41 Male Going straight ahead (with priority) #> 3680 NA Not known Stopped in traffic #> 3681 51 Male Leaving parking place #> 3682 34 Male Changing lanes or merging #> 3683 36 Female Going straight ahead (with priority) #> 3684 50 Male Slowing or stopping #> 3685 36 Male Going straight ahead (with priority) #> 3686 55 Male Going straight ahead (with priority) #> 3687 50 Male Making right turn #> 3688 45 Male Going straight ahead (with priority) #> 3689 61 Male Going straight ahead (with priority) #> 3690 39 Male Slowing or stopping #> 3691 47 Female Going straight ahead (with priority) #> 3692 43 Male Slowing or stopping #> 3693 63 Male Making right turn #> 3694 42 Male Going straight ahead (with priority) #> 3695 39 Male Going straight ahead (with priority) #> 3696 36 Male Going straight ahead (with priority) #> 3697 50 Male Making right turn #> 3698 57 Male Making right turn #> 3699 45 Male Stopped in traffic #> 3700 44 Male Going straight ahead (with priority) #> 3701 49 Male Going straight ahead (with priority) #> 3702 36 Male Changing lanes or merging #> 3703 54 Male Going Straight Ahead (against priority) #> 3704 41 Male Slowing or stopping #> 3705 40 Male Going straight ahead (with priority) #> 3706 33 Male Going straight ahead (with priority) #> 3707 40 Male Going straight ahead (with priority) #> 3708 59 Male Going straight ahead (with priority) #> 3709 31 Male Going straight ahead (with priority) #> 3710 31 Male Changing lanes or merging #> 3711 59 Male Reversing #> 3712 40 Male Stopped in traffic #> 3713 43 Male Going straight ahead (with priority) #> 3714 54 Male Going straight ahead (with priority) #> 3715 57 Male Changing lanes or merging #> 3716 55 Male Going straight ahead (with priority) #> 3717 51 Male Going straight ahead (with priority) #> 3718 42 Male Changing lanes or merging #> 3719 57 Male Going straight ahead (with priority) #> 3720 49 Female Going straight ahead (with priority) #> 3721 41 Male Going straight ahead (with priority) #> 3722 54 Male Making right turn #> 3723 58 Male Making right turn #> 3724 62 Male Going straight ahead (with priority) #> 3725 36 Male Going straight ahead (with priority) #> 3726 31 Male Going straight ahead (with priority) #> 3727 40 Male Going straight ahead (with priority) #> 3728 62 Male Going straight ahead (with priority) #> 3729 46 Male Going straight ahead (with priority) #> 3730 31 Male Going straight ahead (with priority) #> 3731 47 Male Making right turn #> 3732 60 Male Going straight ahead (with priority) #> 3733 62 Male Making right turn #> 3734 50 Male Going straight ahead (with priority) #> 3735 NA Not known Reversing #> 3736 35 Male Making right turn #> 3737 54 Male Going Straight Ahead (against priority) #> 3738 39 Male Stopped in traffic #> 3739 28 Male Going straight ahead (with priority) #> 3740 44 Male Going straight ahead (with priority) #> 3741 57 Male Reversing #> 3742 23 Male Going straight ahead (with priority) #> 3743 33 Male Going straight ahead (with priority) #> 3744 38 Male Starting in traffic #> 3745 35 Male Reversing #> 3746 55 Male Going straight ahead (with priority) #> 3747 66 Male Going Straight Ahead (against priority) #> 3748 55 Male Slowing or stopping #> 3749 61 Male Making right turn #> 3750 30 Female Going straight ahead (with priority) #> 3751 51 Male Going straight ahead (with priority) #> 3752 33 Male Going straight ahead (with priority) #> 3753 24 Male Going straight ahead (with priority) #> 3754 39 Male Going straight ahead (with priority) #> 3755 24 Male Going straight ahead (with priority) #> 3756 53 Male Going straight ahead (with priority) #> 3757 32 Male Going straight ahead (with priority) #> 3758 57 Male Making left turn #> 3759 31 Male Going straight ahead (with priority) #> 3760 27 Male Going straight ahead (with priority) #> 3761 57 Male Changing lanes or merging #> 3762 52 Male Going straight ahead (with priority) #> 3763 30 Male Going straight ahead (with priority) #> 3764 28 Male Going straight ahead (with priority) #> 3765 48 Male Going straight ahead (with priority) #> 3766 20 Male Going straight ahead (with priority) #> 3767 50 Female Going straight ahead (with priority) #> 3768 53 Male Going straight ahead (with priority) #> 3769 21 Male Going straight ahead (with priority) #> 3770 38 Male Going straight ahead (with priority) #> 3771 68 Male Going straight ahead (with priority) #> 3772 31 Female Going straight ahead (with priority) #> 3773 55 Male Going straight ahead (with priority) #> 3774 39 Male Going straight ahead (with priority) #> 3775 56 Male Going straight ahead (with priority) #> 3776 39 Male Going straight ahead (with priority) #> 3777 47 Female Going straight ahead (with priority) #> 3778 30 Male Going straight ahead (with priority) #> 3779 54 Male Going straight ahead (with priority) #> 3780 32 Male Going straight ahead (with priority) #> 3781 60 Male Slowing or stopping #> 3782 40 Female Reversing #> 3783 77 Male Parked #> 3784 32 Male Stopped in traffic #> 3785 33 Male Going straight ahead (with priority) #> 3786 47 Male Going Straight Ahead (against priority) #> 3787 55 Male Stopped in traffic #> 3788 38 Male Changing lanes or merging #> 3789 37 Male Going straight ahead (with priority) #> 3790 NA Not known Going straight ahead (with priority) #> 3791 35 Female Going straight ahead (with priority) #> 3792 NA Not known Going straight ahead (with priority) #> 3793 59 Male Going straight ahead (with priority) #> 3794 52 Male Going straight ahead (with priority) #> 3795 33 Male Going straight ahead (with priority) #> 3796 50 Female Going straight ahead (with priority) #> 3797 31 Male Changing lanes or merging #> 3798 36 Male Going straight ahead (with priority) #> 3799 73 Male Going straight ahead (with priority) #> 3800 27 Male Going straight ahead (with priority) #> 3801 45 Female Making left turn #> 3802 13 Male Going straight ahead (with priority) #> 3803 29 Female Making right turn #> 3804 57 Male Going straight ahead (with priority) #> 3805 30 Male Going straight ahead (with priority) #> 3806 65 Male Making right turn #> 3807 44 Male Changing lanes or merging #> 3808 33 Male Changing lanes or merging #> 3809 48 Male Stopped in traffic #> 3810 50 Male Making left turn #> 3811 62 Male Going straight ahead (with priority) #> 3812 28 Male Going straight ahead (with priority) #> 3813 57 Male Going straight ahead (with priority) #> 3814 54 Male Going straight ahead (with priority) #> 3815 47 Male Changing lanes or merging #> 3816 48 Male Going straight ahead (with priority) #> 3817 68 Male Making right turn #> 3818 62 Female Slowing or stopping #> 3819 49 Male Slowing or stopping #> 3820 59 Male Going straight ahead (with priority) #> 3821 30 Male Going straight ahead (with priority) #> 3822 39 Male Going straight ahead (with priority) #> 3823 44 Male Going straight ahead (with priority) #> 3824 29 Male Slowing or stopping #> 3825 NA Not known Going straight ahead (with priority) #> 3826 26 Male Making right turn #> 3827 25 Male Going straight ahead (with priority) #> 3828 40 Male Going straight ahead (with priority) #> 3829 50 Male Going straight ahead (with priority) #> 3830 48 Male Going straight ahead (with priority) #> 3831 45 Male Making right turn #> 3832 35 Male Going straight ahead (with priority) #> 3833 NA Not known Going straight ahead (with priority) #> 3834 34 Male Making left turn #> 3835 25 Female Going straight ahead (with priority) #> 3836 38 Male Going straight ahead (with priority) #> 3837 58 Male Going straight ahead (with priority) #> 3838 44 Male Going straight ahead (with priority) #> 3839 68 Male Going straight ahead (with priority) #> 3840 21 Male Reversing #> 3841 60 Female Going straight ahead (with priority) #> 3842 53 Male Going straight ahead (with priority) #> 3843 40 Male Overtaking on near-side #> 3844 53 Male Making left turn #> 3845 54 Male Starting in traffic #> 3846 54 Male Going straight ahead (with priority) #> 3847 21 Male Going straight ahead (with priority) #> 3848 50 Male Going straight ahead (with priority) #> 3849 54 Male Going Straight Ahead (against priority) #> 3850 70 Male Going straight ahead (with priority) #> 3851 57 Female Going straight ahead (with priority) #> 3852 50 Male Going straight ahead (with priority) #> 3853 47 Male Going straight ahead (with priority) #> 3854 34 Male Changing lanes or merging #> 3855 63 Male Going straight ahead (with priority) #> 3856 27 Male Reversing #> 3857 61 Male Going straight ahead (with priority) #> 3858 45 Male Going straight ahead (with priority) #> 3859 42 Male Changing lanes or merging #> 3860 37 Male Going straight ahead (with priority) #> 3861 58 Female Going straight ahead (with priority) #> 3862 38 Male Going straight ahead (with priority) #> 3863 44 Male Going straight ahead (with priority) #> 3864 NA Not known Starting in traffic #> 3865 43 Male Going straight ahead (with priority) #> 3866 57 Male Going straight ahead (with priority) #> 3867 30 Male Going straight ahead (with priority) #> 3868 33 Male Going straight ahead (with priority) #> 3869 53 Male Going straight ahead (with priority) #> 3870 65 Male Going straight ahead (with priority) #> 3871 NA Not known Making right turn #> 3872 62 Male Going straight ahead (with priority) #> 3873 73 Male Going Straight Ahead (against priority) #> 3874 50 Male Slowing or stopping #> 3875 26 Male Stopped in traffic #> 3876 54 Male Changing lanes or merging #> 3877 32 Male Going straight ahead (with priority) #> 3878 54 Male Going straight ahead (with priority) #> 3879 21 Male Making right turn #> 3880 56 Male Going straight ahead (with priority) #> 3881 56 Male Going straight ahead (with priority) #> 3882 64 Male Going straight ahead (with priority) #> 3883 60 Male Going straight ahead (with priority) #> 3884 47 Male Going straight ahead (with priority) #> 3885 41 Male Overtaking on off-side #> 3886 NA Not known Going straight ahead (with priority) #> 3887 38 Male Going straight ahead (with priority) #> 3888 NA Not known Going straight ahead (with priority) #> 3889 55 Male Going straight ahead (with priority) #> 3890 52 Male Making right turn #> 3891 49 Male Going straight ahead (with priority) #> 3892 60 Male Going straight ahead (with priority) #> 3893 37 Male Going straight ahead (with priority) #> 3894 37 Male Going straight ahead (with priority) #> 3895 40 Male Starting in traffic #> 3896 53 Male Going straight ahead (with priority) #> 3897 33 Male Going straight ahead (with priority) #> 3898 NA Not known Going straight ahead (with priority) #> 3899 64 Male Going straight ahead (with priority) #> 3900 37 Male Slowing or stopping #> 3901 47 Male Changing lanes or merging #> 3902 59 Male Going straight ahead (with priority) #> 3903 42 Male Going straight ahead (with priority) #> 3904 52 Male Going straight ahead (with priority) #> 3905 60 Male Going straight ahead (with priority) #> 3906 65 Male Going straight ahead (with priority) #> 3907 38 Male Going straight ahead (with priority) #> 3908 41 Male Making right turn #> 3909 43 Male Slowing or stopping #> 3910 58 Male Slowing or stopping #> 3911 55 Male Going straight ahead (with priority) #> 3912 37 Male Making left turn #> 3913 49 Male Going straight ahead (with priority) #> 3914 55 Male Going straight ahead (with priority) #> 3915 36 Male Going straight ahead (with priority) #> 3916 67 Male Going straight ahead (with priority) #> 3917 40 Male Going straight ahead (with priority) #> 3918 35 Male Going straight ahead (with priority) #> 3919 55 Male Going Straight Ahead (against priority) #> 3920 27 Male Going straight ahead (with priority) #> 3921 32 Male Leaving parking place #> 3922 28 Male Slowing or stopping #> 3923 23 Male Going straight ahead (with priority) #> 3924 51 Male Going straight ahead (with priority) #> 3925 45 Male Going straight ahead (with priority) #> 3926 42 Male Stopped in traffic #> 3927 49 Male Stopped in traffic #> 3928 59 Male Going straight ahead (with priority) #> 3929 NA Not known Parked #> 3930 37 Female Going straight ahead (with priority) #> 3931 48 Male Going straight ahead (with priority) #> 3932 61 Male Going straight ahead (with priority) #> 3933 46 Male Slowing or stopping #> 3934 49 Male Going straight ahead (with priority) #> 3935 42 Female Going straight ahead (with priority) #> 3936 60 Male Going straight ahead (with priority) #> 3937 25 Male Going straight ahead (with priority) #> 3938 50 Male Going straight ahead (with priority) #> 3939 47 Male Going straight ahead (with priority) #> 3940 20 Male Going straight ahead (with priority) #> 3941 61 Male Going straight ahead (with priority) #> 3942 56 Male Making right turn #> 3943 30 Female Going straight ahead (with priority) #> 3944 60 Male Going straight ahead (with priority) #> 3945 32 Female Going straight ahead (with priority) #> 3946 42 Male Going straight ahead (with priority) #> 3947 34 Male Going straight ahead (with priority) #> 3948 55 Male Going straight ahead (with priority) #> 3949 31 Male Going straight ahead (with priority) #> 3950 77 Male Going straight ahead (with priority) #> 3951 50 Male Going straight ahead (with priority) #> 3952 54 Male Making left turn #> 3953 NA Not known Going straight ahead (with priority) #> 3954 NA Not known Going straight ahead (with priority) #> 3955 63 Male Going straight ahead (with priority) #> 3956 39 Male Going straight ahead (with priority) #> 3957 47 Male Going straight ahead (with priority) #> 3958 62 Male Going straight ahead (with priority) #> 3959 65 Male Going straight ahead (with priority) #> 3960 37 Male Going Straight Ahead (against priority) #> 3961 50 Male Going straight ahead (with priority) #> 3962 57 Male Going straight ahead (with priority) #> 3963 43 Female Changing lanes or merging #> 3964 40 Female Going straight ahead (with priority) #> 3965 58 Male Making right turn #> 3966 39 Female Going straight ahead (with priority) #> 3967 43 Male Going straight ahead (with priority) #> 3968 54 Male Going straight ahead (with priority) #> 3969 39 Male Going straight ahead (with priority) #> 3970 47 Male Going straight ahead (with priority) #> 3971 56 Male Going straight ahead (with priority) #> 3972 40 Male Slowing or stopping #> 3973 54 Male Going straight ahead (with priority) #> 3974 45 Male Going straight ahead (with priority) #> 3975 NA Not known Going straight ahead (with priority) #> 3976 31 Male Going straight ahead (with priority) #> 3977 55 Male Changing lanes or merging #> 3978 62 Male Going straight ahead (with priority) #> 3979 47 Male Changing lanes or merging #> 3980 33 Male Slowing or stopping #> 3981 56 Male Starting in traffic #> 3982 45 Female Going straight ahead (with priority) #> 3983 35 Male Parked #> 3984 67 Male Going straight ahead (with priority) #> 3985 41 Male Going straight ahead (with priority) #> 3986 49 Male Making right turn #> 3987 42 Female Going straight ahead (with priority) #> 3988 48 Female Going straight ahead (with priority) #> 3989 43 Female Going straight ahead (with priority) #> 3990 50 Male Going straight ahead (with priority) #> 3991 66 Female Starting in traffic #> 3992 42 Male Starting in traffic #> 3993 50 Male Making left turn #> 3994 50 Male Making left turn #> 3995 56 Male Going straight ahead (with priority) #> 3996 49 Male Going straight ahead (with priority) #> 3997 21 Male Going straight ahead (with priority) #> 3998 46 Male Going straight ahead (with priority) #> 3999 43 Male Going straight ahead (with priority) #> 4000 25 Male Going straight ahead (with priority) #> 4001 44 Male Stopped in traffic #> 4002 56 Male Starting in traffic #> 4003 42 Male Stopped in traffic #> 4004 46 Male Going straight ahead (with priority) #> 4005 60 Male Reversing #> 4006 NA Not known Going straight ahead (with priority) #> 4007 48 Male Going straight ahead (with priority) #> 4008 NA Not known Other #> 4009 24 Male Going straight ahead (with priority) #> 4010 55 Male Starting in traffic #> 4011 41 Male Making right turn #> 4012 52 Male Overtaking on off-side #> 4013 29 Male Going straight ahead (with priority) #> 4014 NA Not known Changing lanes or merging #> 4015 51 Male Going straight ahead (with priority) #> 4016 56 Male Stopped in traffic #> 4017 63 Male Slowing or stopping #> 4018 53 Male Slowing or stopping #> 4019 70 Male Stopped in traffic #> 4020 43 Male Going straight ahead (with priority) #> 4021 59 Male Changing lanes or merging #> 4022 37 Male Going straight ahead (with priority) #> 4023 62 Male Going straight ahead (with priority) #> 4024 34 Male Going straight ahead (with priority) #> 4025 41 Male Going straight ahead (with priority) #> 4026 41 Male Going straight ahead (with priority) #> 4027 60 Male Changing lanes or merging #> 4028 37 Male Going straight ahead (with priority) #> 4029 73 Female Going straight ahead (with priority) #> 4030 59 Male Going straight ahead (with priority) #> 4031 35 Male Making left turn #> 4032 57 Male Making left turn #> 4033 15 Female Going straight ahead (with priority) #> 4034 32 Male Going straight ahead (with priority) #> 4035 57 Male Going straight ahead (with priority) #> 4036 37 Female Stopped in traffic #> 4037 24 Male Going straight ahead (with priority) #> 4038 69 Male Making left turn #> 4039 62 Male Going Straight Ahead (against priority) #> 4040 61 Male Stopped in traffic #> 4041 39 Male Making left turn #> 4042 47 Male Going straight ahead (with priority) #> 4043 54 Male Starting in traffic #> 4044 56 Male Going straight ahead (with priority) #> 4045 55 Male Parked #> 4046 48 Male Making left turn #> 4047 45 Male Going straight ahead (with priority) #> 4048 62 Male Going straight ahead (with priority) #> 4049 26 Male Going straight ahead (with priority) #> 4050 55 Male Going straight ahead (with priority) #> 4051 54 Male Going straight ahead (with priority) #> 4052 41 Male Going straight ahead (with priority) #> 4053 66 Male Going straight ahead (with priority) #> 4054 48 Female Going Straight Ahead (against priority) #> 4055 53 Male Going straight ahead (with priority) #> 4056 38 Male Going straight ahead (with priority) #> 4057 52 Male Going straight ahead (with priority) #> 4058 53 Male Making left turn #> 4059 38 Male Making left turn #> 4060 41 Male Going straight ahead (with priority) #> 4061 50 Male Slowing or stopping #> 4062 NA Not known Going straight ahead (with priority) #> 4063 64 Male Going Straight Ahead (against priority) #> 4064 49 Male Slowing or stopping #> 4065 55 Male Going straight ahead (with priority) #> 4066 62 Male Going straight ahead (with priority) #> 4067 57 Male Going straight ahead (with priority) #> 4068 39 Male Going straight ahead (with priority) #> 4069 NA Not known Changing lanes or merging #> 4070 61 Male Making U turn #> 4071 46 Male Going straight ahead (with priority) #> 4072 27 Male Going straight ahead (with priority) #> 4073 39 Male Making U turn #> 4074 43 Male Going straight ahead (with priority) #> 4075 61 Male Making right turn #> 4076 33 Female Going straight ahead (with priority) #> 4077 55 Male Going Straight Ahead (against priority) #> 4078 51 Male Making right turn #> 4079 28 Male Making right turn #> 4080 63 Male Going straight ahead (with priority) #> 4081 61 Male Slowing or stopping #> 4082 55 Male Going straight ahead (with priority) #> 4083 60 Male Making right turn #> 4084 38 Male Going straight ahead (with priority) #> 4085 41 Male Going straight ahead (with priority) #> 4086 61 Male Going straight ahead (with priority) #> 4087 40 Male Making right turn #> 4088 41 Male Making left turn #> 4089 49 Male Making right turn #> 4090 56 Male Going straight ahead (with priority) #> 4091 NA Not known Unknown #> 4092 27 Female Overtaking on near-side #> 4093 NA Not known Going straight ahead (with priority) #> 4094 63 Male Going straight ahead (with priority) #> 4095 31 Male Going straight ahead (with priority) #> 4096 21 Male Going straight ahead (with priority) #> 4097 20 Male Going straight ahead (with priority) #> 4098 52 Male Changing lanes or merging #> 4099 72 Male Going straight ahead (with priority) #> 4100 NA Not known Unknown #> 4101 56 Male Starting in traffic #> 4102 40 Male Reversing #> 4103 42 Female Making right turn #> 4104 56 Male Going straight ahead (with priority) #> 4105 42 Male Reversing #> 4106 43 Female Going straight ahead (with priority) #> 4107 48 Male Going straight ahead (with priority) #> 4108 46 Male Going straight ahead (with priority) #> 4109 53 Male Stopped in traffic #> 4110 56 Male Going Straight Ahead (against priority) #> 4111 57 Male Stopped in traffic #> 4112 41 Male Going straight ahead (with priority) #> 4113 42 Male Going straight ahead (with priority) #> 4114 44 Female Slowing or stopping #> 4115 61 Male Slowing or stopping #> 4116 49 Male Going straight ahead (with priority) #> 4117 54 Female Going straight ahead (with priority) #> 4118 48 Male Making right turn #> 4119 48 Male Going straight ahead (with priority) #> 4120 48 Male Going straight ahead (with priority) #> 4121 62 Male Making left turn #> 4122 67 Male Going straight ahead (with priority) #> 4123 NA Not known Going straight ahead (with priority) #> 4124 44 Male Going straight ahead (with priority) #> 4125 64 Male Going straight ahead (with priority) #> 4126 66 Male Going straight ahead (with priority) #> 4127 58 Male Going straight ahead (with priority) #> 4128 NA Not known Unknown #> 4129 53 Male Making left turn #> 4130 33 Male Going straight ahead (with priority) #> 4131 20 Female Going straight ahead (with priority) #> 4132 43 Male Going straight ahead (with priority) #> 4133 65 Male Going straight ahead (with priority) #> 4134 63 Male Changing lanes or merging #> 4135 58 Male Going straight ahead (with priority) #> 4136 62 Male Making right turn #> 4137 31 Male Going straight ahead (with priority) #> 4138 57 Male Going straight ahead (with priority) #> 4139 61 Male Making right turn #> 4140 38 Male Slowing or stopping #> 4141 50 Male Slowing or stopping #> 4142 50 Male Making right turn #> 4143 33 Male Going straight ahead (with priority) #> 4144 42 Male Making right turn #> 4145 60 Male Going straight ahead (with priority) #> 4146 32 Male Going straight ahead (with priority) #> 4147 47 Male Going straight ahead (with priority) #> 4148 60 Male Slowing or stopping #> 4149 25 Male Going straight ahead (with priority) #> 4150 58 Male Going straight ahead (with priority) #> 4151 43 Male Going straight ahead (with priority) #> 4152 25 Male Going straight ahead (with priority) #> 4153 51 Male Going straight ahead (with priority) #> 4154 56 Male Making right turn #> 4155 56 Male Parked #> 4156 68 Male Going straight ahead (with priority) #> 4157 50 Male Going straight ahead (with priority) #> 4158 NA Not known Unknown #> 4159 35 Male Going straight ahead (with priority) #> 4160 45 Male Overtaking on near-side #> 4161 43 Male Starting in traffic #> 4162 50 Male Starting in traffic #> 4163 57 Male Going straight ahead (with priority) #> 4164 26 Male Making left turn #> 4165 57 Male Going straight ahead (with priority) #> 4166 28 Male Parked #> 4167 56 Male Slowing or stopping #> 4168 58 Male Slowing or stopping #> 4169 29 Male Going straight ahead (with priority) #> 4170 28 Male Going straight ahead (with priority) #> 4171 33 Male Changing lanes or merging #> 4172 NA Not known Going straight ahead (with priority) #> 4173 51 Male Going straight ahead (with priority) #> 4174 44 Male Going straight ahead (with priority) #> 4175 28 Male Going straight ahead (with priority) #> 4176 56 Male Parked #> 4177 53 Male Making left turn #> 4178 47 Female Going straight ahead (with priority) #> 4179 36 Male Making left turn #> 4180 56 Male Changing lanes or merging #> 4181 43 Male Going straight ahead (with priority) #> 4182 34 Male Going straight ahead (with priority) #> 4183 63 Male Going straight ahead (with priority) #> 4184 55 Male Going straight ahead (with priority) #> 4185 42 Male Going straight ahead (with priority) #> 4186 47 Male Going straight ahead (with priority) #> 4187 23 Male Making left turn #> 4188 52 Male Going straight ahead (with priority) #> 4189 52 Male Going straight ahead (with priority) #> 4190 53 Male Going straight ahead (with priority) #> 4191 56 Male Making left turn #> 4192 49 Male Going straight ahead (with priority) #> 4193 32 Male Going straight ahead (with priority) #> 4194 48 Male Going straight ahead (with priority) #> 4195 67 Male Going straight ahead (with priority) #> 4196 27 Male Going straight ahead (with priority) #> 4197 38 Male Going straight ahead (with priority) #> 4198 31 Male Unknown #> 4199 41 Male Going straight ahead (with priority) #> 4200 64 Male Going Straight Ahead (against priority) #> 4201 55 Male Going straight ahead (with priority) #> 4202 50 Male Making left turn #> 4203 56 Male Going straight ahead (with priority) #> 4204 59 Male Making right turn #> 4205 59 Male Making right turn #> 4206 70 Male Going straight ahead (with priority) #> 4207 36 Male Stopped in traffic #> 4208 77 Male Starting in traffic #> 4209 40 Male Making right turn #> 4210 58 Male Slowing or stopping #> 4211 36 Male Overtaking on near-side #> 4212 50 Male Changing lanes or merging #> 4213 51 Male Going straight ahead (with priority) #> 4214 65 Female Going straight ahead (with priority) #> 4215 59 Male Going straight ahead (with priority) #> 4216 52 Male Going Straight Ahead (against priority) #> 4217 50 Male Slowing or stopping #> 4218 57 Male Going straight ahead (with priority) #> 4219 50 Male Going straight ahead (with priority) #> 4220 47 Male Going straight ahead (with priority) #> 4221 26 Male Going straight ahead (with priority) #> 4222 54 Male Changing lanes or merging #> 4223 80 Male Going Straight Ahead (against priority) #> 4224 32 Male Going straight ahead (with priority) #> 4225 68 Male Slowing or stopping #> 4226 45 Male Changing lanes or merging #> 4227 46 Male Going straight ahead (with priority) #> 4228 33 Male Going straight ahead (with priority) #> 4229 26 Male Going straight ahead (with priority) #> 4230 43 Male Going straight ahead (with priority) #> 4231 61 Male Starting in traffic #> 4232 40 Male Overtaking on off-side #> 4233 46 Male Going straight ahead (with priority) #> 4234 53 Male Stopped in traffic #> 4235 40 Male Overtaking on off-side #> 4236 63 Male Going straight ahead (with priority) #> 4237 64 Male Making right turn #> 4238 49 Male Going straight ahead (with priority) #> 4239 43 Male Going straight ahead (with priority) #> 4240 56 Male Going straight ahead (with priority) #> 4241 64 Male Reversing #> 4242 51 Male Making left turn #> 4243 NA Not known Going straight ahead (with priority) #> 4244 42 Male Going straight ahead (with priority) #> 4245 45 Male Making left turn #> 4246 51 Male Making left turn #> 4247 42 Male Going straight ahead (with priority) #> 4248 43 Male Making right turn #> 4249 52 Male Making right turn #> 4250 47 Male Changing lanes or merging #> 4251 51 Male Going straight ahead (with priority) #> 4252 31 Male Going straight ahead (with priority) #> 4253 43 Male Going straight ahead (with priority) #> 4254 24 Male Going straight ahead (with priority) #> 4255 67 Male Stopped in traffic #> 4256 49 Male Stopped in traffic #> 4257 56 Male Going Straight Ahead (against priority) #> 4258 49 Male Going straight ahead (with priority) #> 4259 64 Male Making right turn #> 4260 62 Female Changing lanes or merging #> 4261 44 Male Going Straight Ahead (against priority) #> 4262 NA Not known Going straight ahead (with priority) #> 4263 24 Male Going straight ahead (with priority) #> 4264 66 Male Going straight ahead (with priority) #> 4265 31 Male Going straight ahead (with priority) #> 4266 32 Male Changing lanes or merging #> 4267 47 Male Going straight ahead (with priority) #> 4268 61 Female Going straight ahead (with priority) #> 4269 46 Female Slowing or stopping #> 4270 61 Male Slowing or stopping #> 4271 57 Male Making right turn #> 4272 60 Male Going straight ahead (with priority) #> 4273 67 Male Going straight ahead (with priority) #> 4274 46 Male Making U turn #> 4275 54 Male Going straight ahead (with priority) #> 4276 19 Male Going straight ahead (with priority) #> 4277 63 Male Making right turn #> 4278 NA Not known Unknown #> 4279 82 Male Going straight ahead (with priority) #> 4280 23 Male Making left turn #> 4281 57 Male Going straight ahead (with priority) #> 4282 NA Not known Going straight ahead (with priority) #> 4283 26 Male Going straight ahead (with priority) #> 4284 32 Male Stopped in traffic #> 4285 53 Male Going straight ahead (with priority) #> 4286 40 Male Stopped in traffic #> 4287 64 Male Making right turn #> 4288 46 Male Going straight ahead (with priority) #> 4289 29 Male Going straight ahead (with priority) #> 4290 44 Male Going straight ahead (with priority) #> 4291 55 Male Changing lanes or merging #> 4292 60 Male Going straight ahead (with priority) #> 4293 37 Male Stopped in traffic #> 4294 32 Male Going straight ahead (with priority) #> 4295 63 Male Going straight ahead (with priority) #> 4296 35 Male Going straight ahead (with priority) #> 4297 31 Male Going straight ahead (with priority) #> 4298 35 Male Changing lanes or merging #> 4299 57 Male Going straight ahead (with priority) #> 4300 61 Male Going straight ahead (with priority) #> 4301 24 Male Parked #> 4302 43 Male Going straight ahead (with priority) #> 4303 43 Male Going straight ahead (with priority) #> 4304 31 Male Changing lanes or merging #> 4305 41 Male Changing lanes or merging #> 4306 19 Male Going straight ahead (with priority) #> 4307 42 Male Making right turn #> 4308 NA Not known Going straight ahead (with priority) #> 4309 43 Male Going straight ahead (with priority) #> 4310 48 Male Going straight ahead (with priority) #> 4311 56 Female Going straight ahead (with priority) #> 4312 40 Male Going straight ahead (with priority) #> 4313 27 Male Going straight ahead (with priority) #> 4314 43 Male Changing lanes or merging #> 4315 70 Male Changing lanes or merging #> 4316 61 Male Going straight ahead (with priority) #> 4317 33 Male Going straight ahead (with priority) #> 4318 58 Male Changing lanes or merging #> 4319 53 Male Going straight ahead (with priority) #> 4320 45 Male Starting in traffic #> 4321 48 Male Going straight ahead (with priority) #> 4322 28 Female Making right turn #> 4323 47 Male Going straight ahead (with priority) #> 4324 43 Male Stopped in traffic #> 4325 52 Female Going straight ahead (with priority) #> 4326 33 Male Making left turn #> 4327 34 Male Going straight ahead (with priority) #> 4328 56 Female Changing lanes or merging #> 4329 52 Male Reversing #> 4330 42 Male Parked #> 4331 22 Female Going straight ahead (with priority) #> 4332 48 Male Going straight ahead (with priority) #> 4333 32 Male Going straight ahead (with priority) #> 4334 58 Male Slowing or stopping #> 4335 24 Male Going straight ahead (with priority) #> 4336 64 Male Going straight ahead (with priority) #> 4337 55 Male Going straight ahead (with priority) #> 4338 51 Female Going straight ahead (with priority) #> 4339 43 Male Going straight ahead (with priority) #> 4340 50 Male Going straight ahead (with priority) #> 4341 NA Not known Changing lanes or merging #> 4342 51 Female Going straight ahead (with priority) #> 4343 55 Male Going straight ahead (with priority) #> 4344 35 Male Making left turn #> 4345 79 Female Going straight ahead (with priority) #> 4346 41 Male Going Straight Ahead (against priority) #> 4347 37 Male Going straight ahead (with priority) #> 4348 29 Male Going straight ahead (with priority) #> 4349 59 Male Stopped in traffic #> 4350 61 Male Going straight ahead (with priority) #> 4351 66 Male Going straight ahead (with priority) #> 4352 45 Female Stopped in traffic #> 4353 42 Male Going straight ahead (with priority) #> 4354 57 Male Going straight ahead (with priority) #> 4355 NA Not known Going straight ahead (with priority) #> 4356 35 Male Going straight ahead (with priority) #> 4357 68 Male Slowing or stopping #> 4358 26 Male Going straight ahead (with priority) #> 4359 64 Male Going straight ahead (with priority) #> 4360 60 Male Slowing or stopping #> 4361 64 Male Slowing or stopping #> 4362 60 Male Going Straight Ahead (against priority) #> 4363 59 Male Stopped in traffic #> 4364 44 Male Overtaking on near-side #> 4365 57 Male Parked #> 4366 19 Male Going straight ahead (with priority) #> 4367 38 Male Overtaking on near-side #> 4368 63 Male Going straight ahead (with priority) #> 4369 52 Female Going straight ahead (with priority) #> 4370 59 Male Going straight ahead (with priority) #> 4371 28 Male Going straight ahead (with priority) #> 4372 46 Male Changing lanes or merging #> 4373 39 Male Starting in traffic #> 4374 62 Male Going Straight Ahead (against priority) #> 4375 63 Male Changing lanes or merging #> 4376 64 Male Making right turn #> 4377 35 Male Going straight ahead (with priority) #> 4378 50 Male Going straight ahead (with priority) #> 4379 66 Male Slowing or stopping #> 4380 28 Male Going straight ahead (with priority) #> 4381 51 Male Slowing or stopping #> 4382 43 Male Going Straight Ahead (against priority) #> 4383 70 Male Slowing or stopping #> 4384 49 Male Going straight ahead (with priority) #> 4385 56 Male Changing lanes or merging #> 4386 58 Male Making left turn #> 4387 42 Male Going straight ahead (with priority) #> 4388 44 Male Going straight ahead (with priority) #> 4389 59 Male Slowing or stopping #> 4390 30 Male Going straight ahead (with priority) #> 4391 25 Male Changing lanes or merging #> 4392 46 Male Stopped in traffic #> 4393 51 Male Stopped in traffic #> 4394 49 Male Going straight ahead (with priority) #> 4395 36 Male Going straight ahead (with priority) #> 4396 44 Female Changing lanes or merging #> 4397 33 Male Going straight ahead (with priority) #> 4398 38 Male Slowing or stopping #> 4399 40 Male Going straight ahead (with priority) #> 4400 51 Male Going straight ahead (with priority) #> 4401 56 Male Going straight ahead (with priority) #> 4402 57 Female Going straight ahead (with priority) #> 4403 23 Female Going straight ahead (with priority) #> 4404 26 Male Going straight ahead (with priority) #> 4405 37 Male Slowing or stopping #> 4406 25 Male Going straight ahead (with priority) #> 4407 44 Male Slowing or stopping #> 4408 56 Male Going straight ahead (with priority) #> 4409 63 Female Changing lanes or merging #> 4410 51 Male Going straight ahead (with priority) #> 4411 59 Male Going straight ahead (with priority) #> 4412 52 Male Going straight ahead (with priority) #> 4413 59 Male Starting in traffic #> 4414 48 Male Stopped in traffic #> 4415 30 Male Slowing or stopping #> 4416 51 Male Making right turn #> 4417 54 Male Going straight ahead (with priority) #> 4418 54 Male Stopped in traffic #> 4419 65 Male Going straight ahead (with priority) #> 4420 54 Male Going straight ahead (with priority) #> 4421 56 Male Slowing or stopping #> 4422 28 Male Going straight ahead (with priority) #> 4423 50 Male Going straight ahead (with priority) #> 4424 35 Male Reversing #> 4425 57 Male Going straight ahead (with priority) #> 4426 32 Female Going straight ahead (with priority) #> 4427 24 Male Making right turn #> 4428 40 Male Going straight ahead (with priority) #> 4429 NA Not known Going straight ahead (with priority) #> 4430 27 Male Going straight ahead (with priority) #> 4431 46 Male Going straight ahead (with priority) #> 4432 54 Male Making right turn #> 4433 NA Not known Making right turn #> 4434 NA Not known Making right turn #> 4435 48 Male Going straight ahead (with priority) #> 4436 49 Male Going straight ahead (with priority) #> 4437 62 Male Going straight ahead (with priority) #> 4438 33 Male Changing lanes or merging #> 4439 60 Male Going straight ahead (with priority) #> 4440 55 Male Slowing or stopping #> 4441 30 Male Going straight ahead (with priority) #> 4442 NA Not known Changing lanes or merging #> 4443 60 Male Going straight ahead (with priority) #> 4444 57 Male Going straight ahead (with priority) #> 4445 59 Male Going straight ahead (with priority) #> 4446 NA Not known Overtaking on off-side #> 4447 30 Male Slowing or stopping #> 4448 46 Male Going straight ahead (with priority) #> 4449 40 Male Going straight ahead (with priority) #> 4450 63 Male Going straight ahead (with priority) #> 4451 67 Male Going straight ahead (with priority) #> 4452 66 Male Going straight ahead (with priority) #> 4453 62 Male Starting in traffic #> 4454 38 Male Going straight ahead (with priority) #> 4455 32 Male Going straight ahead (with priority) #> 4456 47 Male Reversing #> 4457 38 Female Going straight ahead (with priority) #> 4458 55 Male Going straight ahead (with priority) #> 4459 49 Female Going straight ahead (with priority) #> 4460 57 Male Going straight ahead (with priority) #> 4461 41 Male Going straight ahead (with priority) #> 4462 39 Male Going straight ahead (with priority) #> 4463 65 Male Going straight ahead (with priority) #> 4464 54 Male Going straight ahead (with priority) #> 4465 59 Male Stopped in traffic #> 4466 30 Male Making right turn #> 4467 55 Male Making right turn #> 4468 55 Male Making left turn #> 4469 38 Male Going straight ahead (with priority) #> 4470 58 Male Slowing or stopping #> 4471 21 Male Overtaking on near-side #> 4472 57 Male Going straight ahead (with priority) #> 4473 40 Male Stopped in traffic #> 4474 38 Male Starting in traffic #> 4475 41 Male Going Straight Ahead (against priority) #> 4476 25 Male Reversing #> 4477 47 Male Going straight ahead (with priority) #> 4478 55 Male Slowing or stopping #> 4479 23 Male Going straight ahead (with priority) #> 4480 43 Male Going straight ahead (with priority) #> 4481 64 Male Going straight ahead (with priority) #> 4482 56 Male Going straight ahead (with priority) #> 4483 52 Male Going straight ahead (with priority) #> 4484 68 Male Going straight ahead (with priority) #> 4485 48 Male Making U turn #> 4486 30 Male Going straight ahead (with priority) #> 4487 60 Male Going straight ahead (with priority) #> 4488 NA Not known Going straight ahead (with priority) #> 4489 20 Male Going straight ahead (with priority) #> 4490 38 Male Going straight ahead (with priority) #> 4491 NA Not known Going straight ahead (with priority) #> 4492 30 Male Slowing or stopping #> 4493 58 Male Making left turn #> 4494 34 Male Going straight ahead (with priority) #> 4495 62 Male Going straight ahead (with priority) #> 4496 47 Male Going straight ahead (with priority) #> 4497 34 Male Going straight ahead (with priority) #> 4498 48 Male Going straight ahead (with priority) #> 4499 68 Male Making U turn #> 4500 39 Male Starting in traffic #> 4501 53 Male Going straight ahead (with priority) #> 4502 62 Male Going straight ahead (with priority) #> 4503 49 Male Going straight ahead (with priority) #> 4504 65 Male Going straight ahead (with priority) #> 4505 53 Male Changing lanes or merging #> 4506 65 Female Going straight ahead (with priority) #> 4507 42 Male Stopped in traffic #> 4508 21 Male Going straight ahead (with priority) #> 4509 30 Male Going straight ahead (with priority) #> 4510 37 Male Going straight ahead (with priority) #> 4511 54 Male Parked #> 4512 38 Male Stopped in traffic #> 4513 44 Male Going straight ahead (with priority) #> 4514 38 Male Going straight ahead (with priority) #> 4515 35 Male Going straight ahead (with priority) #> 4516 61 Male Making right turn #> 4517 38 Male Going straight ahead (with priority) #> 4518 59 Male Going straight ahead (with priority) #> 4519 NA Not known Going straight ahead (with priority) #> 4520 48 Male Making right turn #> 4521 59 Male Changing lanes or merging #> 4522 57 Male Changing lanes or merging #> 4523 46 Male Going straight ahead (with priority) #> 4524 45 Male Making right turn #> 4525 37 Male Going straight ahead (with priority) #> 4526 37 Male Changing lanes or merging #> 4527 54 Male Going straight ahead (with priority) #> 4528 52 Male Changing lanes or merging #> 4529 26 Male Going straight ahead (with priority) #> 4530 62 Female Making left turn #> 4531 59 Male Going straight ahead (with priority) #> 4532 65 Male Going straight ahead (with priority) #> 4533 55 Male Going straight ahead (with priority) #> 4534 NA Not known Making left turn #> 4535 NA Not known Changing lanes or merging #> 4536 53 Male Going straight ahead (with priority) #> 4537 54 Male Going straight ahead (with priority) #> 4538 27 Male Going straight ahead (with priority) #> 4539 47 Male Slowing or stopping #> 4540 56 Male Starting in traffic #> 4541 34 Female Going straight ahead (with priority) #> 4542 57 Male Going straight ahead (with priority) #> 4543 43 Male Going straight ahead (with priority) #> 4544 39 Male Going straight ahead (with priority) #> 4545 56 Male Going straight ahead (with priority) #> 4546 44 Female Going straight ahead (with priority) #> 4547 21 Male Going Straight Ahead (against priority) #> 4548 27 Male Making right turn #> 4549 NA Not known Going straight ahead (with priority) #> 4550 53 Male Slowing or stopping #> 4551 28 Male Starting in traffic #> 4552 51 Male Going straight ahead (with priority) #> 4553 45 Male Going straight ahead (with priority) #> 4554 43 Female Going straight ahead (with priority) #> 4555 NA Not known Going straight ahead (with priority) #> 4556 35 Male Going straight ahead (with priority) #> 4557 46 Male Going straight ahead (with priority) #> 4558 54 Male Going straight ahead (with priority) #> 4559 23 Female Going straight ahead (with priority) #> 4560 59 Male Going straight ahead (with priority) #> 4561 35 Male Going straight ahead (with priority) #> 4562 63 Male Stopped in traffic #> 4563 57 Male Going straight ahead (with priority) #> 4564 47 Male Making right turn #> 4565 36 Male Going straight ahead (with priority) #> 4566 54 Male Starting in traffic #> 4567 44 Female Slowing or stopping #> 4568 25 Male Going straight ahead (with priority) #> 4569 65 Male Going Straight Ahead (against priority) #> 4570 49 Male Going straight ahead (with priority) #> 4571 51 Male Going Straight Ahead (against priority) #> 4572 32 Male Going straight ahead (with priority) #> 4573 57 Male Going straight ahead (with priority) #> 4574 50 Male Going straight ahead (with priority) #> 4575 52 Male Going straight ahead (with priority) #> 4576 59 Male Starting in traffic #> 4577 7 Male Going straight ahead (with priority) #> 4578 52 Male Going straight ahead (with priority) #> 4579 47 Male Going straight ahead (with priority) #> 4580 29 Female Changing lanes or merging #> 4581 71 Male Going straight ahead (with priority) #> 4582 59 Male Making left turn #> 4583 53 Male Going straight ahead (with priority) #> 4584 31 Male Going straight ahead (with priority) #> 4585 63 Male Slowing or stopping #> 4586 65 Male Going Straight Ahead (against priority) #> 4587 61 Male Going straight ahead (with priority) #> 4588 32 Male Stopped in traffic #> 4589 59 Male Going straight ahead (with priority) #> 4590 8 Male Going Straight Ahead (against priority) #> 4591 11 Male Going straight ahead (with priority) #> 4592 60 Male Slowing or stopping #> 4593 37 Male Stopped in traffic #> 4594 60 Male Slowing or stopping #> 4595 35 Male Stopped in traffic #> 4596 28 Female Making right turn #> 4597 57 Male Going Straight Ahead (against priority) #> 4598 30 Male Going straight ahead (with priority) #> 4599 63 Male Slowing or stopping #> 4600 56 Male Going straight ahead (with priority) #> 4601 57 Male Going straight ahead (with priority) #> 4602 40 Male Going straight ahead (with priority) #> 4603 NA Male Going straight ahead (with priority) #> 4604 66 Male Going straight ahead (with priority) #> 4605 45 Male Parked #> 4606 61 Male Going straight ahead (with priority) #> 4607 67 Male Starting in traffic #> 4608 35 Male Going straight ahead (with priority) #> 4609 33 Male Going straight ahead (with priority) #> 4610 43 Male Going straight ahead (with priority) #> 4611 27 Male Stopped in traffic #> 4612 36 Male Stopped in traffic #> 4613 55 Male Slowing or stopping #> 4614 51 Male Reversing #> 4615 54 Male Stopped in traffic #> 4616 49 Male Going straight ahead (with priority) #> 4617 26 Male Going straight ahead (with priority) #> 4618 52 Male Going straight ahead (with priority) #> 4619 47 Male Reversing #> 4620 67 Male Starting in traffic #> 4621 34 Male Going straight ahead (with priority) #> 4622 NA Not known Going straight ahead (with priority) #> 4623 45 Male Going straight ahead (with priority) #> 4624 62 Female Going straight ahead (with priority) #> 4625 55 Male Going straight ahead (with priority) #> 4626 27 Male Starting in traffic #> 4627 NA Not known Parked #> 4628 47 Female Going straight ahead (with priority) #> 4629 47 Male Making right turn #> 4630 31 Male Overtaking on off-side #> 4631 35 Male Making right turn #> 4632 65 Female Going straight ahead (with priority) #> 4633 45 Male Other #> 4634 51 Male Going straight ahead (with priority) #> 4635 58 Male Going straight ahead (with priority) #> 4636 52 Male Parked #> 4637 61 Male Going straight ahead (with priority) #> 4638 26 Male Going straight ahead (with priority) #> 4639 49 Male Going straight ahead (with priority) #> 4640 57 Male Stopped in traffic #> 4641 59 Male Stopped in traffic #> 4642 62 Male Stopped in traffic #> 4643 55 Male Stopped in traffic #> 4644 52 Male Going straight ahead (with priority) #> 4645 29 Male Stopped in traffic #> 4646 33 Male Slowing or stopping #> 4647 58 Male Going straight ahead (with priority) #> 4648 29 Male Going straight ahead (with priority) #> 4649 41 Male Going straight ahead (with priority) #> 4650 54 Male Starting in traffic #> 4651 56 Male Going straight ahead (with priority) #> 4652 54 Male Making left turn #> 4653 35 Male Going straight ahead (with priority) #> 4654 34 Male Going straight ahead (with priority) #> 4655 55 Male Going straight ahead (with priority) #> 4656 57 Male Going straight ahead (with priority) #> 4657 28 Female Going Straight Ahead (against priority) #> 4658 59 Male Going straight ahead (with priority) #> 4659 72 Male Going straight ahead (with priority) #> 4660 47 Male Going straight ahead (with priority) #> 4661 54 Male Going straight ahead (with priority) #> 4662 35 Male Going straight ahead (with priority) #> 4663 36 Male Making U turn #> 4664 45 Male Going straight ahead (with priority) #> 4665 46 Male Going straight ahead (with priority) #> 4666 45 Male Going straight ahead (with priority) #> 4667 45 Male Going straight ahead (with priority) #> 4668 46 Male Going straight ahead (with priority) #> 4669 59 Male Making U turn #> 4670 51 Male Changing lanes or merging #> 4671 46 Male Going straight ahead (with priority) #> 4672 58 Male Going straight ahead (with priority) #> 4673 54 Male Going straight ahead (with priority) #> 4674 49 Male Slowing or stopping #> 4675 34 Male Going straight ahead (with priority) #> 4676 27 Male Overtaking on off-side #> 4677 30 Female Going straight ahead (with priority) #> 4678 25 Male Making left turn #> 4679 21 Male Parked #> 4680 51 Male Parked #> 4681 35 Male Going straight ahead (with priority) #> 4682 42 Male Going straight ahead (with priority) #> 4683 54 Male Stopped in traffic #> 4684 40 Male Going straight ahead (with priority) #> 4685 37 Male Making right turn #> 4686 52 Male Making right turn #> 4687 46 Male Going straight ahead (with priority) #> 4688 31 Male Going straight ahead (with priority) #> 4689 43 Female Going straight ahead (with priority) #> 4690 NA Not known Overtaking on off-side #> 4691 39 Male Going straight ahead (with priority) #> 4692 65 Male Going straight ahead (with priority) #> 4693 36 Male Reversing #> 4694 69 Male Going straight ahead (with priority) #> 4695 61 Female Going straight ahead (with priority) #> 4696 54 Male Going straight ahead (with priority) #> 4697 21 Male Changing lanes or merging #> 4698 39 Male Making right turn #> 4699 56 Male Going straight ahead (with priority) #> 4700 67 Male Going straight ahead (with priority) #> 4701 50 Male Stopped in traffic #> 4702 39 Female Slowing or stopping #> 4703 38 Male Making left turn #> 4704 27 Male Overtaking on near-side #> 4705 50 Male Starting in traffic #> 4706 59 Female Changing lanes or merging #> 4707 40 Male Going straight ahead (with priority) #> 4708 55 Male Stopped in traffic #> 4709 56 Male Starting in traffic #> 4710 40 Male Going straight ahead (with priority) #> 4711 55 Male Stopped in traffic #> 4712 61 Male Starting in traffic #> 4713 82 Female Going straight ahead (with priority) #> 4714 55 Male Making right turn #> 4715 47 Male Going straight ahead (with priority) #> 4716 36 Male Going straight ahead (with priority) #> 4717 49 Male Going straight ahead (with priority) #> 4718 60 Male Reversing #> 4719 62 Male Going straight ahead (with priority) #> 4720 53 Male Going straight ahead (with priority) #> 4721 29 Male Going straight ahead (with priority) #> 4722 57 Male Going straight ahead (with priority) #> 4723 67 Male Other #> 4724 53 Male Slowing or stopping #> 4725 35 Female Going straight ahead (with priority) #> 4726 39 Male Going straight ahead (with priority) #> 4727 47 Male Making right turn #> 4728 28 Male Making U turn #> 4729 70 Male Going straight ahead (with priority) #> 4730 27 Male Going straight ahead (with priority) #> 4731 60 Male Going straight ahead (with priority) #> 4732 20 Male Parked #> 4733 53 Male Going straight ahead (with priority) #> 4734 49 Male Changing lanes or merging #> 4735 40 Male Other #> 4736 34 Male Going straight ahead (with priority) #> 4737 56 Male Going straight ahead (with priority) #> 4738 31 Male Going straight ahead (with priority) #> 4739 35 Male Going straight ahead (with priority) #> 4740 23 Female Changing lanes or merging #> 4741 52 Male Going straight ahead (with priority) #> 4742 33 Male Starting in traffic #> 4743 66 Male Going straight ahead (with priority) #> 4744 36 Male Going straight ahead (with priority) #> 4745 NA Not known Going straight ahead (with priority) #> 4746 26 Male Other #> 4747 27 Male Making left turn #> 4748 59 Male Going straight ahead (with priority) #> 4749 54 Female Making left turn #> 4750 44 Male Going straight ahead (with priority) #> 4751 59 Male Changing lanes or merging #> 4752 74 Male Going straight ahead (with priority) #> 4753 53 Female Making right turn #> 4754 52 Male Going straight ahead (with priority) #> 4755 64 Male Other #> 4756 61 Male Slowing or stopping #> 4757 40 Male Going straight ahead (with priority) #> 4758 22 Male Changing lanes or merging #> 4759 72 Male Going straight ahead (with priority) #> 4760 35 Male Making left turn #> 4761 42 Male Slowing or stopping #> 4762 56 Male Stopped in traffic #> 4763 39 Male Stopped in traffic #> 4764 44 Male Making right turn #> 4765 40 Male Slowing or stopping #> 4766 40 Male Slowing or stopping #> 4767 40 Male Slowing or stopping #> 4768 31 Male Slowing or stopping #> 4769 49 Male Slowing or stopping #> 4770 45 Male Slowing or stopping #> 4771 41 Male Going straight ahead (with priority) #> 4772 59 Male Starting in traffic #> 4773 73 Male Parked #> 4774 53 Male Going straight ahead (with priority) #> 4775 32 Male Going straight ahead (with priority) #> 4776 46 Male Changing lanes or merging #> 4777 25 Male Going straight ahead (with priority) #> 4778 55 Male Reversing #> 4779 52 Male Going straight ahead (with priority) #> 4780 32 Male Reversing #> 4781 38 Male Reversing #> 4782 35 Male Stopped in traffic #> 4783 NA Not known Going straight ahead (with priority) #> 4784 66 Male Changing lanes or merging #> 4785 59 Male Going straight ahead (with priority) #> 4786 61 Male Going straight ahead (with priority) #> 4787 56 Male Changing lanes or merging #> 4788 64 Male Changing lanes or merging #> 4789 55 Male Going straight ahead (with priority) #> 4790 52 Male Making right turn #> 4791 43 Male Making right turn #> 4792 NA Not known Going straight ahead (with priority) #> 4793 50 Male Going straight ahead (with priority) #> 4794 38 Female Stopped in traffic #> 4795 NA Not known Going straight ahead (with priority) #> 4796 55 Male Slowing or stopping #> 4797 42 Male Going Straight Ahead (against priority) #> 4798 63 Male Going straight ahead (with priority) #> 4799 53 Female Parked #> 4800 27 Male Reversing #> 4801 60 Female Starting in traffic #> 4802 28 Male Making left turn #> 4803 49 Male Going straight ahead (with priority) #> 4804 39 Male Going straight ahead (with priority) #> 4805 57 Male Starting in traffic #> 4806 47 Male Going straight ahead (with priority) #> 4807 19 Female Going straight ahead (with priority) #> 4808 79 Male Going straight ahead (with priority) #> 4809 32 Male Parked #> 4810 28 Male Going straight ahead (with priority) #> 4811 52 Male Going straight ahead (with priority) #> 4812 44 Male Going straight ahead (with priority) #> 4813 25 Male Overtaking on near-side #> 4814 49 Male Stopped in traffic #> 4815 51 Male Going straight ahead (with priority) #> 4816 51 Male Going straight ahead (with priority) #> 4817 NA Male Slowing or stopping #> 4818 34 Male Going straight ahead (with priority) #> 4819 25 Female Going straight ahead (with priority) #> 4820 32 Male Going straight ahead (with priority) #> 4821 27 Male Stopped in traffic #> 4822 37 Male Slowing or stopping #> 4823 32 Male Going straight ahead (with priority) #> 4824 42 Male Slowing or stopping #> 4825 65 Male Going straight ahead (with priority) #> 4826 44 Male Slowing or stopping #> 4827 42 Male Going straight ahead (with priority) #> 4828 39 Female Going straight ahead (with priority) #> 4829 47 Male Going straight ahead (with priority) #> 4830 44 Male Making right turn #> 4831 38 Male Going Straight Ahead (against priority) #> 4832 46 Male Going straight ahead (with priority) #> 4833 29 Male Going Straight Ahead (against priority) #> 4834 43 Male Slowing or stopping #> 4835 34 Male Going straight ahead (with priority) #> 4836 42 Female Stopped in traffic #> 4837 73 Male Going straight ahead (with priority) #> 4838 35 Male Making right turn #> 4839 46 Male Stopped in traffic #> 4840 21 Male Overtaking on off-side #> 4841 55 Male Making left turn #> 4842 55 Male Making left turn #> 4843 57 Male Slowing or stopping #> 4844 36 Male Slowing or stopping #> 4845 31 Male Slowing or stopping #> 4846 31 Male Making left turn #> 4847 25 Male Making left turn #> 4848 44 Male Making left turn #> 4849 33 Male Going straight ahead (with priority) #> 4850 47 Male Changing lanes or merging #> 4851 20 Male Going straight ahead (with priority) #> 4852 34 Male Changing lanes or merging #> 4853 32 Male Going straight ahead (with priority) #> 4854 63 Male Overtaking on off-side #> 4855 19 Male Going Straight Ahead (against priority) #> 4856 7 Female Going straight ahead (with priority) #> 4857 31 Male Making left turn #> 4858 62 Male Going straight ahead (with priority) #> 4859 25 Male Starting in traffic #> 4860 50 Male Going straight ahead (with priority) #> 4861 36 Male Making right turn #> 4862 26 Male Stopped in traffic #> 4863 27 Male Going straight ahead (with priority) #> 4864 15 Female Slowing or stopping #> 4865 24 Female Going Straight Ahead (against priority) #> 4866 52 Female Slowing or stopping #> 4867 45 Female Going straight ahead (with priority) #> 4868 50 Male Making right turn #> 4869 26 Male Going straight ahead (with priority) #> 4870 50 Male Going straight ahead (with priority) #> 4871 21 Female Making left turn #> 4872 44 Male Slowing or stopping #> 4873 47 Female Stopped in traffic #> 4874 63 Male Going straight ahead (with priority) #> 4875 63 Male Changing lanes or merging #> 4876 20 Male Going straight ahead (with priority) #> 4877 29 Male Going straight ahead (with priority) #> 4878 59 Male Changing lanes or merging #> 4879 61 Male Going straight ahead (with priority) #> 4880 67 Male Going straight ahead (with priority) #> 4881 44 Male Going straight ahead (with priority) #> 4882 53 Male Going straight ahead (with priority) #> 4883 54 Male Going straight ahead (with priority) #> 4884 22 Male Going straight ahead (with priority) #> 4885 20 Male Going straight ahead (with priority) #> 4886 28 Male Making right turn #> 4887 30 Male Going straight ahead (with priority) #> 4888 48 Male Going straight ahead (with priority) #> 4889 54 Male Going Straight Ahead (against priority) #> 4890 43 Male Slowing or stopping #> 4891 48 Male Going straight ahead (with priority) #> 4892 71 Male Going straight ahead (with priority) #> 4893 49 Male Going straight ahead (with priority) #> 4894 55 Male Going straight ahead (with priority) #> 4895 29 Male Going straight ahead (with priority) #> 4896 55 Male Going straight ahead (with priority) #> 4897 45 Female Going straight ahead (with priority) #> 4898 62 Male Going straight ahead (with priority) #> 4899 25 Male Slowing or stopping #> 4900 54 Male Slowing or stopping #> 4901 58 Female Going Straight Ahead (against priority) #> 4902 59 Male Going straight ahead (with priority) #> 4903 78 Male Stopped in traffic #> 4904 56 Male Going Straight Ahead (against priority) #> 4905 45 Male Slowing or stopping #> 4906 55 Male Making right turn #> 4907 56 Male Stopped in traffic #> 4908 30 Male Going straight ahead (with priority) #> 4909 37 Male Changing lanes or merging #> 4910 37 Male Changing lanes or merging #> 4911 28 Male Going straight ahead (with priority) #> 4912 45 Male Going straight ahead (with priority) #> 4913 35 Male Changing lanes or merging #> 4914 55 Male Going straight ahead (with priority) #> 4915 49 Male Making left turn #> 4916 35 Male Going straight ahead (with priority) #> 4917 38 Male Going straight ahead (with priority) #> 4918 31 Male Going straight ahead (with priority) #> 4919 35 Male Making right turn #> 4920 66 Male Changing lanes or merging #> 4921 32 Male Going straight ahead (with priority) #> 4922 62 Male Going straight ahead (with priority) #> 4923 32 Male Changing lanes or merging #> 4924 43 Male Making right turn #> 4925 55 Male Slowing or stopping #> 4926 33 Male Going Straight Ahead (against priority) #> 4927 NA Not known Going straight ahead (with priority) #> 4928 38 Male Going straight ahead (with priority) #> 4929 28 Female Stopped in traffic #> 4930 49 Male Going straight ahead (with priority) #> 4931 56 Male Slowing or stopping #> 4932 51 Male Making right turn #> 4933 58 Male Going straight ahead (with priority) #> 4934 54 Male Going straight ahead (with priority) #> 4935 39 Male Going straight ahead (with priority) #> 4936 71 Male Changing lanes or merging #> 4937 22 Male Going straight ahead (with priority) #> 4938 51 Male Slowing or stopping #> 4939 65 Male Slowing or stopping #> 4940 46 Female Going straight ahead (with priority) #> 4941 51 Male Changing lanes or merging #> 4942 42 Male Overtaking on off-side #> 4943 34 Male Making right turn #> 4944 48 Male Slowing or stopping #> 4945 46 Male Slowing or stopping #> 4946 27 Male Going straight ahead (with priority) #> 4947 64 Male Going straight ahead (with priority) #> 4948 43 Female Going straight ahead (with priority) #> 4949 56 Male Going straight ahead (with priority) #> 4950 54 Male Parked #> 4951 43 Male Reversing #> 4952 33 Male Starting in traffic #> 4953 37 Female Making right turn #> 4954 30 Male Going straight ahead (with priority) #> 4955 49 Male Going straight ahead (with priority) #> 4956 64 Male Going straight ahead (with priority) #> 4957 44 Female Making right turn #> 4958 64 Male Changing lanes or merging #> 4959 32 Male Going straight ahead (with priority) #> 4960 44 Female Going straight ahead (with priority) #> 4961 31 Male Going straight ahead (with priority) #> 4962 63 Male Starting in traffic #> 4963 37 Male Reversing #> 4964 17 Male Making right turn #> 4965 65 Male Making right turn #> 4966 26 Female Going straight ahead (with priority) #> 4967 43 Male Going straight ahead (with priority) #> 4968 28 Male Going straight ahead (with priority) #> 4969 47 Male Going Straight Ahead (against priority) #> 4970 31 Female Stopped in traffic #> 4971 55 Male Stopped in traffic #> 4972 65 Male Going straight ahead (with priority) #> 4973 23 Male Going straight ahead (with priority) #> 4974 33 Male Making right turn #> 4975 66 Male Changing lanes or merging #> 4976 26 Male Making right turn #> 4977 59 Female Going straight ahead (with priority) #> 4978 49 Male Making right turn #> 4979 59 Male Stopped in traffic #> 4980 39 Male Slowing or stopping #> 4981 32 Male Slowing or stopping #> 4982 51 Male Slowing or stopping #> 4983 46 Male Going straight ahead (with priority) #> 4984 34 Male Going straight ahead (with priority) #> 4985 32 Male Slowing or stopping #> 4986 46 Male Going Straight Ahead (against priority) #> 4987 30 Male Going straight ahead (with priority) #> 4988 38 Male Going straight ahead (with priority) #> 4989 39 Male Making left turn #> 4990 62 Male Going straight ahead (with priority) #> 4991 51 Male Starting in traffic #> 4992 29 Male Going straight ahead (with priority) #> 4993 55 Male Going Straight Ahead (against priority) #> 4994 27 Male Changing lanes or merging #> 4995 43 Male Going straight ahead (with priority) #> 4996 55 Male Making left turn #> 4997 38 Male Going straight ahead (with priority) #> 4998 48 Male Making right turn #> 4999 77 Male Going straight ahead (with priority) #> 5000 50 Male Going straight ahead (with priority) #> 5001 60 Male Reversing #> 5002 37 Male Stopped in traffic #> 5003 43 Male Going straight ahead (with priority) #> 5004 36 Male Stopped in traffic #> 5005 46 Male Stopped in traffic #> 5006 61 Male Stopped in traffic #> 5007 30 Male Making left turn #> 5008 52 Male Going straight ahead (with priority) #> 5009 58 Male Going straight ahead (with priority) #> 5010 66 Male Making right turn #> 5011 52 Male Going straight ahead (with priority) #> 5012 70 Male Going straight ahead (with priority) #> 5013 53 Male Going straight ahead (with priority) #> 5014 54 Male Making left turn #> 5015 40 Male Overtaking on near-side #> 5016 60 Male Making left turn #> 5017 NA Male Starting in traffic #> 5018 58 Male Starting in traffic #> 5019 44 Male Stopped in traffic #> 5020 52 Male Going straight ahead (with priority) #> 5021 47 Male Going straight ahead (with priority) #> 5022 64 Male Going Straight Ahead (against priority) #> 5023 25 Male Parked #> 5024 47 Male Making right turn #> 5025 66 Male Making left turn #> 5026 50 Female Other #> 5027 60 Male Making right turn #> 5028 45 Male Going straight ahead (with priority) #> 5029 63 Male Reversing #> 5030 50 Male Going straight ahead (with priority) #> 5031 37 Male Going straight ahead (with priority) #> 5032 43 Male Changing lanes or merging #> 5033 53 Male Going straight ahead (with priority) #> 5034 23 Male Going straight ahead (with priority) #> 5035 46 Male Leaving parking place #> 5036 26 Male Making left turn #> 5037 56 Female Making left turn #> 5038 69 Male Stopped in traffic #> 5039 24 Male Slowing or stopping #> 5040 65 Female Going straight ahead (with priority) #> 5041 29 Male Making left turn #> 5042 72 Male Going straight ahead (with priority) #> 5043 29 Male Going straight ahead (with priority) #> 5044 16 Male Going straight ahead (with priority) #> 5045 25 Female Going straight ahead (with priority) #> 5046 38 Male Making left turn #> 5047 69 Male Changing lanes or merging #> 5048 25 Male Going Straight Ahead (against priority) #> 5049 45 Male Going straight ahead (with priority) #> 5050 26 Male Going straight ahead (with priority) #> 5051 55 Male Going straight ahead (with priority) #> 5052 63 Male Going straight ahead (with priority) #> 5053 35 Male Going straight ahead (with priority) #> 5054 39 Male Going straight ahead (with priority) #> 5055 36 Male Going straight ahead (with priority) #> 5056 27 Male Changing lanes or merging #> 5057 27 Male Going straight ahead (with priority) #> 5058 43 Male Changing lanes or merging #> 5059 57 Male Going straight ahead (with priority) #> 5060 65 Male Going straight ahead (with priority) #> 5061 38 Male Changing lanes or merging #> 5062 34 Male Making U turn #> 5063 41 Male Starting in traffic #> 5064 38 Female Going straight ahead (with priority) #> 5065 43 Male Slowing or stopping #> 5066 59 Male Going Straight Ahead (against priority) #> 5067 49 Male Going straight ahead (with priority) #> 5068 54 Male Changing lanes or merging #> 5069 31 Male Changing lanes or merging #> 5070 34 Male Going straight ahead (with priority) #> 5071 55 Male Starting in traffic #> 5072 34 Male Going straight ahead (with priority) #> 5073 20 Male Going straight ahead (with priority) #> 5074 35 Male Changing lanes or merging #> 5075 58 Male Making left turn #> 5076 33 Male Making right turn #> 5077 46 Male Going straight ahead (with priority) #> 5078 54 Male Slowing or stopping #> 5079 48 Male Going straight ahead (with priority) #> 5080 52 Female Going straight ahead (with priority) #> 5081 40 Male Going straight ahead (with priority) #> 5082 57 Male Going straight ahead (with priority) #> 5083 61 Male Going straight ahead (with priority) #> 5084 45 Male Making right turn #> 5085 59 Male Going Straight Ahead (against priority) #> 5086 72 Male Starting in traffic #> 5087 29 Male Going straight ahead (with priority) #> 5088 61 Male Changing lanes or merging #> 5089 35 Male Making right turn #> 5090 59 Male Going Straight Ahead (against priority) #> 5091 59 Male Going straight ahead (with priority) #> 5092 39 Female Stopped in traffic #> 5093 45 Male Going straight ahead (with priority) #> 5094 51 Male Stopped in traffic #> 5095 NA Not known Going straight ahead (with priority) #> 5096 32 Male Slowing or stopping #> 5097 67 Male Slowing or stopping #> 5098 39 Male Slowing or stopping #> 5099 48 Male Stopped in traffic #> 5100 39 Male Slowing or stopping #> 5101 52 Male Slowing or stopping #> 5102 64 Male Going straight ahead (with priority) #> 5103 61 Male Going straight ahead (with priority) #> 5104 27 Male Going straight ahead (with priority) #> 5105 54 Male Reversing #> 5106 39 Male Stopped in traffic #> 5107 63 Male Going straight ahead (with priority) #> 5108 44 Male Changing lanes or merging #> 5109 42 Male Going straight ahead (with priority) #> 5110 61 Male Starting in traffic #> 5111 43 Male Going straight ahead (with priority) #> 5112 60 Female Changing lanes or merging #> 5113 55 Male Slowing or stopping #> 5114 30 Male Slowing or stopping #> 5115 60 Male Going straight ahead (with priority) #> 5116 47 Male Making right turn #> 5117 14 Male Going straight ahead (with priority) #> 5118 56 Male Going straight ahead (with priority) #> 5119 57 Male Going straight ahead (with priority) #> 5120 31 Male Going straight ahead (with priority) #> 5121 28 Male Going straight ahead (with priority) #> 5122 52 Male Making right turn #> 5123 46 Male Making left turn #> 5124 44 Male Going straight ahead (with priority) #> 5125 45 Female Changing lanes or merging #> 5126 33 Male Making right turn #> 5127 53 Male Stopped in traffic #> 5128 37 Male Going straight ahead (with priority) #> 5129 35 Male Stopped in traffic #> 5130 45 Male Slowing or stopping #> 5131 34 Male Making left turn #> 5132 49 Male Going straight ahead (with priority) #> 5133 60 Male Slowing or stopping #> 5134 14 Male Overtaking on off-side #> 5135 70 Male Making left turn #> 5136 50 Male Changing lanes or merging #> 5137 45 Male Going straight ahead (with priority) #> 5138 21 Male Going straight ahead (with priority) #> 5139 56 Male Going straight ahead (with priority) #> 5140 70 Male Going straight ahead (with priority) #> 5141 61 Male Going straight ahead (with priority) #> 5142 39 Male Going straight ahead (with priority) #> 5143 32 Male Going straight ahead (with priority) #> 5144 49 Male Unknown #> 5145 50 Male Stopped in traffic #> 5146 43 Male Going straight ahead (with priority) #> 5147 55 Male Changing lanes or merging #> 5148 54 Male Going straight ahead (with priority) #> 5149 56 Male Making left turn #> 5150 30 Male Going straight ahead (with priority) #> 5151 32 Male Going straight ahead (with priority) #> 5152 51 Male Going Straight Ahead (against priority) #> 5153 57 Male Going straight ahead (with priority) #> 5154 28 Male Going straight ahead (with priority) #> 5155 27 Male Going straight ahead (with priority) #> 5156 41 Male Going straight ahead (with priority) #> 5157 54 Male Changing lanes or merging #> 5158 56 Male Going straight ahead (with priority) #> 5159 47 Male Going straight ahead (with priority) #> 5160 50 Male Changing lanes or merging #> 5161 51 Male Going straight ahead (with priority) #> 5162 61 Male Making U turn #> 5163 36 Male Slowing or stopping #> 5164 63 Male Going Straight Ahead (against priority) #> 5165 45 Male Going Straight Ahead (against priority) #> 5166 55 Male Going straight ahead (with priority) #> 5167 21 Male Changing lanes or merging #> 5168 37 Male Making left turn #> 5169 34 Male Going straight ahead (with priority) #> 5170 54 Male Going straight ahead (with priority) #> 5171 68 Male Making right turn #> 5172 44 Male Slowing or stopping #> 5173 58 Male Reversing #> 5174 42 Male Slowing or stopping #> 5175 31 Male Going straight ahead (with priority) #> 5176 51 Male Starting in traffic #> 5177 58 Male Going straight ahead (with priority) #> 5178 51 Male Stopped in traffic #> 5179 54 Male Stopped in traffic #> 5180 25 Male Parked #> 5181 57 Male Going straight ahead (with priority) #> 5182 28 Male Going straight ahead (with priority) #> 5183 59 Male Slowing or stopping #> 5184 40 Male Slowing or stopping #> 5185 41 Male Going straight ahead (with priority) #> 5186 37 Male Going Straight Ahead (against priority) #> 5187 37 Male Going Straight Ahead (against priority) #> 5188 55 Male Slowing or stopping #> 5189 64 Male Going straight ahead (with priority) #> 5190 54 Male Going straight ahead (with priority) #> 5191 29 Male Going straight ahead (with priority) #> 5192 20 Male Going straight ahead (with priority) #> 5193 48 Male Going straight ahead (with priority) #> 5194 36 Female Changing lanes or merging #> 5195 59 Male Going straight ahead (with priority) #> 5196 28 Male Changing lanes or merging #> 5197 60 Male Going straight ahead (with priority) #> 5198 41 Female Slowing or stopping #> 5199 36 Female Going straight ahead (with priority) #> 5200 56 Male Going straight ahead (with priority) #> 5201 42 Male Making right turn #> 5202 47 Male Going straight ahead (with priority) #> 5203 47 Male Going straight ahead (with priority) #> 5204 31 Female Starting in traffic #> 5205 54 Male Stopped in traffic #> 5206 46 Male Going straight ahead (with priority) #> 5207 40 Female Going straight ahead (with priority) #> 5208 58 Male Going straight ahead (with priority) #> 5209 54 Male Stopped in traffic #> 5210 62 Male Going straight ahead (with priority) #> 5211 39 Male Slowing or stopping #> 5212 63 Male Going straight ahead (with priority) #> 5213 56 Male Going straight ahead (with priority) #> 5214 36 Male Going straight ahead (with priority) #> 5215 60 Male Going straight ahead (with priority) #> 5216 36 Male Going Straight Ahead (against priority) #> 5217 31 Male Going straight ahead (with priority) #> 5218 46 Male Making left turn #> 5219 57 Male Reversing #> 5220 35 Male Changing lanes or merging #> 5221 53 Male Going straight ahead (with priority) #> 5222 45 Male Going straight ahead (with priority) #> 5223 56 Male Changing lanes or merging #> 5224 67 Male Going Straight Ahead (against priority) #> 5225 49 Male Going straight ahead (with priority) #> 5226 48 Male Changing lanes or merging #> 5227 47 Male Going straight ahead (with priority) #> 5228 36 Male Making left turn #> 5229 43 Male Going straight ahead (with priority) #> 5230 50 Male Going straight ahead (with priority) #> 5231 35 Male Going straight ahead (with priority) #> 5232 58 Male Going straight ahead (with priority) #> 5233 64 Male Going Straight Ahead (against priority) #> 5234 50 Male Going Straight Ahead (against priority) #> 5235 45 Male Making right turn #> 5236 48 Male Going straight ahead (with priority) #> 5237 55 Male Reversing #> 5238 45 Male Going straight ahead (with priority) #> 5239 22 Male Going straight ahead (with priority) #> 5240 28 Male Changing lanes or merging #> 5241 36 Male Going straight ahead (with priority) #> 5242 39 Male Going straight ahead (with priority) #> 5243 41 Male Going straight ahead (with priority) #> 5244 35 Male Going straight ahead (with priority) #> 5245 34 Male Going straight ahead (with priority) #> 5246 59 Male Changing lanes or merging #> 5247 47 Male Going straight ahead (with priority) #> 5248 34 Male Going Straight Ahead (against priority) #> 5249 58 Male Going Straight Ahead (against priority) #> 5250 60 Male Going Straight Ahead (against priority) #> 5251 51 Male Going straight ahead (with priority) #> 5252 NA Not known Ran off road #> 5253 26 Male Making left turn #> 5254 42 Male Slowing or stopping #> 5255 38 Male Making right turn #> 5256 35 Male Going straight ahead (with priority) #> 5257 27 Male Going straight ahead (with priority) #> 5258 25 Male Making right turn #> 5259 64 Male Changing lanes or merging #> 5260 35 Male Going straight ahead (with priority) #> 5261 59 Male Going straight ahead (with priority) #> 5262 28 Male Going straight ahead (with priority) #> 5263 52 Female Going straight ahead (with priority) #> 5264 54 Female Slowing or stopping #> 5265 59 Male Slowing or stopping #> 5266 51 Male Slowing or stopping #> 5267 30 Male Making right turn #> 5268 44 Male Stopped in traffic #> 5269 45 Male Going straight ahead (with priority) #> 5270 57 Male Changing lanes or merging #> 5271 6 Male Slowing or stopping #> 5272 7 Male Slowing or stopping #> 5273 36 Female Going straight ahead (with priority) #> 5274 67 Male Making right turn #> 5275 63 Male Changing lanes or merging #> 5276 50 Male Going straight ahead (with priority) #> 5277 61 Male Going straight ahead (with priority) #> 5278 55 Male Making right turn #> 5279 57 Male Going straight ahead (with priority) #> 5280 55 Male Going straight ahead (with priority) #> 5281 35 Male Slowing or stopping #> 5282 49 Male Slowing or stopping #> 5283 28 Male Slowing or stopping #> 5284 37 Male Going straight ahead (with priority) #> 5285 45 Male Changing lanes or merging #> 5286 8 Male Going straight ahead (with priority) #> 5287 50 Male Stopped in traffic #> 5288 57 Male Stopped in traffic #> 5289 38 Male Going Straight Ahead (against priority) #> 5290 32 Male Going straight ahead (with priority) #> 5291 38 Male Starting in traffic #> 5292 52 Male Changing lanes or merging #> 5293 30 Male Going straight ahead (with priority) #> 5294 61 Male Going straight ahead (with priority) #> 5295 26 Male Going straight ahead (with priority) #> 5296 51 Male Stopped in traffic #> 5297 62 Male Going straight ahead (with priority) #> 5298 43 Male Going straight ahead (with priority) #> 5299 72 Male Slowing or stopping #> 5300 63 Male Going straight ahead (with priority) #> 5301 54 Male Making right turn #> 5302 30 Male Making right turn #> 5303 25 Male Going straight ahead (with priority) #> 5304 48 Male Going straight ahead (with priority) #> 5305 40 Male Leaving parking place #> 5306 44 Male Going straight ahead (with priority) #> 5307 56 Male Going straight ahead (with priority) #> 5308 23 Male Going straight ahead (with priority) #> 5309 49 Female Going straight ahead (with priority) #> 5310 63 Male Going straight ahead (with priority) #> 5311 53 Male Going straight ahead (with priority) #> 5312 37 Female Slowing or stopping #> 5313 33 Male Going straight ahead (with priority) #> 5314 59 Male Reversing #> 5315 41 Male Parked #> 5316 49 Male Starting in traffic #> 5317 55 Male Going straight ahead (with priority) #> 5318 19 Male Going straight ahead (with priority) #> 5319 39 Male Going straight ahead (with priority) #> 5320 58 Male Making right turn #> 5321 67 Male Reversing #> 5322 35 Male Going straight ahead (with priority) #> 5323 49 Female Other #> 5324 23 Male Making right turn #> 5325 27 Male Slowing or stopping #> 5326 47 Male Going Straight Ahead (against priority) #> 5327 46 Male Slowing or stopping #> 5328 28 Male Going straight ahead (with priority) #> 5329 56 Male Going straight ahead (with priority) #> 5330 53 Male Going straight ahead (with priority) #> 5331 41 Male Going straight ahead (with priority) #> 5332 41 Female Going straight ahead (with priority) #> 5333 27 Male Going straight ahead (with priority) #> 5334 53 Male Making right turn #> 5335 48 Male Going straight ahead (with priority) #> 5336 63 Male Going straight ahead (with priority) #> 5337 26 Male Going straight ahead (with priority) #> 5338 50 Male Going straight ahead (with priority) #> 5339 72 Male Going straight ahead (with priority) #> 5340 26 Male Going straight ahead (with priority) #> 5341 47 Female Going straight ahead (with priority) #> 5342 48 Male Going straight ahead (with priority) #> 5343 32 Male Going Straight Ahead (against priority) #> 5344 41 Female Going straight ahead (with priority) #> 5345 53 Male Starting in traffic #> 5346 60 Male Slowing or stopping #> 5347 47 Male Going Straight Ahead (against priority) #> 5348 33 Male Slowing or stopping #> 5349 33 Male Going straight ahead (with priority) #> 5350 52 Male Going straight ahead (with priority) #> 5351 59 Male Going Straight Ahead (against priority) #> 5352 58 Male Going Straight Ahead (against priority) #> 5353 51 Male Slowing or stopping #> 5354 69 Male Slowing or stopping #> 5355 52 Male Slowing or stopping #> 5356 43 Male Going straight ahead (with priority) #> 5357 42 Male Stopped in traffic #> 5358 30 Female Going straight ahead (with priority) #> 5359 30 Female Going straight ahead (with priority) #> 5360 63 Male Changing lanes or merging #> 5361 50 Male Going straight ahead (with priority) #> 5362 64 Male Going straight ahead (with priority) #> 5363 47 Male Going straight ahead (with priority) #> 5364 36 Male Stopped in traffic #> 5365 49 Male Going straight ahead (with priority) #> 5366 34 Male Going straight ahead (with priority) #> 5367 38 Male Going Straight Ahead (against priority) #> 5368 44 Male Going straight ahead (with priority) #> 5369 65 Male Going straight ahead (with priority) #> 5370 46 Female Going straight ahead (with priority) #> 5371 35 Female Reversing #> 5372 31 Male Parked #> 5373 31 Male Making right turn #> 5374 54 Male Going straight ahead (with priority) #> 5375 47 Male Going straight ahead (with priority) #> 5376 49 Male Going straight ahead (with priority) #> 5377 52 Male Going straight ahead (with priority) #> 5378 50 Male Going straight ahead (with priority) #> 5379 44 Male Making right turn #> 5380 28 Female Reversing #> 5381 34 Female Going straight ahead (with priority) #> 5382 52 Male Going straight ahead (with priority) #> 5383 53 Male Starting in traffic #> 5384 62 Male Going straight ahead (with priority) #> 5385 23 Male Parked #> 5386 29 Male Going straight ahead (with priority) #> 5387 55 Male Going straight ahead (with priority) #> 5388 41 Male Going straight ahead (with priority) #> 5389 57 Male Going straight ahead (with priority) #> 5390 33 Female Changing lanes or merging #> 5391 57 Male Going straight ahead (with priority) #> 5392 59 Male Going straight ahead (with priority) #> 5393 43 Male Going straight ahead (with priority) #> 5394 51 Male Making right turn #> 5395 35 Male Going straight ahead (with priority) #> 5396 48 Male Making right turn #> 5397 NA Not known Starting in traffic #> 5398 62 Male Going straight ahead (with priority) #> 5399 58 Male Going straight ahead (with priority) #> 5400 49 Male Going straight ahead (with priority) #> 5401 50 Male Going straight ahead (with priority) #> 5402 43 Male Going straight ahead (with priority) #> 5403 27 Male Going straight ahead (with priority) #> 5404 29 Male Making left turn #> 5405 58 Male Making left turn #> 5406 48 Male Going straight ahead (with priority) #> 5407 39 Male Going straight ahead (with priority) #> 5408 65 Male Going straight ahead (with priority) #> 5409 52 Male Going straight ahead (with priority) #> 5410 60 Male Going straight ahead (with priority) #> 5411 45 Female Going straight ahead (with priority) #> 5412 47 Male Starting in traffic #> 5413 70 Male Starting in traffic #> 5414 18 Female Going straight ahead (with priority) #> 5415 32 Male Going straight ahead (with priority) #> 5416 43 Male Stopped in traffic #> 5417 61 Male Slowing or stopping #> 5418 58 Male Stopped in traffic #> 5419 55 Male Changing lanes or merging #> 5420 43 Male Going straight ahead (with priority) #> 5421 55 Male Changing lanes or merging #> 5422 54 Male Going straight ahead (with priority) #> 5423 36 Male Slowing or stopping #> 5424 20 Male Going Straight Ahead (against priority) #> 5425 32 Male Going straight ahead (with priority) #> 5426 29 Female Going straight ahead (with priority) #> 5427 75 Male Going straight ahead (with priority) #> 5428 35 Male Going straight ahead (with priority) #> 5429 38 Female Going straight ahead (with priority) #> 5430 44 Male Going straight ahead (with priority) #> 5431 33 Male Other #> 5432 55 Male Going Straight Ahead (against priority) #> 5433 46 Male Going straight ahead (with priority) #> 5434 27 Male Making right turn #> 5435 60 Male Going straight ahead (with priority) #> 5436 61 Male Going straight ahead (with priority) #> 5437 57 Male Other #> 5438 68 Male Going straight ahead (with priority) #> 5439 57 Female Going straight ahead (with priority) #> 5440 47 Male Going straight ahead (with priority) #> 5441 26 Male Going straight ahead (with priority) #> 5442 33 Male Going straight ahead (with priority) #> 5443 26 Male Stopped in traffic #> 5444 55 Male Going straight ahead (with priority) #> 5445 65 Male Going straight ahead (with priority) #> 5446 75 Male Going straight ahead (with priority) #> 5447 51 Male Going straight ahead (with priority) #> 5448 33 Male Going straight ahead (with priority) #> 5449 31 Male Going straight ahead (with priority) #> 5450 64 Male Making U turn #> 5451 20 Male Making right turn #> 5452 32 Male Going straight ahead (with priority) #> 5453 43 Male Stopped in traffic #> 5454 41 Male Stopped in traffic #> 5455 59 Female Slowing or stopping #> 5456 31 Male Slowing or stopping #> 5457 48 Male Making right turn #> 5458 43 Male Going straight ahead (with priority) #> 5459 40 Male Stopped in traffic #> 5460 34 Female Driverless moving vehicle #> 5461 62 Male Going straight ahead (with priority) #> 5462 24 Male Changing lanes or merging #> 5463 40 Male Changing lanes or merging #> 5464 15 Male Making right turn #> 5465 63 Male Starting in traffic #> 5466 53 Male Changing lanes or merging #> 5467 51 Male Making right turn #> 5468 40 Male Overtaking on off-side #> 5469 63 Male Slowing or stopping #> 5470 28 Male Going straight ahead (with priority) #> 5471 46 Male Going straight ahead (with priority) #> 5472 58 Male Going straight ahead (with priority) #> 5473 NA Not known Unknown #> 5474 48 Male Going straight ahead (with priority) #> 5475 51 Male Changing lanes or merging #> 5476 40 Male Parked #> 5477 27 Male Going Straight Ahead (against priority) #> 5478 10 Male Going straight ahead (with priority) #> 5479 36 Male Going straight ahead (with priority) #> 5480 36 Male Going Straight Ahead (against priority) #> 5481 65 Male Making right turn #> 5482 27 Male Going straight ahead (with priority) #> 5483 49 Male Stopped in traffic #> 5484 26 Male Going straight ahead (with priority) #> 5485 62 Male Starting in traffic #> 5486 21 Male Going straight ahead (with priority) #> 5487 21 Male Stopped in traffic #> 5488 32 Male Going straight ahead (with priority) #> 5489 47 Male Going straight ahead (with priority) #> 5490 48 Male Changing lanes or merging #> 5491 27 Male Going straight ahead (with priority) #> 5492 62 Male Going straight ahead (with priority) #> 5493 66 Male Changing lanes or merging #> 5494 69 Male Going straight ahead (with priority) #> 5495 24 Male Going straight ahead (with priority) #> 5496 61 Male Going straight ahead (with priority) #> 5497 54 Male Making right turn #> 5498 46 Female Making right turn #> 5499 45 Male Making right turn #> 5500 NA Male Going straight ahead (with priority) #> 5501 30 Male Going straight ahead (with priority) #> 5502 55 Male Parked #> 5503 51 Male Going straight ahead (with priority) #> 5504 20 Male Changing lanes or merging #> 5505 29 Male Going straight ahead (with priority) #> 5506 70 Male Going straight ahead (with priority) #> 5507 17 Male Going straight ahead (with priority) #> 5508 42 Male Stopped in traffic #> 5509 52 Male Going Straight Ahead (against priority) #> 5510 24 Male Making right turn #> 5511 56 Male Making right turn #> 5512 46 Male Going straight ahead (with priority) #> 5513 46 Male Starting in traffic #> 5514 55 Male Changing lanes or merging #> 5515 34 Male Slowing or stopping #> 5516 57 Male Going straight ahead (with priority) #> 5517 24 Male Going straight ahead (with priority) #> 5518 37 Male Going straight ahead (with priority) #> 5519 72 Male Going straight ahead (with priority) #> 5520 58 Male Stopped in traffic #> 5521 48 Male Going straight ahead (with priority) #> 5522 42 Male Stopped in traffic #> 5523 29 Male Going straight ahead (with priority) #> 5524 55 Male Making right turn #> 5525 29 Male Making left turn #> 5526 61 Female Going straight ahead (with priority) #> 5527 57 Male Going straight ahead (with priority) #> 5528 41 Male Going straight ahead (with priority) #> 5529 32 Male Going straight ahead (with priority) #> 5530 48 Male Changing lanes or merging #> 5531 67 Male Going straight ahead (with priority) #> 5532 20 Male Going straight ahead (with priority) #> 5533 9 Male Going straight ahead (with priority) #> 5534 37 Male Going straight ahead (with priority) #> 5535 35 Male Making U turn #> 5536 26 Male Going straight ahead (with priority) #> 5537 28 Male Going straight ahead (with priority) #> 5538 51 Male Starting in traffic #> 5539 67 Male Going straight ahead (with priority) #> 5540 42 Male Driverless moving vehicle #> 5541 50 Female Making U turn #> 5542 69 Male Changing lanes or merging #> 5543 31 Male Going straight ahead (with priority) #> 5544 58 Male Going straight ahead (with priority) #> 5545 36 Male Starting in traffic #> 5546 33 Male Changing lanes or merging #> 5547 30 Male Going straight ahead (with priority) #> 5548 47 Male Going straight ahead (with priority) #> 5549 71 Male Starting in traffic #> 5550 32 Male Making right turn #> 5551 30 Female Going straight ahead (with priority) #> 5552 34 Male Going straight ahead (with priority) #> 5553 38 Male Going straight ahead (with priority) #> 5554 48 Male Unknown #> 5555 35 Male Stopped in traffic #> 5556 51 Male Stopped in traffic #> 5557 45 Male Going straight ahead (with priority) #> 5558 30 Male Slowing or stopping #> 5559 18 Male Reversing #> 5560 47 Male Going straight ahead (with priority) #> 5561 51 Male Going straight ahead (with priority) #> 5562 35 Male Stopped in traffic #> 5563 55 Male Going straight ahead (with priority) #> 5564 36 Male Going Straight Ahead (against priority) #> 5565 29 Male Slowing or stopping #> 5566 41 Male Going straight ahead (with priority) #> 5567 54 Male Stopped in traffic #> 5568 58 Male Slowing or stopping #> 5569 40 Male Going straight ahead (with priority) #> 5570 17 Male Going straight ahead (with priority) #> 5571 51 Male Stopped in traffic #> 5572 31 Male Starting in traffic #> 5573 52 Male Stopped in traffic #> 5574 45 Male Going Straight Ahead (against priority) #> 5575 66 Male Going straight ahead (with priority) #> 5576 61 Male Going straight ahead (with priority) #> 5577 53 Male Reversing #> 5578 26 Male Going Straight Ahead (against priority) #> 5579 57 Male Going straight ahead (with priority) #> 5580 34 Male Slowing or stopping #> 5581 27 Male Changing lanes or merging #> 5582 63 Male Going straight ahead (with priority) #> 5583 58 Male Making right turn #> 5584 46 Male Going straight ahead (with priority) #> 5585 51 Male Going Straight Ahead (against priority) #> 5586 51 Male Making right turn #> 5587 NA Not known Going straight ahead (with priority) #> 5588 67 Male Going straight ahead (with priority) #> 5589 32 Female Going straight ahead (with priority) #> 5590 39 Male Going straight ahead (with priority) #> 5591 56 Male Going straight ahead (with priority) #> 5592 43 Male Going straight ahead (with priority) #> 5593 36 Male Making U turn #> 5594 55 Male Going straight ahead (with priority) #> 5595 35 Male Going straight ahead (with priority) #> 5596 NA Male Slowing or stopping #> 5597 10 Male Going straight ahead (with priority) #> 5598 28 Male Going straight ahead (with priority) #> 5599 57 Male Going straight ahead (with priority) #> 5600 30 Male Going straight ahead (with priority) #> 5601 55 Male Going straight ahead (with priority) #> 5602 40 Male Reversing #> 5603 51 Male Going straight ahead (with priority) #> 5604 73 Male Going straight ahead (with priority) #> 5605 55 Male Going straight ahead (with priority) #> 5606 41 Male Stopped in traffic #> 5607 52 Male Going straight ahead (with priority) #> 5608 45 Male Stopped in traffic #> 5609 49 Male Going straight ahead (with priority) #> 5610 46 Male Stopped in traffic #> 5611 26 Female Going straight ahead (with priority) #> 5612 39 Male Going straight ahead (with priority) #> 5613 50 Male Going straight ahead (with priority) #> 5614 42 Male Going straight ahead (with priority) #> 5615 57 Male Stopped in traffic #> 5616 29 Female Going straight ahead (with priority) #> 5617 27 Female Going straight ahead (with priority) #> 5618 50 Male Making right turn #> 5619 52 Male Slowing or stopping #> 5620 51 Male Going straight ahead (with priority) #> 5621 61 Female Making right turn #> 5622 40 Male Going straight ahead (with priority) #> 5623 21 Male Going straight ahead (with priority) #> 5624 63 Male Stopped in traffic #> 5625 57 Male Going straight ahead (with priority) #> 5626 36 Male Stopped in traffic #> 5627 40 Male Reversing #> 5628 32 Male Going straight ahead (with priority) #> 5629 NA Male Stopped in traffic #> 5630 30 Male Going straight ahead (with priority) #> 5631 44 Female Going straight ahead (with priority) #> 5632 52 Male Reversing #> 5633 56 Male Going straight ahead (with priority) #> 5634 83 Male Going straight ahead (with priority) #> 5635 56 Female Making right turn #> 5636 42 Male Making left turn #> 5637 12 Male Making left turn #> 5638 64 Male Going straight ahead (with priority) #> 5639 41 Female Going straight ahead (with priority) #> 5640 40 Male Going straight ahead (with priority) #> 5641 58 Male Starting in traffic #> 5642 13 Male Slowing or stopping #> 5643 56 Male Going straight ahead (with priority) #> 5644 30 Male Going straight ahead (with priority) #> 5645 66 Male Changing lanes or merging #> 5646 38 Male Going straight ahead (with priority) #> 5647 35 Male Going straight ahead (with priority) #> 5648 45 Male Going straight ahead (with priority) #> 5649 60 Male Changing lanes or merging #> 5650 62 Male Going straight ahead (with priority) #> 5651 53 Male Going straight ahead (with priority) #> 5652 41 Male Going straight ahead (with priority) #> 5653 45 Male Going straight ahead (with priority) #> 5654 21 Male Making left turn #> 5655 61 Male Going straight ahead (with priority) #> 5656 32 Female Going straight ahead (with priority) #> 5657 54 Male Going straight ahead (with priority) #> 5658 42 Male Going straight ahead (with priority) #> 5659 39 Male Going straight ahead (with priority) #> 5660 44 Male Going straight ahead (with priority) #> 5661 47 Male Going straight ahead (with priority) #> 5662 37 Male Ran off road #> 5663 14 Male Making left turn #> 5664 41 Male Starting in traffic #> 5665 56 Male Going straight ahead (with priority) #> 5666 66 Male Making U turn #> 5667 55 Male Parked #> 5668 41 Male Going straight ahead (with priority) #> 5669 60 Male Making left turn #> 5670 54 Male Going straight ahead (with priority) #> 5671 44 Male Going straight ahead (with priority) #> 5672 56 Male Going straight ahead (with priority) #> 5673 75 Male Going straight ahead (with priority) #> 5674 44 Male Going straight ahead (with priority) #> 5675 55 Male Going straight ahead (with priority) #> 5676 59 Male Changing lanes or merging #> 5677 23 Female Going straight ahead (with priority) #> 5678 50 Male Making right turn #> 5679 58 Male Other #> 5680 55 Male Going straight ahead (with priority) #> 5681 40 Male Other #> 5682 43 Male Making right turn #> 5683 49 Male Making left turn #> 5684 59 Male Unknown #> 5685 63 Male Going straight ahead (with priority) #> 5686 36 Male Making U turn #> 5687 55 Male Making left turn #> 5688 42 Male Slowing or stopping #> 5689 61 Male Going straight ahead (with priority) #> 5690 52 Male Parked #> 5691 38 Male Going straight ahead (with priority) #> 5692 31 Female Slowing or stopping #> 5693 43 Male Going straight ahead (with priority) #> 5694 41 Male Going straight ahead (with priority) #> 5695 63 Male Changing lanes or merging #> 5696 39 Male Slowing or stopping #> 5697 31 Male Going straight ahead (with priority) #> 5698 42 Male Stopped in traffic #> 5699 NA Not known Going straight ahead (with priority) #> 5700 37 Male Going straight ahead (with priority) #> 5701 46 Male Going straight ahead (with priority) #> 5702 23 Male Making left turn #> 5703 54 Male Going straight ahead (with priority) #> 5704 50 Female Going straight ahead (with priority) #> 5705 40 Female Going straight ahead (with priority) #> 5706 55 Male Changing lanes or merging #> 5707 46 Male Going straight ahead (with priority) #> 5708 69 Male Stopped in traffic #> 5709 28 Male Going straight ahead (with priority) #> 5710 47 Male Going straight ahead (with priority) #> 5711 59 Male Going straight ahead (with priority) #> 5712 20 Male Going straight ahead (with priority) #> 5713 29 Male Going straight ahead (with priority) #> 5714 27 Male Making right turn #> 5715 43 Male Starting in traffic #> 5716 56 Male Going straight ahead (with priority) #> 5717 23 Male Going straight ahead (with priority) #> 5718 36 Male Going straight ahead (with priority) #> 5719 55 Male Parked #> 5720 48 Male Reversing #> 5721 29 Male Parked #> 5722 29 Male Going straight ahead (with priority) #> 5723 41 Male Going straight ahead (with priority) #> 5724 48 Male Going straight ahead (with priority) #> 5725 54 Male Going straight ahead (with priority) #> 5726 62 Female Going straight ahead (with priority) #> 5727 35 Male Going straight ahead (with priority) #> 5728 55 Male Going straight ahead (with priority) #> 5729 30 Male Going straight ahead (with priority) #> 5730 29 Male Going straight ahead (with priority) #> 5731 53 Male Going straight ahead (with priority) #> 5732 49 Male Going straight ahead (with priority) #> 5733 NA Male Going straight ahead (with priority) #> 5734 51 Male Going straight ahead (with priority) #> 5735 58 Male Reversing #> 5736 45 Male Slowing or stopping #> 5737 35 Male Slowing or stopping #> 5738 66 Male Going straight ahead (with priority) #> 5739 36 Male Going straight ahead (with priority) #> 5740 46 Male Going straight ahead (with priority) #> 5741 64 Male Going Straight Ahead (against priority) #> 5742 44 Male Slowing or stopping #> 5743 60 Male Changing lanes or merging #> 5744 47 Male Going straight ahead (with priority) #> 5745 26 Male Going straight ahead (with priority) #> 5746 37 Male Going straight ahead (with priority) #> 5747 55 Male Changing lanes or merging #> 5748 60 Male Going straight ahead (with priority) #> 5749 52 Male Slowing or stopping #> 5750 58 Male Going straight ahead (with priority) #> 5751 60 Male Going Straight Ahead (against priority) #> 5752 53 Male Going straight ahead (with priority) #> 5753 34 Male Going straight ahead (with priority) #> 5754 60 Male Going straight ahead (with priority) #> 5755 45 Male Making left turn #> 5756 31 Male Overtaking on near-side #> 5757 58 Male Going straight ahead (with priority) #> 5758 50 Male Parked #> 5759 35 Male Stopped in traffic #> 5760 46 Male Making right turn #> 5761 63 Male Stopped in traffic #> 5762 46 Male Going Straight Ahead (against priority) #> 5763 45 Male Going straight ahead (with priority) #> 5764 33 Male Going straight ahead (with priority) #> 5765 70 Male Changing lanes or merging #> 5766 40 Male Going straight ahead (with priority) #> 5767 50 Male Changing lanes or merging #> 5768 52 Male Changing lanes or merging #> 5769 55 Male Going straight ahead (with priority) #> 5770 47 Male Going straight ahead (with priority) #> 5771 67 Male Going Straight Ahead (against priority) #> 5772 47 Male Slowing or stopping #> 5773 35 Male Slowing or stopping #> 5774 62 Male Going straight ahead (with priority) #> 5775 55 Male Slowing or stopping #> 5776 49 Male Slowing or stopping #> 5777 34 Female Going straight ahead (with priority) #> 5778 58 Male Going straight ahead (with priority) #> 5779 49 Male Going straight ahead (with priority) #> 5780 52 Male Making right turn #> 5781 32 Male Making right turn #> 5782 55 Male Going straight ahead (with priority) #> 5783 46 Male Going straight ahead (with priority) #> 5784 18 Male Going straight ahead (with priority) #> 5785 56 Male Stopped in traffic #> 5786 34 Male Going straight ahead (with priority) #> 5787 28 Female Going straight ahead (with priority) #> 5788 41 Male Making right turn #> 5789 34 Male Stopped in traffic #> 5790 65 Male Going straight ahead (with priority) #> 5791 59 Male Going straight ahead (with priority) #> 5792 52 Male Going straight ahead (with priority) #> 5793 28 Male Going straight ahead (with priority) #> 5794 58 Male Going Straight Ahead (against priority) #> 5795 46 Male Slowing or stopping #> 5796 52 Male Stopped in traffic #> 5797 60 Male Changing lanes or merging #> 5798 55 Male Going straight ahead (with priority) #> 5799 50 Male Going straight ahead (with priority) #> 5800 45 Female Going straight ahead (with priority) #> 5801 51 Male Going straight ahead (with priority) #> 5802 49 Male Going straight ahead (with priority) #> 5803 40 Male Going straight ahead (with priority) #> 5804 45 Male Slowing or stopping #> 5805 50 Male Slowing or stopping #> 5806 60 Male Slowing or stopping #> 5807 29 Male Going straight ahead (with priority) #> 5808 38 Male Making right turn #> 5809 60 Male Going straight ahead (with priority) #> 5810 54 Male Going straight ahead (with priority) #> 5811 44 Male Slowing or stopping #> 5812 9 Male Going straight ahead (with priority) #> 5813 45 Female Starting in traffic #> 5814 71 Male Going straight ahead (with priority) #> 5815 34 Male Going straight ahead (with priority) #> 5816 56 Male Going straight ahead (with priority) #> 5817 58 Male Going straight ahead (with priority) #> 5818 40 Male Going straight ahead (with priority) #> 5819 33 Female Changing lanes or merging #> 5820 24 Male Making left turn #> 5821 45 Female Going straight ahead (with priority) #> 5822 39 Male Going straight ahead (with priority) #> 5823 26 Male Going straight ahead (with priority) #> 5824 56 Male Going straight ahead (with priority) #> 5825 NA Not known Going straight ahead (with priority) #> 5826 35 Male Going straight ahead (with priority) #> 5827 60 Male Reversing #> 5828 31 Male Making right turn #> 5829 40 Male Stopped in traffic #> 5830 40 Male Going straight ahead (with priority) #> 5831 42 Male Going straight ahead (with priority) #> 5832 50 Male Going straight ahead (with priority) #> 5833 40 Male Going straight ahead (with priority) #> 5834 54 Male Going straight ahead (with priority) #> 5835 36 Male Parked #> 5836 29 Male Going straight ahead (with priority) #> 5837 45 Male Making left turn #> 5838 49 Male Going straight ahead (with priority) #> 5839 53 Male Slowing or stopping #> 5840 41 Male Going straight ahead (with priority) #> 5841 42 Male Going straight ahead (with priority) #> 5842 41 Male Stopped in traffic #> 5843 56 Male Stopped in traffic #> 5844 26 Male Going straight ahead (with priority) #> 5845 36 Male Going Straight Ahead (against priority) #> 5846 41 Male Reversing #> 5847 29 Male Parked #> 5848 48 Male Going straight ahead (with priority) #> 5849 57 Male Going straight ahead (with priority) #> 5850 32 Male Going straight ahead (with priority) #> 5851 43 Male Going Straight Ahead (against priority) #> 5852 45 Male Going Straight Ahead (against priority) #> 5853 52 Male Stopped in traffic #> 5854 31 Male Going Straight Ahead (against priority) #> 5855 57 Male Slowing or stopping #> 5856 53 Male Making left turn #> 5857 55 Male Making right turn #> 5858 66 Male Going straight ahead (with priority) #> 5859 46 Male Going straight ahead (with priority) #> 5860 61 Male Going straight ahead (with priority) #> 5861 57 Male Making left turn #> 5862 55 Male Reversing #> 5863 66 Male Making right turn #> 5864 45 Male Going straight ahead (with priority) #> 5865 55 Male Making right turn #> 5866 33 Male Going straight ahead (with priority) #> 5867 31 Male Going straight ahead (with priority) #> 5868 53 Male Going straight ahead (with priority) #> 5869 49 Male Going straight ahead (with priority) #> 5870 52 Male Going straight ahead (with priority) #> 5871 53 Female Making right turn #> 5872 48 Male Going straight ahead (with priority) #> 5873 58 Male Stopped in traffic #> 5874 31 Male Going straight ahead (with priority) #> 5875 33 Male Going straight ahead (with priority) #> 5876 39 Male Making right turn #> 5877 20 Male Going straight ahead (with priority) #> 5878 54 Male Going straight ahead (with priority) #> 5879 65 Male Going straight ahead (with priority) #> 5880 26 Male Going straight ahead (with priority) #> 5881 50 Male Going straight ahead (with priority) #> 5882 50 Male Going straight ahead (with priority) #> 5883 56 Male Going straight ahead (with priority) #> 5884 35 Male Going straight ahead (with priority) #> 5885 23 Male Going straight ahead (with priority) #> 5886 30 Male Going straight ahead (with priority) #> 5887 31 Male Slowing or stopping #> 5888 57 Male Going straight ahead (with priority) #> 5889 51 Male Slowing or stopping #> 5890 58 Male Making right turn #> 5891 30 Male Going straight ahead (with priority) #> 5892 62 Male Going straight ahead (with priority) #> 5893 35 Female Going straight ahead (with priority) #> 5894 26 Male Making left turn #> 5895 45 Male Going straight ahead (with priority) #> 5896 62 Male Going straight ahead (with priority) #> 5897 35 Female Going straight ahead (with priority) #> 5898 62 Male Going straight ahead (with priority) #> 5899 44 Male Going straight ahead (with priority) #> 5900 48 Male Going straight ahead (with priority) #> 5901 33 Male Going straight ahead (with priority) #> 5902 29 Male Going straight ahead (with priority) #> 5903 66 Female Going straight ahead (with priority) #> 5904 60 Male Stopped in traffic #> 5905 47 Male Going straight ahead (with priority) #> 5906 46 Male Slowing or stopping #> 5907 58 Male Going Straight Ahead (against priority) #> 5908 69 Male Going straight ahead (with priority) #> 5909 56 Male Going straight ahead (with priority) #> 5910 57 Male Reversing #> 5911 60 Male Slowing or stopping #> 5912 60 Male Slowing or stopping #> 5913 23 Male Starting in traffic #> 5914 32 Male Going straight ahead (with priority) #> 5915 28 Male Going straight ahead (with priority) #> 5916 22 Male Making right turn #> 5917 35 Male Going straight ahead (with priority) #> 5918 60 Male Making left turn #> 5919 28 Male Going straight ahead (with priority) #> 5920 53 Male Going straight ahead (with priority) #> 5921 35 Male Making right turn #> 5922 68 Female Making left turn #> 5923 58 Male Going straight ahead (with priority) #> 5924 53 Male Changing lanes or merging #> 5925 27 Male Going straight ahead (with priority) #> 5926 46 Male Going straight ahead (with priority) #> 5927 51 Male Reversing #> 5928 30 Male Changing lanes or merging #> 5929 40 Male Going straight ahead (with priority) #> 5930 41 Male Going straight ahead (with priority) #> 5931 60 Male Making left turn #> 5932 35 Male Going straight ahead (with priority) #> 5933 42 Male Going straight ahead (with priority) #> 5934 17 Female Going straight ahead (with priority) #> 5935 56 Male Going straight ahead (with priority) #> 5936 62 Male Changing lanes or merging #> 5937 44 Male Changing lanes or merging #> 5938 39 Male Going straight ahead (with priority) #> 5939 24 Male Going straight ahead (with priority) #> 5940 38 Male Going straight ahead (with priority) #> 5941 46 Male Going Straight Ahead (against priority) #> 5942 41 Male Slowing or stopping #> 5943 50 Male Going straight ahead (with priority) #> 5944 46 Male Going straight ahead (with priority) #> 5945 42 Male Changing lanes or merging #> 5946 44 Male Changing lanes or merging #> 5947 57 Male Going straight ahead (with priority) #> 5948 59 Female Slowing or stopping #> 5949 46 Male Other #> 5950 NA Male Making right turn #> 5951 29 Male Changing lanes or merging #> 5952 38 Male Going straight ahead (with priority) #> 5953 56 Male Making right turn #> 5954 27 Male Slowing or stopping #> 5955 51 Male Reversing #> 5956 58 Male Making right turn #> 5957 57 Male Stopped in traffic #> 5958 66 Male Making right turn #> 5959 54 Male Going straight ahead (with priority) #> 5960 19 Male Going straight ahead (with priority) #> 5961 30 Male Making right turn #> 5962 50 Male Going straight ahead (with priority) #> 5963 52 Male Making right turn #> 5964 32 Male Slowing or stopping #> 5965 51 Male Stopped in traffic #> 5966 57 Male Stopped in traffic #> 5967 24 Female Going straight ahead (with priority) #> 5968 62 Male Making right turn #> 5969 46 Male Making right turn #> 5970 37 Male Going straight ahead (with priority) #> 5971 59 Female Making right turn #> 5972 50 Male Making left turn #> 5973 67 Male Overtaking on off-side #> 5974 37 Male Parked #> 5975 73 Male Parked #> 5976 64 Male Parked #> 5977 29 Female Changing lanes or merging #> 5978 60 Male Going straight ahead (with priority) #> 5979 47 Male Making right turn #> 5980 41 Male Slowing or stopping #> 5981 25 Male Going straight ahead (with priority) #> 5982 61 Male Going straight ahead (with priority) #> 5983 50 Male Going straight ahead (with priority) #> 5984 51 Male Going straight ahead (with priority) #> 5985 34 Male Going straight ahead (with priority) #> 5986 NA Not known Going straight ahead (with priority) #> 5987 60 Male Going straight ahead (with priority) #> 5988 53 Male Going straight ahead (with priority) #> 5989 59 Male Making left turn #> 5990 43 Female Making right turn #> 5991 53 Male Slowing or stopping #> 5992 60 Male Slowing or stopping #> 5993 43 Male Going straight ahead (with priority) #> 5994 73 Male Overtaking on off-side #> 5995 44 Male Going straight ahead (with priority) #> 5996 26 Male Going straight ahead (with priority) #> 5997 55 Male Slowing or stopping #> 5998 59 Male Going straight ahead (with priority) #> 5999 63 Male Unknown #> 6000 37 Male Slowing or stopping #> 6001 36 Male Changing lanes or merging #> 6002 43 Male Going straight ahead (with priority) #> 6003 30 Male Going straight ahead (with priority) #> 6004 57 Male Going straight ahead (with priority) #> 6005 21 Male Going straight ahead (with priority) #> 6006 25 Male Slowing or stopping #> 6007 37 Male Slowing or stopping #> 6008 32 Male Going Straight Ahead (against priority) #> 6009 22 Male Going straight ahead (with priority) #> 6010 57 Male Going straight ahead (with priority) #> 6011 68 Male Making right turn #> 6012 61 Male Going straight ahead (with priority) #> 6013 20 Male Going straight ahead (with priority) #> 6014 34 Male Going straight ahead (with priority) #> 6015 31 Male Going straight ahead (with priority) #> 6016 58 Male Reversing #> 6017 39 Male Slowing or stopping #> 6018 38 Male Going straight ahead (with priority) #> 6019 NA Not known Going straight ahead (with priority) #> 6020 43 Male Making left turn #> 6021 47 Male Going straight ahead (with priority) #> 6022 47 Male Going straight ahead (with priority) #> 6023 53 Male Going straight ahead (with priority) #> 6024 41 Female Going straight ahead (with priority) #> 6025 44 Male Parked #> 6026 43 Male Reversing #> 6027 73 Male Going straight ahead (with priority) #> 6028 42 Male Going straight ahead (with priority) #> 6029 49 Male Going straight ahead (with priority) #> 6030 36 Male Going straight ahead (with priority) #> 6031 55 Male Going straight ahead (with priority) #> 6032 53 Male Going straight ahead (with priority) #> 6033 NA Not known Going straight ahead (with priority) #> 6034 30 Male Going straight ahead (with priority) #> 6035 65 Male Going straight ahead (with priority) #> 6036 46 Male Going straight ahead (with priority) #> 6037 51 Male Going straight ahead (with priority) #> 6038 60 Male Going Straight Ahead (against priority) #> 6039 29 Male Going straight ahead (with priority) #> 6040 50 Female Going straight ahead (with priority) #> 6041 58 Male Parked #> 6042 60 Male Going straight ahead (with priority) #> 6043 38 Male Going straight ahead (with priority) #> 6044 42 Male Going straight ahead (with priority) #> 6045 28 Male Going straight ahead (with priority) #> 6046 37 Male Going straight ahead (with priority) #> 6047 29 Male Changing lanes or merging #> 6048 36 Male Going straight ahead (with priority) #> 6049 31 Male Stopped in traffic #> 6050 31 Male Going straight ahead (with priority) #> 6051 63 Male Changing lanes or merging #> 6052 40 Female Going straight ahead (with priority) #> 6053 34 Male Going straight ahead (with priority) #> 6054 38 Male Changing lanes or merging #> 6055 37 Male Starting in traffic #> 6056 34 Male Going straight ahead (with priority) #> 6057 40 Male Going straight ahead (with priority) #> 6058 33 Male Slowing or stopping #> 6059 24 Male Going straight ahead (with priority) #> 6060 44 Male Slowing or stopping #> 6061 27 Male Stopped in traffic #> 6062 56 Male Making left turn #> 6063 40 Male Going straight ahead (with priority) #> 6064 59 Male Stopped in traffic #> 6065 33 Male Going straight ahead (with priority) #> 6066 39 Male Stopped in traffic #> 6067 55 Male Stopped in traffic #> 6068 38 Male Stopped in traffic #> 6069 NA Not known Reversing #> 6070 35 Female Going straight ahead (with priority) #> 6071 25 Male Changing lanes or merging #> 6072 33 Male Going straight ahead (with priority) #> 6073 41 Male Going straight ahead (with priority) #> 6074 36 Male Going straight ahead (with priority) #> 6075 56 Male Going straight ahead (with priority) #> 6076 32 Male Going straight ahead (with priority) #> 6077 68 Male Going straight ahead (with priority) #> 6078 26 Male Going straight ahead (with priority) #> 6079 30 Male Slowing or stopping #> 6080 49 Male Making right turn #> 6081 54 Male Slowing or stopping #> 6082 21 Male Going straight ahead (with priority) #> 6083 24 Male Going straight ahead (with priority) #> 6084 52 Male Going straight ahead (with priority) #> 6085 23 Male Going straight ahead (with priority) #> 6086 16 Male Going straight ahead (with priority) #> 6087 51 Male Other #> 6088 39 Male Other #> 6089 56 Male Going straight ahead (with priority) #> 6090 29 Male Overtaking on off-side #> 6091 36 Male Making right turn #> 6092 63 Male Making right turn #> 6093 53 Male Going straight ahead (with priority) #> 6094 32 Male Making U turn #> 6095 54 Male Slowing or stopping #> 6096 38 Male Going straight ahead (with priority) #> 6097 48 Female Going straight ahead (with priority) #> 6098 50 Male Making left turn #> 6099 63 Male Making left turn #> 6100 31 Male Going straight ahead (with priority) #> 6101 36 Female Slowing or stopping #> 6102 40 Male Going straight ahead (with priority) #> 6103 42 Male Going straight ahead (with priority) #> 6104 64 Male Going Straight Ahead (against priority) #> 6105 30 Male Going straight ahead (with priority) #> 6106 30 Male Going straight ahead (with priority) #> 6107 44 Female Making left turn #> 6108 76 Male Going straight ahead (with priority) #> 6109 56 Male Making right turn #> 6110 62 Male Going straight ahead (with priority) #> 6111 31 Male Going straight ahead (with priority) #> 6112 21 Male Going straight ahead (with priority) #> 6113 36 Male Reversing #> 6114 38 Male Going straight ahead (with priority) #> 6115 57 Male Changing lanes or merging #> 6116 16 Female Going straight ahead (with priority) #> 6117 65 Male Going straight ahead (with priority) #> 6118 58 Male Going Straight Ahead (against priority) #> 6119 26 Male Going straight ahead (with priority) #> 6120 33 Male Making right turn #> 6121 54 Male Making left turn #> 6122 68 Male Going straight ahead (with priority) #> 6123 55 Male Going straight ahead (with priority) #> 6124 55 Male Making left turn #> 6125 54 Male Going straight ahead (with priority) #> 6126 44 Male Going straight ahead (with priority) #> 6127 34 Male Changing lanes or merging #> 6128 53 Male Going straight ahead (with priority) #> 6129 50 Male Making right turn #> 6130 32 Male Going straight ahead (with priority) #> 6131 34 Male Going Straight Ahead (against priority) #> 6132 28 Male Parked #> 6133 49 Male Going straight ahead (with priority) #> 6134 40 Male Going straight ahead (with priority) #> 6135 63 Male Going straight ahead (with priority) #> 6136 48 Male Going straight ahead (with priority) #> 6137 81 Male Going straight ahead (with priority) #> 6138 63 Male Going straight ahead (with priority) #> 6139 52 Male Going straight ahead (with priority) #> 6140 57 Male Going straight ahead (with priority) #> 6141 52 Male Making right turn #> 6142 43 Male Going straight ahead (with priority) #> 6143 32 Male Going straight ahead (with priority) #> 6144 49 Male Going straight ahead (with priority) #> 6145 63 Male Going straight ahead (with priority) #> 6146 35 Male Going straight ahead (with priority) #> 6147 57 Male Overtaking on off-side #> 6148 60 Male Parked #> 6149 39 Male Going straight ahead (with priority) #> 6150 42 Male Going straight ahead (with priority) #> 6151 48 Male Going straight ahead (with priority) #> 6152 56 Male Starting in traffic #> 6153 37 Male Starting in traffic #> 6154 52 Male Going straight ahead (with priority) #> 6155 49 Male Going Straight Ahead (against priority) #> 6156 47 Male Going straight ahead (with priority) #> 6157 45 Male Making right turn #> 6158 31 Female Going straight ahead (with priority) #> 6159 31 Male Going straight ahead (with priority) #> 6160 69 Male Going straight ahead (with priority) #> 6161 32 Male Going straight ahead (with priority) #> 6162 36 Male Going straight ahead (with priority) #> 6163 60 Male Going straight ahead (with priority) #> 6164 29 Male Going straight ahead (with priority) #> 6165 53 Male Going straight ahead (with priority) #> 6166 55 Female Slowing or stopping #> 6167 29 Male Going straight ahead (with priority) #> 6168 23 Male Going straight ahead (with priority) #> 6169 40 Male Leaving parking place #> 6170 61 Male Going straight ahead (with priority) #> 6171 74 Male Going straight ahead (with priority) #> 6172 26 Male Making left turn #> 6173 74 Male Starting in traffic #> 6174 23 Male Going straight ahead (with priority) #> 6175 38 Male Going Straight Ahead (against priority) #> 6176 33 Male Going straight ahead (with priority) #> 6177 37 Male Going straight ahead (with priority) #> 6178 17 Male Going Straight Ahead (against priority) #> 6179 63 Male Other #> 6180 29 Male Going straight ahead (with priority) #> 6181 53 Male Going Straight Ahead (against priority) #> 6182 40 Male Going Straight Ahead (against priority) #> 6183 57 Male Going Straight Ahead (against priority) #> 6184 33 Female Going straight ahead (with priority) #> 6185 36 Male Going Straight Ahead (against priority) #> 6186 51 Male Going Straight Ahead (against priority) #> 6187 59 Male Stopped in traffic #> 6188 42 Male Slowing or stopping #> 6189 53 Male Going straight ahead (with priority) #> 6190 59 Male Stopped in traffic #> 6191 62 Male Slowing or stopping #> 6192 32 Male Making right turn #> 6193 32 Male Going straight ahead (with priority) #> 6194 51 Male Going straight ahead (with priority) #> 6195 60 Female Changing lanes or merging #> 6196 27 Male Going straight ahead (with priority) #> 6197 42 Male Stopped in traffic #> 6198 60 Male Going straight ahead (with priority) #> 6199 NA Not known Unknown #> 6200 34 Male Going Straight Ahead (against priority) #> 6201 63 Male Going straight ahead (with priority) #> 6202 28 Male Going straight ahead (with priority) #> 6203 57 Male Going straight ahead (with priority) #> 6204 41 Male Going straight ahead (with priority) #> 6205 34 Male Going straight ahead (with priority) #> 6206 38 Male Going straight ahead (with priority) #> 6207 50 Male Going straight ahead (with priority) #> 6208 53 Male Parked #> 6209 30 Male Going straight ahead (with priority) #> 6210 33 Male Going straight ahead (with priority) #> 6211 47 Male Going straight ahead (with priority) #> 6212 64 Male Starting in traffic #> 6213 54 Male Going straight ahead (with priority) #> 6214 68 Male Going straight ahead (with priority) #> 6215 59 Male Going straight ahead (with priority) #> 6216 57 Male Going straight ahead (with priority) #> 6217 52 Male Going straight ahead (with priority) #> 6218 58 Male Going straight ahead (with priority) #> 6219 51 Male Slowing or stopping #> 6220 55 Male Changing lanes or merging #> 6221 30 Male Going straight ahead (with priority) #> 6222 48 Male Going straight ahead (with priority) #> 6223 40 Male Going straight ahead (with priority) #> 6224 50 Female Changing lanes or merging #> 6225 49 Male Going straight ahead (with priority) #> 6226 NA Not known Going Straight Ahead (against priority) #> 6227 48 Male Going straight ahead (with priority) #> 6228 28 Male Going straight ahead (with priority) #> 6229 34 Male Going straight ahead (with priority) #> 6230 55 Male Going straight ahead (with priority) #> 6231 34 Male Going straight ahead (with priority) #> 6232 51 Male Going straight ahead (with priority) #> 6233 36 Male Going Straight Ahead (against priority) #> 6234 54 Male Stopped in traffic #> 6235 34 Male Going straight ahead (with priority) #> 6236 46 Male Stopped in traffic #> 6237 49 Male Going straight ahead (with priority) #> 6238 33 Male Making right turn #> 6239 63 Male Going straight ahead (with priority) #> 6240 44 Male Making right turn #> 6241 52 Male Going straight ahead (with priority) #> 6242 31 Male Going straight ahead (with priority) #> 6243 48 Male Making right turn #> 6244 43 Male Going straight ahead (with priority) #> 6245 57 Male Going straight ahead (with priority) #> 6246 26 Male Making left turn #> 6247 57 Male Other #> 6248 54 Male Going straight ahead (with priority) #> 6249 46 Male Going straight ahead (with priority) #> 6250 48 Male Going Straight Ahead (against priority) #> 6251 62 Male Going straight ahead (with priority) #> 6252 24 Male Going straight ahead (with priority) #> 6253 62 Male Going straight ahead (with priority) #> 6254 41 Male Going straight ahead (with priority) #> 6255 60 Male Going straight ahead (with priority) #> 6256 42 Male Going straight ahead (with priority) #> 6257 63 Male Going straight ahead (with priority) #> 6258 23 Male Going straight ahead (with priority) #> 6259 47 Male Going straight ahead (with priority) #> 6260 47 Male Going straight ahead (with priority) #> 6261 35 Male Going straight ahead (with priority) #> 6262 64 Male Changing lanes or merging #> 6263 36 Male Going straight ahead (with priority) #> 6264 61 Male Going straight ahead (with priority) #> 6265 40 Male Going Straight Ahead (against priority) #> 6266 16 Male Going straight ahead (with priority) #> 6267 28 Female Going straight ahead (with priority) #> 6268 52 Male Making right turn #> 6269 68 Male Going straight ahead (with priority) #> 6270 37 Male Going straight ahead (with priority) #> 6271 56 Male Going straight ahead (with priority) #> 6272 53 Male Stopped in traffic #> 6273 48 Male Stopped in traffic #> 6274 57 Male Going straight ahead (with priority) #> 6275 36 Male Slowing or stopping #> 6276 33 Male Going straight ahead (with priority) #> 6277 38 Male Stopped in traffic #> 6278 48 Male Making right turn #> 6279 46 Male Changing lanes or merging #> 6280 29 Male Going straight ahead (with priority) #> 6281 50 Male Going straight ahead (with priority) #> 6282 52 Male Going straight ahead (with priority) #> 6283 44 Male Stopped in traffic #> 6284 20 Male Changing lanes or merging #> 6285 37 Female Stopped in traffic #> 6286 54 Male Other #> 6287 52 Male Going straight ahead (with priority) #> 6288 58 Male Going straight ahead (with priority) #> 6289 35 Male Going straight ahead (with priority) #> 6290 41 Male Making right turn #> 6291 64 Male Going straight ahead (with priority) #> 6292 23 Male Going straight ahead (with priority) #> 6293 48 Male Going straight ahead (with priority) #> 6294 49 Male Changing lanes or merging #> 6295 49 Male Making right turn #> 6296 50 Male Changing lanes or merging #> 6297 28 Female Going straight ahead (with priority) #> 6298 37 Male Going straight ahead (with priority) #> 6299 54 Male Going straight ahead (with priority) #> 6300 48 Male Going Straight Ahead (against priority) #> 6301 45 Male Going straight ahead (with priority) #> 6302 53 Male Going straight ahead (with priority) #> 6303 37 Male Going straight ahead (with priority) #> 6304 28 Male Making left turn #> 6305 30 Male Slowing or stopping #> 6306 67 Male Going straight ahead (with priority) #> 6307 47 Male Slowing or stopping #> 6308 53 Male Slowing or stopping #> 6309 29 Male Going straight ahead (with priority) #> 6310 36 Male Changing lanes or merging #> 6311 6 Male Making U turn #> 6312 NA Not known Going straight ahead (with priority) #> 6313 58 Male Going straight ahead (with priority) #> 6314 62 Male Going straight ahead (with priority) #> 6315 56 Male Making right turn #> 6316 38 Female Going straight ahead (with priority) #> 6317 60 Male Going straight ahead (with priority) #> 6318 NA Male Going straight ahead (with priority) #> 6319 28 Male Going straight ahead (with priority) #> 6320 60 Male Going straight ahead (with priority) #> 6321 22 Male Stopped in traffic #> 6322 46 Male Starting in traffic #> 6323 28 Male Going straight ahead (with priority) #> 6324 38 Male Going straight ahead (with priority) #> 6325 40 Male Going straight ahead (with priority) #> 6326 44 Male Going straight ahead (with priority) #> 6327 27 Male Going straight ahead (with priority) #> 6328 26 Male Going straight ahead (with priority) #> 6329 21 Male Going straight ahead (with priority) #> 6330 60 Male Going straight ahead (with priority) #> 6331 48 Male Slowing or stopping #> 6332 NA Not known Going straight ahead (with priority) #> 6333 25 Male Going straight ahead (with priority) #> 6334 68 Male Starting in traffic #> 6335 59 Male Going straight ahead (with priority) #> 6336 54 Male Other #> 6337 54 Male Going straight ahead (with priority) #> 6338 38 Female Slowing or stopping #> 6339 60 Male Going straight ahead (with priority) #> 6340 47 Female Going straight ahead (with priority) #> 6341 32 Male Going straight ahead (with priority) #> 6342 26 Male Going straight ahead (with priority) #> 6343 32 Male Going straight ahead (with priority) #> 6344 36 Male Going straight ahead (with priority) #> 6345 49 Male Going straight ahead (with priority) #> 6346 55 Male Making right turn #> 6347 12 Male Going straight ahead (with priority) #> 6348 13 Male Overtaking on off-side #> 6349 12 Male Going straight ahead (with priority) #> 6350 32 Male Going straight ahead (with priority) #> 6351 57 Male Going straight ahead (with priority) #> 6352 51 Male Going straight ahead (with priority) #> 6353 37 Male Going straight ahead (with priority) #> 6354 75 Male Going straight ahead (with priority) #> 6355 40 Male Going straight ahead (with priority) #> 6356 35 Male Going straight ahead (with priority) #> 6357 26 Male Going straight ahead (with priority) #> 6358 37 Male Going straight ahead (with priority) #> 6359 55 Male Going straight ahead (with priority) #> 6360 62 Male Stopped in traffic #> 6361 48 Male Other #> 6362 49 Male Other #> 6363 30 Male Stopped in traffic #> 6364 59 Male Going straight ahead (with priority) #> 6365 44 Male Going straight ahead (with priority) #> 6366 39 Male Making right turn #> 6367 37 Male Going straight ahead (with priority) #> 6368 50 Male Going straight ahead (with priority) #> 6369 51 Male Making left turn #> 6370 43 Male Making right turn #> 6371 43 Male Going straight ahead (with priority) #> 6372 41 Male Changing lanes or merging #> 6373 22 Male Going straight ahead (with priority) #> 6374 42 Female Going straight ahead (with priority) #> 6375 31 Male Going straight ahead (with priority) #> 6376 32 Female Slowing or stopping #> 6377 46 Male Making right turn #> 6378 47 Male Making left turn #> 6379 32 Male Going straight ahead (with priority) #> 6380 49 Female Changing lanes or merging #> 6381 57 Male Slowing or stopping #> 6382 54 Male Slowing or stopping #> 6383 64 Male Going straight ahead (with priority) #> 6384 27 Male Going straight ahead (with priority) #> 6385 49 Male Going straight ahead (with priority) #> 6386 39 Male Changing lanes or merging #> 6387 24 Male Going straight ahead (with priority) #> 6388 27 Male Parked #> 6389 39 Male Going straight ahead (with priority) #> 6390 25 Male Slowing or stopping #> 6391 43 Male Going straight ahead (with priority) #> 6392 57 Male Going straight ahead (with priority) #> 6393 42 Male Going Straight Ahead (against priority) #> 6394 26 Male Going Straight Ahead (against priority) #> 6395 48 Male Stopped in traffic #> 6396 50 Male Going straight ahead (with priority) #> 6397 67 Male Going Straight Ahead (against priority) #> 6398 75 Male Going straight ahead (with priority) #> 6399 55 Male Going straight ahead (with priority) #> 6400 47 Male Going straight ahead (with priority) #> 6401 29 Male Going straight ahead (with priority) #> 6402 39 Male Going straight ahead (with priority) #> 6403 35 Male Going straight ahead (with priority) #> 6404 24 Female Going Straight Ahead (against priority) #> 6405 60 Male Going straight ahead (with priority) #> 6406 32 Female Going straight ahead (with priority) #> 6407 45 Female Changing lanes or merging #> 6408 62 Male Going straight ahead (with priority) #> 6409 50 Female Going Straight Ahead (against priority) #> 6410 59 Male Making right turn #> 6411 47 Male Going straight ahead (with priority) #> 6412 41 Male Going Straight Ahead (against priority) #> 6413 15 Male Making right turn #> 6414 49 Male Going straight ahead (with priority) #> 6415 40 Male Slowing or stopping #> 6416 24 Male Stopped in traffic #> 6417 52 Male Stopped in traffic #> 6418 31 Male Stopped in traffic #> 6419 58 Male Going straight ahead (with priority) #> 6420 62 Male Going straight ahead (with priority) #> 6421 48 Male Making left turn #> 6422 63 Male Making left turn #> 6423 46 Male Slowing or stopping #> 6424 46 Male Making right turn #> 6425 58 Male Going straight ahead (with priority) #> 6426 33 Male Making right turn #> 6427 28 Male Going straight ahead (with priority) #> 6428 38 Female Going straight ahead (with priority) #> 6429 26 Male Going straight ahead (with priority) #> 6430 39 Male Going straight ahead (with priority) #> 6431 59 Male Going straight ahead (with priority) #> 6432 59 Male Going straight ahead (with priority) #> 6433 62 Male Making right turn #> 6434 31 Male Making left turn #> 6435 28 Male Going straight ahead (with priority) #> 6436 61 Male Going straight ahead (with priority) #> 6437 35 Male Changing lanes or merging #> 6438 33 Male Going Straight Ahead (against priority) #> 6439 60 Male Slowing or stopping #> 6440 48 Male Going straight ahead (with priority) #> 6441 55 Male Changing lanes or merging #> 6442 33 Male Going straight ahead (with priority) #> 6443 33 Male Going straight ahead (with priority) #> 6444 49 Male Making right turn #> 6445 51 Male Slowing or stopping #> 6446 29 Male Changing lanes or merging #> 6447 42 Male Going straight ahead (with priority) #> 6448 56 Male Going straight ahead (with priority) #> 6449 25 Male Going straight ahead (with priority) #> 6450 50 Male Going straight ahead (with priority) #> 6451 35 Male Going straight ahead (with priority) #> 6452 61 Male Slowing or stopping #> 6453 31 Female Going straight ahead (with priority) #> 6454 37 Male Overtaking on off-side #> 6455 39 Male Going Straight Ahead (against priority) #> 6456 23 Male Going straight ahead (with priority) #> 6457 57 Male Going straight ahead (with priority) #> 6458 82 Male Going straight ahead (with priority) #> 6459 24 Male Making left turn #> 6460 46 Female Slowing or stopping #> 6461 38 Male Other #> 6462 33 Male Other #> 6463 28 Female Going straight ahead (with priority) #> 6464 74 Male Going straight ahead (with priority) #> 6465 46 Male Going Straight Ahead (against priority) #> 6466 67 Male Going straight ahead (with priority) #> 6467 60 Male Starting in traffic #> 6468 48 Male Going straight ahead (with priority) #> 6469 50 Female Going Straight Ahead (against priority) #> 6470 42 Male Going straight ahead (with priority) #> 6471 58 Male Going Straight Ahead (against priority) #> 6472 51 Male Going straight ahead (with priority) #> 6473 37 Male Going straight ahead (with priority) #> 6474 37 Male Going straight ahead (with priority) #> 6475 42 Male Going Straight Ahead (against priority) #> 6476 24 Male Going straight ahead (with priority) #> 6477 32 Male Going straight ahead (with priority) #> 6478 59 Male Going straight ahead (with priority) #> 6479 26 Male Going straight ahead (with priority) #> 6480 NA Not known Changing lanes or merging #> 6481 56 Male Changing lanes or merging #> 6482 31 Female Going straight ahead (with priority) #> 6483 29 Male Making left turn #> 6484 55 Female Going straight ahead (with priority) #> 6485 42 Male Making U turn #> 6486 56 Female Going straight ahead (with priority) #> 6487 31 Male Changing lanes or merging #> 6488 54 Male Going straight ahead (with priority) #> 6489 66 Male Going straight ahead (with priority) #> 6490 31 Male Going straight ahead (with priority) #> 6491 59 Male Going straight ahead (with priority) #> 6492 59 Male Changing lanes or merging #> 6493 50 Male Going straight ahead (with priority) #> 6494 33 Male Making U turn #> 6495 63 Male Going straight ahead (with priority) #> 6496 38 Female Slowing or stopping #> 6497 47 Male Going straight ahead (with priority) #> 6498 NA Not known Going straight ahead (with priority) #> 6499 67 Male Overtaking on off-side #> 6500 53 Male Going straight ahead (with priority) #> 6501 46 Male Going straight ahead (with priority) #> 6502 38 Male Going straight ahead (with priority) #> 6503 35 Male Making right turn #> 6504 52 Male Making right turn #> 6505 64 Male Going straight ahead (with priority) #> 6506 56 Male Going Straight Ahead (against priority) #> 6507 62 Male Going straight ahead (with priority) #> 6508 58 Male Changing lanes or merging #> 6509 61 Male Going straight ahead (with priority) #> 6510 62 Male Making right turn #> 6511 59 Male Overtaking on off-side #> 6512 55 Male Going straight ahead (with priority) #> 6513 41 Male Making right turn #> 6514 67 Male Going straight ahead (with priority) #> 6515 51 Male Going straight ahead (with priority) #> 6516 61 Male Going straight ahead (with priority) #> 6517 37 Male Going straight ahead (with priority) #> 6518 39 Male Going straight ahead (with priority) #> 6519 48 Male Stopped in traffic #> 6520 49 Male Stopped in traffic #> 6521 49 Male Going straight ahead (with priority) #> 6522 30 Male Going straight ahead (with priority) #> 6523 44 Male Going straight ahead (with priority) #> 6524 44 Female Going straight ahead (with priority) #> 6525 50 Male Going straight ahead (with priority) #> 6526 56 Male Going straight ahead (with priority) #> 6527 33 Male Reversing #> 6528 51 Male Going straight ahead (with priority) #> 6529 47 Male Making right turn #> 6530 35 Male Going straight ahead (with priority) #> 6531 32 Male Slowing or stopping #> 6532 38 Male Going straight ahead (with priority) #> 6533 34 Female Changing lanes or merging #> 6534 46 Male Making left turn #> 6535 40 Male Going Straight Ahead (against priority) #> 6536 66 Male Overtaking on off-side #> 6537 59 Male Going straight ahead (with priority) #> 6538 38 Male Going straight ahead (with priority) #> 6539 42 Male Going straight ahead (with priority) #> 6540 70 Female Going straight ahead (with priority) #> 6541 17 Male Going straight ahead (with priority) #> 6542 32 Male Going straight ahead (with priority) #> 6543 52 Male Changing lanes or merging #> 6544 54 Male Going straight ahead (with priority) #> 6545 40 Male Slowing or stopping #> 6546 61 Male Going Straight Ahead (against priority) #> 6547 32 Male Going straight ahead (with priority) #> 6548 34 Male Going straight ahead (with priority) #> 6549 17 Male Other #> 6550 63 Male Making left turn #> 6551 33 Male Going straight ahead (with priority) #> 6552 66 Male Going straight ahead (with priority) #> 6553 48 Male Starting in traffic #> 6554 60 Male Going straight ahead (with priority) #> 6555 23 Male Changing lanes or merging #> 6556 40 Male Going straight ahead (with priority) #> 6557 41 Male Making right turn #> 6558 29 Male Changing lanes or merging #> 6559 65 Male Going straight ahead (with priority) #> 6560 52 Male Going straight ahead (with priority) #> 6561 57 Male Going straight ahead (with priority) #> 6562 38 Male Going straight ahead (with priority) #> 6563 38 Female Going straight ahead (with priority) #> 6564 50 Male Slowing or stopping #> 6565 NA Not known Going straight ahead (with priority) #> 6566 55 Male Going straight ahead (with priority) #> 6567 31 Male Parked #> 6568 43 Male Stopped in traffic #> 6569 63 Male Making left turn #> 6570 14 Female Going straight ahead (with priority) #> 6571 60 Male Parked #> 6572 46 Male Changing lanes or merging #> 6573 59 Male Changing lanes or merging #> 6574 47 Male Going straight ahead (with priority) #> 6575 48 Male Going Straight Ahead (against priority) #> 6576 NA Not known Going straight ahead (with priority) #> 6577 61 Male Going straight ahead (with priority) #> 6578 NA Not known Going Straight Ahead (against priority) #> 6579 60 Male Going straight ahead (with priority) #> 6580 57 Male Going straight ahead (with priority) #> 6581 48 Male Going straight ahead (with priority) #> 6582 27 Male Going Straight Ahead (against priority) #> 6583 57 Male Making right turn #> 6584 39 Male Stopped in traffic #> 6585 26 Male Going straight ahead (with priority) #> 6586 59 Male Stopped in traffic #> 6587 52 Male Slowing or stopping #> 6588 38 Male Going straight ahead (with priority) #> 6589 49 Male Going straight ahead (with priority) #> 6590 23 Male Slowing or stopping #> 6591 49 Male Slowing or stopping #> 6592 43 Male Starting in traffic #> 6593 33 Male Going Straight Ahead (against priority) #> 6594 33 Male Going straight ahead (with priority) #> 6595 37 Male Making left turn #> 6596 37 Male Slowing or stopping #> 6597 67 Male Going straight ahead (with priority) #> 6598 39 Male Making right turn #> 6599 39 Male Slowing or stopping #> 6600 43 Male Going straight ahead (with priority) #> 6601 40 Male Slowing or stopping #> 6602 30 Male Going straight ahead (with priority) #> 6603 26 Male Changing lanes or merging #> 6604 28 Male Making right turn #> 6605 22 Male Going straight ahead (with priority) #> 6606 64 Male Going straight ahead (with priority) #> 6607 35 Male Changing lanes or merging #> 6608 63 Male Making right turn #> 6609 49 Male Going straight ahead (with priority) #> 6610 22 Male Going straight ahead (with priority) #> 6611 54 Male Changing lanes or merging #> 6612 67 Male Making right turn #> 6613 52 Male Going straight ahead (with priority) #> 6614 59 Male Going straight ahead (with priority) #> 6615 57 Male Making right turn #> 6616 45 Female Slowing or stopping #> 6617 68 Male Going straight ahead (with priority) #> 6618 34 Male Other #> 6619 42 Male Making right turn #> 6620 51 Male Going straight ahead (with priority) #> 6621 61 Male Going straight ahead (with priority) #> 6622 42 Male Changing lanes or merging #> 6623 37 Male Going straight ahead (with priority) #> 6624 50 Female Changing lanes or merging #> 6625 44 Male Slowing or stopping #> 6626 29 Female Going straight ahead (with priority) #> 6627 69 Male Going straight ahead (with priority) #> 6628 27 Male Parked #> 6629 48 Male Going straight ahead (with priority) #> 6630 25 Male Changing lanes or merging #> 6631 43 Male Going straight ahead (with priority) #> 6632 26 Male Slowing or stopping #> 6633 31 Male Parked #> 6634 56 Male Reversing #> 6635 48 Male Going straight ahead (with priority) #> 6636 42 Male Making left turn #> 6637 32 Male Going straight ahead (with priority) #> 6638 7 Female Going straight ahead (with priority) #> 6639 45 Male Going straight ahead (with priority) #> 6640 47 Male Stopped in traffic #> 6641 40 Male Going straight ahead (with priority) #> 6642 52 Male Going straight ahead (with priority) #> 6643 38 Male Slowing or stopping #> 6644 48 Male Driverless moving vehicle #> 6645 39 Male Going straight ahead (with priority) #> 6646 35 Male Going Straight Ahead (against priority) #> 6647 35 Male Going straight ahead (with priority) #> 6648 42 Male Going straight ahead (with priority) #> 6649 35 Male Changing lanes or merging #> 6650 44 Male Going straight ahead (with priority) #> 6651 27 Male Going straight ahead (with priority) #> 6652 26 Male Slowing or stopping #> 6653 40 Male Slowing or stopping #> 6654 24 Male Going straight ahead (with priority) #> 6655 36 Male Slowing or stopping #> 6656 22 Male Slowing or stopping #> 6657 33 Male Going straight ahead (with priority) #> 6658 34 Male Going straight ahead (with priority) #> 6659 54 Male Going straight ahead (with priority) #> 6660 62 Male Going straight ahead (with priority) #> 6661 52 Male Slowing or stopping #> 6662 44 Male Stopped in traffic #> 6663 43 Male Going straight ahead (with priority) #> 6664 47 Male Making U turn #> 6665 39 Female Making right turn #> 6666 48 Male Making right turn #> 6667 20 Male Slowing or stopping #> 6668 50 Male Going Straight Ahead (against priority) #> 6669 29 Male Making right turn #> 6670 22 Male Going straight ahead (with priority) #> 6671 65 Male Going straight ahead (with priority) #> 6672 54 Female Going straight ahead (with priority) #> 6673 45 Male Making right turn #> 6674 43 Male Slowing or stopping #> 6675 23 Male Going straight ahead (with priority) #> 6676 34 Female Going straight ahead (with priority) #> 6677 59 Male Making right turn #> 6678 66 Male Changing lanes or merging #> 6679 57 Male Going straight ahead (with priority) #> 6680 72 Male Other #> 6681 61 Male Going straight ahead (with priority) #> 6682 48 Male Going straight ahead (with priority) #> 6683 30 Male Making left turn #> 6684 38 Male Going straight ahead (with priority) #> 6685 47 Male Going straight ahead (with priority) #> 6686 50 Male Slowing or stopping #> 6687 48 Male Making left turn #> 6688 25 Male Other #> 6689 52 Male Changing lanes or merging #> 6690 34 Male Going straight ahead (with priority) #> 6691 56 Male Going straight ahead (with priority) #> 6692 33 Male Going straight ahead (with priority) #> 6693 66 Male Going straight ahead (with priority) #> 6694 35 Male Going straight ahead (with priority) #> 6695 45 Male Going straight ahead (with priority) #> 6696 52 Male Going straight ahead (with priority) #> 6697 53 Male Going straight ahead (with priority) #> 6698 58 Male Going straight ahead (with priority) #> 6699 34 Male Making right turn #> 6700 43 Female Overtaking on off-side #> 6701 42 Male Going straight ahead (with priority) #> 6702 40 Female Going straight ahead (with priority) #> 6703 38 Male Going straight ahead (with priority) #> 6704 46 Male Starting in traffic #> 6705 63 Male Going straight ahead (with priority) #> 6706 52 Female Going straight ahead (with priority) #> 6707 29 Male Going straight ahead (with priority) #> 6708 51 Male Going straight ahead (with priority) #> 6709 56 Male Going straight ahead (with priority) #> 6710 67 Male Going straight ahead (with priority) #> 6711 47 Male Going straight ahead (with priority) #> 6712 52 Male Making right turn #> 6713 56 Male Going straight ahead (with priority) #> 6714 62 Male Stopped in traffic #> 6715 34 Male Going straight ahead (with priority) #> 6716 44 Male Going straight ahead (with priority) #> 6717 41 Female Going straight ahead (with priority) #> 6718 58 Male Going straight ahead (with priority) #> 6719 38 Male Going straight ahead (with priority) #> 6720 47 Male Changing lanes or merging #> 6721 45 Male Making right turn #> 6722 35 Male Changing lanes or merging #> 6723 44 Male Going Straight Ahead (against priority) #> 6724 51 Male Parked #> 6725 48 Male Going straight ahead (with priority) #> 6726 56 Male Going straight ahead (with priority) #> 6727 37 Female Going straight ahead (with priority) #> 6728 44 Male Going straight ahead (with priority) #> 6729 15 Male Going straight ahead (with priority) #> 6730 32 Male Going straight ahead (with priority) #> 6731 41 Male Going straight ahead (with priority) #> 6732 49 Male Making right turn #> 6733 33 Male Going straight ahead (with priority) #> 6734 43 Male Going straight ahead (with priority) #> 6735 33 Male Making right turn #> 6736 63 Male Going straight ahead (with priority) #> 6737 32 Male Going straight ahead (with priority) #> 6738 48 Male Stopped in traffic #> 6739 57 Male Slowing or stopping #> 6740 56 Male Making right turn #> 6741 28 Male Going straight ahead (with priority) #> 6742 51 Male Slowing or stopping #> 6743 53 Male Going Straight Ahead (against priority) #> 6744 39 Male Going Straight Ahead (against priority) #> 6745 34 Male Going straight ahead (with priority) #> 6746 30 Male Overtaking on off-side #> 6747 69 Male Going straight ahead (with priority) #> 6748 32 Male Stopped in traffic #> 6749 31 Male Going straight ahead (with priority) #> 6750 33 Male Going straight ahead (with priority) #> 6751 50 Male Going straight ahead (with priority) #> 6752 42 Male Going straight ahead (with priority) #> 6753 65 Male Slowing or stopping #> 6754 58 Male Changing lanes or merging #> 6755 23 Male Going straight ahead (with priority) #> 6756 36 Male Slowing or stopping #> 6757 45 Male Going Straight Ahead (against priority) #> 6758 48 Male Going straight ahead (with priority) #> 6759 66 Male Changing lanes or merging #> 6760 32 Male Going straight ahead (with priority) #> 6761 23 Male Going straight ahead (with priority) #> 6762 62 Male Going straight ahead (with priority) #> 6763 66 Male Changing lanes or merging #> 6764 66 Male Going straight ahead (with priority) #> 6765 62 Male Going straight ahead (with priority) #> 6766 22 Male Going straight ahead (with priority) #> 6767 58 Male Going straight ahead (with priority) #> 6768 35 Male Other #> 6769 27 Male Other #> 6770 20 Male Going straight ahead (with priority) #> 6771 42 Male Going straight ahead (with priority) #> 6772 52 Male Going Straight Ahead (against priority) #> 6773 21 Male Changing lanes or merging #> 6774 49 Female Going straight ahead (with priority) #> 6775 62 Male Slowing or stopping #> 6776 64 Male Making left turn #> 6777 39 Male Going straight ahead (with priority) #> 6778 45 Male Slowing or stopping #> 6779 36 Male Going straight ahead (with priority) #> 6780 35 Male Going straight ahead (with priority) #> 6781 29 Male Going straight ahead (with priority) #> 6782 35 Male Going straight ahead (with priority) #> 6783 53 Male Going straight ahead (with priority) #> 6784 40 Male Going straight ahead (with priority) #> 6785 35 Male Going straight ahead (with priority) #> 6786 38 Male Going Straight Ahead (against priority) #> 6787 33 Male Going straight ahead (with priority) #> 6788 38 Male Going straight ahead (with priority) #> 6789 41 Male Changing lanes or merging #> 6790 64 Male Going straight ahead (with priority) #> 6791 51 Male Going straight ahead (with priority) #> 6792 45 Male Going straight ahead (with priority) #> 6793 46 Male Going straight ahead (with priority) #> 6794 21 Male Going straight ahead (with priority) #> 6795 47 Male Going straight ahead (with priority) #> 6796 58 Male Stopped in traffic #> 6797 42 Male Slowing or stopping #> 6798 37 Female Parked #> 6799 52 Male Changing lanes or merging #> 6800 43 Male Going straight ahead (with priority) #> 6801 57 Male Going straight ahead (with priority) #> 6802 48 Female Going straight ahead (with priority) #> 6803 27 Male Going Straight Ahead (against priority) #> 6804 39 Male Going straight ahead (with priority) #> 6805 54 Male Going straight ahead (with priority) #> 6806 65 Male Going straight ahead (with priority) #> 6807 23 Male Making right turn #> 6808 64 Male Going straight ahead (with priority) #> 6809 41 Male Making right turn #> 6810 68 Male Going Straight Ahead (against priority) #> 6811 62 Male Going straight ahead (with priority) #> 6812 58 Male Going straight ahead (with priority) #> 6813 36 Male Going straight ahead (with priority) #> 6814 57 Female Slowing or stopping #> 6815 57 Male Going Straight Ahead (against priority) #> 6816 32 Male Stopped in traffic #> 6817 36 Male Going straight ahead (with priority) #> 6818 51 Male Slowing or stopping #> 6819 33 Male Slowing or stopping #> 6820 48 Male Making right turn #> 6821 32 Male Going straight ahead (with priority) #> 6822 44 Male Going straight ahead (with priority) #> 6823 33 Male Going straight ahead (with priority) #> 6824 42 Male Going straight ahead (with priority) #> 6825 51 Female Starting in traffic #> 6826 47 Male Going straight ahead (with priority) #> 6827 58 Male Stopped in traffic #> 6828 37 Male Going straight ahead (with priority) #> 6829 38 Male Changing lanes or merging #> 6830 46 Male Going Straight Ahead (against priority) #> 6831 48 Male Slowing or stopping #> 6832 48 Male Going straight ahead (with priority) #> 6833 61 Male Making right turn #> 6834 40 Male Overtaking on off-side #> 6835 24 Male Making left turn #> 6836 38 Female Going straight ahead (with priority) #> 6837 51 Male Going straight ahead (with priority) #> 6838 25 Male Going straight ahead (with priority) #> 6839 22 Male Going straight ahead (with priority) #> 6840 NA Male Going straight ahead (with priority) #> 6841 62 Male Going straight ahead (with priority) #> 6842 27 Male Changing lanes or merging #> 6843 39 Male Changing lanes or merging #> 6844 46 Male Going straight ahead (with priority) #> 6845 63 Male Going straight ahead (with priority) #> 6846 57 Female Going straight ahead (with priority) #> 6847 21 Male Going straight ahead (with priority) #> 6848 31 Male Going Straight Ahead (against priority) #> 6849 35 Male Going straight ahead (with priority) #> 6850 35 Male Going straight ahead (with priority) #> 6851 40 Male Going straight ahead (with priority) #> 6852 54 Male Reversing #> 6853 42 Male Starting in traffic #> 6854 43 Female Stopped in traffic #> 6855 37 Male Going straight ahead (with priority) #> 6856 63 Male Making U turn #> 6857 31 Male Going straight ahead (with priority) #> 6858 15 Female Going straight ahead (with priority) #> 6859 50 Male Going straight ahead (with priority) #> 6860 32 Male Going straight ahead (with priority) #> 6861 45 Male Going straight ahead (with priority) #> 6862 46 Male Going Straight Ahead (against priority) #> 6863 25 Male Changing lanes or merging #> 6864 57 Male Going straight ahead (with priority) #> 6865 37 Male Going straight ahead (with priority) #> 6866 41 Male Changing lanes or merging #> 6867 53 Male Stopped in traffic #> 6868 35 Male Going straight ahead (with priority) #> 6869 31 Male Going straight ahead (with priority) #> 6870 21 Female Going straight ahead (with priority) #> 6871 62 Male Changing lanes or merging #> 6872 41 Male Changing lanes or merging #> 6873 33 Male Stopped in traffic #> 6874 43 Male Starting in traffic #> 6875 38 Male Going straight ahead (with priority) #> 6876 63 Male Making left turn #> 6877 67 Male Going straight ahead (with priority) #> 6878 46 Male Stopped in traffic #> 6879 58 Female Going Straight Ahead (against priority) #> 6880 41 Male Making U turn #> 6881 43 Male Going straight ahead (with priority) #> 6882 38 Male Slowing or stopping #> 6883 52 Male Going straight ahead (with priority) #> 6884 60 Male Going straight ahead (with priority) #> 6885 66 Male Going straight ahead (with priority) #> 6886 29 Male Going straight ahead (with priority) #> 6887 33 Male Going Straight Ahead (against priority) #> 6888 48 Male Going straight ahead (with priority) #> 6889 34 Female Making right turn #> 6890 36 Male Making left turn #> 6891 56 Male Going straight ahead (with priority) #> 6892 23 Male Going straight ahead (with priority) #> 6893 46 Female Going straight ahead (with priority) #> 6894 59 Male Going straight ahead (with priority) #> 6895 36 Male Going straight ahead (with priority) #> 6896 58 Male Going straight ahead (with priority) #> 6897 56 Male Slowing or stopping #> 6898 26 Male Going straight ahead (with priority) #> 6899 74 Male Going straight ahead (with priority) #> 6900 53 Male Going straight ahead (with priority) #> 6901 47 Male Slowing or stopping #> 6902 51 Male Going straight ahead (with priority) #> 6903 46 Male Going straight ahead (with priority) #> 6904 59 Male Going straight ahead (with priority) #> 6905 57 Male Going straight ahead (with priority) #> 6906 55 Male Going straight ahead (with priority) #> 6907 41 Male Making left turn #> 6908 45 Male Slowing or stopping #> 6909 26 Male Reversing #> 6910 42 Male Making left turn #> 6911 41 Male Stopped in traffic #> 6912 33 Male Going straight ahead (with priority) #> 6913 56 Male Overtaking on near-side #> 6914 44 Male Stopped in traffic #> 6915 66 Male Going straight ahead (with priority) #> 6916 39 Male Going straight ahead (with priority) #> 6917 30 Male Going straight ahead (with priority) #> 6918 31 Male Changing lanes or merging #> 6919 49 Male Going straight ahead (with priority) #> 6920 29 Male Going straight ahead (with priority) #> 6921 58 Male Going straight ahead (with priority) #> 6922 54 Male Changing lanes or merging #> 6923 66 Male Going straight ahead (with priority) #> 6924 48 Male Going straight ahead (with priority) #> 6925 39 Male Going straight ahead (with priority) #> 6926 54 Male Other #> 6927 63 Male Slowing or stopping #> 6928 45 Male Slowing or stopping #> 6929 28 Male Going straight ahead (with priority) #> 6930 56 Male Going Straight Ahead (against priority) #> 6931 25 Male Going Straight Ahead (against priority) #> 6932 58 Female Going straight ahead (with priority) #> 6933 26 Male Making right turn #> 6934 25 Male Going straight ahead (with priority) #> 6935 56 Male Going straight ahead (with priority) #> 6936 56 Male Going straight ahead (with priority) #> 6937 37 Male Changing lanes or merging #> 6938 42 Male Going straight ahead (with priority) #> 6939 35 Female Going straight ahead (with priority) #> 6940 30 Male Going straight ahead (with priority) #> 6941 40 Male Stopped in traffic #> 6942 24 Male Going straight ahead (with priority) #> 6943 48 Male Stopped in traffic #> 6944 14 Male Making left turn #> 6945 50 Male Going straight ahead (with priority) #> 6946 58 Male Going straight ahead (with priority) #> 6947 23 Male Changing lanes or merging #> 6948 34 Male Going straight ahead (with priority) #> 6949 39 Female Slowing or stopping #> 6950 38 Male Going straight ahead (with priority) #> 6951 78 Male Changing lanes or merging #> 6952 55 Male Making right turn #> 6953 34 Male Going Straight Ahead (against priority) #> 6954 30 Male Going straight ahead (with priority) #> 6955 56 Male Going straight ahead (with priority) #> 6956 54 Male Going straight ahead (with priority) #> 6957 NA Male Going straight ahead (with priority) #> 6958 49 Male Going straight ahead (with priority) #> 6959 38 Female Going straight ahead (with priority) #> 6960 33 Male Going straight ahead (with priority) #> 6961 37 Male Going straight ahead (with priority) #> 6962 33 Male Going straight ahead (with priority) #> 6963 32 Male Going straight ahead (with priority) #> 6964 58 Male Starting in traffic #> 6965 55 Male Going straight ahead (with priority) #> 6966 60 Male Changing lanes or merging #> 6967 45 Male Going straight ahead (with priority) #> 6968 51 Male Going straight ahead (with priority) #> 6969 37 Male Going straight ahead (with priority) #> 6970 33 Male Going straight ahead (with priority) #> 6971 52 Male Slowing or stopping #> 6972 26 Male Going straight ahead (with priority) #> 6973 46 Male Starting in traffic #> 6974 56 Male Going straight ahead (with priority) #> 6975 33 Male Stopped in traffic #> 6976 60 Male Making left turn #> 6977 65 Male Going straight ahead (with priority) #> 6978 35 Male Stopped in traffic #> 6979 53 Male Going straight ahead (with priority) #> 6980 62 Male Overtaking on off-side #> 6981 17 Male Going straight ahead (with priority) #> 6982 22 Female Going Straight Ahead (against priority) #> 6983 22 Male Going straight ahead (with priority) #> 6984 62 Male Other #> 6985 46 Male Going straight ahead (with priority) #> 6986 66 Male Starting in traffic #> 6987 28 Female Going straight ahead (with priority) #> 6988 70 Male Going Straight Ahead (against priority) #> 6989 48 Male Stopped in traffic #> 6990 57 Male Ran off road #> 6991 65 Male Ran off road #> 6992 49 Male Slowing or stopping #> 6993 38 Female Making left turn #> 6994 26 Male Going Straight Ahead (against priority) #> 6995 58 Male Slowing or stopping #> 6996 56 Male Changing lanes or merging #> 6997 49 Male Going straight ahead (with priority) #> 6998 59 Male Going straight ahead (with priority) #> 6999 47 Male Going straight ahead (with priority) #> 7000 37 Male Going straight ahead (with priority) #> 7001 18 Male Going straight ahead (with priority) #> 7002 55 Male Starting in traffic #> 7003 29 Male Going straight ahead (with priority) #> 7004 43 Female Going straight ahead (with priority) #> 7005 66 Male Going straight ahead (with priority) #> 7006 32 Male Going Straight Ahead (against priority) #> 7007 38 Male Going straight ahead (with priority) #> 7008 39 Male Going straight ahead (with priority) #> 7009 64 Male Going straight ahead (with priority) #> 7010 33 Male Going straight ahead (with priority) #> 7011 42 Male Going straight ahead (with priority) #> 7012 31 Male Changing lanes or merging #> 7013 27 Male Going straight ahead (with priority) #> 7014 45 Male Going straight ahead (with priority) #> 7015 59 Male Going straight ahead (with priority) #> 7016 37 Male Going straight ahead (with priority) #> 7017 41 Male Going straight ahead (with priority) #> 7018 39 Male Changing lanes or merging #> 7019 12 Male Going straight ahead (with priority) #> 7020 59 Male Stopped in traffic #> 7021 70 Male Slowing or stopping #> 7022 53 Male Going straight ahead (with priority) #> 7023 44 Male Going straight ahead (with priority) #> 7024 34 Male Other #> 7025 24 Male Going straight ahead (with priority) #> 7026 67 Male Overtaking on off-side #> 7027 43 Female Making right turn #> 7028 48 Male Going straight ahead (with priority) #> 7029 43 Male Going straight ahead (with priority) #> 7030 31 Male Going straight ahead (with priority) #> 7031 34 Male Going straight ahead (with priority) #> 7032 68 Male Going straight ahead (with priority) #> 7033 54 Male Going straight ahead (with priority) #> 7034 42 Female Going straight ahead (with priority) #> 7035 52 Male Going straight ahead (with priority) #> 7036 42 Male Going straight ahead (with priority) #> 7037 58 Male Going straight ahead (with priority) #> 7038 32 Male Going straight ahead (with priority) #> 7039 48 Male Making U turn #> 7040 30 Male Going straight ahead (with priority) #> 7041 79 Male Going straight ahead (with priority) #> 7042 64 Male Going straight ahead (with priority) #> 7043 33 Male Going straight ahead (with priority) #> 7044 24 Male Going straight ahead (with priority) #> 7045 47 Male Going straight ahead (with priority) #> 7046 32 Male Going straight ahead (with priority) #> 7047 25 Female Making left turn #> 7048 60 Male Making right turn #> 7049 48 Male Going straight ahead (with priority) #> 7050 37 Male Going straight ahead (with priority) #> 7051 39 Male Going Straight Ahead (against priority) #> 7052 27 Male Slowing or stopping #> 7053 19 Male Going straight ahead (with priority) #> 7054 20 Female Going straight ahead (with priority) #> 7055 41 Male Going straight ahead (with priority) #> 7056 31 Male Stopped in traffic #> 7057 54 Male Going straight ahead (with priority) #> 7058 21 Male Going straight ahead (with priority) #> 7059 35 Male Going straight ahead (with priority) #> 7060 66 Male Going straight ahead (with priority) #> 7061 53 Male Going straight ahead (with priority) #> 7062 27 Male Changing lanes or merging #> 7063 35 Male Going straight ahead (with priority) #> 7064 48 Male Slowing or stopping #> 7065 39 Female Slowing or stopping #> 7066 47 Female Slowing or stopping #> 7067 33 Female Slowing or stopping #> 7068 67 Male Starting in traffic #> 7069 40 Male Going straight ahead (with priority) #> 7070 41 Female Parked #> 7071 38 Male Going straight ahead (with priority) #> 7072 29 Male Parked #> 7073 31 Male Stopped in traffic #> 7074 47 Male Going straight ahead (with priority) #> 7075 30 Male Going straight ahead (with priority) #> 7076 50 Male Going straight ahead (with priority) #> 7077 36 Male Going straight ahead (with priority) #> 7078 60 Male Stopped in traffic #> 7079 27 Male Going straight ahead (with priority) #> 7080 66 Male Going straight ahead (with priority) #> 7081 54 Male Going straight ahead (with priority) #> 7082 55 Male Making right turn #> 7083 47 Male Slowing or stopping #> 7084 45 Female Slowing or stopping #> 7085 28 Male Slowing or stopping #> 7086 50 Male Going straight ahead (with priority) #> 7087 29 Male Going straight ahead (with priority) #> 7088 54 Male Going straight ahead (with priority) #> 7089 44 Male Going straight ahead (with priority) #> 7090 60 Male Changing lanes or merging #> 7091 28 Male Going straight ahead (with priority) #> 7092 38 Male Going straight ahead (with priority) #> 7093 51 Female Going straight ahead (with priority) #> 7094 22 Male Going straight ahead (with priority) #> 7095 68 Male Going straight ahead (with priority) #> 7096 21 Male Going straight ahead (with priority) #> 7097 30 Male Going straight ahead (with priority) #> 7098 50 Male Going straight ahead (with priority) #> 7099 59 Male Making right turn #> 7100 54 Male Going straight ahead (with priority) #> 7101 35 Male Going straight ahead (with priority) #> 7102 57 Male Making right turn #> 7103 24 Male Going straight ahead (with priority) #> 7104 31 Male Going straight ahead (with priority) #> 7105 33 Male Going straight ahead (with priority) #> 7106 39 Male Slowing or stopping #> 7107 47 Male Stopped in traffic #> 7108 62 Male Other #> 7109 54 Male Other #> 7110 56 Male Going straight ahead (with priority) #> 7111 77 Male Going straight ahead (with priority) #> 7112 46 Male Going straight ahead (with priority) #> 7113 45 Male Stopped in traffic #> 7114 33 Male Going straight ahead (with priority) #> 7115 51 Male Going straight ahead (with priority) #> 7116 26 Male Going straight ahead (with priority) #> 7117 55 Male Going straight ahead (with priority) #> 7118 26 Female Going straight ahead (with priority) #> 7119 23 Male Making left turn #> 7120 51 Male Going straight ahead (with priority) #> 7121 51 Male Going straight ahead (with priority) #> 7122 56 Male Going straight ahead (with priority) #> 7123 53 Male Going straight ahead (with priority) #> 7124 51 Male Stopped in traffic #> 7125 48 Male Reversing #> 7126 58 Male Stopped in traffic #> 7127 42 Male Going straight ahead (with priority) #> 7128 57 Female Making right turn #> 7129 57 Male Going straight ahead (with priority) #> 7130 46 Male Going straight ahead (with priority) #> 7131 34 Male Going straight ahead (with priority) #> 7132 47 Male Stopped in traffic #> 7133 52 Male Going straight ahead (with priority) #> 7134 55 Male Going straight ahead (with priority) #> 7135 58 Male Going straight ahead (with priority) #> 7136 50 Male Changing lanes or merging #> 7137 25 Male Going straight ahead (with priority) #> 7138 47 Male Going straight ahead (with priority) #> 7139 60 Male Going straight ahead (with priority) #> 7140 61 Female Going straight ahead (with priority) #> 7141 81 Male Going straight ahead (with priority) #> 7142 56 Male Changing lanes or merging #> Year_of_Manufacture Grid_E Grid_N Pedal_cycle #> 1 2002 840782 816576 Others #> 2 2012 832909 816551 Others #> 3 2001 835270 817969 Others #> 4 2008 830780 840400 Others #> 5 2001 830780 840400 Others #> 6 2001 830780 840400 Others #> 7 2009 837229 825912 Motorcyle #> 8 1999 828821 826099 Others #> 9 2012 832329 825747 Others #> 10 2012 832329 825747 Motorcyle #> 11 2001 841848 817841 Others #> 12 2010 841848 817841 Others #> 13 NA 837793 815421 Pedal Cycle #> 14 2005 840863 811330 Others #> 15 2002 831624 814400 Others #> 16 2004 834118 812153 Others #> 17 2001 835723 815429 Others #> 18 2007 835723 815429 Motorcyle #> 19 2005 837121 816062 Motorcyle #> 20 2013 836946 815935 Motorcyle #> 21 1992 837513 815715 Others #> 22 NA 837513 815715 Others #> 23 1996 832321 813097 Motorcyle #> 24 2013 836799 815899 Motorcyle #> 25 2001 836799 815899 Others #> 26 2007 841325 816012 Motorcyle #> 27 2005 834119 812340 Others #> 28 1998 834119 812340 Others #> 29 2006 841482 812789 Others #> 30 2009 832879 816631 Others #> 31 2002 832879 816631 Others #> 32 2002 833186 816368 Others #> 33 2011 839624 809058 Others #> 34 1998 833934 812321 Others #> 35 2013 837922 816607 Others #> 36 2001 832684 816309 Others #> 37 2010 836104 815047 Motorcyle #> 38 2012 837724 815878 Others #> 39 1996 836052 815438 Others #> 40 2003 836635 815283 Others #> 41 2009 834946 814426 Others #> 42 2002 834946 814426 Others #> 43 1998 834946 814426 Others #> 44 2011 836528 815093 Motorcyle #> 45 2011 836528 815093 Others #> 46 2007 833825 815531 Others #> 47 2005 833825 815531 Others #> 48 2012 842700 813848 Others #> 49 2010 836828 816021 Others #> 50 1998 836828 816021 Others #> 51 2002 837509 815640 Others #> 52 2011 837509 815640 Others #> 53 2011 836844 815666 Others #> 54 2013 839115 816978 Motorcyle #> 55 2003 831230 816004 Others #> 56 2013 832108 816443 Others #> 57 1998 838670 816969 Others #> 58 2001 836811 817063 Others #> 59 2003 836811 817063 Motorcyle #> 60 2013 836811 817063 Others #> 61 2008 839656 816644 Others #> 62 2002 834303 815907 Others #> 63 NA 833515 811177 Motorcyle #> 64 2011 833515 811177 Motorcyle #> 65 NA 837067 815701 Others #> 66 1999 837067 815701 Others #> 67 2011 838234 816508 Motorcyle #> 68 2009 834093 812185 Others #> 69 1997 834093 812185 Others #> 70 2001 837440 815648 Others #> 71 2013 837440 815648 Others #> 72 2011 840709 815565 Others #> 73 2008 834279 815297 Others #> 74 2001 833744 816466 Others #> 75 2012 833744 816466 Others #> 76 2012 836739 815424 Others #> 77 2001 836739 815424 Others #> 78 2008 841969 814274 Motorcyle #> 79 2013 837337 816124 Motorcyle #> 80 NA 840902 816399 Others #> 81 2007 840902 816399 Others #> 82 2000 836488 815779 Motorcyle #> 83 2003 836488 815779 Motorcyle #> 84 2013 841454 815405 Others #> 85 2001 836703 815618 Others #> 86 2005 834178 815831 Others #> 87 2002 835896 815738 Others #> 88 2001 837565 815555 Others #> 89 2013 837565 815555 Motorcyle #> 90 1998 839570 816886 Others #> 91 2002 836754 811840 Others #> 92 2003 839941 816422 Others #> 93 1998 842122 814559 Others #> 94 1996 835722 815151 Others #> 95 2004 835079 815640 Others #> 96 2003 835079 815640 Others #> 97 1997 832685 816846 Others #> 98 2001 841512 815489 Others #> 99 2004 841512 815489 Others #> 100 2005 836185 815567 Others #> 101 NA 837984 815350 Others #> 102 2011 833587 811165 Motorcyle #> 103 2011 832360 816328 Others #> 104 1999 840818 816551 Others #> 105 2006 831531 814549 Others #> 106 2011 838533 817019 Others #> 107 2009 838504 813258 Others #> 108 2001 842715 814023 Others #> 109 2010 843438 814113 Others #> 110 2011 842863 814427 Motorcyle #> 111 2000 842863 814427 Others #> 112 2010 835111 811782 Motorcyle #> 113 2003 833494 816492 Others #> 114 2006 837831 813436 Others #> 115 2002 837831 813436 Others #> 116 1998 832206 812476 Others #> 117 2010 840816 815494 Others #> 118 2000 843273 811837 Motorcyle #> 119 2004 836883 815914 Others #> 120 2001 836883 815914 Others #> 121 <NA> 836883 815914 Others #> 122 <NA> 836883 815914 Others #> 123 2007 833280 816621 Others #> 124 2011 833280 816621 Others #> 125 NA 834045 811615 Pedal Cycle #> 126 2013 840285 816741 Others #> 127 1999 840285 816741 Others #> 128 2001 840285 816741 Others #> 129 2013 840285 816741 Others #> 130 2001 840285 816741 Others #> 131 2012 838139 811099 Others #> 132 NA 834462 816159 Others #> 133 1999 834462 816159 Others #> 134 2003 833817 816377 Others #> 135 2014 835221 815942 Pedal Cycle #> 136 2008 837019 814899 Others #> 137 2010 840324 809690 Others #> 138 1997 840324 809690 Others #> 139 2003 834159 815536 Others #> 140 2000 834159 815536 Others #> 141 2013 834307 811399 Others #> 142 1998 831301 815977 Others #> 143 2005 831301 815977 Others #> 144 2011 832949 816556 Others #> 145 2007 834916 812188 Others #> 146 2006 834916 812188 Others #> 147 1998 834429 815676 Others #> 148 2007 833057 816549 Others #> 149 2011 834949 815340 Others #> 150 2002 834949 815340 Others #> 151 2013 836532 815090 Others #> 152 2011 836532 815090 Others #> 153 2007 834204 816114 Others #> 154 2012 835312 815429 Others #> 155 1998 838684 816921 Others #> 156 2008 836560 812749 Motorcyle #> 157 2000 836240 815122 Motorcyle #> 158 2002 836240 815122 Others #> 159 2012 840520 816425 Others #> 160 2011 836657 815537 Others #> 161 2011 832523 816554 Others #> 162 2010 838020 815167 Motorcyle #> 163 2004 838020 815167 Others #> 164 2006 834552 815509 Others #> 165 2001 834552 815509 Others #> 166 2008 838796 817222 Others #> 167 2003 838796 817222 Others #> 168 2004 837860 816034 Motorcyle #> 169 2000 838772 810036 Others #> 170 2003 838772 810036 Others #> 171 2003 833412 812198 Motorcyle #> 172 2000 838347 816666 Others #> 173 2001 842465 814037 Others #> 174 1998 834992 811676 Others #> 175 2012 834992 811676 Others #> 176 2001 834382 816002 Others #> 177 2001 834382 816002 Others #> 178 NA 841326 815745 Others #> 179 2011 841326 815745 Others #> 180 2011 839791 816959 Others #> 181 2004 839791 816959 Others #> 182 2006 839791 816959 Others #> 183 2004 839791 816959 Others #> 184 2001 839791 816959 Others #> 185 1999 835880 815420 Motorcyle #> 186 2001 837500 815670 Others #> 187 2000 837500 815670 Others #> 188 2004 841718 813755 Motorcyle #> 189 2008 841718 813755 Motorcyle #> 190 NA 841718 813755 Others #> 191 2002 836714 815415 Others #> 192 2013 840560 816137 Others #> 193 1997 840560 816137 Others #> 194 2000 838779 816947 Others #> 195 2011 837212 815657 Others #> 196 2000 837212 815657 Others #> 197 1998 832098 812806 Others #> 198 2000 837825 816789 Others #> 199 2013 837825 816789 Others #> 200 2006 837825 816789 Others #> 201 1999 837825 816789 Motorcyle #> 202 2002 834013 816012 Others #> 203 1998 835608 815601 Others #> 204 2007 836048 815411 Others #> 205 2013 835522 815603 Others #> 206 2009 835522 815603 Others #> 207 2001 835522 815603 Others #> 208 2008 832598 816215 Others #> 209 2001 832854 816697 Others #> 210 2008 832854 816697 Others #> 211 2012 837211 815465 Motorcyle #> 212 2008 839327 816941 Others #> 213 2009 837113 814520 Others #> 214 2011 837187 813819 Others #> 215 2001 836447 815712 Others #> 216 NA 836447 815712 Others #> 217 2008 832700 816364 Others #> 218 2001 834162 815886 Others #> 219 2011 835067 815682 Others #> 220 2001 840901 817338 Others #> 221 2001 840901 817338 Others #> 222 2012 835723 812398 Others #> 223 1997 835723 812398 Others #> 224 2013 842757 813868 Others #> 225 2002 835867 815411 Others #> 226 2003 839613 816813 Others #> 227 2012 835426 812315 Others #> 228 2002 838844 817234 Motorcyle #> 229 NA 837951 814239 Pedal Cycle #> 230 2010 839704 816517 Others #> 231 2001 842706 814019 Others #> 232 1997 832433 812565 Others #> 233 1996 840906 815932 Others #> 234 2013 841776 815213 Others #> 235 2004 836267 815902 Others #> 236 2002 836267 815902 Others #> 237 2013 836124 815084 Others #> 238 2013 836124 815084 Motorcyle #> 239 2000 837700 816645 Others #> 240 NA 837700 816645 Others #> 241 1998 838716 816855 Others #> 242 2003 834677 815662 Motorcyle #> 243 1998 837234 815629 Others #> 244 NA 837234 815629 Pedal Cycle #> 245 2010 840361 816493 Others #> 246 2004 840361 816493 Others #> 247 2013 834143 811334 Others #> 248 1998 838133 816786 Others #> 249 2011 835447 815618 Others #> 250 2007 835447 815618 Others #> 251 2001 837997 811212 Others #> 252 1997 836813 815885 Motorcyle #> 253 1998 836813 815885 Others #> 254 1999 837800 815902 Others #> 255 2010 837800 815902 Others #> 256 2012 840774 816083 Others #> 257 2013 834458 815854 Others #> 258 2003 837657 816505 Others #> 259 2003 835939 812367 Others #> 260 2006 835939 812367 Others #> 261 2001 835092 815463 Others #> 262 2010 835092 815463 Others #> 263 2002 836496 815741 Others #> 264 2010 836496 815741 Others #> 265 2010 834141 815858 Others #> 266 2011 836725 814688 Others #> 267 2001 836725 814688 Others #> 268 2011 836725 814688 Others #> 269 2003 836725 814688 Others #> 270 2001 833430 815793 Others #> 271 2004 834499 815489 Others #> 272 2013 834499 815489 Others #> 273 2003 833313 817040 Others #> 274 2001 833313 817040 Others #> 275 2012 837943 816015 Others #> 276 1995 837943 816015 Others #> 277 1996 835061 815525 Others #> 278 2000 834142 812273 Others #> 279 2002 834257 815959 Others #> 280 2006 831830 813625 Others #> 281 2010 831830 813625 Others #> 282 2010 834108 816166 Others #> 283 1999 838905 816957 Others #> 284 1997 835729 812419 Others #> 285 1998 835729 812419 Others #> 286 2002 835729 812419 Others #> 287 2008 831828 813631 Others #> 288 2001 836905 815902 Others #> 289 2007 836905 815902 Others #> 290 2008 834285 816041 Others #> 291 2010 834285 816041 Others #> 292 2012 837957 816578 Others #> 293 2009 840497 815724 Others #> 294 2007 831854 813884 Motorcyle #> 295 2006 837741 816003 Others #> 296 2011 841755 815435 Motorcyle #> 297 2000 834906 815406 Others #> 298 2007 837036 815459 Others #> 299 1998 836867 815681 Others #> 300 2001 838613 811110 Others #> 301 2011 835270 815617 Others #> 302 2001 835270 815617 Others #> 303 1996 839117 817001 Others #> 304 2013 840875 815956 Others #> 305 NA 840875 815956 Others #> 306 NA 831847 813325 Pedal Cycle #> 307 1994 842713 814512 Others #> 308 2000 838993 816978 Others #> 309 2013 833284 815049 Pedal Cycle #> 310 1999 833284 815049 Others #> 311 2013 834501 814192 Others #> 312 2006 834501 814192 Others #> 313 2011 831656 816232 Others #> 314 2010 831656 816232 Others #> 315 NA 834287 812600 Pedal Cycle #> 316 2013 834028 815925 Others #> 317 2005 834028 815925 Others #> 318 NA 839618 816987 Pedal Cycle #> 319 1999 834570 815919 Others #> 320 2004 838011 814290 Others #> 321 2004 838011 814290 Others #> 322 2001 837768 816723 Others #> 323 2011 837768 816723 Motorcyle #> 324 2013 834083 812171 Others #> 325 2010 840889 816045 Pedal Cycle #> 326 2007 831016 815997 Others #> 327 2000 831016 815997 Others #> 328 2009 836249 815261 Others #> 329 2011 836972 815752 Others #> 330 2001 836735 815554 Others #> 331 2006 835256 815176 Others #> 332 2009 834990 815509 Others #> 333 2001 840961 815948 Others #> 334 2013 833614 816114 Motorcyle #> 335 2010 832519 816564 Others #> 336 2001 834969 812183 Others #> 337 1998 834969 812183 Others #> 338 NA 837917 816278 Motorcyle #> 339 2008 837481 813787 Others #> 340 2010 837481 813787 Others #> 341 2001 831110 815948 Others #> 342 2004 831110 815948 Others #> 343 2001 837914 816392 Others #> 344 2001 831431 815944 Others #> 345 2007 835577 815485 Others #> 346 2005 833926 816342 Others #> 347 NA 836531 815103 Others #> 348 2002 836531 815103 Others #> 349 2006 837774 816259 Others #> 350 2004 837774 816259 Others #> 351 1997 836287 815364 Others #> 352 2009 833476 815994 Others #> 353 2011 821074 807634 Pedal Cycle #> 354 2002 832325 816624 Others #> 355 2002 832325 816624 Others #> 356 2007 835617 815691 Others #> 357 2013 838928 817236 Others #> 358 2008 838928 817236 Motorcyle #> 359 2008 833680 816317 Others #> 360 2006 831557 813657 Others #> 361 2004 831557 813657 Others #> 362 2010 837745 816141 Others #> 363 2000 837623 816563 Others #> 364 2011 837623 816563 Others #> 365 2001 842489 813858 Others #> 366 2007 842489 813858 Motorcyle #> 367 2009 836283 815901 Others #> 368 2012 836614 815817 Motorcyle #> 369 2012 837582 815543 Motorcyle #> 370 1999 839990 816543 Others #> 371 2008 835515 815632 Others #> 372 2011 835515 815632 Others #> 373 2002 835515 815632 Others #> 374 2010 835515 815632 Others #> 375 2012 836600 815220 Others #> 376 2013 836600 815220 Others #> 377 1998 843861 814122 Others #> 378 2010 835077 815535 Others #> 379 2010 836681 815697 Others #> 380 2011 836681 815697 Others #> 381 2006 836681 815697 Others #> 382 2009 836614 815817 Others #> 383 2001 836614 815817 Others #> 384 2012 835234 815489 Motorcyle #> 385 2010 842479 815357 Motorcyle #> 386 1995 842479 815357 Others #> 387 1998 832081 816329 Others #> 388 2001 843617 813986 Others #> 389 2001 837155 815957 Others #> 390 2010 837385 815615 Others #> 391 2011 837385 815615 Others #> 392 2009 840658 815771 Motorcyle #> 393 2012 834100 816388 Others #> 394 1997 834100 816388 Others #> 395 1998 842258 813916 Others #> 396 1998 831655 814274 Others #> 397 2010 832816 816623 Others #> 398 1998 835595 815435 Others #> 399 2000 835595 815435 Others #> 400 2012 835609 815582 Others #> 401 2001 837894 815538 Others #> 402 2003 836726 815332 Others #> 403 2012 836726 815332 Others #> 404 2006 839165 817104 Others #> 405 2008 839165 817104 Others #> 406 2003 837606 810974 Others #> 407 2009 837606 810974 Others #> 408 2004 831147 815990 Others #> 409 2000 839527 816968 Others #> 410 2013 832862 816714 Others #> 411 2010 832862 816714 Others #> 412 NA 820428 808242 Pedal Cycle #> 413 2011 839795 816327 Others #> 414 NA 833970 811594 Others #> 415 2007 833970 811594 Others #> 416 2013 833970 811594 Others #> 417 1997 834044 812110 Others #> 418 2007 838937 816873 Others #> 419 2013 838937 816873 Others #> 420 2003 835717 815311 Others #> 421 1999 836660 815537 Others #> 422 NA 831924 816633 Pedal Cycle #> 423 2009 833629 811617 Others #> 424 2004 842652 813902 Others #> 425 2001 838738 816861 Others #> 426 1993 838738 816861 Others #> 427 2000 840903 811521 Others #> 428 2001 840903 811521 Others #> 429 1993 837977 815789 Motorcyle #> 430 2001 836839 815341 Others #> 431 2007 834090 815914 Others #> 432 2000 840728 816152 Others #> 433 2006 840728 816152 Others #> 434 2005 836863 815361 Others #> 435 2007 836647 817900 Motorcyle #> 436 2008 833756 812133 Others #> 437 2001 838535 817018 Others #> 438 2002 839373 817007 Others #> 439 2012 834721 812197 Motorcyle #> 440 2000 834721 812197 Others #> 441 <NA> 834153 815544 Others #> 442 <NA> 834153 815544 Others #> 443 2001 834153 815544 Others #> 444 2006 832391 812748 Others #> 445 2008 832391 812748 Others #> 446 2002 838228 816732 Others #> 447 2003 838228 816732 Others #> 448 2007 825864 815306 Others #> 449 2005 842195 813968 Motorcyle #> 450 2001 836249 815619 Others #> 451 2012 842699 815065 Others #> 452 2008 831699 816492 Motorcyle #> 453 2010 831030 815923 Others #> 454 2011 831030 815923 Others #> 455 2014 835101 815302 Others #> 456 1996 835101 815302 Others #> 457 2009 834172 813925 Others #> 458 2000 834172 813925 Others #> 459 2001 833762 815155 Others #> 460 1996 837401 811741 Others #> 461 2001 836253 812378 Others #> 462 2003 836253 812378 Others #> 463 2005 834274 815422 Others #> 464 2012 837309 816121 Others #> 465 1998 837309 816121 Others #> 466 1998 837736 816097 Others #> 467 2010 836110 815093 Others #> 468 1998 841399 815472 Others #> 469 2013 834034 812050 Motorcyle #> 470 2001 836222 814417 Others #> 471 2013 836222 814417 Motorcyle #> 472 2003 834075 812193 Others #> 473 1994 832415 816275 Others #> 474 2007 832415 816275 Others #> 475 2011 835017 815478 Others #> 476 2008 837896 813226 Motorcyle #> 477 2002 837896 813226 Others #> 478 NA 834867 815582 Motorcyle #> 479 NA 834867 815582 Others #> 480 2006 842428 814489 Others #> 481 2003 831674 814389 Others #> 482 2007 836253 815567 Others #> 483 2008 837908 816611 Others #> 484 2000 836120 815452 Others #> 485 2013 834450 815676 Motorcyle #> 486 2001 834450 815676 Others #> 487 2010 839054 816932 Others #> 488 2001 835786 815396 Others #> 489 2012 843227 814111 Others #> 490 2011 834015 811726 Others #> 491 1997 839643 816727 Others #> 492 2011 838796 817223 Others #> 493 2002 838796 817223 Others #> 494 2006 838796 817223 Others #> 495 2000 836843 815863 Others #> 496 2013 836843 815863 Others #> 497 2009 834315 811443 Others #> 498 2011 833536 811712 Motorcyle #> 499 2008 837023 815949 Others #> 500 2013 837023 815949 Others #> 501 2003 841482 815453 Others #> 502 2013 837720 816213 Others #> 503 2004 835995 815212 Others #> 504 2004 835120 815496 Others #> 505 2013 842181 813994 Others #> 506 2003 837002 814934 Others #> 507 2002 834331 811735 Others #> 508 2012 834331 811735 Others #> 509 2005 834331 811735 Others #> 510 2001 838121 814766 Others #> 511 1998 842116 814449 Others #> 512 2008 840938 816082 Others #> 513 2000 832787 816444 Others #> 514 1997 832787 816444 Others #> 515 1997 837513 815696 Others #> 516 1997 842125 814233 Others #> 517 2013 838086 815330 Others #> 518 1993 838086 815330 Motorcyle #> 519 2004 837076 815757 Others #> 520 2001 837076 815757 Others #> 521 2012 837076 815757 Others #> 522 2001 837076 815757 Others #> 523 2005 840566 816131 Others #> 524 2013 840566 816131 Others #> 525 2002 832791 816440 Others #> 526 2012 839634 817087 Motorcyle #> 527 2005 835709 815158 Others #> 528 1997 834285 815916 Others #> 529 NA 840995 815974 Others #> 530 2006 840995 815974 Motorcyle #> 531 2000 841021 815807 Others #> 532 2007 832538 812592 Motorcyle #> 533 1992 832538 812592 Others #> 534 2008 834257 811638 Motorcyle #> 535 2000 836053 815317 Others #> 536 2010 837330 811410 Others #> 537 2000 834090 816395 Others #> 538 2003 834090 816395 Others #> 539 2002 837851 812475 Motorcyle #> 540 2012 835428 811877 Others #> 541 2010 835428 811877 Others #> 542 2012 837931 816514 Others #> 543 2004 837931 816514 Others #> 544 1997 831269 815856 Others #> 545 2010 837205 814470 Others #> 546 2007 837205 814470 Others #> 547 2011 832339 813226 Motorcyle #> 548 2012 835563 815635 Others #> 549 2011 835563 815635 Others #> 550 2002 835563 815635 Others #> 551 2007 834260 816075 Motorcyle #> 552 NA 833455 812170 Others #> 553 1999 835455 815583 Others #> 554 2006 835453 815581 Others #> 555 2005 832690 816185 Others #> 556 2008 834233 816147 Others #> 557 2010 834233 816147 Others #> 558 2000 834233 816147 Others #> 559 2006 838985 816977 Others #> 560 1998 836304 815477 Others #> 561 2004 842475 813858 Others #> 562 2005 842475 813858 Motorcyle #> 563 1996 833589 811723 Others #> 564 1998 833068 812215 Others #> 565 2001 835799 815098 Others #> 566 2001 835799 815098 Others #> 567 2010 837589 815542 Others #> 568 2003 837589 815542 Others #> 569 2010 836513 815668 Others #> 570 2011 836513 815668 Others #> 571 2004 840635 817109 Others #> 572 2003 840635 817109 Others #> 573 2003 842285 814082 Others #> 574 2006 842285 814082 Motorcyle #> 575 NA 834272 816200 Others #> 576 2000 836833 815871 Others #> 577 2011 836833 815871 Others #> 578 2002 836833 815871 Motorcyle #> 579 2010 836833 815871 Others #> 580 2009 837142 815999 Others #> 581 1991 836733 815514 Others #> 582 2005 836733 815514 Others #> 583 2002 833534 816378 Others #> 584 2011 834935 815503 Others #> 585 2003 836711 815437 Motorcyle #> 586 1998 836711 815437 Others #> 587 2005 839528 817111 Others #> 588 2006 839528 817111 Others #> 589 2001 839528 817111 Others #> 590 2006 839528 817111 Others #> 591 2010 839528 817111 Others #> 592 1997 841761 812278 Motorcyle #> 593 2000 834464 815453 Others #> 594 2005 834464 815453 Others #> 595 1998 836183 815457 Others #> 596 2001 839655 816643 Others #> 597 2013 841006 810797 Others #> 598 2001 841006 810797 Others #> 599 2002 833546 811708 Others #> 600 2004 833546 811708 Others #> 601 2001 836360 815384 Others #> 602 2002 834032 811431 Motorcyle #> 603 2009 835907 815072 Others #> 604 2008 834686 815804 Others #> 605 2000 835861 815306 Others #> 606 2012 835861 815306 Motorcyle #> 607 2004 836028 815314 Others #> 608 2002 833620 816178 Motorcyle #> 609 2002 838774 816946 Others #> 610 2000 837040 815941 Others #> 611 2000 837375 811472 Others #> 612 2009 837375 811472 Others #> 613 2011 837375 811472 Others #> 614 2014 833261 815907 Others #> 615 2008 831017 816054 Others #> 616 2010 838552 817171 Others #> 617 2001 838552 817171 Others #> 618 1992 838552 817171 Others #> 619 2013 835761 812411 Motorcyle #> 620 2000 836804 815588 Others #> 621 NA 837444 815529 Others #> 622 2007 836572 815441 Motorcyle #> 623 NA 834788 815608 Others #> 624 1998 834788 815608 Others #> 625 2004 833289 816291 Motorcyle #> 626 2011 833289 816291 Others #> 627 1998 841346 815370 Others #> 628 2007 837877 816040 Others #> 629 2000 837877 816040 Others #> 630 2001 841392 815477 Others #> 631 2009 841392 815477 Others #> 632 2009 837813 815905 Others #> 633 2010 843809 813745 Others #> 634 2004 836933 815514 Others #> 635 2007 836933 815514 Motorcyle #> 636 2013 831646 816220 Motorcyle #> 637 2013 837574 816524 Others #> 638 2008 832745 816359 Others #> 639 2002 832745 816359 Others #> 640 2002 838616 816753 Others #> 641 2005 838616 816753 Others #> 642 2003 833601 812598 Others #> 643 1996 837215 815518 Others #> 644 2002 837171 811926 Others #> 645 1997 837171 811926 Motorcyle #> 646 2001 834305 816267 Others #> 647 1992 834305 816267 Others #> 648 1996 835782 815400 Others #> 649 2003 834491 816167 Others #> 650 1998 834491 816167 Others #> 651 2009 831983 813763 Motorcyle #> 652 1996 831983 813763 Others #> 653 1997 834235 815997 Others #> 654 2008 834235 815997 Others #> 655 2003 0 0 Others #> 656 1997 836716 815396 Others #> 657 2001 834802 814359 Others #> 658 2001 833548 816446 Others #> 659 2001 839258 817008 Others #> 660 1999 835136 812171 Others #> 661 2002 835136 812171 Others #> 662 1993 835136 812171 Motorcyle #> 663 2008 837275 815561 Others #> 664 1997 837930 811052 Others #> 665 1998 841810 815786 Others #> 666 2004 838169 816478 Others #> 667 1998 842032 813718 Others #> 668 2008 837056 813922 Others #> 669 2003 840586 815773 Others #> 670 2001 836625 814172 Others #> 671 2014 836625 814172 Pedal Cycle #> 672 2001 840389 809771 Others #> 673 2012 831504 816086 Others #> 674 2009 831393 815997 Others #> 675 1989 836885 816090 Others #> 676 2003 836885 816090 Others #> 677 2001 836521 815060 Others #> 678 2003 836521 815060 Others #> 679 2013 836249 815622 Motorcyle #> 680 NA 839822 816255 Pedal Cycle #> 681 1998 832488 816558 Others #> 682 2012 833842 815727 Others #> 683 2000 840820 815934 Others #> 684 NA 842920 815126 Pedal Cycle #> 685 2013 833772 812203 Others #> 686 2000 831586 815691 Others #> 687 2000 831586 815691 Others #> 688 2001 831586 815691 Others #> 689 2001 831586 815691 Others #> 690 2004 836456 812593 Others #> 691 2001 836456 812593 Others #> 692 2008 836456 812593 Others #> 693 2001 833651 811624 Others #> 694 2001 833651 811624 Others #> 695 2001 834331 815953 Others #> 696 2012 834331 815953 Others #> 697 2001 834331 815953 Others #> 698 2008 832839 816696 Others #> 699 1992 832839 816696 Others #> 700 2008 832844 816394 Others #> 701 2007 837153 816048 Others #> 702 2012 837153 816048 Others #> 703 2007 837153 816048 Others #> 704 2007 831520 813587 Others #> 705 NA 832137 812463 Others #> 706 1998 838054 815473 Others #> 707 1996 831830 813585 Others #> 708 2006 831830 813585 Others #> 709 2013 831830 813585 Motorcyle #> 710 2013 831830 813585 Others #> 711 2006 834513 815678 Others #> 712 2010 834513 815678 Others #> 713 2001 832860 816702 Others #> 714 2007 832860 816702 Others #> 715 NA 837877 816021 Pedal Cycle #> 716 2012 835627 815534 Others #> 717 NA 836402 814668 Pedal Cycle #> 718 NA 836402 814668 Others #> 719 2001 840208 816769 Others #> 720 2007 840749 816369 Others #> 721 NA 837926 813240 Pedal Cycle #> 722 2009 837926 813240 Others #> 723 2007 834740 812217 Motorcyle #> 724 2001 834740 812217 Others #> 725 NA 830739 815883 Pedal Cycle #> 726 2005 830739 815883 Others #> 727 NA 820473 808220 Pedal Cycle #> 728 2008 837746 816692 Others #> 729 2004 837746 816692 Others #> 730 2001 836690 815700 Others #> 731 2006 836690 815700 Others #> 732 2003 843341 814113 Others #> 733 2009 843341 814113 Motorcyle #> 734 2001 837743 816694 Others #> 735 2003 837743 816694 Others #> 736 1998 836545 815554 Others #> 737 2004 837556 815756 Others #> 738 2008 838635 816887 Others #> 739 NA 832072 816332 Others #> 740 2011 834924 815758 Others #> 741 2002 834924 815758 Others #> 742 2012 838183 814455 Motorcyle #> 743 2008 842757 813972 Others #> 744 2008 831346 815742 Others #> 745 2008 836491 814148 Others #> 746 2013 836491 814148 Others #> 747 2012 837869 815672 Others #> 748 NA 843416 814202 Pedal Cycle #> 749 2010 843416 814202 Others #> 750 2001 839984 816179 Others #> 751 2004 833609 816239 Others #> 752 1996 842521 813875 Others #> 753 2010 833394 813447 Others #> 754 1996 834266 811675 Others #> 755 2011 837189 814549 Others #> 756 2007 834257 815314 Others #> 757 2005 843280 808373 Others #> 758 NA 843280 808373 Pedal Cycle #> 759 2012 836974 815701 Others #> 760 1999 833596 811733 Others #> 761 2001 836698 815303 Others #> 762 2005 836698 815303 Motorcyle #> 763 2005 836623 815313 Motorcyle #> 764 2004 837581 815545 Motorcyle #> 765 2012 834032 812301 Others #> 766 2011 835878 815537 Others #> 767 2007 836720 815216 Others #> 768 2012 835650 812416 Others #> 769 2008 835650 812416 Motorcyle #> 770 2012 836635 815783 Motorcyle #> 771 1992 833966 812081 Others #> 772 2002 833966 812081 Others #> 773 2014 833995 812155 Pedal Cycle #> 774 1998 838785 816933 Others #> 775 2005 838785 816933 Others #> 776 2004 836130 815100 Others #> 777 2003 840289 806838 Others #> 778 2003 836569 815465 Motorcyle #> 779 2013 837693 816198 Others #> 780 2000 837693 816198 Others #> 781 2013 832462 816313 Others #> 782 1996 832462 816313 Others #> 783 2010 837165 815981 Others #> 784 2009 837165 815981 Others #> 785 2011 835607 815701 Others #> 786 2007 832550 816556 Others #> 787 2001 836418 815678 Others #> 788 2009 836418 815678 Others #> 789 2013 842837 813952 Others #> 790 1999 842837 813952 Motorcyle #> 791 2010 840918 811574 Motorcyle #> 792 2001 840918 811574 Others #> 793 2004 838733 810554 Others #> 794 2006 838733 810554 Others #> 795 2010 841974 814250 Others #> 796 1996 841974 814250 Others #> 797 2001 840849 816281 Others #> 798 2008 840849 816281 Others #> 799 2005 841112 815748 Others #> 800 2013 833993 815760 Motorcyle #> 801 2007 834510 812145 Motorcyle #> 802 2011 835878 815537 Others #> 803 2013 835878 815537 Others #> 804 2012 834682 814926 Others #> 805 2002 834035 812301 Others #> 806 2002 834035 812301 Motorcyle #> 807 2005 838399 814667 Others #> 808 2001 834070 816026 Others #> 809 1997 842788 813910 Others #> 810 1998 842788 813910 Others #> 811 NA 840917 815888 Others #> 812 1996 840917 815888 Others #> 813 2011 839605 809083 Others #> 814 2004 833560 811569 Others #> 815 2011 833560 811569 Others #> 816 1996 836412 815431 Others #> 817 2013 839936 816197 Others #> 818 2004 841365 815530 Others #> 819 2012 842126 814225 Others #> 820 2001 842548 813879 Others #> 821 2012 842548 813879 Others #> 822 2009 832797 816667 Others #> 823 2008 832797 816667 Others #> 824 2011 832797 816667 Others #> 825 2010 832797 816667 Others #> 826 2002 832797 816667 Others #> 827 2007 838139 817101 Others #> 828 2002 838139 817101 Others #> 829 2001 836633 818077 Others #> 830 1996 836633 818077 Others #> 831 2001 836666 815754 Others #> 832 2001 841476 812787 Others #> 833 2001 831679 814248 Others #> 834 2013 834357 811629 Others #> 835 2011 834357 811629 Others #> 836 2008 838546 811000 Others #> 837 2004 838546 811000 Motorcyle #> 838 2001 836113 812078 Others #> 839 1996 831745 813746 Others #> 840 2002 831745 813746 Others #> 841 2013 834531 812202 Others #> 842 1998 841403 815459 Others #> 843 2013 831376 816204 Motorcyle #> 844 2011 840808 816038 Motorcyle #> 845 1998 840808 816038 Others #> 846 2009 840975 815959 Motorcyle #> 847 2008 839406 817035 Others #> 848 2004 839406 817035 Others #> 849 NA 836318 815373 Pedal Cycle #> 850 2013 836318 815373 Others #> 851 NA 834251 815980 Motorcyle #> 852 2008 836875 815881 Others #> 853 2007 836875 815881 Others #> 854 2001 837778 815244 Others #> 855 2001 837778 815244 Others #> 856 NA 837105 816069 Others #> 857 NA 837105 816069 Others #> 858 2004 833994 815185 Others #> 859 2001 838960 809765 Others #> 860 2005 835873 814955 Others #> 861 2003 837014 815697 Others #> 862 2004 837903 816602 Others #> 863 2002 837903 816602 Others #> 864 2010 836231 815769 Others #> 865 2000 836231 815769 Others #> 866 2004 836108 815829 Others #> 867 1998 836108 815829 Others #> 868 2008 832691 816179 Motorcyle #> 869 2005 840060 816204 Others #> 870 1998 835783 812415 Others #> 871 1998 833968 812323 Others #> 872 2005 843237 814251 Others #> 873 1992 843237 814251 Others #> 874 2012 835405 815367 Others #> 875 2011 839396 816985 Others #> 876 2013 839396 816985 Others #> 877 1994 841587 815512 Others #> 878 2000 841587 815512 Others #> 879 2010 843734 813785 Others #> 880 2012 836906 816090 Motorcyle #> 881 2007 836906 816090 Others #> 882 NA 832491 812638 Others #> 883 1997 832491 812638 Motorcyle #> 884 2012 836463 815970 Others #> 885 2000 834026 816334 Others #> 886 2004 834026 816334 Others #> 887 2012 836584 815196 Others #> 888 2012 836584 815196 Others #> 889 2002 837250 815169 Others #> 890 2012 832775 812208 Others #> 891 2012 835011 815701 Others #> 892 2002 834006 815954 Others #> 893 2001 836318 815546 Others #> 894 2013 836318 815546 Others #> 895 2000 834814 815357 Others #> 896 2011 834814 815357 Others #> 897 1996 832564 816451 Others #> 898 2011 843676 810935 Motorcyle #> 899 2009 833816 812229 Others #> 900 NA 820522 808179 Pedal Cycle #> 901 1998 832080 812538 Others #> 902 2010 843478 809978 Others #> 903 2000 837101 815680 Others #> 904 2006 833989 812236 Others #> 905 2011 831566 813567 Others #> 906 2001 831566 813567 Others #> 907 2014 836852 815411 Pedal Cycle #> 908 2003 836852 815411 Others #> 909 2001 831671 815903 Others #> 910 2012 831671 815903 Others #> 911 2012 837745 814638 Others #> 912 2005 837745 814638 Others #> 913 2012 835531 815434 Others #> 914 2011 838638 817129 Others #> 915 2001 836783 817222 Others #> 916 2005 836783 817222 Others #> 917 2004 836783 817222 Others #> 918 2013 836783 817222 Others #> 919 2007 838562 816098 Others #> 920 2004 835881 815528 Others #> 921 2012 832648 816128 Others #> 922 2012 832648 816128 Others #> 923 1995 832648 816128 Others #> 924 2000 837698 810904 Others #> 925 1996 837698 810904 Others #> 926 1996 836606 815357 Others #> 927 2012 839933 809565 Others #> 928 2011 836645 815935 Others #> 929 2012 836645 815935 Others #> 930 2001 836645 815935 Others #> 931 2007 836645 815935 Others #> 932 2008 836645 815935 Others #> 933 2006 833837 816472 Motorcyle #> 934 2000 831353 815731 Others #> 935 2012 831353 815731 Motorcyle #> 936 2001 842800 814586 Others #> 937 2001 842800 814586 Others #> 938 2001 831814 816152 Others #> 939 2009 831814 816152 Motorcyle #> 940 2009 831814 816152 Others #> 941 2005 831814 816152 Others #> 942 1997 833501 816573 Others #> 943 2007 833501 816573 Others #> 944 2013 837208 815434 Others #> 945 2011 837208 815434 Others #> 946 2001 833147 812222 Others #> 947 2010 832337 812501 Others #> 948 2005 836607 815809 Motorcyle #> 949 2008 830405 815784 Motorcyle #> 950 2012 832390 816236 Motorcyle #> 951 2001 836298 815798 Others #> 952 2009 836298 815798 Others #> 953 2008 834065 814988 Others #> 954 2001 834065 814988 Others #> 955 2009 837172 815242 Others #> 956 2001 835950 812354 Others #> 957 2011 835950 812354 Others #> 958 2004 836663 815663 Others #> 959 2012 836663 815663 Others #> 960 NA 831270 814128 Pedal Cycle #> 961 2000 831270 814128 Others #> 962 2001 837924 815498 Others #> 963 2006 837871 816014 Others #> 964 1998 837871 816014 Others #> 965 2013 837871 816014 Others #> 966 2001 841963 814958 Others #> 967 2009 841963 814958 Others #> 968 2006 841963 814958 Others #> 969 2008 837213 815524 Others #> 970 2009 833451 816639 Others #> 971 2003 836709 815788 Others #> 972 1996 836709 815788 Others #> 973 2004 838779 816467 Others #> 974 2011 833525 816315 Others #> 975 2001 837788 816767 Others #> 976 2001 837788 816767 Others #> 977 2011 837788 816767 Others #> 978 2003 837788 816767 Others #> 979 2001 837788 816767 Others #> 980 2012 834862 812197 Others #> 981 2013 833699 816575 Others #> 982 2005 834296 812616 Others #> 983 2004 838849 817021 Others #> 984 2000 835655 815593 Others #> 985 2001 835655 815593 Others #> 986 2006 835655 815593 Motorcyle #> 987 2002 837614 816195 Others #> 988 2001 837614 816195 Others #> 989 2013 833254 811741 Others #> 990 1998 834208 812298 Others #> 991 2010 836050 815437 Others #> 992 2012 834032 812275 Others #> 993 NA 832285 812890 Pedal Cycle #> 994 2006 831633 815840 Motorcyle #> 995 2013 831633 815840 Others #> 996 1999 836651 817907 Others #> 997 2013 836651 817907 Others #> 998 2001 841312 815783 Motorcyle #> 999 2004 841312 815783 Others #> 1000 2013 837636 816236 Others #> 1001 2009 837636 816236 Others #> 1002 2003 832200 813374 Others #> 1003 2013 837654 813153 Motorcyle #> 1004 NA 836881 815874 Others #> 1005 2007 838702 810734 Others #> 1006 2000 836684 815300 Others #> 1007 NA 836032 815596 Pedal Cycle #> 1008 2003 836032 815596 Others #> 1009 2011 840777 816109 Others #> 1010 1999 840777 816109 Others #> 1011 2009 838182 816811 Others #> 1012 2005 834193 818029 Others #> 1013 2013 834193 818029 Others #> 1014 2001 835881 815482 Others #> 1015 2013 834064 815950 Others #> 1016 2012 836918 815906 Others #> 1017 2005 836918 815906 Others #> 1018 2000 836918 815906 Others #> 1019 2014 834284 812425 Pedal Cycle #> 1020 2012 841392 815476 Motorcyle #> 1021 2005 841392 815476 Others #> 1022 2012 833788 815579 Others #> 1023 2000 833788 815579 Others #> 1024 2007 837569 815736 Others #> 1025 2006 835891 815069 Others #> 1026 2013 837156 815954 Others #> 1027 2010 837520 815331 Others #> 1028 2009 837520 815331 Motorcyle #> 1029 2003 843661 810958 Others #> 1030 NA 832194 816214 Others #> 1031 1998 832776 816744 Others #> 1032 2008 835660 815618 Others #> 1033 2010 832770 816448 Others #> 1034 2008 842970 814370 Others #> 1035 2004 842970 814370 Others #> 1036 2001 842970 814370 Others #> 1037 2001 836980 815920 Others #> 1038 2008 836980 815920 Others #> 1039 2010 831584 815720 Others #> 1040 2013 831584 815720 Others #> 1041 2000 832268 812543 Others #> 1042 1998 832268 812543 Others #> 1043 2001 843441 813552 Others #> 1044 2004 843441 813552 Others #> 1045 2007 836907 814554 Others #> 1046 2010 834138 812298 Others #> 1047 1996 831802 816394 Others #> 1048 2011 836476 812687 Others #> 1049 1997 836476 812687 Motorcyle #> 1050 2013 836769 815838 Others #> 1051 2005 836769 815838 Others #> 1052 2004 837297 814319 Others #> 1053 2000 837297 814319 Others #> 1054 2010 837297 814319 Motorcyle #> 1055 2003 837297 814319 Others #> 1056 1996 833990 812270 Others #> 1057 2008 836909 814553 Others #> 1058 2012 836909 814553 Others #> 1059 2012 835975 815316 Others #> 1060 2000 835975 815316 Others #> 1061 2003 837739 813154 Others #> 1062 2013 837739 813154 Others #> 1063 2013 834500 815496 Others #> 1064 2010 834029 816136 Others #> 1065 2004 834029 816136 Others #> 1066 2012 837918 816620 Others #> 1067 2011 831779 813678 Others #> 1068 NA 831779 813678 Pedal Cycle #> 1069 2012 835985 815435 Others #> 1070 2002 835985 815435 Others #> 1071 2013 836561 815077 Others #> 1072 2003 836561 815077 Others #> 1073 2013 836253 815467 Others #> 1074 2013 836253 815467 Others #> 1075 2000 840835 816002 Others #> 1076 1998 840835 816002 Others #> 1077 2003 842434 813758 Others #> 1078 2001 840787 816555 Others #> 1079 2001 834119 812141 Others #> 1080 2001 839445 817142 Others #> 1081 2013 839445 817142 Others #> 1082 2005 839445 817142 Others #> 1083 2005 836527 815527 Others #> 1084 1998 836527 815527 Others #> 1085 2006 830617 815852 Others #> 1086 2012 841585 815324 Others #> 1087 1998 841359 815535 Others #> 1088 2007 837053 816004 Others #> 1089 2000 837053 816004 Others #> 1090 NA 837053 816004 Others #> 1091 2009 840520 816150 Others #> 1092 2003 840520 816150 Others #> 1093 2000 830898 815925 Others #> 1094 2003 841629 815322 Others #> 1095 2012 833558 816447 Others #> 1096 NA 840145 816201 Others #> 1097 1994 840145 816201 Others #> 1098 2011 832906 816684 Motorcyle #> 1099 2001 832906 816684 Others #> 1100 2004 840051 816142 Others #> 1101 2011 840497 816208 Motorcyle #> 1102 2012 838664 816992 Others #> 1103 2005 840811 816036 Others #> 1104 2010 834287 815930 Others #> 1105 2002 834287 815930 Others #> 1106 2003 837903 815528 Others #> 1107 2013 839992 816544 Others #> 1108 1997 0 0 Others #> 1109 NA 839992 816542 Others #> 1110 2008 831574 815695 Others #> 1111 2012 831574 815695 Others #> 1112 2012 831574 815695 Others #> 1113 2011 831574 815695 Others #> 1114 2001 831351 815929 Others #> 1115 2013 832828 816447 Others #> 1116 2002 831681 812993 Others #> 1117 2010 831681 812993 Others #> 1118 2013 832858 816679 Others #> 1119 2013 832858 816679 Others #> 1120 1996 833925 816310 Others #> 1121 2003 0 0 Others #> 1122 1999 838229 816808 Others #> 1123 2001 0 0 Others #> 1124 2014 838180 816812 Others #> 1125 2011 839867 816218 Others #> 1126 1998 839867 816218 Others #> 1127 2008 843018 815004 Motorcyle #> 1128 2013 843018 815004 Others #> 1129 2012 834994 815705 Motorcyle #> 1130 2001 834994 815705 Others #> 1131 2012 837670 814457 Others #> 1132 2011 837670 814457 Others #> 1133 2004 840948 815841 Others #> 1134 2011 834272 815879 Others #> 1135 2001 839133 816948 Others #> 1136 2003 839133 816948 Others #> 1137 2007 840872 815808 Others #> 1138 2010 0 0 Others #> 1139 2010 839861 816222 Others #> 1140 2013 839861 816222 Others #> 1141 2008 843369 811491 Motorcyle #> 1142 2001 835262 815431 Others #> 1143 2004 840637 816625 Motorcyle #> 1144 2002 840637 816625 Others #> 1145 2012 835727 815407 Others #> 1146 2001 833866 812149 Others #> 1147 2012 836863 815672 Others #> 1148 2001 832856 816640 Others #> 1149 2008 840356 816395 Others #> 1150 NA 836153 815374 Pedal Cycle #> 1151 2000 843694 813830 Others #> 1152 2004 834086 812239 Others #> 1153 2013 834086 812239 Others #> 1154 2005 835908 815078 Others #> 1155 2002 834426 815966 Others #> 1156 2004 834426 815966 Motorcyle #> 1157 2001 842569 813850 Others #> 1158 2001 836357 815548 Others #> 1159 2004 834941 814419 Others #> 1160 2001 834941 814419 Others #> 1161 NA 838176 816810 Others #> 1162 2008 837623 813160 Motorcyle #> 1163 2010 837623 813160 Others #> 1164 2011 837623 813160 Others #> 1165 2001 832380 812774 Others #> 1166 1998 832380 812774 Others #> 1167 1998 838073 816696 Others #> 1168 2001 836285 815355 Others #> 1169 2008 833756 816282 Others #> 1170 2013 834630 812196 Others #> 1171 2003 834630 812196 Others #> 1172 1998 839886 816209 Others #> 1173 2001 842252 813903 Others #> 1174 2000 842252 813903 Others #> 1175 2005 834951 815711 Motorcyle #> 1176 2001 834951 815711 Others #> 1177 2005 834951 815711 Others #> 1178 1998 833932 815629 Others #> 1179 2001 831712 816038 Others #> 1180 2000 831712 816038 Others #> 1181 2001 836387 812560 Others #> 1182 2001 836387 812560 Others #> 1183 2002 839992 816371 Others #> 1184 1998 836006 815737 Others #> 1185 2001 831349 815921 Others #> 1186 1999 836568 812905 Others #> 1187 2002 836568 812905 Others #> 1188 2007 836568 812905 Others #> 1189 2012 836568 812905 Others #> 1190 2011 0 0 Others #> 1191 2007 837783 815572 Others #> 1192 2000 835313 815642 Others #> 1193 2010 835313 815642 Others #> 1194 2003 836632 815786 Others #> 1195 2013 836632 815786 Others #> 1196 2006 840848 816292 Others #> 1197 2012 839971 809014 Others #> 1198 2002 843636 814194 Others #> 1199 2003 843636 814194 Others #> 1200 2005 840848 816292 Others #> 1201 2001 840848 816292 Others #> 1202 2007 840848 816292 Motorcyle #> 1203 1989 837761 815892 Others #> 1204 2009 837761 815892 Others #> 1205 2003 837377 814950 Others #> 1206 2001 839495 816945 Others #> 1207 1999 834054 812089 Others #> 1208 2010 833972 815377 Others #> 1209 2009 833972 815377 Others #> 1210 2000 834041 812157 Others #> 1211 2005 831473 816067 Motorcyle #> 1212 2000 834737 815777 Motorcyle #> 1213 NA 834737 815777 Others #> 1214 1998 835858 815419 Others #> 1215 2009 841233 810428 Motorcyle #> 1216 2010 834383 816240 Motorcyle #> 1217 2001 834383 816240 Others #> 1218 NA 835823 815529 Others #> 1219 2006 839173 817106 Others #> 1220 2000 839173 817106 Others #> 1221 2001 834170 816266 Others #> 1222 2011 834170 816266 Others #> 1223 2011 839125 816949 Others #> 1224 2001 839125 816949 Others #> 1225 2000 838088 817081 Others #> 1226 2002 838088 817081 Others #> 1227 2010 843488 809960 Motorcyle #> 1228 2014 843380 809813 Motorcyle #> 1229 2010 834321 812287 Others #> 1230 2001 0 0 Others #> 1231 2005 0 0 Others #> 1232 2013 835526 815435 Others #> 1233 2006 837628 815526 Others #> 1234 2012 837628 815526 Others #> 1235 1999 840996 816020 Others #> 1236 NA 842652 810731 Pedal Cycle #> 1237 2004 833473 812166 Others #> 1238 NA 833473 812166 Others #> 1239 2000 0 0 Others #> 1240 2013 0 0 Others #> 1241 2011 838667 816912 Others #> 1242 1998 833684 816514 Others #> 1243 2001 833627 815530 Others #> 1244 1999 836529 815548 Others #> 1245 2006 835271 815616 Others #> 1246 2010 835271 815616 Others #> 1247 1997 833443 816337 Others #> 1248 1998 839408 816974 Others #> 1249 2001 836072 815323 Others #> 1250 2001 836072 815323 Others #> 1251 2012 834854 815660 Others #> 1252 NA 834854 815660 Others #> 1253 2001 841035 815873 Others #> 1254 2002 841035 815873 Others #> 1255 2000 839824 816260 Others #> 1256 2002 839824 816260 Others #> 1257 2010 838914 816976 Others #> 1258 1996 838772 816930 Others #> 1259 NA 820258 807060 Pedal Cycle #> 1260 1998 831493 814707 Others #> 1261 2008 841043 815449 Motorcyle #> 1262 2008 839656 809031 Others #> 1263 2005 834123 817955 Others #> 1264 2001 834123 817955 Others #> 1265 2006 834123 817955 Others #> 1266 2002 837373 814210 Motorcyle #> 1267 2004 837373 814210 Others #> 1268 2011 838086 815328 Others #> 1269 2013 838086 815328 Others #> 1270 2003 836590 815895 Motorcyle #> 1271 2006 836590 815895 Others #> 1272 2011 836789 815839 Others #> 1273 1998 836789 815839 Others #> 1274 2002 834393 815997 Others #> 1275 2002 834393 815997 Others #> 1276 2007 833949 812328 Others #> 1277 2001 834966 815718 Others #> 1278 2001 834966 815718 Others #> 1279 2012 836033 815552 Others #> 1280 1997 836661 814112 Motorcyle #> 1281 2001 839254 817012 Others #> 1282 2003 839254 817012 Others #> 1283 2000 838399 816488 Others #> 1284 2003 838399 816488 Others #> 1285 2006 842970 815018 Others #> 1286 NA 842970 815018 Pedal Cycle #> 1287 2004 832372 816292 Others #> 1288 2013 836365 815132 Others #> 1289 1999 836365 815132 Others #> 1290 NA 841107 812321 Pedal Cycle #> 1291 2001 841406 815658 Others #> 1292 2001 841406 815658 Others #> 1293 2013 831353 815922 Others #> 1294 2005 832684 816070 Others #> 1295 2012 832684 816070 Others #> 1296 2007 835906 815109 Others #> 1297 2010 833507 816339 Others #> 1298 2013 835828 814982 Others #> 1299 2013 832320 813318 Others #> 1300 1996 832320 813318 Others #> 1301 2013 842833 813942 Others #> 1302 2001 842833 813942 Others #> 1303 2001 0 0 Others #> 1304 2001 0 0 Others #> 1305 2004 835958 814961 Others #> 1306 2001 834107 816132 Others #> 1307 2012 834002 816363 Others #> 1308 2009 834002 816363 Others #> 1309 2001 834002 816363 Others #> 1310 2005 834172 816075 Others #> 1311 2011 835104 815265 Others #> 1312 2004 835104 815265 Others #> 1313 2013 838576 817173 Others #> 1314 2001 838576 817173 Others #> 1315 2007 832093 813531 Motorcyle #> 1316 NA 0 0 Pedal Cycle #> 1317 NA 0 0 Others #> 1318 NA 838649 810466 Pedal Cycle #> 1319 2002 834715 812196 Others #> 1320 2005 834715 812196 Others #> 1321 2004 832746 816136 Others #> 1322 1996 838880 809945 Others #> 1323 2006 838880 809945 Others #> 1324 2011 0 0 Others #> 1325 2002 0 0 Motorcyle #> 1326 2012 0 0 Others #> 1327 2000 834921 815768 Others #> 1328 2001 834921 815768 Others #> 1329 2001 0 0 Others #> 1330 <NA> 0 0 Others #> 1331 2001 0 0 Others #> 1332 2006 0 0 Others #> 1333 <NA> 0 0 Others #> 1334 2011 837162 815948 Others #> 1335 2003 843657 810943 Motorcyle #> 1336 2002 0 0 Others #> 1337 2006 0 0 Others #> 1338 2009 840918 815888 Others #> 1339 1994 843550 814221 Others #> 1340 2008 843550 814221 Others #> 1341 2002 836632 818070 Others #> 1342 2008 836632 818070 Others #> 1343 1998 834474 815471 Others #> 1344 2001 835859 815305 Others #> 1345 1998 834347 816026 Others #> 1346 2010 831475 813618 Others #> 1347 2001 839699 816523 Others #> 1348 2012 832975 816638 Motorcyle #> 1349 NA 832975 816638 Others #> 1350 2010 0 0 Others #> 1351 2010 0 0 Others #> 1352 2003 836389 812529 Motorcyle #> 1353 2014 837579 815757 Others #> 1354 2014 837579 815757 Others #> 1355 2009 841054 815844 Others #> 1356 2006 837871 816271 Others #> 1357 <NA> 837871 816271 Others #> 1358 <NA> 837871 816271 Others #> 1359 2001 841108 816243 Others #> 1360 2002 832858 816630 Others #> 1361 2002 838288 811018 Others #> 1362 2010 838288 811018 Others #> 1363 2010 835988 815418 Others #> 1364 2004 835988 815418 Others #> 1365 2011 836968 815751 Others #> 1366 2003 831746 816080 Motorcyle #> 1367 2010 835742 812396 Others #> 1368 2012 835742 812396 Others #> 1369 2004 835742 812396 Others #> 1370 2001 835742 812396 Others #> 1371 NA 838565 811050 Others #> 1372 2006 838565 811050 Others #> 1373 NA 0 0 Pedal Cycle #> 1374 1998 836120 815451 Others #> 1375 2012 833983 816110 Others #> 1376 2003 834353 811657 Others #> 1377 2002 840796 816569 Others #> 1378 1998 832373 812782 Others #> 1379 2002 832046 813675 Others #> 1380 2001 832046 813675 Others #> 1381 2013 836215 812142 Others #> 1382 1999 837093 813886 Others #> 1383 2002 837093 813886 Others #> 1384 2011 837033 815416 Others #> 1385 2001 831718 814209 Others #> 1386 2001 831718 814209 Others #> 1387 1996 833648 816490 Others #> 1388 NA 840087 816316 Others #> 1389 2008 833728 816157 Others #> 1390 1998 831647 815873 Others #> 1391 2005 833853 816168 Others #> 1392 2000 837779 815253 Others #> 1393 2005 837779 815253 Others #> 1394 2007 835651 815475 Others #> 1395 2000 835651 815475 Motorcyle #> 1396 2000 836356 815476 Others #> 1397 NA 836338 815702 Motorcyle #> 1398 2014 836338 815702 Motorcyle #> 1399 1998 837220 815639 Others #> 1400 2000 832080 812826 Others #> 1401 2005 832080 812826 Others #> 1402 2013 838179 816811 Others #> 1403 2006 835334 812288 Others #> 1404 2013 835334 812288 Others #> 1405 2004 0 0 Others #> 1406 2006 836822 815855 Others #> 1407 2008 836822 815855 Others #> 1408 2001 833768 815153 Others #> 1409 2012 833768 815153 Others #> 1410 2006 841787 812624 Others #> 1411 NA 841787 812624 Pedal Cycle #> 1412 2008 836558 814921 Others #> 1413 2012 836558 814921 Others #> 1414 2007 833351 812347 Others #> 1415 2010 842794 813916 Others #> 1416 2002 833444 813447 Others #> 1417 2009 836853 815880 Others #> 1418 1999 836853 815880 Others #> 1419 2002 836853 815880 Others #> 1420 2011 836612 814771 Others #> 1421 2013 836612 814771 Others #> 1422 2013 834441 815859 Others #> 1423 2002 836850 816083 Others #> 1424 2002 836850 816083 Others #> 1425 2004 836535 811825 Others #> 1426 2013 836535 811825 Others #> 1427 2008 836535 811825 Others #> 1428 2006 836535 811825 Others #> 1429 2011 836535 811825 Others #> 1430 2006 836987 815928 Others #> 1431 2000 836987 815928 Others #> 1432 2010 842821 813939 Others #> 1433 2004 835078 815326 Others #> 1434 NA 832955 816215 Others #> 1435 2014 835956 815066 Others #> 1436 2012 832862 815976 Others #> 1437 2000 832862 815976 Others #> 1438 2001 836006 815753 Others #> 1439 2005 836006 815753 Others #> 1440 2002 840547 816217 Others #> 1441 2002 831834 816391 Others #> 1442 1997 836808 815848 Others #> 1443 1996 837957 816578 Others #> 1444 2003 840090 816843 Others #> 1445 2001 840090 816843 Others #> 1446 2006 840090 816843 Others #> 1447 2012 842088 814705 Others #> 1448 2010 841888 815438 Others #> 1449 2000 836374 815488 Others #> 1450 2008 836586 815955 Others #> 1451 2008 836586 815955 Others #> 1452 2001 832312 812554 Others #> 1453 2013 0 0 Motorcyle #> 1454 2002 838475 813140 Others #> 1455 2006 832955 816215 Others #> 1456 2012 832955 816215 Others #> 1457 2013 832955 816215 Others #> 1458 2005 835762 815118 Others #> 1459 NA 834034 812156 Others #> 1460 2006 837166 815511 Others #> 1461 1998 833894 816476 Others #> 1462 2012 833894 816476 Motorcyle #> 1463 2005 0 0 Motorcyle #> 1464 2009 0 0 Motorcyle #> 1465 2011 0 0 Others #> 1466 2013 0 0 Others #> 1467 2012 839171 817252 Others #> 1468 2001 839171 817252 Others #> 1469 2009 839171 817252 Others #> 1470 2001 839171 817252 Others #> 1471 2011 835932 815059 Others #> 1472 2001 0 0 Others #> 1473 1996 0 0 Others #> 1474 2006 836484 815749 Others #> 1475 2013 836484 815749 Others #> 1476 2011 838308 816364 Others #> 1477 2001 838308 816364 Others #> 1478 2013 831022 815994 Motorcyle #> 1479 2011 837345 811814 Others #> 1480 2002 837345 811814 Others #> 1481 2001 834384 815952 Others #> 1482 2009 835614 815429 Others #> 1483 2013 836643 815877 Motorcyle #> 1484 1998 841577 815591 Others #> 1485 2013 833918 813833 Others #> 1486 NA 833918 813833 Others #> 1487 2011 833503 816341 Motorcyle #> 1488 NA 835843 815291 Others #> 1489 2011 836606 815408 Others #> 1490 2006 840422 809818 Motorcyle #> 1491 2003 840422 809818 Others #> 1492 2013 835689 815160 Others #> 1493 1998 0 0 Others #> 1494 2000 0 0 Others #> 1495 1991 831353 815990 Others #> 1496 2005 840037 809019 Others #> 1497 2013 836030 814903 Others #> 1498 1998 834305 815904 Others #> 1499 2013 842111 814505 Others #> 1500 2009 834114 816551 Others #> 1501 2002 834114 816551 Motorcyle #> 1502 2009 836842 815346 Others #> 1503 2001 836842 815346 Others #> 1504 NA 838524 816911 Others #> 1505 2011 837073 816025 Others #> 1506 2013 837798 816053 Others #> 1507 2003 842716 814023 Others #> 1508 NA 835523 815634 Others #> 1509 NA 835523 815634 Others #> 1510 2012 835523 815634 Others #> 1511 2005 836526 815087 Others #> 1512 2006 836526 815087 Others #> 1513 1997 835206 812201 Others #> 1514 2010 835206 812201 Others #> 1515 2004 840064 809143 Others #> 1516 2001 831975 816353 Others #> 1517 2001 835965 815758 Others #> 1518 NA 838536 816896 Pedal Cycle #> 1519 2002 838536 816896 Others #> 1520 2001 834490 815456 Others #> 1521 1997 841475 815456 Motorcyle #> 1522 2007 834633 815617 Others #> 1523 2008 834633 815617 Others #> 1524 2001 840842 816482 Others #> 1525 2004 835483 815422 Others #> 1526 NA 835483 815422 Others #> 1527 2012 837106 814511 Motorcyle #> 1528 2009 837106 814511 Motorcyle #> 1529 2011 831765 816099 Motorcyle #> 1530 2013 837230 814442 Others #> 1531 2008 834113 816171 Others #> 1532 2013 0 0 Others #> 1533 2000 0 0 Others #> 1534 2006 836830 815467 Others #> 1535 2013 837152 815539 Others #> 1536 2005 837152 815539 Others #> 1537 2006 0 0 Motorcyle #> 1538 2007 0 0 Others #> 1539 2003 0 0 Others #> 1540 2001 837189 815662 Motorcyle #> 1541 2002 838409 816859 Others #> 1542 NA 836981 815951 Others #> 1543 2011 836981 815951 Motorcyle #> 1544 2003 835755 812400 Others #> 1545 2002 831701 812679 Others #> 1546 2006 831701 812679 Others #> 1547 1998 834109 812064 Others #> 1548 2002 835988 816077 Others #> 1549 2011 835988 816077 Others #> 1550 2007 836101 815049 Others #> 1551 1999 836556 815560 Others #> 1552 NA 832670 816796 Others #> 1553 2001 832670 816796 Others #> 1554 2001 841162 815868 Others #> 1555 2004 832857 816628 Others #> 1556 2006 832361 812743 Motorcyle #> 1557 2012 836215 814427 Motorcyle #> 1558 1999 840793 816562 Others #> 1559 2013 840793 816562 Others #> 1560 2010 834978 815729 Others #> 1561 2002 834978 815729 Others #> 1562 2012 840478 816654 Motorcyle #> 1563 2005 833794 816244 Others #> 1564 2002 833794 816244 Others #> 1565 2012 834599 815444 Others #> 1566 2004 834599 815444 Others #> 1567 NA 0 0 Pedal Cycle #> 1568 2001 0 0 Others #> 1569 2002 832545 816368 Others #> 1570 2007 834011 811584 Others #> 1571 2001 834011 811584 Others #> 1572 2010 831755 813768 Motorcyle #> 1573 2009 836186 815645 Others #> 1574 2001 836186 815645 Others #> 1575 2009 834354 815972 Others #> 1576 1998 834354 815972 Others #> 1577 2001 836542 815535 Others #> 1578 2001 836542 815535 Others #> 1579 2001 832599 812447 Others #> 1580 2005 839367 816931 Others #> 1581 2012 834163 811473 Others #> 1582 2003 834642 815624 Motorcyle #> 1583 2013 0 0 Others #> 1584 2004 0 0 Others #> 1585 2001 837217 814457 Others #> 1586 2007 835162 812191 Others #> 1587 2000 840752 816592 Others #> 1588 2013 836557 814899 Motorcyle #> 1589 2002 834554 815896 Others #> 1590 2004 837088 814696 Motorcyle #> 1591 2007 0 0 Others #> 1592 2000 0 0 Others #> 1593 2007 838602 816243 Others #> 1594 2005 838169 816391 Others #> 1595 2003 838169 816391 Others #> 1596 2014 843488 809971 Motorcyle #> 1597 2010 0 0 Motorcyle #> 1598 2008 843572 813990 Others #> 1599 NA 843572 813990 Pedal Cycle #> 1600 2013 843810 813834 Others #> 1601 2001 840730 816189 Others #> 1602 2005 840730 816189 Others #> 1603 2013 832555 816570 Others #> 1604 2001 832555 816570 Others #> 1605 2012 836528 815600 Others #> 1606 2013 831059 813858 Motorcyle #> 1607 2001 834481 816385 Others #> 1608 1998 834481 816385 Others #> 1609 2004 836023 815252 Others #> 1610 2002 839817 816911 Others #> 1611 2009 839817 816911 Others #> 1612 2006 843572 813990 Others #> 1613 1996 843572 813990 Others #> 1614 2010 839991 816541 Motorcyle #> 1615 2011 837220 815572 Others #> 1616 2002 837220 815572 Others #> 1617 2005 835053 815655 Others #> 1618 2008 835053 815655 Others #> 1619 2009 838182 816777 Others #> 1620 2001 832592 812470 Others #> 1621 2012 832592 812470 Motorcyle #> 1622 2003 839249 816990 Others #> 1623 2001 839249 816990 Others #> 1624 1994 839855 816218 Others #> 1625 2005 835328 811509 Others #> 1626 2000 835328 811509 Others #> 1627 2013 834485 815455 Others #> 1628 NA 0 0 Pedal Cycle #> 1629 NA 0 0 Others #> 1630 2001 835462 814672 Others #> 1631 2002 841541 815348 Others #> 1632 2004 841541 815348 Others #> 1633 2005 836689 815819 Others #> 1634 2008 836689 815819 Others #> 1635 2009 839773 816390 Others #> 1636 2010 836149 812126 Others #> 1637 NA 837913 816167 Pedal Cycle #> 1638 NA 837913 816167 Pedal Cycle #> 1639 NA 836761 815629 Others #> 1640 2013 835232 815640 Others #> 1641 2011 835232 815640 Others #> 1642 NA 843466 813586 Pedal Cycle #> 1643 2001 831535 814486 Others #> 1644 2011 836627 815812 Others #> 1645 2009 836627 815812 Others #> 1646 2010 836279 815353 Others #> 1647 NA 834387 816088 Others #> 1648 2013 836496 815537 Others #> 1649 2001 837777 815246 Others #> 1650 2007 837777 815246 Others #> 1651 2010 834301 815903 Others #> 1652 1995 832774 816443 Others #> 1653 1993 840043 816316 Others #> 1654 2010 840043 816316 Others #> 1655 2013 836818 815991 Others #> 1656 2009 836818 815991 Others #> 1657 2014 836818 815991 Others #> 1658 2008 837061 814574 Others #> 1659 2007 842433 813847 Others #> 1660 2011 842433 813847 Others #> 1661 2000 842433 813847 Others #> 1662 2013 842433 813847 Others #> 1663 2002 842433 813847 Others #> 1664 2013 836250 815577 Others #> 1665 2006 0 0 Others #> 1666 2005 0 0 Others #> 1667 2001 836697 815392 Others #> 1668 2001 836697 815392 Others #> 1669 2012 840843 816465 Others #> 1670 2009 840843 816465 Others #> 1671 2000 0 0 Others #> 1672 2008 836836 815302 Motorcyle #> 1673 NA 836836 815302 Others #> 1674 2007 834122 812130 Others #> 1675 1999 840918 816059 Others #> 1676 2010 840918 816059 Others #> 1677 2013 834481 815750 Others #> 1678 2001 834070 815941 Others #> 1679 2013 835403 815458 Motorcyle #> 1680 2011 836227 815767 Others #> 1681 1997 836227 815767 Motorcyle #> 1682 2004 0 0 Others #> 1683 2005 842941 814727 Others #> 1684 2002 838772 817153 Others #> 1685 NA 838665 816991 Others #> 1686 2012 842175 813996 Others #> 1687 2005 837242 814444 Others #> 1688 2012 834250 811659 Others #> 1689 2002 834250 811659 Others #> 1690 2008 837242 814444 Others #> 1691 2001 836306 815762 Others #> 1692 2012 833720 816441 Others #> 1693 NA 834063 815696 Pedal Cycle #> 1694 2002 835150 815335 Others #> 1695 2001 835150 815335 Others #> 1696 2006 833218 816286 Others #> 1697 1998 840803 815821 Motorcyle #> 1698 2009 835377 812193 Others #> 1699 2010 834284 815932 Others #> 1700 2013 834284 815932 Others #> 1701 2001 835760 815281 Others #> 1702 2012 0 0 Motorcyle #> 1703 1998 834049 812085 Others #> 1704 1996 0 0 Others #> 1705 2007 834754 815325 Others #> 1706 2001 834754 815325 Others #> 1707 2009 832154 816141 Others #> 1708 2004 832154 816141 Others #> 1709 NA 843629 813970 Others #> 1710 NA 843629 813970 Others #> 1711 2005 836611 815810 Others #> 1712 1993 836611 815810 Motorcyle #> 1713 2013 836611 815810 Others #> 1714 2012 836611 815810 Others #> 1715 1998 840923 816069 Others #> 1716 NA 839689 816843 Pedal Cycle #> 1717 NA 839689 816843 Pedal Cycle #> 1718 NA 842547 813878 Pedal Cycle #> 1719 2001 842547 813878 Others #> 1720 2005 836663 812846 Motorcyle #> 1721 2013 836663 812846 Others #> 1722 2005 833987 815859 Others #> 1723 2012 836481 815733 Others #> 1724 2011 834137 815256 Others #> 1725 2010 834137 815256 Others #> 1726 2007 833550 815577 Others #> 1727 2000 833550 815577 Others #> 1728 2010 834502 815933 Others #> 1729 2011 834502 815933 Others #> 1730 2008 834502 815933 Others #> 1731 2001 834502 815933 Others #> 1732 2011 833534 811186 Motorcyle #> 1733 2004 834659 815873 Others #> 1734 2001 834659 815873 Others #> 1735 2001 836466 815880 Others #> 1736 2001 836466 815880 Others #> 1737 2000 843722 813783 Others #> 1738 2006 837083 814723 Motorcyle #> 1739 2007 837026 815525 Motorcyle #> 1740 NA 839890 816215 Others #> 1741 2010 836797 815348 Others #> 1742 2010 836797 815348 Motorcyle #> 1743 2013 835682 815582 Others #> 1744 2001 835682 815582 Others #> 1745 2005 0 0 Others #> 1746 2001 0 0 Others #> 1747 1979 843019 814306 Others #> 1748 2005 830713 815876 Others #> 1749 NA 830713 815876 Others #> 1750 2004 837750 815913 Others #> 1751 2001 832467 815704 Others #> 1752 1999 836824 815348 Others #> 1753 2001 831221 816124 Others #> 1754 2008 831221 816124 Motorcyle #> 1755 2006 833136 816119 Others #> 1756 2004 833136 816119 Others #> 1757 2004 838571 816892 Others #> 1758 1998 838571 816892 Others #> 1759 2006 836197 815769 Others #> 1760 2003 836197 815769 Others #> 1761 2012 836197 815769 Others #> 1762 2011 839983 808938 Others #> 1763 2001 836845 815718 Others #> 1764 2001 836845 815718 Others #> 1765 2001 843348 809794 Motorcyle #> 1766 2006 842810 813996 Others #> 1767 1999 842214 814127 Others #> 1768 2002 832322 816582 Others #> 1769 2001 832322 816582 Others #> 1770 2006 836159 812123 Others #> 1771 2003 837518 816023 Others #> 1772 2000 837518 816023 Others #> 1773 2010 837518 816023 Others #> 1774 2007 834695 816192 Motorcyle #> 1775 2013 837592 810956 Others #> 1776 1997 837592 810956 Motorcyle #> 1777 2012 831767 816102 Others #> 1778 2000 831767 816102 Others #> 1779 1998 837003 815693 Others #> 1780 2012 837760 816331 Others #> 1781 1999 837760 816331 Others #> 1782 2011 838183 816817 Others #> 1783 2007 833659 816590 Others #> 1784 2001 833659 816590 Others #> 1785 2010 832685 816256 Others #> 1786 NA 831519 815407 Others #> 1787 2007 832987 816649 Others #> 1788 2001 832987 816649 Others #> 1789 2012 832563 812664 Motorcyle #> 1790 2001 832563 812664 Others #> 1791 2004 837170 815394 Others #> 1792 2013 837170 815394 Others #> 1793 2012 839983 808942 Others #> 1794 2011 836254 812058 Others #> 1795 1996 836097 815626 Others #> 1796 2003 836097 815626 Motorcyle #> 1797 2001 842789 813911 Others #> 1798 2004 842789 813911 Others #> 1799 1998 833635 816232 Others #> 1800 2006 0 0 Others #> 1801 1995 834145 812292 Others #> 1802 2001 0 0 Others #> 1803 NA 0 0 Motorcyle #> 1804 2011 833904 815482 Others #> 1805 2001 836722 815599 Others #> 1806 2011 836722 815599 Others #> 1807 2005 0 0 Others #> 1808 2009 0 0 Others #> 1809 2013 834515 815676 Motorcyle #> 1810 2013 834515 815676 Others #> 1811 2003 0 0 Others #> 1812 2011 840399 809780 Motorcyle #> 1813 2002 843218 814089 Others #> 1814 NA 841584 815304 Pedal Cycle #> 1815 2013 840004 816337 Others #> 1816 2009 832641 816310 Others #> 1817 1998 832641 816310 Others #> 1818 2001 835150 815336 Others #> 1819 2012 835150 815336 Others #> 1820 2008 836533 815783 Others #> 1821 2000 836533 815783 Others #> 1822 NA 831332 815984 Others #> 1823 2011 837082 814742 Others #> 1824 2012 837082 814742 Motorcyle #> 1825 2000 836321 815366 Others #> 1826 1998 0 0 Others #> 1827 2011 833933 815311 Others #> 1828 2010 836664 815726 Others #> 1829 2011 836664 815726 Others #> 1830 2001 836664 815726 Others #> 1831 NA 835746 815280 Others #> 1832 NA 835746 815280 Others #> 1833 NA 835860 815766 Others #> 1834 1999 835651 815405 Others #> 1835 2011 835651 815405 Others #> 1836 2014 836995 815513 Others #> 1837 2000 836085 815613 Others #> 1838 2001 836085 815613 Others #> 1839 2001 839601 816865 Others #> 1840 2001 834436 815963 Others #> 1841 2002 834436 815963 Others #> 1842 2007 842352 814141 Others #> 1843 1999 837800 813483 Others #> 1844 2008 837800 813483 Others #> 1845 2011 837800 813483 Others #> 1846 1997 833982 817811 Others #> 1847 2014 833982 817811 Others #> 1848 2013 833893 815898 Others #> 1849 2001 833893 815898 Others #> 1850 2008 833893 815898 Others #> 1851 2008 836003 815881 Motorcyle #> 1852 2013 836003 815881 Others #> 1853 NA 841554 813138 Pedal Cycle #> 1854 2010 841554 813138 Others #> 1855 1998 834962 815619 Motorcyle #> 1856 2004 834962 815619 Others #> 1857 2014 839817 809251 Pedal Cycle #> 1858 2014 839817 809251 Others #> 1859 NA 836656 817957 Others #> 1860 2003 836656 817957 Others #> 1861 2007 836994 814364 Others #> 1862 1997 839243 817241 Others #> 1863 2007 839243 817241 Others #> 1864 2004 833826 816329 Others #> 1865 2012 833826 816329 Others #> 1866 2001 0 0 Others #> 1867 2013 842610 811485 Motorcyle #> 1868 2008 832269 812747 Others #> 1869 2006 832269 812747 Others #> 1870 2013 837962 816652 Others #> 1871 2003 833725 816038 Others #> 1872 2002 833725 816038 Others #> 1873 2010 839900 816221 Others #> 1874 2006 836841 815857 Others #> 1875 2002 836841 815857 Others #> 1876 2000 836841 815857 Others #> 1877 2013 834213 815835 Others #> 1878 1999 842757 809792 Others #> 1879 NA 842757 809792 Pedal Cycle #> 1880 2003 840796 815590 Motorcyle #> 1881 NA 840796 815590 Pedal Cycle #> 1882 2000 0 0 Others #> 1883 2011 837909 816164 Others #> 1884 1994 836878 811900 Motorcyle #> 1885 2011 836878 811900 Others #> 1886 1994 841300 813391 Others #> 1887 2013 841300 813391 Motorcyle #> 1888 <NA> 836471 815743 Others #> 1889 <NA> 836471 815743 Others #> 1890 2006 837302 816116 Motorcyle #> 1891 2005 837302 816116 Others #> 1892 1999 837759 815879 Others #> 1893 2012 833677 816517 Others #> 1894 2013 835612 815586 Others #> 1895 2000 835612 815586 Others #> 1896 2010 836985 815919 Others #> 1897 2008 836985 815919 Motorcyle #> 1898 2011 842280 813905 Motorcyle #> 1899 1994 836665 815751 Others #> 1900 2013 836665 815751 Others #> 1901 2000 837805 815916 Others #> 1902 2010 837805 815916 Others #> 1903 2012 832834 816721 Others #> 1904 2008 832701 815404 Others #> 1905 2000 832701 815404 Others #> 1906 2012 833994 812225 Others #> 1907 2007 832312 816602 Others #> 1908 2005 832312 816602 Others #> 1909 2012 820970 820466 Others #> 1910 2001 841136 815771 Others #> 1911 2001 841136 815771 Others #> 1912 2003 831396 816099 Others #> 1913 2003 831396 816099 Others #> 1914 2002 834146 816071 Others #> 1915 2002 834146 816071 Others #> 1916 2002 836641 818023 Others #> 1917 2007 836641 818023 Others #> 1918 2001 0 0 Others #> 1919 2012 0 0 Others #> 1920 2010 839383 817004 Others #> 1921 2014 839383 817004 Pedal Cycle #> 1922 2003 834555 815419 Others #> 1923 NA 834555 815419 Others #> 1924 2013 834555 815419 Others #> 1925 2010 841056 816038 Others #> 1926 2013 841056 816038 Motorcyle #> 1927 2008 838216 814598 Others #> 1928 2011 842364 814469 Others #> 1929 2005 842364 814469 Others #> 1930 2011 833793 811647 Motorcyle #> 1931 2001 836720 815477 Others #> 1932 2000 836720 815477 Others #> 1933 2001 839394 817140 Others #> 1934 2005 839394 817140 Others #> 1935 2010 839394 817140 Others #> 1936 2011 839394 817140 Others #> 1937 2004 832588 816213 Others #> 1938 2003 833608 816345 Others #> 1939 2001 832067 816418 Others #> 1940 2004 838487 817008 Others #> 1941 1999 838487 817008 Others #> 1942 2007 834125 815873 Others #> 1943 1999 840143 816209 Others #> 1944 2000 0 0 Others #> 1945 1996 0 0 Others #> 1946 2001 834483 815454 Others #> 1947 2002 838054 816670 Others #> 1948 2002 838054 816670 Others #> 1949 2000 836068 815378 Others #> 1950 2002 833296 812319 Others #> 1951 1997 836316 815919 Others #> 1952 2002 836316 815919 Others #> 1953 2005 833791 815475 Others #> 1954 2008 836998 815572 Others #> 1955 1997 837106 815378 Others #> 1956 2001 837106 815378 Others #> 1957 2004 834177 815868 Others #> 1958 2009 834177 815868 Others #> 1959 NA 833647 816114 Others #> 1960 2010 833647 816114 Others #> 1961 2001 836438 815964 Others #> 1962 2005 836217 815376 Others #> 1963 1999 840863 816025 Others #> 1964 1999 840863 816025 Others #> 1965 2006 834349 821560 Others #> 1966 2011 834349 821560 Others #> 1967 2013 837016 815945 Others #> 1968 2002 837016 815945 Others #> 1969 2010 836932 815642 Others #> 1970 2011 838341 821674 Others #> 1971 1998 838341 821674 Others #> 1972 2008 833935 816135 Others #> 1973 1994 843062 814146 Others #> 1974 2011 843062 814146 Others #> 1975 2005 841427 815435 Others #> 1976 NA 841427 815435 Others #> 1977 2000 832491 821826 Others #> 1978 2013 832319 816329 Others #> 1979 2008 840863 816025 Motorcyle #> 1980 2000 841554 815545 Others #> 1981 2005 841116 815731 Others #> 1982 2008 836683 815277 Others #> 1983 2013 836335 814838 Others #> 1984 2003 834792 815642 Others #> 1985 2002 834792 815642 Others #> 1986 2003 835880 815482 Others #> 1987 2012 0 0 Others #> 1988 2012 838721 817051 Others #> 1989 2010 838721 817051 Others #> 1990 2011 843483 814213 Others #> 1991 2005 843483 814213 Motorcyle #> 1992 2008 837791 816211 Others #> 1993 2010 839157 817029 Others #> 1994 NA 838503 816950 Others #> 1995 2001 836396 815506 Others #> 1996 2002 833556 816609 Others #> 1997 2000 834061 815796 Others #> 1998 2008 835905 815066 Others #> 1999 2000 837317 815420 Others #> 2000 2008 830408 815784 Motorcyle #> 2001 2012 837595 810967 Others #> 2002 2004 837595 810967 Others #> 2003 2001 840360 816495 Others #> 2004 2003 836456 815693 Others #> 2005 2011 836237 815697 Others #> 2006 2005 841693 815570 Others #> 2007 1996 835066 815491 Others #> 2008 1998 835066 815491 Others #> 2009 2013 836312 815542 Motorcyle #> 2010 2007 836312 815542 Others #> 2011 2008 836312 815542 Others #> 2012 2012 834210 818062 Others #> 2013 2012 834210 818062 Others #> 2014 2014 841022 812135 Motorcyle #> 2015 1997 831586 816266 Others #> 2016 2011 831586 816266 Others #> 2017 2013 831586 816266 Others #> 2018 2013 834340 814232 Others #> 2019 2009 834340 814232 Others #> 2020 2008 834340 814232 Others #> 2021 2001 836810 815724 Others #> 2022 2010 0 0 Others #> 2023 2012 0 0 Others #> 2024 2009 841218 815712 Motorcyle #> 2025 2010 838883 817240 Others #> 2026 2008 838883 817240 Others #> 2027 2013 838883 817240 Others #> 2028 2000 831355 815991 Others #> 2029 2000 842924 814750 Others #> 2030 2006 834442 816450 Others #> 2031 2009 834442 816450 Others #> 2032 NA 839118 816932 Others #> 2033 2000 839118 816932 Others #> 2034 1998 831828 813917 Others #> 2035 2001 831828 813917 Others #> 2036 2000 837983 815348 Others #> 2037 NA 836389 815135 Others #> 2038 2001 836389 815135 Others #> 2039 2013 833312 812297 Others #> 2040 2012 831546 813595 Others #> 2041 2001 831546 813595 Others #> 2042 2011 833814 815743 Others #> 2043 2004 834321 816459 Others #> 2044 2000 834321 816459 Others #> 2045 2002 838679 816927 Others #> 2046 2009 0 0 Others #> 2047 2013 836113 815610 Others #> 2048 2011 840139 816216 Others #> 2049 2014 841353 815225 Others #> 2050 NA 836813 815863 Motorcyle #> 2051 2004 836813 815863 Others #> 2052 2007 837084 814334 Others #> 2053 2011 837084 814334 Others #> 2054 2006 842810 813994 Others #> 2055 <NA> 833816 812227 Others #> 2056 <NA> 833816 812227 Others #> 2057 2012 834623 815559 Others #> 2058 2012 837062 814450 Others #> 2059 2007 833958 815868 Others #> 2060 2008 833958 815868 Others #> 2061 NA 836347 815385 Others #> 2062 2007 836683 815725 Others #> 2063 2007 838447 816504 Others #> 2064 2005 838447 816504 Others #> 2065 2007 842012 817929 Motorcyle #> 2066 <NA> 840539 816646 Others #> 2067 <NA> 840539 816646 Others #> 2068 2008 840539 816646 Others #> 2069 2010 840539 816646 Others #> 2070 <NA> 840503 816649 Others #> 2071 <NA> 840503 816649 Others #> 2072 2008 840503 816649 Others #> 2073 2010 840503 816649 Others #> 2074 1995 831354 813645 Others #> 2075 2013 831354 813645 Others #> 2076 1998 835539 815415 Others #> 2077 2008 835539 815415 Others #> 2078 2011 833546 816219 Others #> 2079 2010 833546 816219 Others #> 2080 2013 836499 815712 Others #> 2081 2007 836499 815712 Others #> 2082 2004 843427 810001 Others #> 2083 NA 843427 810001 Pedal Cycle #> 2084 2009 835547 815265 Others #> 2085 2009 835547 815265 Others #> 2086 2010 835547 815265 Others #> 2087 2007 835547 815265 Others #> 2088 2003 833649 815883 Others #> 2089 1998 830905 815912 Others #> 2090 2000 833379 812190 Others #> 2091 2008 833379 812190 Others #> 2092 2004 834617 815464 Others #> 2093 2003 832551 816628 Others #> 2094 2006 832096 813482 Others #> 2095 1998 832096 813482 Others #> 2096 1991 836276 815466 Others #> 2097 2013 836276 815466 Others #> 2098 2003 833914 815440 Others #> 2099 2013 834960 815636 Others #> 2100 2013 834960 815636 Others #> 2101 2013 836375 815408 Others #> 2102 2012 840002 808927 Others #> 2103 2012 836623 815294 Others #> 2104 2013 836271 815776 Others #> 2105 2012 842006 817944 Others #> 2106 2002 842006 817944 Others #> 2107 2005 836665 817766 Others #> 2108 2002 836665 817766 Others #> 2109 1999 837995 816590 Others #> 2110 2013 834213 816146 Others #> 2111 2004 831348 815926 Others #> 2112 2012 833693 816332 Others #> 2113 2008 840050 816197 Motorcyle #> 2114 NA 835851 815076 Others #> 2115 2011 834436 815275 Others #> 2116 2008 831840 816152 Others #> 2117 2004 831840 816152 Others #> 2118 1997 838778 816948 Others #> 2119 2001 839993 816381 Others #> 2120 2007 837072 814623 Motorcyle #> 2121 2008 839172 817114 Motorcyle #> 2122 2010 839172 817114 Others #> 2123 2008 833646 815881 Others #> 2124 2000 0 0 Others #> 2125 2011 0 0 Others #> 2126 2010 834120 812335 Others #> 2127 1999 840864 811347 Others #> 2128 2012 831044 816008 Others #> 2129 1996 831044 816008 Others #> 2130 2008 839915 816735 Others #> 2131 2010 839915 816735 Others #> 2132 2001 837775 815569 Others #> 2133 2011 837775 815569 Motorcyle #> 2134 2004 836118 815610 Others #> 2135 2006 843045 814263 Others #> 2136 1998 831436 815463 Others #> 2137 1997 833493 816127 Others #> 2138 2006 834523 815507 Others #> 2139 2006 834523 815507 Others #> 2140 2009 831395 815932 Others #> 2141 2000 831395 815932 Others #> 2142 2013 833693 815833 Others #> 2143 2006 835915 815064 Others #> 2144 2001 836525 815087 Others #> 2145 2005 836525 815087 Others #> 2146 2005 839907 816878 Others #> 2147 2001 838592 810568 Others #> 2148 2006 838592 810568 Others #> 2149 2010 839319 816876 Motorcyle #> 2150 2000 839319 816876 Others #> 2151 1998 834534 816431 Others #> 2152 2013 840523 816404 Others #> 2153 2004 836865 815670 Others #> 2154 1998 836865 815670 Others #> 2155 2007 836877 816079 Others #> 2156 2011 836877 816079 Others #> 2157 2000 833215 816667 Others #> 2158 2013 831849 813893 Others #> 2159 1998 0 0 Others #> 2160 2004 831094 815939 Motorcyle #> 2161 2011 836950 815602 Others #> 2162 2014 836950 815602 Others #> 2163 2012 830799 815894 Others #> 2164 2013 830799 815894 Others #> 2165 2010 836381 815423 Others #> 2166 2001 839093 817216 Others #> 2167 2013 835330 811009 Others #> 2168 2009 835330 811009 Others #> 2169 2013 841549 815441 Others #> 2170 2011 834224 816163 Others #> 2171 2013 834224 816163 Others #> 2172 2011 834875 815558 Others #> 2173 NA 834875 815558 Pedal Cycle #> 2174 2013 841139 815619 Others #> 2175 2013 832132 812428 Others #> 2176 2006 841654 815610 Motorcyle #> 2177 2014 831591 815719 Pedal Cycle #> 2178 2011 0 0 Motorcyle #> 2179 2008 835670 812187 Motorcyle #> 2180 2003 833432 816109 Others #> 2181 2005 833432 816109 Others #> 2182 2014 833432 816109 Others #> 2183 2000 836018 815853 Others #> 2184 2013 836018 815853 Others #> 2185 2010 836263 815465 Others #> 2186 2009 836263 815465 Others #> 2187 2001 837035 815756 Others #> 2188 2010 836123 815349 Others #> 2189 2007 839922 816434 Others #> 2190 2010 832055 812583 Others #> 2191 1996 839395 816947 Others #> 2192 1999 832701 816170 Others #> 2193 2005 840914 811421 Others #> 2194 2007 840914 811421 Others #> 2195 2001 833251 816312 Others #> 2196 2007 833251 816312 Others #> 2197 2009 836880 816088 Others #> 2198 2000 837897 816160 Others #> 2199 2012 836015 815425 Others #> 2200 1997 835797 815741 Others #> 2201 2008 835797 815741 Others #> 2202 2012 835467 815423 Others #> 2203 2001 835518 815409 Others #> 2204 2009 835518 815409 Others #> 2205 2005 840261 816188 Others #> 2206 2002 834210 816176 Others #> 2207 2010 834210 816176 Others #> 2208 1997 834208 816184 Others #> 2209 2011 836818 815786 Others #> 2210 2001 0 0 Others #> 2211 1999 834213 816018 Others #> 2212 2006 836832 815538 Others #> 2213 2012 837956 813141 Others #> 2214 2010 835451 815639 Others #> 2215 2009 835451 815639 Others #> 2216 2012 838681 817041 Others #> 2217 NA 836737 815558 Others #> 2218 NA 837910 813176 Pedal Cycle #> 2219 2001 833787 815101 Motorcyle #> 2220 NA 838115 816741 Pedal Cycle #> 2221 2010 833583 816443 Others #> 2222 1999 833990 812201 Others #> 2223 2010 834347 815888 Others #> 2224 NA 834347 815888 Others #> 2225 2002 832153 813394 Others #> 2226 2011 832153 813394 Others #> 2227 2012 839177 816898 Motorcyle #> 2228 2012 836337 815331 Others #> 2229 2012 833734 815476 Motorcyle #> 2230 2005 833734 815476 Others #> 2231 1999 836722 815305 Others #> 2232 2013 838165 817116 Others #> 2233 2001 838165 817116 Others #> 2234 2004 838165 817116 Others #> 2235 2012 838165 817116 Others #> 2236 1999 832560 812583 Others #> 2237 2012 832560 812583 Others #> 2238 2012 832560 812583 Others #> 2239 2000 840892 816043 Others #> 2240 2003 840892 816043 Others #> 2241 2007 839090 815897 Others #> 2242 2004 839090 815897 Others #> 2243 2002 836817 815641 Others #> 2244 2012 834650 812181 Others #> 2245 2001 834650 812181 Others #> 2246 2005 834650 812181 Others #> 2247 2007 837244 816122 Others #> 2248 2002 837244 816122 Others #> 2249 2001 840805 815741 Others #> 2250 2003 840805 815741 Others #> 2251 2001 835680 812189 Others #> 2252 2004 841698 815548 Others #> 2253 2008 841698 815548 Others #> 2254 2002 841698 815548 Others #> 2255 2010 837774 816768 Others #> 2256 2001 837774 816768 Others #> 2257 2013 833937 812327 Others #> 2258 1998 838385 816975 Others #> 2259 2012 838385 816975 Others #> 2260 2001 837687 816647 Others #> 2261 2000 837687 816647 Others #> 2262 2001 838795 817214 Others #> 2263 2010 838795 817214 Others #> 2264 2005 838795 817214 Others #> 2265 2001 838795 817214 Others #> 2266 2002 838795 817214 Others #> 2267 2006 838795 817214 Others #> 2268 2001 837127 814591 Others #> 2269 2003 837127 814591 Others #> 2270 1999 827225 815606 Others #> 2271 2012 842387 813729 Others #> 2272 2001 838723 816860 Others #> 2273 1995 834036 812302 Others #> 2274 2003 834036 812302 Others #> 2275 2012 834046 815970 Others #> 2276 2003 836730 815749 Others #> 2277 2011 0 0 Motorcyle #> 2278 2002 837876 816448 Others #> 2279 2001 837016 815971 Motorcyle #> 2280 NA 830737 815884 Pedal Cycle #> 2281 2002 837604 810963 Others #> 2282 NA 837604 810963 Pedal Cycle #> 2283 2006 833051 815934 Others #> 2284 NA 841544 815334 Pedal Cycle #> 2285 1998 841544 815334 Others #> 2286 1998 833568 816437 Others #> 2287 2013 833568 816437 Others #> 2288 2013 837227 816009 Motorcyle #> 2289 2007 838155 816803 Others #> 2290 2009 838155 816803 Others #> 2291 2001 838584 817030 Others #> 2292 2005 830967 815929 Others #> 2293 2006 837692 815520 Others #> 2294 2004 837692 815520 Others #> 2295 2012 0 0 Others #> 2296 2002 0 0 Others #> 2297 2009 837522 816237 Others #> 2298 2007 837522 816237 Others #> 2299 2003 836783 817222 Others #> 2300 2014 836783 817222 Others #> 2301 NA 0 0 Others #> 2302 1994 0 0 Others #> 2303 2001 0 0 Others #> 2304 NA 831842 816686 Pedal Cycle #> 2305 2012 834309 811404 Others #> 2306 2011 838643 817038 Others #> 2307 2002 838643 817038 Others #> 2308 2013 838643 817038 Others #> 2309 2013 833512 816480 Others #> 2310 1999 836804 815724 Others #> 2311 2014 837550 816438 Motorcyle #> 2312 2013 837550 816438 Others #> 2313 2014 836377 815710 Others #> 2314 2006 836377 815710 Motorcyle #> 2315 1997 840710 816631 Others #> 2316 NA 821232 807545 Pedal Cycle #> 2317 2008 837166 815980 Others #> 2318 2010 837166 815980 Others #> 2319 2000 0 0 Others #> 2320 2007 833827 815948 Others #> 2321 2001 832913 816447 Others #> 2322 NA 832913 816447 Others #> 2323 NA 834400 815778 Others #> 2324 2012 834400 815778 Others #> 2325 2009 842554 815279 Motorcyle #> 2326 2004 842554 815279 Others #> 2327 2012 837516 816194 Others #> 2328 2001 837516 816194 Others #> 2329 1995 831889 816378 Others #> 2330 2011 836584 812898 Motorcyle #> 2331 2013 834072 815940 Motorcyle #> 2332 2003 834072 815940 Others #> 2333 2013 835982 815213 Others #> 2334 1997 836477 815099 Others #> 2335 NA 837007 815703 Pedal Cycle #> 2336 2007 837007 815703 Others #> 2337 1998 837999 815644 Others #> 2338 2001 835562 815631 Others #> 2339 2001 835562 815631 Others #> 2340 2000 835562 815631 Others #> 2341 2013 832190 816542 Others #> 2342 2004 0 0 Others #> 2343 2006 0 0 Others #> 2344 1997 0 0 Motorcyle #> 2345 2004 0 0 Motorcyle #> 2346 2001 0 0 Others #> 2347 2000 832887 816690 Others #> 2348 2010 832887 816690 Others #> 2349 2002 836831 815722 Others #> 2350 2006 835325 812271 Others #> 2351 2005 835325 812271 Others #> 2352 2011 837925 816929 Motorcyle #> 2353 NA 837925 816929 Others #> 2354 1994 843335 809787 Motorcyle #> 2355 1996 843443 814213 Others #> 2356 2003 836304 815364 Others #> 2357 2010 0 0 Others #> 2358 2001 0 0 Others #> 2359 2013 835602 815591 Others #> 2360 2001 835685 815610 Others #> 2361 2001 835685 815610 Others #> 2362 2000 836488 815515 Others #> 2363 1994 842009 817910 Motorcyle #> 2364 2003 842009 817910 Others #> 2365 2007 831481 814542 Others #> 2366 2011 833692 816322 Others #> 2367 2012 836901 815675 Others #> 2368 1998 836278 815352 Others #> 2369 2012 832985 816454 Others #> 2370 2001 837115 814536 Others #> 2371 2012 837161 813832 Others #> 2372 NA 842802 814297 Pedal Cycle #> 2373 2012 833571 815920 Motorcyle #> 2374 2001 835726 815418 Others #> 2375 2001 835726 815418 Others #> 2376 2009 840895 815950 Others #> 2377 2008 831864 813103 Others #> 2378 NA 835904 815537 Pedal Cycle #> 2379 2002 835904 815537 Others #> 2380 2013 0 0 Others #> 2381 2008 0 0 Others #> 2382 2000 834097 815829 Others #> 2383 2005 835173 815610 Others #> 2384 2001 835173 815610 Others #> 2385 2008 834749 812212 Others #> 2386 2003 834749 812212 Motorcyle #> 2387 <NA> 834749 812212 Others #> 2388 <NA> 834749 812212 Others #> 2389 2004 834749 812212 Others #> 2390 2012 836536 815105 Others #> 2391 2013 836536 815105 Others #> 2392 2003 836798 816003 Others #> 2393 1998 0 0 Others #> 2394 2005 0 0 Others #> 2395 2008 0 0 Others #> 2396 2006 0 0 Others #> 2397 NA 821018 807790 Pedal Cycle #> 2398 NA 835987 814873 Others #> 2399 2005 0 0 Others #> 2400 2010 837737 816082 Others #> 2401 2011 834978 815516 Others #> 2402 2001 834978 815516 Others #> 2403 2013 834978 815516 Others #> 2404 2013 834978 815516 Others #> 2405 2009 839789 816337 Others #> 2406 1996 837155 815261 Others #> 2407 2007 0 0 Others #> 2408 2001 0 0 Others #> 2409 2007 838231 817114 Motorcyle #> 2410 2001 831596 813544 Others #> 2411 2013 831596 813544 Others #> 2412 2013 835417 812320 Others #> 2413 2014 835417 812320 Motorcyle #> 2414 2010 0 0 Others #> 2415 2012 0 0 Others #> 2416 2011 0 0 Others #> 2417 2012 840665 816627 Others #> 2418 2001 834387 815771 Others #> 2419 2005 834387 815771 Others #> 2420 2001 838534 817016 Others #> 2421 NA 821345 807673 Others #> 2422 2001 837481 815424 Others #> 2423 NA 0 0 Others #> 2424 1997 0 0 Others #> 2425 2004 840311 816360 Others #> 2426 2012 0 0 Others #> 2427 2000 841224 815724 Others #> 2428 1997 835590 815383 Others #> 2429 2006 835590 815383 Others #> 2430 2005 837565 815564 Others #> 2431 2001 837565 815564 Others #> 2432 2011 836729 815353 Others #> 2433 2001 836729 815353 Others #> 2434 2001 834118 812163 Others #> 2435 2001 834595 815580 Others #> 2436 2001 0 0 Others #> 2437 2001 840303 815809 Others #> 2438 2001 837068 816009 Others #> 2439 2010 837068 816009 Others #> 2440 2004 0 0 Others #> 2441 2006 0 0 Motorcyle #> 2442 2011 835921 815612 Others #> 2443 2014 835921 815612 Others #> 2444 NA 839208 816949 Pedal Cycle #> 2445 2001 842058 814517 Others #> 2446 2014 842058 814517 Pedal Cycle #> 2447 2010 843866 814123 Others #> 2448 2006 832382 812750 Others #> 2449 2009 832382 812750 Others #> 2450 2007 0 0 Others #> 2451 2001 0 0 Others #> 2452 2008 834039 816358 Others #> 2453 2001 834039 816358 Others #> 2454 2002 834039 816358 Others #> 2455 2014 0 0 Others #> 2456 1999 0 0 Others #> 2457 2008 836157 815321 Others #> 2458 2011 836107 815837 Others #> 2459 2013 0 0 Others #> 2460 2011 0 0 Others #> 2461 2010 836978 815561 Others #> 2462 2000 834074 812294 Others #> 2463 1997 834074 812294 Others #> 2464 2003 841931 814951 Others #> 2465 2008 840390 809774 Motorcyle #> 2466 2011 832780 816733 Others #> 2467 2009 832780 816733 Others #> 2468 2014 833223 812230 Motorcyle #> 2469 2006 836728 815375 Motorcyle #> 2470 2010 0 0 Others #> 2471 2000 0 0 Others #> 2472 2010 836969 815765 Others #> 2473 2013 837301 814316 Motorcyle #> 2474 2013 837301 814316 Others #> 2475 2013 841552 815583 Others #> 2476 2001 832813 816641 Others #> 2477 2001 832813 816641 Others #> 2478 2001 836663 814600 Others #> 2479 2011 836663 814600 Others #> 2480 2011 836663 814600 Others #> 2481 2002 837484 815454 Others #> 2482 2008 838273 817122 Motorcyle #> 2483 1997 843767 813795 Others #> 2484 2000 834845 815650 Others #> 2485 2007 834845 815650 Others #> 2486 2001 834845 815650 Others #> 2487 2001 838158 817093 Others #> 2488 2004 838158 817093 Others #> 2489 2013 832349 816067 Motorcyle #> 2490 2008 835498 812232 Others #> 2491 2012 835498 812232 Others #> 2492 2012 836150 812352 Others #> 2493 1995 836150 812352 Others #> 2494 2003 840783 817269 Others #> 2495 2001 840783 817269 Others #> 2496 2003 840783 817269 Others #> 2497 2006 840783 817269 Others #> 2498 2010 837548 815746 Others #> 2499 2000 837548 815746 Others #> 2500 2003 836723 815606 Others #> 2501 2013 837445 812885 Others #> 2502 2011 833718 815968 Others #> 2503 2005 837825 816791 Others #> 2504 2007 837825 816791 Others #> 2505 2001 835382 815373 Others #> 2506 2000 835382 815373 Motorcyle #> 2507 2008 835737 815593 Others #> 2508 2010 835737 815593 Others #> 2509 2010 835000 815699 Motorcyle #> 2510 2013 835000 815699 Others #> 2511 NA 832910 816557 Pedal Cycle #> 2512 NA 832910 816557 Others #> 2513 1999 833303 812207 Others #> 2514 2001 833899 815692 Others #> 2515 2005 833899 815692 Others #> 2516 NA 840806 815596 Others #> 2517 2013 837246 814756 Others #> 2518 2001 842686 813863 Others #> 2519 2014 831682 813827 Pedal Cycle #> 2520 2001 831682 813827 Others #> 2521 1999 840773 816114 Others #> 2522 2001 0 0 Others #> 2523 2000 842684 814401 Motorcyle #> 2524 2012 843700 813962 Others #> 2525 2002 836901 815892 Others #> 2526 2005 836901 815892 Others #> 2527 2012 836901 815892 Others #> 2528 2007 836723 815550 Others #> 2529 2001 836723 815550 Others #> 2530 2010 840116 816855 Others #> 2531 2010 840116 816855 Others #> 2532 2014 840116 816855 Others #> 2533 2011 840116 816855 Others #> 2534 2000 837001 813893 Others #> 2535 2008 0 0 Others #> 2536 2014 0 0 Others #> 2537 2011 835899 815730 Others #> 2538 2009 835770 815291 Others #> 2539 NA 837880 815692 Pedal Cycle #> 2540 2010 837880 815692 Others #> 2541 2002 842175 813995 Others #> 2542 2008 842175 813995 Others #> 2543 2012 0 0 Motorcyle #> 2544 2008 0 0 Others #> 2545 2006 832911 816104 Others #> 2546 2013 832911 816104 Others #> 2547 2013 836024 815484 Others #> 2548 2012 836024 815484 Others #> 2549 1998 836024 815484 Others #> 2550 1997 835499 815603 Others #> 2551 2010 835499 815603 Others #> 2552 2013 836260 815575 Motorcyle #> 2553 NA 842392 813726 Others #> 2554 2006 842392 813726 Motorcyle #> 2555 2012 838473 816864 Others #> 2556 2012 836987 815689 Others #> 2557 2006 0 0 Others #> 2558 2011 0 0 Others #> 2559 2006 831717 813090 Others #> 2560 2008 832372 812778 Motorcyle #> 2561 2002 832372 812778 Others #> 2562 2007 833945 816139 Others #> 2563 2003 832174 816343 Others #> 2564 1997 834112 812321 Others #> 2565 1995 0 0 Motorcyle #> 2566 2012 839354 809009 Others #> 2567 2013 0 0 Others #> 2568 2014 836525 815601 Others #> 2569 2003 843904 813750 Others #> 2570 2003 843904 813750 Others #> 2571 2003 841680 815381 Others #> 2572 1998 840542 816271 Others #> 2573 2001 0 0 Others #> 2574 2005 0 0 Others #> 2575 2006 841750 815610 Motorcyle #> 2576 2014 841750 815610 Others #> 2577 2009 841750 815610 Others #> 2578 2011 833621 816112 Others #> 2579 2006 833621 816112 Others #> 2580 2001 833621 816112 Others #> 2581 2000 831478 815378 Others #> 2582 1987 831478 815378 Others #> 2583 1995 831478 815378 Motorcyle #> 2584 2001 832152 813386 Motorcyle #> 2585 1997 832152 813386 Others #> 2586 2010 837648 815549 Others #> 2587 2000 833861 816202 Others #> 2588 1998 842567 813851 Others #> 2589 2006 842567 813851 Others #> 2590 2008 0 0 Others #> 2591 NA 820996 807750 Pedal Cycle #> 2592 2014 820996 807750 Pedal Cycle #> 2593 2004 840824 811835 Others #> 2594 2014 840824 811835 Motorcyle #> 2595 2003 834226 815669 Others #> 2596 2012 834226 815669 Others #> 2597 NA 841551 813199 Pedal Cycle #> 2598 2006 833794 816379 Motorcyle #> 2599 1999 833794 816379 Others #> 2600 2000 836652 815373 Others #> 2601 2000 836879 816099 Others #> 2602 2003 838479 817000 Others #> 2603 2001 834452 815428 Others #> 2604 2012 835979 814872 Others #> 2605 2008 835979 814872 Others #> 2606 2000 834362 815967 Others #> 2607 2007 834362 815967 Others #> 2608 1999 840837 816024 Others #> 2609 1999 840837 816024 Others #> 2610 2001 838312 817133 Others #> 2611 2013 837878 816641 Others #> 2612 2011 837878 816641 Others #> 2613 2013 838854 817233 Others #> 2614 2002 838854 817233 Others #> 2615 2014 838854 817233 Others #> 2616 2011 838854 817233 Others #> 2617 2006 838854 817233 Others #> 2618 NA 836055 815327 Pedal Cycle #> 2619 NA 836055 815327 Others #> 2620 2001 837202 815875 Others #> 2621 NA 820890 807105 Pedal Cycle #> 2622 2003 836289 815833 Others #> 2623 NA 0 0 Pedal Cycle #> 2624 2000 833835 815788 Motorcyle #> 2625 2000 840926 815906 Others #> 2626 2008 840926 815906 Others #> 2627 NA 0 0 Pedal Cycle #> 2628 NA 833947 814939 Others #> 2629 2005 834890 815697 Others #> 2630 2013 834890 815697 Others #> 2631 2009 836640 818150 Motorcyle #> 2632 2011 836640 818150 Others #> 2633 2001 836640 818150 Others #> 2634 2007 836640 818150 Others #> 2635 2011 836640 818150 Others #> 2636 2013 833983 812248 Others #> 2637 2008 834007 812012 Others #> 2638 NA 834007 812012 Others #> 2639 2012 834372 816008 Others #> 2640 2001 834372 816008 Others #> 2641 2004 836686 815257 Motorcyle #> 2642 2013 836686 815257 Others #> 2643 2010 836145 815378 Others #> 2644 2010 834586 815904 Others #> 2645 2012 834586 815904 Motorcyle #> 2646 2006 835776 812409 Others #> 2647 2001 835318 815668 Others #> 2648 2013 831553 815618 Others #> 2649 2002 833816 812222 Others #> 2650 2004 837284 816115 Others #> 2651 2000 837284 816115 Others #> 2652 2006 842131 815985 Others #> 2653 2001 834305 815713 Others #> 2654 2004 834305 815713 Others #> 2655 2007 836182 815774 Motorcyle #> 2656 2002 831505 814630 Others #> 2657 1998 836111 815451 Others #> 2658 2009 839074 808643 Others #> 2659 2006 839074 808643 Others #> 2660 1998 839074 808643 Others #> 2661 2000 839074 808643 Others #> 2662 2008 840741 816368 Others #> 2663 2005 838640 816861 Others #> 2664 NA 841846 815938 Others #> 2665 2003 843480 809980 Others #> 2666 2008 843480 809980 Others #> 2667 2004 833498 815691 Others #> 2668 2005 833498 815691 Others #> 2669 2014 843485 809964 Others #> 2670 2014 843485 809964 Others #> 2671 2006 843485 809964 Others #> 2672 2001 843485 809964 Others #> 2673 2011 843485 809964 Others #> 2674 1999 836454 815525 Others #> 2675 2004 836717 815316 Others #> 2676 2014 836717 815316 Others #> 2677 2012 836965 814492 Others #> 2678 2013 836965 814492 Motorcyle #> 2679 2008 838124 816753 Others #> 2680 2001 0 0 Others #> 2681 2014 0 0 Others #> 2682 1998 0 0 Others #> 2683 1999 841778 815219 Others #> 2684 2007 832109 813495 Others #> 2685 2001 836266 815468 Others #> 2686 2011 836266 815468 Others #> 2687 2008 833647 816418 Others #> 2688 2013 0 0 Others #> 2689 2005 0 0 Others #> 2690 2003 0 0 Others #> 2691 2001 836619 814752 Others #> 2692 2007 836619 814752 Others #> 2693 1990 833211 812233 Motorcyle #> 2694 2007 0 0 Others #> 2695 2013 833769 816041 Others #> 2696 1986 833769 816041 Others #> 2697 1998 837046 815704 Others #> 2698 2009 837819 815921 Others #> 2699 2006 837819 815921 Others #> 2700 NA 838498 811068 Pedal Cycle #> 2701 2010 836668 815736 Others #> 2702 1997 836668 815736 Others #> 2703 1998 832117 812873 Others #> 2704 1996 832117 812873 Motorcyle #> 2705 2002 831520 816346 Others #> 2706 2002 831520 816346 Others #> 2707 2000 836512 815526 Others #> 2708 2001 836512 815526 Others #> 2709 1998 840022 816207 Others #> 2710 1998 834289 815915 Others #> 2711 2011 836318 814957 Others #> 2712 2014 836318 814957 Others #> 2713 2012 836318 814957 Others #> 2714 1999 837086 815954 Others #> 2715 2010 832941 816354 Others #> 2716 2011 0 0 Others #> 2717 2013 0 0 Others #> 2718 2013 838484 816948 Others #> 2719 2012 838188 811042 Others #> 2720 2013 841693 815562 Others #> 2721 2013 836829 815646 Others #> 2722 2013 837203 815738 Others #> 2723 2004 831725 816416 Others #> 2724 2005 831725 816416 Others #> 2725 2001 831158 815955 Others #> 2726 2000 0 0 Others #> 2727 NA 834084 816404 Others #> 2728 2003 834084 816404 Others #> 2729 2010 836371 815498 Others #> 2730 2012 0 0 Others #> 2731 2010 0 0 Others #> 2732 2012 836690 815819 Others #> 2733 2002 836690 815819 Others #> 2734 2008 838691 817201 Others #> 2735 2005 838691 817201 Others #> 2736 1998 836653 815803 Others #> 2737 2003 832789 816031 Others #> 2738 2005 832789 816031 Others #> 2739 2002 833440 816589 Others #> 2740 2007 833440 816589 Others #> 2741 2013 834448 815974 Others #> 2742 1996 838770 816947 Others #> 2743 2000 833972 815955 Others #> 2744 1999 839571 816979 Others #> 2745 NA 838581 817026 Others #> 2746 2012 840684 815732 Others #> 2747 2012 834141 812311 Others #> 2748 2002 841222 815723 Others #> 2749 2011 842617 813827 Others #> 2750 2013 839700 816518 Others #> 2751 2012 839700 816518 Others #> 2752 2000 836256 815776 Others #> 2753 2012 836834 814633 Others #> 2754 2008 836834 814633 Others #> 2755 2002 836439 815872 Others #> 2756 NA 835981 815544 Others #> 2757 2005 840897 811634 Others #> 2758 1994 840897 811634 Motorcyle #> 2759 2001 833506 816344 Others #> 2760 2008 838552 816888 Motorcyle #> 2761 2011 838552 816888 Others #> 2762 2009 836878 816049 Others #> 2763 2012 836878 816049 Motorcyle #> 2764 2008 838065 816684 Others #> 2765 1998 837525 816418 Others #> 2766 2005 840497 816375 Others #> 2767 1998 834315 811449 Others #> 2768 2000 840971 815539 Motorcyle #> 2769 2005 840971 815539 Others #> 2770 2009 841636 813129 Others #> 2771 1998 840525 816244 Others #> 2772 2011 835953 811981 Others #> 2773 1996 842600 811438 Motorcyle #> 2774 2000 833372 816691 Others #> 2775 2012 836058 815754 Others #> 2776 2001 836058 815754 Others #> 2777 2011 839762 816949 Others #> 2778 2008 839762 816949 Motorcyle #> 2779 2008 0 0 Motorcyle #> 2780 2007 0 0 Others #> 2781 NA 835614 815670 Others #> 2782 2009 837773 815334 Pedal Cycle #> 2783 2007 836555 814937 Motorcyle #> 2784 2007 836547 814956 Motorcyle #> 2785 2014 836547 814956 Motorcyle #> 2786 2009 834957 814956 Others #> 2787 2012 834957 814956 Others #> 2788 2010 836677 815263 Others #> 2789 2001 836677 815263 Others #> 2790 1999 836429 814621 Others #> 2791 1993 836429 814621 Others #> 2792 2011 835729 815705 Others #> 2793 2008 833510 816336 Others #> 2794 2010 0 0 Motorcyle #> 2795 2010 836893 812835 Motorcyle #> 2796 2014 0 0 Others #> 2797 2006 834044 812066 Others #> 2798 2008 834044 812066 Others #> 2799 2013 837643 815817 Others #> 2800 2004 837643 815817 Others #> 2801 2014 839788 816331 Others #> 2802 2001 833959 816382 Others #> 2803 2001 837443 812877 Others #> 2804 2005 0 0 Motorcyle #> 2805 NA 0 0 Others #> 2806 2013 832876 816555 Motorcyle #> 2807 2003 840006 816393 Others #> 2808 2012 0 0 Others #> 2809 1999 0 0 Others #> 2810 2000 841629 815595 Others #> 2811 2003 841993 817901 Others #> 2812 2002 841993 817901 Others #> 2813 2014 834228 816137 Others #> 2814 2011 834228 816137 Others #> 2815 NA 835727 815590 Others #> 2816 2004 835727 815590 Motorcyle #> 2817 2006 835036 815405 Others #> 2818 2013 0 0 Motorcyle #> 2819 2012 0 0 Motorcyle #> 2820 2004 835741 815572 Others #> 2821 2001 835741 815572 Others #> 2822 2002 0 0 Others #> 2823 2011 0 0 Others #> 2824 2001 831130 814013 Others #> 2825 2001 831130 814013 Others #> 2826 2012 831130 814013 Others #> 2827 2004 833633 814448 Others #> 2828 2000 833633 814448 Others #> 2829 <NA> 836601 814779 Others #> 2830 <NA> 836601 814779 Others #> 2831 2000 836601 814779 Others #> 2832 2001 836601 814779 Others #> 2833 2009 834219 816234 Others #> 2834 NA 0 0 Others #> 2835 2011 837535 815543 Others #> 2836 NA 833818 816381 Others #> 2837 2007 834141 815216 Others #> 2838 NA 0 0 Others #> 2839 NA 0 0 Others #> 2840 2014 841732 815726 Motorcyle #> 2841 2006 0 0 Others #> 2842 2009 0 0 Others #> 2843 2013 0 0 Others #> 2844 2007 841162 815259 Others #> 2845 2007 837103 815996 Others #> 2846 2004 837103 815996 Others #> 2847 2010 834945 815731 Others #> 2848 2010 834945 815731 Others #> 2849 2002 842056 814639 Others #> 2850 2007 842056 814639 Others #> 2851 2009 834212 815835 Others #> 2852 2006 836865 816678 Others #> 2853 2001 836865 816678 Others #> 2854 2009 836865 816678 Others #> 2855 2013 836865 816678 Others #> 2856 2009 837955 816580 Others #> 2857 2012 836250 815575 Others #> 2858 2003 836943 815472 Others #> 2859 2001 836045 815431 Others #> 2860 2009 839980 816093 Motorcyle #> 2861 2012 832560 816688 Others #> 2862 2013 832560 816688 Others #> 2863 2012 832560 816688 Others #> 2864 2001 833964 816014 Others #> 2865 2002 836062 812301 Others #> 2866 1999 836743 815750 Others #> 2867 2010 837870 815579 Others #> 2868 2002 837870 815579 Others #> 2869 2012 835452 812253 Others #> 2870 2013 0 0 Others #> 2871 2001 833950 815544 Others #> 2872 2004 836562 815466 Others #> 2873 2005 835295 811552 Others #> 2874 1999 832077 812553 Others #> 2875 2011 0 0 Others #> 2876 2004 0 0 Others #> 2877 2011 0 0 Others #> 2878 2004 836824 814120 Motorcyle #> 2879 2010 832808 816626 Others #> 2880 2013 832808 816626 Others #> 2881 2013 831463 816303 Others #> 2882 2005 831463 816303 Others #> 2883 1999 831708 814214 Others #> 2884 2009 831708 814214 Others #> 2885 2000 831708 814214 Others #> 2886 2012 840082 816711 Others #> 2887 2003 840082 816711 Others #> 2888 2001 836701 815255 Others #> 2889 2002 836701 815255 Others #> 2890 2002 837180 815593 Others #> 2891 2001 836698 815250 Others #> 2892 2013 836698 815250 Others #> 2893 NA 835610 815620 Others #> 2894 2011 835610 815620 Motorcyle #> 2895 2001 835951 815590 Others #> 2896 2001 835951 815590 Others #> 2897 2005 835951 815590 Others #> 2898 2010 0 0 Others #> 2899 2014 0 0 Others #> 2900 2003 0 0 Others #> 2901 2012 841213 815800 Others #> 2902 2004 841213 815800 Motorcyle #> 2903 2012 831422 815146 Motorcyle #> 2904 1998 835382 812302 Others #> 2905 2013 835382 812302 Others #> 2906 2010 835382 812302 Others #> 2907 2007 835382 812302 Others #> 2908 2014 835382 812302 Others #> 2909 2012 831437 815461 Others #> 2910 2010 834884 815710 Others #> 2911 2005 834884 815710 Others #> 2912 NA 0 0 Others #> 2913 2013 0 0 Others #> 2914 2004 834079 816313 Others #> 2915 2004 834079 816313 Others #> 2916 2001 834079 816313 Others #> 2917 2010 835589 815664 Others #> 2918 2006 834287 815713 Others #> 2919 1999 842026 817928 Others #> 2920 2006 842026 817928 Others #> 2921 2002 842026 817928 Others #> 2922 2012 842026 817928 Others #> 2923 2006 841970 817930 Motorcyle #> 2924 2010 0 0 Others #> 2925 2014 0 0 Others #> 2926 2014 833254 816998 Others #> 2927 2007 833254 816998 Others #> 2928 2008 837825 815318 Others #> 2929 2012 837825 815318 Others #> 2930 2002 837825 815318 Others #> 2931 1993 834339 815960 Others #> 2932 1997 832024 812743 Others #> 2933 2012 838221 816754 Others #> 2934 2001 841052 815420 Others #> 2935 2002 836432 815517 Others #> 2936 1999 836432 815517 Others #> 2937 2013 837853 816143 Others #> 2938 2001 837853 816143 Others #> 2939 2013 0 0 Others #> 2940 <NA> 0 0 Others #> 2941 <NA> 0 0 Others #> 2942 2007 835724 815139 Others #> 2943 NA 834195 815915 Others #> 2944 2003 841967 814315 Motorcyle #> 2945 1997 831546 815526 Others #> 2946 2001 837790 816240 Others #> 2947 2012 836274 815360 Others #> 2948 2007 840844 811061 Motorcyle #> 2949 2000 840844 811061 Others #> 2950 2013 835973 815427 Others #> 2951 NA 835973 815427 Others #> 2952 2002 837325 811325 Others #> 2953 2014 837325 811325 Others #> 2954 2005 832334 816499 Others #> 2955 2000 837695 816193 Others #> 2956 2014 837695 816193 Others #> 2957 2010 837695 816193 Others #> 2958 1999 834948 815588 Others #> 2959 2013 833717 816033 Others #> 2960 2001 833717 816033 Motorcyle #> 2961 2003 837428 811740 Others #> 2962 2001 834349 815971 Others #> 2963 2011 834349 815971 Others #> 2964 NA 831675 813829 Pedal Cycle #> 2965 1992 831675 813829 Others #> 2966 2007 841681 815372 Others #> 2967 2002 834666 815879 Others #> 2968 2003 834666 815879 Others #> 2969 2001 831730 813142 Others #> 2970 2001 834679 815884 Others #> 2971 2000 834679 815884 Others #> 2972 2010 0 0 Others #> 2973 2004 0 0 Others #> 2974 1998 841480 815393 Others #> 2975 2014 841480 815393 Others #> 2976 2014 833853 816441 Others #> 2977 2014 833853 816441 Others #> 2978 2013 842077 814686 Others #> 2979 2011 842077 814686 Others #> 2980 2007 833034 816713 Others #> 2981 2006 833034 816713 Others #> 2982 2012 833034 816713 Others #> 2983 2003 835706 812223 Others #> 2984 2011 839485 816964 Others #> 2985 1998 0 0 Others #> 2986 2001 0 0 Others #> 2987 2008 837198 815661 Others #> 2988 2013 837198 815661 Others #> 2989 2006 830976 814567 Others #> 2990 NA 830976 814567 Pedal Cycle #> 2991 2009 837730 816190 Others #> 2992 2013 840921 811581 Others #> 2993 1998 840921 811581 Motorcyle #> 2994 NA 832460 816371 Others #> 2995 NA 835272 815618 Others #> 2996 2001 835272 815618 Others #> 2997 2011 834448 816140 Others #> 2998 2002 834448 816140 Others #> 2999 2013 836169 815288 Others #> 3000 1997 832515 816450 Others #> 3001 2007 834649 815805 Others #> 3002 1999 834649 815805 Others #> 3003 2011 834649 815805 Others #> 3004 2003 831629 815819 Others #> 3005 2001 831629 815819 Others #> 3006 2002 837663 816506 Others #> 3007 NA 841490 812795 Pedal Cycle #> 3008 2010 833660 815868 Others #> 3009 2000 833511 816394 Others #> 3010 2001 834344 815698 Others #> 3011 2008 834344 815698 Others #> 3012 1996 834344 815698 Others #> 3013 2000 836765 815338 Others #> 3014 2001 836765 815338 Others #> 3015 2002 838220 816805 Others #> 3016 2013 837929 816512 Others #> 3017 2005 834381 816016 Others #> 3018 2009 834381 816016 Others #> 3019 NA 838128 816866 Others #> 3020 1998 838229 816812 Others #> 3021 2001 834517 815941 Others #> 3022 2010 834517 815941 Others #> 3023 2001 834517 815941 Others #> 3024 2001 836318 815312 Others #> 3025 2000 836318 815312 Others #> 3026 1997 838892 816970 Others #> 3027 2003 838706 817187 Others #> 3028 2009 838706 817187 Others #> 3029 2002 838706 817187 Motorcyle #> 3030 2002 835165 811371 Motorcyle #> 3031 2001 838374 816923 Others #> 3032 2010 835629 815342 Others #> 3033 2006 837662 814077 Others #> 3034 2014 0 0 Others #> 3035 2013 834553 811235 Others #> 3036 2008 834553 811235 Others #> 3037 2013 837881 812661 Others #> 3038 2012 837881 812661 Others #> 3039 2014 0 0 Motorcyle #> 3040 2007 0 0 Others #> 3041 2008 836867 816728 Others #> 3042 2013 836867 816728 Others #> 3043 2013 836867 816728 Others #> 3044 2008 836073 815428 Others #> 3045 2013 836073 815428 Others #> 3046 2000 832281 812548 Others #> 3047 2010 832210 816212 Others #> 3048 2004 832210 816212 Motorcyle #> 3049 2008 0 0 Others #> 3050 2001 0 0 Others #> 3051 2012 840809 815727 Others #> 3052 1999 841015 815793 Motorcyle #> 3053 2001 841015 815793 Others #> 3054 2008 841930 817836 Others #> 3055 2002 841930 817836 Others #> 3056 2010 835663 815319 Others #> 3057 2014 835663 815319 Others #> 3058 2002 835590 815391 Others #> 3059 2012 835590 815391 Others #> 3060 2010 836358 815116 Others #> 3061 2012 836358 815116 Others #> 3062 2008 836732 815439 Others #> 3063 2013 836732 815439 Others #> 3064 2011 840824 811851 Others #> 3065 1999 840824 811851 Others #> 3066 2014 836761 815871 Motorcyle #> 3067 1997 836724 815817 Others #> 3068 2001 836791 815526 Others #> 3069 2008 837170 814204 Others #> 3070 2014 837170 814204 Pedal Cycle #> 3071 2011 832370 816409 Others #> 3072 2001 832370 816409 Others #> 3073 2001 832544 816368 Others #> 3074 2010 832544 816368 Motorcyle #> 3075 1998 831452 816292 Others #> 3076 2006 831452 816292 Others #> 3077 <NA> 839611 816793 Others #> 3078 <NA> 839611 816793 Others #> 3079 2004 841154 815874 Others #> 3080 2011 835412 815772 Others #> 3081 2002 835412 815772 Others #> 3082 1996 835412 815772 Others #> 3083 2014 842404 813733 Motorcyle #> 3084 2014 843206 814036 Others #> 3085 1999 837012 815962 Others #> 3086 2007 837012 815962 Others #> 3087 2000 837012 815962 Others #> 3088 2011 832047 812626 Others #> 3089 2013 838621 817032 Others #> 3090 2012 832097 816465 Others #> 3091 2009 834830 812201 Others #> 3092 2013 834830 812201 Others #> 3093 2011 834067 815199 Others #> 3094 2006 834067 815199 Others #> 3095 2013 0 0 Others #> 3096 2008 0 0 Others #> 3097 2002 0 0 Others #> 3098 1998 835730 815414 Others #> 3099 2002 835730 815414 Others #> 3100 2010 0 0 Others #> 3101 2009 837269 814355 Others #> 3102 2011 836346 812767 Others #> 3103 2000 841442 815413 Others #> 3104 2008 838608 816272 Others #> 3105 NA 0 0 Others #> 3106 2000 0 0 Others #> 3107 2014 0 0 Others #> 3108 NA 836474 815375 Pedal Cycle #> 3109 2004 838213 816808 Others #> 3110 2014 838213 816808 Pedal Cycle #> 3111 2001 836217 815634 Others #> 3112 2001 841905 817854 Others #> 3113 2012 841905 817854 Motorcyle #> 3114 2010 836469 812679 Others #> 3115 2000 836469 812679 Others #> 3116 2012 833556 811704 Others #> 3117 2002 836585 815789 Motorcyle #> 3118 2005 0 0 Others #> 3119 2004 0 0 Others #> 3120 2004 834077 812286 Others #> 3121 2009 841286 813577 Others #> 3122 2014 841286 813577 Others #> 3123 1999 836340 815333 Others #> 3124 2010 0 0 Others #> 3125 2008 0 0 Others #> 3126 2011 837369 811199 Others #> 3127 2003 835648 815616 Others #> 3128 2000 835648 815616 Others #> 3129 2000 835648 815616 Others #> 3130 2005 832421 816431 Others #> 3131 2010 841811 817802 Others #> 3132 2008 841811 817802 Others #> 3133 2000 0 0 Pedal Cycle #> 3134 2012 836541 815314 Motorcyle #> 3135 1998 836637 815587 Others #> 3136 2001 837532 815544 Others #> 3137 2013 837532 815544 Others #> 3138 2010 838924 816960 Others #> 3139 2007 835075 811745 Others #> 3140 NA 832876 815850 Others #> 3141 2011 836116 815762 Others #> 3142 2003 842882 814418 Others #> 3143 1999 842882 814418 Others #> 3144 2004 842882 814418 Others #> 3145 2001 836626 818016 Others #> 3146 NA 836626 818016 Others #> 3147 2013 836626 818016 Motorcyle #> 3148 1998 842255 813661 Others #> 3149 2009 837695 815828 Others #> 3150 2012 834451 812090 Others #> 3151 2004 841110 815350 Others #> 3152 2014 831984 816486 Others #> 3153 2000 831984 816486 Motorcyle #> 3154 2007 837107 816035 Others #> 3155 2011 837107 816035 Others #> 3156 2011 837156 815447 Others #> 3157 2001 840785 816039 Others #> 3158 2013 841023 815981 Others #> 3159 2012 838198 816803 Others #> 3160 NA 838198 816803 Pedal Cycle #> 3161 2003 836768 815621 Others #> 3162 2004 0 0 Motorcyle #> 3163 2001 841426 813231 Others #> 3164 2001 836754 815979 Others #> 3165 2010 836754 815979 Others #> 3166 2006 836754 815979 Motorcyle #> 3167 2001 836754 815979 Others #> 3168 2005 836754 815979 Others #> 3169 2013 834504 815762 Others #> 3170 2010 835832 815173 Others #> 3171 2010 836963 815611 Others #> 3172 2001 837255 815624 Others #> 3173 1999 0 0 Others #> 3174 2002 0 0 Others #> 3175 2003 836742 815563 Others #> 3176 2009 839600 816814 Motorcyle #> 3177 2008 835756 812408 Others #> 3178 2007 835756 812408 Others #> 3179 2007 836362 815384 Others #> 3180 2005 840905 816095 Others #> 3181 2004 841896 815968 Others #> 3182 2007 841896 815968 Others #> 3183 2006 841896 815968 Others #> 3184 2002 0 0 Others #> 3185 2002 0 0 Motorcyle #> 3186 2011 836329 814770 Others #> 3187 2012 832544 816368 Others #> 3188 1999 831519 814609 Others #> 3189 2012 835370 815631 Others #> 3190 1999 835370 815631 Others #> 3191 2012 835404 815360 Others #> 3192 2007 0 0 Others #> 3193 2012 838521 817021 Others #> 3194 1998 835568 815246 Others #> 3195 2002 842639 814547 Others #> 3196 2008 842639 814547 Others #> 3197 2006 842639 814547 Others #> 3198 1996 835963 815418 Others #> 3199 2002 832592 812460 Others #> 3200 2012 832592 812460 Others #> 3201 2013 833898 815202 Others #> 3202 2008 833898 815202 Others #> 3203 2010 838612 816285 Others #> 3204 2001 833416 816225 Others #> 3205 2012 836300 812411 Motorcyle #> 3206 NA 836300 812411 Others #> 3207 2011 835839 815087 Others #> 3208 2009 835839 815087 Others #> 3209 2001 835839 815087 Others #> 3210 1998 843630 813974 Others #> 3211 1998 833941 815568 Others #> 3212 2014 832732 816561 Motorcyle #> 3213 2013 843399 814393 Motorcyle #> 3214 2012 0 0 Motorcyle #> 3215 2011 833019 816699 Others #> 3216 2004 834122 815591 Others #> 3217 2002 834122 815591 Others #> 3218 1996 834474 812099 Others #> 3219 2013 835946 814449 Motorcyle #> 3220 2006 835946 814449 Others #> 3221 2011 836695 815260 Others #> 3222 2000 836695 815260 Others #> 3223 NA 836967 815546 Others #> 3224 2002 840808 816552 Others #> 3225 2005 840808 816552 Others #> 3226 2012 840808 816552 Others #> 3227 2004 839651 817044 Others #> 3228 2004 839651 817044 Others #> 3229 2001 836943 815803 Others #> 3230 NA 837321 813753 Others #> 3231 2001 837321 813753 Others #> 3232 2001 831426 815445 Others #> 3233 2013 836447 815687 Others #> 3234 2014 836447 815687 Others #> 3235 2002 836447 815687 Others #> 3236 1998 834107 812024 Others #> 3237 2001 836794 817161 Others #> 3238 2001 836794 817161 Others #> 3239 2013 831160 815955 Others #> 3240 2002 831094 813947 Motorcyle #> 3241 2004 831094 813947 Others #> 3242 2011 833539 816400 Others #> 3243 1999 837234 813825 Others #> 3244 2012 837234 813825 Others #> 3245 2001 836703 815785 Motorcyle #> 3246 2007 836703 815785 Others #> 3247 1998 837082 814710 Others #> 3248 2014 837082 814710 Others #> 3249 2002 840021 808857 Others #> 3250 2004 840021 808857 Others #> 3251 2014 838352 810994 Pedal Cycle #> 3252 1999 842434 811634 Others #> 3253 2009 842434 811634 Motorcyle #> 3254 2010 832538 816222 Others #> 3255 2002 832538 816222 Others #> 3256 NA 839781 816980 Pedal Cycle #> 3257 2012 836440 815724 Others #> 3258 2009 836440 815724 Others #> 3259 2007 837756 815555 Others #> 3260 2014 835403 815750 Motorcyle #> 3261 1998 840467 816265 Others #> 3262 2012 833324 816702 Others #> 3263 2001 833324 816702 Others #> 3264 NA 0 0 Others #> 3265 2002 837295 816117 Others #> 3266 2011 837295 816117 Others #> 3267 2011 832344 816240 Others #> 3268 2011 0 0 Motorcyle #> 3269 2000 0 0 Others #> 3270 NA 0 0 Others #> 3271 2003 0 0 Others #> 3272 NA 0 0 Others #> 3273 2002 0 0 Others #> 3274 2005 834806 815644 Others #> 3275 2005 834806 815644 Others #> 3276 2008 835073 811748 Others #> 3277 2000 835734 815571 Others #> 3278 2014 835734 815571 Others #> 3279 2008 0 0 Others #> 3280 2003 0 0 Others #> 3281 2006 0 0 Others #> 3282 2014 0 0 Others #> 3283 2011 0 0 Others #> 3284 2014 839404 817162 Others #> 3285 2010 839404 817162 Others #> 3286 2003 839404 817162 Others #> 3287 1998 834297 815414 Motorcyle #> 3288 2010 833017 816549 Others #> 3289 2001 833499 816572 Others #> 3290 2001 833499 816572 Others #> 3291 2013 841935 814967 Others #> 3292 2004 841935 814967 Others #> 3293 2004 842465 813950 Motorcyle #> 3294 2004 831487 814691 Others #> 3295 NA 831487 814691 Others #> 3296 2012 834941 811603 Motorcyle #> 3297 2007 835523 815612 Others #> 3298 1997 835523 815612 Others #> 3299 1997 835939 814489 Others #> 3300 2001 832576 816841 Others #> 3301 2010 832576 816841 Others #> 3302 2007 832576 816841 Others #> 3303 2011 835058 815492 Others #> 3304 2001 835058 815492 Others #> 3305 2011 838561 816458 Others #> 3306 2010 838561 816458 Others #> 3307 NA 832564 816633 Others #> 3308 1992 832564 816633 Others #> 3309 NA 0 0 Pedal Cycle #> 3310 1998 0 0 Others #> 3311 2003 835869 815863 Others #> 3312 2001 835774 815688 Others #> 3313 NA 835774 815688 Others #> 3314 2010 0 0 Others #> 3315 2001 834873 815555 Others #> 3316 2011 834873 815555 Others #> 3317 2002 834873 815555 Others #> 3318 2008 833455 812376 Others #> 3319 2001 834196 815843 Others #> 3320 1990 0 0 Others #> 3321 2002 0 0 Others #> 3322 NA 840467 809933 Pedal Cycle #> 3323 2001 840467 809933 Others #> 3324 2005 832364 816330 Others #> 3325 2014 837789 816142 Others #> 3326 2004 837789 816142 Others #> 3327 2000 839282 816948 Others #> 3328 1998 834514 811890 Others #> 3329 2001 0 0 Others #> 3330 2013 0 0 Others #> 3331 2004 832106 813510 Others #> 3332 2011 832106 813510 Others #> 3333 2004 0 0 Others #> 3334 NA 842031 814330 Others #> 3335 2007 842031 814330 Motorcyle #> 3336 2001 835726 815607 Others #> 3337 2011 835726 815607 Others #> 3338 2006 0 0 Others #> 3339 2001 834212 815467 Others #> 3340 2010 834212 815467 Others #> 3341 1995 0 0 Others #> 3342 2012 0 0 Others #> 3343 2010 836284 815354 Others #> 3344 2000 836799 815348 Others #> 3345 2007 836799 815348 Motorcyle #> 3346 2007 833299 816626 Others #> 3347 2007 833299 816626 Others #> 3348 2010 833299 816626 Others #> 3349 2001 833299 816626 Others #> 3350 2001 832127 813355 Others #> 3351 1997 840070 816002 Others #> 3352 2014 840070 816002 Pedal Cycle #> 3353 NA 840393 808676 Others #> 3354 2001 840965 816515 Others #> 3355 2004 840965 816515 Others #> 3356 2001 830959 815921 Others #> 3357 2004 830959 815921 Others #> 3358 2003 834344 812065 Others #> 3359 2009 0 0 Others #> 3360 2004 0 0 Others #> 3361 NA 0 0 Others #> 3362 1999 836660 815532 Others #> 3363 2009 835953 815419 Others #> 3364 1998 835953 815419 Others #> 3365 2012 838535 816939 Others #> 3366 NA 840148 808818 Others #> 3367 2012 840559 816232 Others #> 3368 1999 834945 814422 Others #> 3369 NA 834945 814422 Pedal Cycle #> 3370 2000 0 0 Motorcyle #> 3371 NA 0 0 Others #> 3372 2007 834728 815887 Others #> 3373 2006 836568 815629 Motorcyle #> 3374 2010 836568 815629 Others #> 3375 2013 839694 817036 Others #> 3376 1994 839694 817036 Others #> 3377 2010 836705 815621 Others #> 3378 NA 835742 815413 Others #> 3379 2013 833601 815926 Others #> 3380 2008 842195 814441 Others #> 3381 2001 842195 814441 Others #> 3382 2000 834038 816237 Others #> 3383 2011 831985 813762 Others #> 3384 2008 831985 813762 Others #> 3385 2012 835972 815065 Others #> 3386 2011 831500 814635 Others #> 3387 2008 831500 814635 Others #> 3388 2013 836923 815898 Motorcyle #> 3389 2010 836923 815898 Others #> 3390 2011 836923 815898 Others #> 3391 2001 839501 817001 Others #> 3392 2001 832565 816833 Others #> 3393 2000 832565 816833 Others #> 3394 2007 831503 814637 Others #> 3395 2007 836803 815894 Others #> 3396 2012 836803 815894 Others #> 3397 2007 836803 815894 Others #> 3398 2013 831529 815538 Motorcyle #> 3399 2002 834310 811540 Others #> 3400 2003 842115 814519 Others #> 3401 1996 842115 814519 Others #> 3402 2010 842115 814519 Others #> 3403 2000 841070 815778 Others #> 3404 1999 836045 815502 Others #> 3405 2006 836045 815502 Others #> 3406 2000 840486 816363 Others #> 3407 2013 835664 815424 Others #> 3408 2001 836807 814133 Others #> 3409 2010 836807 814133 Others #> 3410 2011 842353 814318 Others #> 3411 1997 839376 817157 Others #> 3412 2001 839376 817157 Others #> 3413 2000 836649 814168 Others #> 3414 2011 843109 814311 Others #> 3415 NA 843109 814311 Pedal Cycle #> 3416 2013 834567 815918 Others #> 3417 2012 834567 815918 Others #> 3418 2003 834567 815918 Others #> 3419 2012 832063 816331 Others #> 3420 2014 841043 816160 Others #> 3421 2001 0 0 Others #> 3422 2012 0 0 Motorcyle #> 3423 NA 841322 816014 Pedal Cycle #> 3424 2001 836086 815642 Others #> 3425 2013 836086 815642 Others #> 3426 2001 836691 815399 Others #> 3427 2007 842633 810761 Others #> 3428 1991 842633 810761 Others #> 3429 2006 842633 810761 Others #> 3430 1998 842633 810761 Others #> 3431 2014 834219 815850 Others #> 3432 NA 838341 810991 Pedal Cycle #> 3433 2003 839808 809250 Motorcyle #> 3434 2011 839808 809250 Others #> 3435 2005 834120 812059 Others #> 3436 1995 834120 812059 Others #> 3437 1997 834120 812059 Others #> 3438 2004 832239 813011 Others #> 3439 2007 832239 813011 Others #> 3440 2011 841516 815587 Motorcyle #> 3441 2007 832857 816554 Others #> 3442 2004 832857 816554 Others #> 3443 1998 833998 817788 Others #> 3444 2013 833890 815987 Others #> 3445 2002 839688 816896 Others #> 3446 1999 840394 816181 Others #> 3447 1998 840394 816181 Others #> 3448 1999 838722 817110 Others #> 3449 2013 843486 814214 Others #> 3450 2002 843486 814214 Others #> 3451 1997 835912 815357 Others #> 3452 2010 833813 815966 Others #> 3453 2008 835386 815378 Others #> 3454 1996 835386 815378 Motorcyle #> 3455 2001 0 0 Others #> 3456 2006 0 0 Others #> 3457 2013 836411 815808 Motorcyle #> 3458 2010 0 0 Others #> 3459 2014 0 0 Others #> 3460 2001 0 0 Others #> 3461 2001 0 0 Others #> 3462 2004 0 0 Others #> 3463 2004 838691 816929 Others #> 3464 2001 833817 815872 Others #> 3465 2000 834169 811471 Others #> 3466 2003 837774 815335 Others #> 3467 2005 837774 815335 Others #> 3468 2007 840768 816098 Others #> 3469 NA 837885 810963 Motorcyle #> 3470 2014 835900 815311 Others #> 3471 2008 835900 815311 Motorcyle #> 3472 2000 834244 815988 Others #> 3473 NA 834244 815988 Pedal Cycle #> 3474 2009 838775 816936 Others #> 3475 1998 835816 815300 Others #> 3476 2004 836770 814662 Others #> 3477 1999 836770 814662 Motorcyle #> 3478 1998 838096 815322 Others #> 3479 1996 838096 815322 Others #> 3480 2014 831123 814920 Motorcyle #> 3481 2010 831722 813726 Others #> 3482 NA 831722 813726 Others #> 3483 2001 835969 815154 Others #> 3484 2008 835969 815154 Others #> 3485 2007 837084 814705 Motorcyle #> 3486 2010 836173 812352 Others #> 3487 2004 836173 812352 Others #> 3488 2000 836173 812352 Others #> 3489 2009 836173 812352 Others #> 3490 2011 833842 816182 Others #> 3491 2007 840898 816370 Others #> 3492 2007 833774 815822 Others #> 3493 2001 836543 814933 Others #> 3494 2001 836543 814933 Others #> 3495 2005 831980 813772 Others #> 3496 2003 831980 813772 Others #> 3497 2011 841563 815587 Motorcyle #> 3498 NA 836141 812349 Others #> 3499 2013 840657 816614 Others #> 3500 <NA> 837250 815629 Others #> 3501 <NA> 837250 815629 Others #> 3502 2005 837250 815629 Others #> 3503 2012 0 0 Others #> 3504 2014 0 0 Others #> 3505 2013 837154 815370 Others #> 3506 2001 837154 815370 Others #> 3507 2013 836399 814672 Others #> 3508 2006 836399 814672 Motorcyle #> 3509 2010 833973 815372 Motorcyle #> 3510 2005 833973 815372 Others #> 3511 2013 831397 816102 Others #> 3512 2003 834533 815671 Others #> 3513 2014 837319 814287 Motorcyle #> 3514 2001 837319 814287 Others #> 3515 NA 842569 811205 Pedal Cycle #> 3516 2013 837453 812992 Motorcyle #> 3517 2011 0 0 Motorcyle #> 3518 2004 841605 815874 Others #> 3519 2012 0 0 Others #> 3520 2007 837817 816565 Others #> 3521 2013 836202 812346 Motorcyle #> 3522 2006 836202 812346 Others #> 3523 2009 0 0 Others #> 3524 2003 837227 815993 Motorcyle #> 3525 2012 840171 808396 Motorcyle #> 3526 2012 0 0 Others #> 3527 2001 831262 815852 Others #> 3528 1996 838695 816930 Others #> 3529 2005 835598 815774 Motorcyle #> 3530 2001 835598 815774 Others #> 3531 2001 840040 815838 Others #> 3532 2005 837491 815674 Others #> 3533 1997 836720 815546 Others #> 3534 2010 836720 815546 Others #> 3535 2014 842470 813861 Others #> 3536 2012 842470 813861 Others #> 3537 1997 836346 815390 Others #> 3538 2006 836346 815390 Others #> 3539 1998 0 0 Others #> 3540 2011 0 0 Others #> 3541 2008 838806 816944 Others #> 3542 1998 837063 815945 Others #> 3543 2004 836610 815408 Others #> 3544 2011 833884 812339 Others #> 3545 2013 837127 815497 Others #> 3546 2014 831435 816130 Others #> 3547 2001 838138 811095 Others #> 3548 2003 841836 817822 Others #> 3549 NA 841836 817822 Others #> 3550 2006 841836 817822 Others #> 3551 2010 841836 817822 Motorcyle #> 3552 2000 833902 816103 Others #> 3553 2005 838184 811046 Others #> 3554 2001 838184 811046 Others #> 3555 2011 836647 814674 Others #> 3556 1998 836647 814674 Others #> 3557 2008 0 0 Others #> 3558 2013 835076 815955 Others #> 3559 2000 835076 815955 Others #> 3560 2007 835076 815955 Others #> 3561 2003 839855 816225 Motorcyle #> 3562 2012 839855 816225 Others #> 3563 1998 834235 816003 Others #> 3564 2005 838476 811091 Others #> 3565 2014 838375 816923 Others #> 3566 2008 834297 816274 Motorcyle #> 3567 2013 841882 815964 Motorcyle #> 3568 2004 841882 815964 Others #> 3569 2012 833785 816268 Others #> 3570 2014 833785 816268 Others #> 3571 2012 833785 816268 Others #> 3572 1998 831842 813897 Others #> 3573 2008 842754 813971 Others #> 3574 2005 837227 815942 Others #> 3575 2009 837227 815942 Motorcyle #> 3576 2008 831866 816380 Others #> 3577 2012 841761 812275 Others #> 3578 2008 841761 812275 Motorcyle #> 3579 2000 835547 814329 Others #> 3580 2013 835547 814329 Others #> 3581 2009 836469 814474 Others #> 3582 2012 831272 815848 Others #> 3583 2010 840844 816011 Others #> 3584 2012 840844 816011 Motorcyle #> 3585 2005 0 0 Others #> 3586 2008 0 0 Others #> 3587 2001 838094 816829 Others #> 3588 2014 838094 816829 Others #> 3589 2012 838097 816734 Others #> 3590 2005 0 0 Others #> 3591 2002 0 0 Others #> 3592 2009 833626 811643 Others #> 3593 2014 0 0 Others #> 3594 2001 0 0 Others #> 3595 2006 0 0 Others #> 3596 2013 836533 815087 Motorcyle #> 3597 2010 836533 815087 Others #> 3598 2013 0 0 Motorcyle #> 3599 2003 0 0 Others #> 3600 2007 837599 810964 Motorcyle #> 3601 2013 837599 810964 Others #> 3602 2001 839103 816636 Others #> 3603 2006 839103 816636 Others #> 3604 2007 839103 816636 Others #> 3605 1999 832073 813531 Others #> 3606 1998 830451 814873 Others #> 3607 2006 830451 814873 Others #> 3608 2007 838228 816734 Others #> 3609 2013 838166 816462 Others #> 3610 2012 840841 815853 Others #> 3611 NA 840841 815853 Others #> 3612 2001 838476 816865 Others #> 3613 1998 838476 816865 Others #> 3614 1999 835411 814717 Others #> 3615 2006 835411 814717 Others #> 3616 2010 837674 816254 Others #> 3617 2012 837674 816254 Others #> 3618 2001 832291 816202 Others #> 3619 2014 843776 813817 Others #> 3620 2008 843776 813817 Others #> 3621 2001 834414 816214 Others #> 3622 2010 834414 816214 Others #> 3623 2012 836386 815500 Others #> 3624 2012 837018 815450 Others #> 3625 2000 833985 816046 Others #> 3626 2008 835142 811825 Others #> 3627 2007 832974 816547 Others #> 3628 2010 836752 815327 Others #> 3629 2013 836752 815327 Motorcyle #> 3630 2002 0 0 Others #> 3631 1999 840058 816844 Others #> 3632 2013 840058 816844 Others #> 3633 2013 0 0 Motorcyle #> 3634 2010 834159 816216 Others #> 3635 2008 834159 816216 Others #> 3636 2008 834159 816216 Others #> 3637 2005 831087 816018 Others #> 3638 2008 835602 815541 Others #> 3639 2013 835602 815541 Others #> 3640 2001 832192 812461 Others #> 3641 1997 836320 812405 Others #> 3642 2006 836320 812405 Others #> 3643 2002 835260 814582 Others #> 3644 2003 835260 814582 Others #> 3645 2013 838170 815230 Others #> 3646 2003 836027 815550 Others #> 3647 2003 836027 815550 Others #> 3648 2006 836960 814497 Others #> 3649 1995 836960 814497 Motorcyle #> 3650 2001 833733 816568 Others #> 3651 2001 836715 815792 Others #> 3652 2004 836715 815792 Others #> 3653 NA 0 0 Others #> 3654 2013 834332 818285 Others #> 3655 2001 0 0 Others #> 3656 2012 0 0 Others #> 3657 2006 838410 817156 Motorcyle #> 3658 2007 838410 817156 Others #> 3659 2001 837135 816066 Others #> 3660 2003 837135 816066 Others #> 3661 <NA> 837135 816066 Others #> 3662 <NA> 837135 816066 Others #> 3663 2004 837135 816066 Others #> 3664 2007 837135 816066 Others #> 3665 2011 837135 816066 Others #> 3666 1996 835758 812410 Others #> 3667 2002 835758 812410 Others #> 3668 2008 835758 812410 Others #> 3669 2010 835758 812410 Others #> 3670 2000 835758 812410 Others #> 3671 2005 835831 815404 Others #> 3672 1998 835831 815404 Others #> 3673 2009 838224 816765 Others #> 3674 2011 838224 816765 Others #> 3675 2014 838224 816765 Others #> 3676 2013 0 0 Others #> 3677 2010 836963 815451 Others #> 3678 1998 836963 815451 Others #> 3679 2005 840302 816072 Others #> 3680 2010 837873 816069 Others #> 3681 2006 833701 815824 Others #> 3682 2001 834379 815690 Others #> 3683 2008 834379 815690 Others #> 3684 2010 833681 816364 Others #> 3685 2004 0 0 Others #> 3686 2002 0 0 Others #> 3687 2011 833988 816106 Others #> 3688 2002 0 0 Others #> 3689 2008 834526 815750 Others #> 3690 2012 0 0 Others #> 3691 2001 0 0 Others #> 3692 2009 0 0 Others #> 3693 2009 838541 816897 Others #> 3694 2003 832207 816253 Others #> 3695 2011 832207 816253 Others #> 3696 2008 0 0 Others #> 3697 2008 837091 813890 Others #> 3698 2014 837091 813890 Others #> 3699 1998 834141 812013 Others #> 3700 1997 836491 815761 Motorcyle #> 3701 2011 833787 815764 Others #> 3702 2003 834630 812034 Motorcyle #> 3703 2013 0 0 Others #> 3704 2001 0 0 Others #> 3705 2001 841957 817926 Others #> 3706 2006 841957 817926 Others #> 3707 2013 835171 815346 Others #> 3708 2001 835171 815346 Others #> 3709 2004 836719 815470 Others #> 3710 2013 836719 815470 Others #> 3711 2012 836904 816104 Others #> 3712 2014 836904 816104 Others #> 3713 1996 831446 816043 Others #> 3714 2008 834549 811930 Others #> 3715 2002 834549 811930 Others #> 3716 2001 836053 815433 Others #> 3717 2000 0 0 Others #> 3718 2006 831527 815444 Others #> 3719 2000 831527 815444 Others #> 3720 2013 0 0 Others #> 3721 1997 0 0 Others #> 3722 2003 836936 815457 Others #> 3723 2010 834283 812165 Others #> 3724 2001 832469 816315 Others #> 3725 2011 836652 815767 Motorcyle #> 3726 2006 836652 815767 Others #> 3727 2002 836652 815767 Others #> 3728 2006 838607 816892 Others #> 3729 NA 833107 815509 Pedal Cycle #> 3730 2006 836356 815369 Others #> 3731 2010 841673 815381 Others #> 3732 2000 843296 814105 Others #> 3733 2013 0 0 Others #> 3734 2012 0 0 Others #> 3735 2008 0 0 Others #> 3736 2009 843347 814252 Motorcyle #> 3737 2000 0 0 Others #> 3738 2013 0 0 Others #> 3739 2010 842709 815436 Motorcyle #> 3740 2008 836564 815990 Motorcyle #> 3741 2002 0 0 Others #> 3742 1996 0 0 Motorcyle #> 3743 2010 832953 816350 Others #> 3744 1998 834331 816048 Others #> 3745 2011 0 0 Others #> 3746 2014 0 0 Motorcyle #> 3747 2003 834189 815498 Others #> 3748 2002 834189 815498 Others #> 3749 2001 836956 814497 Others #> 3750 2011 836956 814497 Others #> 3751 1998 841062 815781 Others #> 3752 2013 834828 815359 Motorcyle #> 3753 2003 836716 815791 Others #> 3754 2008 836716 815791 Others #> 3755 2005 834191 811474 Others #> 3756 2008 834191 811474 Others #> 3757 2004 841557 813148 Motorcyle #> 3758 2008 842251 813913 Others #> 3759 2013 842251 813913 Motorcyle #> 3760 2009 834376 816225 Motorcyle #> 3761 2012 834376 816225 Others #> 3762 2001 839055 816992 Others #> 3763 1998 839055 816992 Others #> 3764 2000 836073 815429 Others #> 3765 2004 838313 816757 Others #> 3766 2011 842259 814433 Motorcyle #> 3767 2001 0 0 Others #> 3768 2009 0 0 Others #> 3769 NA 836630 814174 Pedal Cycle #> 3770 2009 836601 814768 Others #> 3771 2000 837246 816114 Others #> 3772 2014 837246 816114 Motorcyle #> 3773 2014 833877 815432 Others #> 3774 2005 835903 815064 Motorcyle #> 3775 2009 834991 811630 Motorcyle #> 3776 2013 838390 816922 Others #> 3777 1998 842211 813946 Others #> 3778 2014 0 0 Others #> 3779 2011 0 0 Others #> 3780 2003 0 0 Others #> 3781 2002 836150 815614 Others #> 3782 2012 0 0 Others #> 3783 2001 0 0 Others #> 3784 2013 842708 814493 Others #> 3785 2013 842708 814493 Others #> 3786 2011 835388 815853 Others #> 3787 2008 835388 815853 Motorcyle #> 3788 2001 834472 812102 Others #> 3789 2005 834472 812102 Motorcyle #> 3790 2014 837527 816287 Others #> 3791 2010 837527 816287 Others #> 3792 NA 0 0 Others #> 3793 2010 834561 815897 Others #> 3794 2001 0 0 Others #> 3795 2003 0 0 Motorcyle #> 3796 2013 842474 813828 Motorcyle #> 3797 2013 842474 813828 Others #> 3798 2011 840905 816185 Motorcyle #> 3799 2007 835700 815286 Others #> 3800 2009 837961 811123 Motorcyle #> 3801 2006 837961 811123 Others #> 3802 NA 821017 807788 Pedal Cycle #> 3803 2009 0 0 Others #> 3804 2002 842299 814429 Others #> 3805 2005 836232 815762 Others #> 3806 2006 836232 815762 Others #> 3807 2000 833332 816616 Others #> 3808 2012 833332 816616 Others #> 3809 1999 841478 815650 Others #> 3810 2001 0 0 Others #> 3811 2002 0 0 Others #> 3812 2012 838098 816229 Others #> 3813 2014 836247 815435 Others #> 3814 2000 836498 815743 Others #> 3815 1993 836498 815743 Motorcyle #> 3816 2011 0 0 Others #> 3817 2004 834071 816027 Others #> 3818 2010 836495 812723 Others #> 3819 2004 836495 812723 Others #> 3820 2011 836495 812723 Others #> 3821 2014 839138 816649 Others #> 3822 2010 839138 816649 Others #> 3823 2013 834329 815276 Others #> 3824 1998 0 0 Others #> 3825 NA 838194 816808 Others #> 3826 2003 835683 815732 Others #> 3827 2006 835683 815732 Motorcyle #> 3828 1999 834829 814712 Others #> 3829 1997 839261 817013 Others #> 3830 2013 839261 817013 Others #> 3831 2008 0 0 Others #> 3832 NA 836262 815011 Pedal Cycle #> 3833 NA 836262 815011 Others #> 3834 2011 0 0 Others #> 3835 2001 836639 813559 Others #> 3836 2008 836639 813559 Others #> 3837 2011 837092 813887 Others #> 3838 2004 833660 815515 Others #> 3839 2010 833976 816045 Others #> 3840 2006 837887 815463 Others #> 3841 1997 835933 815588 Others #> 3842 2003 835933 815588 Others #> 3843 2008 0 0 Others #> 3844 2003 0 0 Others #> 3845 1998 0 0 Others #> 3846 2006 0 0 Others #> 3847 2002 0 0 Others #> 3848 2000 836593 815390 Others #> 3849 2012 836593 815390 Others #> 3850 2013 834437 815928 Others #> 3851 2009 831257 815936 Others #> 3852 2013 834059 815598 Others #> 3853 2013 0 0 Others #> 3854 2004 0 0 Others #> 3855 2006 833413 812409 Others #> 3856 2006 0 0 Others #> 3857 2009 0 0 Others #> 3858 2002 0 0 Motorcyle #> 3859 2000 834626 816078 Others #> 3860 2000 834626 816078 Others #> 3861 2010 0 0 Others #> 3862 2012 0 0 Others #> 3863 2008 833472 816323 Others #> 3864 1998 841024 815793 Others #> 3865 2010 0 0 Others #> 3866 1998 842109 814386 Others #> 3867 2003 836047 815430 Others #> 3868 2002 838633 810425 Others #> 3869 2014 838633 810425 Others #> 3870 1999 837677 815540 Others #> 3871 NA 838526 816898 Others #> 3872 2011 832043 816189 Others #> 3873 2005 831341 815981 Others #> 3874 2013 843708 813798 Others #> 3875 2001 831361 816138 Motorcyle #> 3876 2008 831361 816138 Others #> 3877 2011 839790 816949 Others #> 3878 2012 834842 815747 Others #> 3879 2002 837855 816296 Others #> 3880 2001 837855 816296 Others #> 3881 2013 835216 812179 Others #> 3882 1998 836719 815318 Others #> 3883 2000 836719 815318 Others #> 3884 2013 841889 815498 Others #> 3885 2010 841889 815498 Others #> 3886 NA 836085 815323 Others #> 3887 2011 833503 816537 Others #> 3888 NA 835976 815306 Pedal Cycle #> 3889 1997 832414 812561 Others #> 3890 2008 831240 816003 Others #> 3891 1999 837874 816075 Others #> 3892 2000 840790 815974 Others #> 3893 NA 840790 815974 Others #> 3894 2013 834301 815289 Others #> 3895 2002 834301 815289 Others #> 3896 1998 843354 811840 Motorcyle #> 3897 2008 836492 815441 Others #> 3898 NA 838631 817038 Others #> 3899 2012 834034 812240 Others #> 3900 2014 832393 812748 Motorcyle #> 3901 2009 832393 812748 Others #> 3902 2001 836292 815359 Others #> 3903 2001 836277 815140 Others #> 3904 2001 831654 812793 Others #> 3905 2002 836788 815984 Others #> 3906 2001 836788 815984 Others #> 3907 2009 836229 815771 Motorcyle #> 3908 2012 836229 815771 Others #> 3909 2008 837297 816109 Others #> 3910 2001 837297 816109 Others #> 3911 2009 842457 813973 Others #> 3912 2010 837780 814628 Others #> 3913 2001 833917 816086 Others #> 3914 2011 836944 815431 Others #> 3915 2010 836944 815431 Others #> 3916 2001 835720 812400 Others #> 3917 1999 843225 814111 Others #> 3918 2002 843225 814111 Others #> 3919 2011 832114 816444 Others #> 3920 2014 838508 810402 Others #> 3921 2012 838508 810402 Others #> 3922 2013 837649 816583 Others #> 3923 2000 837649 816583 Others #> 3924 2001 835786 815112 Others #> 3925 2013 831787 816124 Others #> 3926 2002 831787 816124 Others #> 3927 2001 831787 816124 Others #> 3928 2001 834173 815819 Others #> 3929 2003 834218 812150 Others #> 3930 2009 834218 812150 Others #> 3931 2000 842179 815943 Others #> 3932 2004 832990 816690 Others #> 3933 2013 832990 816690 Others #> 3934 2002 836858 815877 Others #> 3935 2004 836858 815877 Others #> 3936 2001 837138 813850 Others #> 3937 2001 837138 813850 Others #> 3938 2003 837138 813850 Others #> 3939 2001 835215 812090 Others #> 3940 2004 840717 816593 Others #> 3941 2004 834178 815865 Others #> 3942 2003 833690 816320 Others #> 3943 NA 841495 812943 Pedal Cycle #> 3944 1998 837933 816365 Others #> 3945 2011 837933 816365 Others #> 3946 2008 834312 811488 Motorcyle #> 3947 2014 835939 815365 Others #> 3948 2010 840853 816370 Others #> 3949 2004 840853 816370 Others #> 3950 2012 838957 816594 Others #> 3951 2005 0 0 Motorcyle #> 3952 2007 833851 816170 Others #> 3953 NA 0 0 Others #> 3954 1998 842184 813735 Others #> 3955 1999 835168 815458 Motorcyle #> 3956 2014 834017 814959 Others #> 3957 2014 834017 814959 Others #> 3958 2001 834155 811638 Motorcyle #> 3959 2004 841523 813042 Others #> 3960 2012 841523 813042 Others #> 3961 2013 841523 813042 Others #> 3962 2005 838438 816938 Others #> 3963 2012 837355 815629 Others #> 3964 2013 837355 815629 Others #> 3965 2012 0 0 Others #> 3966 2014 0 0 Others #> 3967 2004 0 0 Motorcyle #> 3968 2001 834467 816168 Others #> 3969 2006 834467 816168 Others #> 3970 2014 835515 815417 Others #> 3971 2006 833310 816418 Others #> 3972 2006 838310 816829 Others #> 3973 2011 836097 815760 Others #> 3974 2012 837483 816205 Others #> 3975 NA 837483 816205 Others #> 3976 2006 837483 816205 Others #> 3977 2010 834826 812192 Others #> 3978 2010 834826 812192 Others #> 3979 2006 839193 816947 Others #> 3980 2010 839193 816947 Motorcyle #> 3981 2000 837169 814617 Others #> 3982 2014 837169 814617 Others #> 3983 2009 837169 814617 Others #> 3984 2005 841096 815690 Others #> 3985 2010 841096 815690 Others #> 3986 2009 835973 815306 Others #> 3987 1999 840438 809855 Others #> 3988 2001 840438 809855 Others #> 3989 2014 840438 809855 Others #> 3990 1996 840438 809855 Others #> 3991 2013 837279 815728 Others #> 3992 1998 838525 816891 Others #> 3993 2013 832845 816697 Others #> 3994 1996 832845 816697 Motorcyle #> 3995 1994 838101 816727 Others #> 3996 2012 838101 816727 Others #> 3997 2011 834430 812091 Motorcyle #> 3998 2006 834052 812061 Others #> 3999 2011 834052 812061 Others #> 4000 2011 834052 812061 Motorcyle #> 4001 2001 0 0 Motorcyle #> 4002 2012 0 0 Others #> 4003 2004 0 0 Others #> 4004 2010 831149 815948 Others #> 4005 2003 839559 816748 Others #> 4006 NA 835473 815407 Others #> 4007 1999 840765 816103 Others #> 4008 2001 834223 815990 Pedal Cycle #> 4009 2007 840957 810359 Others #> 4010 2000 840973 816517 Others #> 4011 2014 839606 809084 Others #> 4012 2012 839606 809084 Motorcyle #> 4013 2006 838775 816871 Others #> 4014 NA 834494 816148 Others #> 4015 1999 834494 816148 Others #> 4016 2001 833409 812233 Others #> 4017 1999 833409 812233 Others #> 4018 2013 833409 812233 Others #> 4019 2002 833409 812233 Others #> 4020 2005 837000 815928 Others #> 4021 2006 837000 815928 Others #> 4022 2013 0 0 Others #> 4023 2011 0 0 Others #> 4024 2011 0 0 Motorcyle #> 4025 2005 0 0 Others #> 4026 1998 836474 815526 Others #> 4027 2003 836474 815526 Others #> 4028 2011 832534 816192 Others #> 4029 2014 832534 816192 Others #> 4030 2002 835555 815780 Others #> 4031 2013 835555 815780 Others #> 4032 2000 836505 815088 Others #> 4033 NA 834724 815853 Pedal Cycle #> 4034 2010 838974 816979 Others #> 4035 1996 832223 816468 Others #> 4036 2011 832223 816468 Others #> 4037 2011 0 0 Others #> 4038 2013 0 0 Others #> 4039 2014 841018 815972 Others #> 4040 2001 841018 815972 Others #> 4041 2007 841434 815515 Others #> 4042 2006 843208 814192 Motorcyle #> 4043 2001 843208 814192 Others #> 4044 2003 843208 814192 Others #> 4045 2014 838578 816163 Others #> 4046 1999 0 0 Others #> 4047 2010 0 0 Motorcyle #> 4048 2010 0 0 Others #> 4049 2005 842571 811424 Others #> 4050 2010 842571 811424 Others #> 4051 2002 834374 816015 Others #> 4052 2010 834374 816015 Others #> 4053 2005 831832 816149 Others #> 4054 2008 831832 816149 Others #> 4055 2011 836632 814525 Motorcyle #> 4056 2013 836632 814525 Others #> 4057 2013 836632 814525 Others #> 4058 2014 832848 816634 Others #> 4059 2012 832848 816634 Motorcyle #> 4060 2007 832848 816634 Others #> 4061 2000 0 0 Others #> 4062 2006 837530 815429 Others #> 4063 2002 839941 816207 Others #> 4064 2010 839941 816207 Others #> 4065 2001 839856 816609 Others #> 4066 2000 834392 815776 Others #> 4067 2014 834392 815776 Others #> 4068 2010 0 0 Others #> 4069 NA 0 0 Others #> 4070 2011 838099 811107 Others #> 4071 2014 838099 811107 Pedal Cycle #> 4072 2003 836391 811910 Motorcyle #> 4073 2014 836391 811910 Others #> 4074 2014 0 0 Motorcyle #> 4075 2001 0 0 Others #> 4076 2004 834415 816222 Others #> 4077 2001 834415 816222 Others #> 4078 2009 837791 816209 Others #> 4079 2006 836058 812499 Others #> 4080 2002 836058 812499 Others #> 4081 2001 836430 815579 Others #> 4082 2011 836430 815579 Motorcyle #> 4083 2002 835547 815771 Others #> 4084 2007 835547 815771 Motorcyle #> 4085 2004 835895 815535 Others #> 4086 2001 831929 816364 Others #> 4087 2000 837786 816208 Others #> 4088 2010 841381 815481 Others #> 4089 2011 834494 816163 Others #> 4090 2001 836153 815623 Others #> 4091 2014 836153 815623 Others #> 4092 2007 836263 815628 Motorcyle #> 4093 NA 836263 815628 Others #> 4094 2001 837613 816561 Others #> 4095 2008 837613 816561 Motorcyle #> 4096 1999 837613 816561 Others #> 4097 2014 840906 811388 Motorcyle #> 4098 2012 835784 812390 Others #> 4099 2011 835784 812390 Others #> 4100 NA 0 0 Others #> 4101 2003 0 0 Others #> 4102 2012 836015 815310 Others #> 4103 2010 0 0 Others #> 4104 2000 0 0 Others #> 4105 2001 837858 816100 Others #> 4106 1998 833995 811431 Others #> 4107 2007 835670 815407 Others #> 4108 2003 835670 815407 Others #> 4109 2001 835755 812402 Others #> 4110 2001 835755 812402 Others #> 4111 2002 835755 812402 Others #> 4112 2012 839471 817150 Others #> 4113 2003 839471 817150 Others #> 4114 2005 839471 817150 Others #> 4115 2014 839471 817150 Others #> 4116 2012 837992 816624 Others #> 4117 2010 0 0 Others #> 4118 2012 837589 815564 Others #> 4119 2002 835305 812253 Others #> 4120 2005 843057 814259 Motorcyle #> 4121 2002 843057 814259 Others #> 4122 2008 0 0 Others #> 4123 2011 0 0 Others #> 4124 2007 0 0 Motorcyle #> 4125 2001 840847 815995 Others #> 4126 1998 840847 815995 Others #> 4127 1999 836173 815632 Others #> 4128 NA 839824 809470 Others #> 4129 2003 839824 809470 Others #> 4130 2014 841296 813243 Motorcyle #> 4131 2013 0 0 Others #> 4132 1998 0 0 Others #> 4133 2012 0 0 Others #> 4134 2008 0 0 Others #> 4135 2002 831598 816287 Others #> 4136 2014 835253 815186 Others #> 4137 2002 835253 815186 Motorcyle #> 4138 2004 835549 815768 Others #> 4139 2002 835549 815768 Others #> 4140 NA 841565 815919 Pedal Cycle #> 4141 2001 841565 815919 Others #> 4142 2008 0 0 Others #> 4143 2008 834543 815640 Others #> 4144 2008 834543 815640 Others #> 4145 2011 834121 814062 Others #> 4146 2010 834121 814062 Others #> 4147 2008 841923 815981 Motorcyle #> 4148 2001 840787 816071 Others #> 4149 2013 836711 815614 Motorcyle #> 4150 2000 838463 817163 Others #> 4151 1998 838463 817163 Others #> 4152 2010 838463 817163 Others #> 4153 2010 839357 809074 Pedal Cycle #> 4154 2001 839357 809074 Others #> 4155 2008 0 0 Others #> 4156 2001 0 0 Others #> 4157 2003 0 0 Others #> 4158 NA 838543 810853 Others #> 4159 2014 836241 812367 Others #> 4160 2011 835281 812255 Motorcyle #> 4161 2009 835281 812255 Others #> 4162 2012 842879 814408 Others #> 4163 2001 834022 816264 Others #> 4164 2011 841548 813201 Motorcyle #> 4165 2004 833353 816378 Others #> 4166 1998 834058 812081 Others #> 4167 2014 838137 816767 Others #> 4168 2001 838137 816767 Others #> 4169 2011 838137 816767 Others #> 4170 2009 838805 817076 Motorcyle #> 4171 2010 835000 812177 Motorcyle #> 4172 NA 820997 807727 Pedal Cycle #> 4173 2001 841144 812453 Others #> 4174 2013 841144 812453 Others #> 4175 2005 836271 815774 Others #> 4176 2013 833860 816365 Others #> 4177 2006 833860 816365 Others #> 4178 2005 838517 816938 Others #> 4179 2014 835908 815070 Others #> 4180 2008 837275 815563 Others #> 4181 2009 837275 815563 Others #> 4182 2007 837296 814317 Others #> 4183 2005 831920 816160 Others #> 4184 2005 0 0 Others #> 4185 2013 0 0 Others #> 4186 2000 836576 814830 Motorcyle #> 4187 2007 0 0 Motorcyle #> 4188 2001 841430 815989 Others #> 4189 2000 831430 815095 Others #> 4190 2013 831430 815095 Others #> 4191 2007 832864 816623 Others #> 4192 NA 832864 816623 Pedal Cycle #> 4193 2011 0 0 Others #> 4194 2001 832706 815969 Others #> 4195 2004 835856 815212 Others #> 4196 2005 838339 813254 Motorcyle #> 4197 2012 833990 816282 Others #> 4198 1998 833478 811704 Others #> 4199 2007 842055 815978 Motorcyle #> 4200 2000 842055 815978 Others #> 4201 2007 832847 816357 Others #> 4202 2006 0 0 Others #> 4203 2013 0 0 Others #> 4204 1996 0 0 Others #> 4205 2011 0 0 Others #> 4206 2005 836019 815834 Others #> 4207 NA 836019 815834 Others #> 4208 2004 842868 813959 Others #> 4209 2014 0 0 Others #> 4210 2003 831189 815997 Others #> 4211 2008 831189 815997 Motorcyle #> 4212 2006 831848 816389 Others #> 4213 2013 831848 816389 Others #> 4214 2007 833251 812202 Others #> 4215 2001 833646 815880 Others #> 4216 2005 836559 815476 Others #> 4217 2010 836559 815476 Others #> 4218 2012 833431 816591 Others #> 4219 2005 831467 816170 Others #> 4220 2006 834462 815929 Others #> 4221 2011 834462 815929 Others #> 4222 2014 836855 815474 Others #> 4223 2012 837902 813091 Others #> 4224 2008 837902 813091 Motorcyle #> 4225 2010 832190 816348 Others #> 4226 2000 836831 815327 Others #> 4227 2011 836831 815327 Others #> 4228 2011 839945 816207 Motorcyle #> 4229 NA 841794 812892 Pedal Cycle #> 4230 2006 837921 816514 Others #> 4231 1998 832306 812552 Others #> 4232 2013 840951 810859 Motorcyle #> 4233 2014 840951 810859 Others #> 4234 2007 832945 816058 Others #> 4235 2010 832945 816058 Motorcyle #> 4236 1995 0 0 Others #> 4237 2000 0 0 Others #> 4238 2012 0 0 Others #> 4239 2013 837745 813617 Others #> 4240 2008 835604 815536 Others #> 4241 2001 837058 813890 Others #> 4242 2012 832705 816447 Others #> 4243 NA 839853 816219 Others #> 4244 NA 839853 816219 Pedal Cycle #> 4245 2000 837695 816284 Others #> 4246 2001 837695 816284 Others #> 4247 1998 832007 816104 Others #> 4248 2012 836866 815668 Others #> 4249 1999 836866 815668 Others #> 4250 2001 0 0 Others #> 4251 2001 0 0 Others #> 4252 2007 838081 815187 Others #> 4253 2014 838081 815187 Others #> 4254 2012 839993 816349 Others #> 4255 2013 834529 815510 Others #> 4256 2012 834529 815510 Others #> 4257 2006 834529 815510 Others #> 4258 2013 835167 815201 Motorcyle #> 4259 2013 837199 815463 Others #> 4260 1999 838350 816973 Others #> 4261 2014 838350 816973 Others #> 4262 NA 832031 812733 Others #> 4263 2007 842928 815013 Others #> 4264 2005 842928 815013 Others #> 4265 2012 831986 816129 Motorcyle #> 4266 1997 831986 816129 Others #> 4267 2010 833874 816198 Others #> 4268 1999 840766 816580 Others #> 4269 2005 840766 816580 Others #> 4270 2001 840766 816580 Others #> 4271 2008 837790 816113 Others #> 4272 2003 831113 814413 Others #> 4273 2003 842523 813942 Others #> 4274 2011 836691 815418 Others #> 4275 2003 836691 815418 Others #> 4276 2014 831631 813891 Others #> 4277 2000 836415 815428 Others #> 4278 NA 836483 815446 Others #> 4279 1998 0 0 Others #> 4280 2008 834442 816163 Motorcyle #> 4281 2006 0 0 Others #> 4282 2001 831891 813067 Others #> 4283 2009 831891 813067 Motorcyle #> 4284 1998 838696 817205 Others #> 4285 2001 838696 817205 Others #> 4286 2004 838696 817205 Others #> 4287 2006 836961 814496 Others #> 4288 2004 836961 814496 Motorcyle #> 4289 2014 840377 816187 Motorcyle #> 4290 2011 832336 816499 Others #> 4291 2006 0 0 Others #> 4292 2011 0 0 Others #> 4293 2008 837545 816392 Others #> 4294 1997 837545 816392 Motorcyle #> 4295 2001 0 0 Others #> 4296 2002 0 0 Others #> 4297 2013 835945 815865 Others #> 4298 NA 835945 815865 Others #> 4299 2003 841143 812454 Others #> 4300 2008 838528 810718 Others #> 4301 2005 838528 810718 Others #> 4302 <NA> 837220 812756 Others #> 4303 <NA> 837220 812756 Others #> 4304 1998 835059 815494 Others #> 4305 2001 835059 815494 Others #> 4306 NA 843961 813117 Pedal Cycle #> 4307 2001 841682 815382 Others #> 4308 2012 836931 815526 Others #> 4309 2002 836931 815526 Others #> 4310 2011 834337 816264 Others #> 4311 2010 840085 816200 Others #> 4312 1998 840959 815950 Others #> 4313 2007 0 0 Others #> 4314 1998 0 0 Others #> 4315 2006 832409 812720 Others #> 4316 2001 832409 812720 Others #> 4317 1997 838682 817185 Motorcyle #> 4318 2011 838682 817185 Others #> 4319 2001 835131 811809 Others #> 4320 2001 840127 816191 Others #> 4321 2005 836967 815615 Others #> 4322 2007 0 0 Others #> 4323 2004 832329 816571 Others #> 4324 2001 832329 816571 Others #> 4325 2005 839635 817057 Motorcyle #> 4326 1997 834012 815308 Motorcyle #> 4327 2002 834416 816446 Others #> 4328 1990 834416 816446 Others #> 4329 2000 835663 815360 Others #> 4330 2002 838530 816482 Others #> 4331 2004 834351 815969 Others #> 4332 2013 834351 815969 Others #> 4333 2000 832384 816193 Others #> 4334 2006 838311 816972 Others #> 4335 2005 838311 816972 Others #> 4336 2007 833645 815882 Others #> 4337 NA 836180 815764 Others #> 4338 2013 834644 815810 Others #> 4339 NA 832860 816553 Pedal Cycle #> 4340 1998 832860 816553 Others #> 4341 NA 838296 816826 Others #> 4342 1998 838296 816826 Others #> 4343 NA 843560 814008 Pedal Cycle #> 4344 2001 843560 814008 Others #> 4345 2009 837756 812000 Others #> 4346 2012 837756 812000 Others #> 4347 2000 833872 816011 Others #> 4348 2014 837014 814555 Others #> 4349 2012 837014 814555 Others #> 4350 2003 0 0 Others #> 4351 2008 835867 815295 Others #> 4352 2001 835728 815406 Others #> 4353 2007 835728 815406 Others #> 4354 2014 834094 815910 Others #> 4355 NA 833909 812244 Others #> 4356 2011 837828 815956 Motorcyle #> 4357 2003 831814 813956 Others #> 4358 2010 842728 809875 Motorcyle #> 4359 2006 833177 815883 Others #> 4360 2009 832315 812847 Others #> 4361 2005 832315 812847 Others #> 4362 1997 832315 812847 Others #> 4363 2014 834244 815858 Others #> 4364 2014 834244 815858 Motorcyle #> 4365 2013 834034 812094 Others #> 4366 2003 835554 815771 Motorcyle #> 4367 2008 831553 813651 Others #> 4368 2013 831553 813651 Others #> 4369 2014 839787 816324 Others #> 4370 1998 833364 811729 Others #> 4371 1997 836592 815629 Others #> 4372 2003 836592 815629 Others #> 4373 2005 835571 812382 Others #> 4374 2013 833048 816648 Others #> 4375 2005 833048 816648 Others #> 4376 2001 836224 815767 Others #> 4377 2008 836224 815767 Motorcyle #> 4378 2000 837786 816743 Others #> 4379 2001 837786 816743 Others #> 4380 2010 837568 815073 Motorcyle #> 4381 1996 831496 814490 Others #> 4382 2001 838746 817211 Others #> 4383 1999 838746 817211 Others #> 4384 2007 835999 815779 Others #> 4385 1999 835999 815779 Others #> 4386 2003 842536 814081 Others #> 4387 2012 0 0 Others #> 4388 2010 833860 815830 Others #> 4389 2012 832116 812478 Others #> 4390 1998 0 0 Others #> 4391 2013 0 0 Others #> 4392 2003 836610 814002 Others #> 4393 2012 836610 814002 Others #> 4394 2013 836610 814002 Others #> 4395 2012 838083 815189 Others #> 4396 2009 839945 816586 Others #> 4397 2006 839945 816586 Motorcyle #> 4398 2010 838612 816895 Others #> 4399 2012 0 0 Motorcyle #> 4400 2008 837328 816125 Others #> 4401 2008 837328 816125 Others #> 4402 2011 840356 816389 Others #> 4403 2002 840356 816389 Others #> 4404 2012 832690 816558 Others #> 4405 2001 831138 816106 Others #> 4406 2012 842650 814693 Motorcyle #> 4407 2002 831720 814204 Others #> 4408 2012 831720 814204 Others #> 4409 2007 832879 816645 Others #> 4410 2012 832879 816645 Others #> 4411 2013 833351 816383 Others #> 4412 1997 837742 815551 Others #> 4413 2013 834362 815965 Others #> 4414 2008 834362 815965 Others #> 4415 2009 837332 815623 Others #> 4416 1999 836610 815472 Others #> 4417 2011 842043 814817 Others #> 4418 2006 842043 814817 Others #> 4419 2001 836948 814357 Others #> 4420 2013 836948 814357 Others #> 4421 2013 837045 815985 Others #> 4422 2014 837045 815985 Motorcyle #> 4423 2008 0 0 Others #> 4424 2012 835407 815531 Others #> 4425 2008 836915 815909 Others #> 4426 2012 836915 815909 Others #> 4427 2014 839936 809567 Motorcyle #> 4428 1997 0 0 Others #> 4429 NA 0 0 Others #> 4430 2005 0 0 Others #> 4431 2004 0 0 Motorcyle #> 4432 1995 0 0 Others #> 4433 2005 0 0 Others #> 4434 2010 838542 816888 Others #> 4435 2001 821010 807868 Others #> 4436 1998 833207 816396 Others #> 4437 2002 837959 816086 Others #> 4438 2014 836998 815690 Others #> 4439 1998 836998 815690 Others #> 4440 2001 832026 816425 Others #> 4441 2005 839832 816932 Motorcyle #> 4442 NA 839832 816932 Others #> 4443 2001 833624 816594 Others #> 4444 2001 837247 815651 Others #> 4445 2006 0 0 Others #> 4446 1998 838310 816387 Others #> 4447 2003 838310 816387 Motorcyle #> 4448 2013 834041 815264 Others #> 4449 2008 834041 815264 Others #> 4450 2001 834041 815264 Others #> 4451 2001 834041 815264 Others #> 4452 2001 834041 815264 Others #> 4453 2001 836979 814476 Others #> 4454 2012 836900 811897 Motorcyle #> 4455 2014 0 0 Others #> 4456 2006 0 0 Others #> 4457 2009 0 0 Others #> 4458 2002 838307 817146 Others #> 4459 2005 838307 817146 Others #> 4460 2010 835887 815425 Others #> 4461 2007 835767 812396 Others #> 4462 2005 835767 812396 Others #> 4463 2010 835767 812396 Others #> 4464 2013 834167 816074 Others #> 4465 1998 838307 817146 Others #> 4466 2011 837837 813157 Motorcyle #> 4467 2011 837687 816279 Others #> 4468 2006 837687 816279 Others #> 4469 2008 836548 815619 Others #> 4470 2005 836221 815337 Others #> 4471 2007 836221 815337 Motorcyle #> 4472 2000 841251 815717 Others #> 4473 1998 834448 816124 Others #> 4474 2009 834448 816124 Others #> 4475 2013 834448 816124 Others #> 4476 1998 0 0 Others #> 4477 NA 0 0 Pedal Cycle #> 4478 2002 842239 813946 Others #> 4479 2003 843487 809966 Motorcyle #> 4480 2009 835199 812133 Others #> 4481 2002 835199 812133 Others #> 4482 2003 834091 812253 Others #> 4483 2011 831491 814638 Others #> 4484 2004 838156 816827 Others #> 4485 2001 840519 815648 Others #> 4486 2013 840519 815648 Motorcyle #> 4487 2011 0 0 Others #> 4488 2010 0 0 Others #> 4489 1999 843434 810002 Others #> 4490 2014 843037 814919 Others #> 4491 2012 837267 815823 Others #> 4492 NA 837087 815951 Motorcyle #> 4493 2000 837087 815951 Others #> 4494 2000 832203 816467 Others #> 4495 2013 838695 816930 Others #> 4496 2013 0 0 Motorcyle #> 4497 2011 0 0 Others #> 4498 2008 833943 816044 Others #> 4499 2000 832264 812546 Others #> 4500 2009 832381 816385 Others #> 4501 2003 836999 815943 Others #> 4502 2008 836999 815943 Others #> 4503 2004 836999 815943 Others #> 4504 2008 836999 815943 Others #> 4505 2002 836999 815943 Others #> 4506 1997 0 0 Others #> 4507 NA 0 0 Others #> 4508 NA 832206 813097 Pedal Cycle #> 4509 2012 836029 815493 Others #> 4510 2005 838565 816886 Others #> 4511 2013 842214 813795 Others #> 4512 2014 833988 815955 Motorcyle #> 4513 2007 833988 815955 Others #> 4514 2004 833988 815955 Others #> 4515 2012 836930 815426 Others #> 4516 2001 834942 814424 Others #> 4517 2011 834942 814424 Others #> 4518 2002 842434 813758 Others #> 4519 NA 834042 815784 Others #> 4520 1997 840884 816030 Others #> 4521 2013 836047 815632 Others #> 4522 2000 836047 815632 Others #> 4523 2012 836047 815632 Others #> 4524 2013 833986 812153 Others #> 4525 <NA> 837765 816725 Others #> 4526 <NA> 837765 816725 Others #> 4527 2005 837765 816725 Motorcyle #> 4528 2004 833505 815777 Others #> 4529 2004 833505 815777 Motorcyle #> 4530 2001 836655 815495 Others #> 4531 2003 838221 817132 Others #> 4532 2001 838221 817132 Others #> 4533 2003 838221 817132 Others #> 4534 NA 0 0 Others #> 4535 NA 838055 816666 Others #> 4536 2005 838055 816666 Others #> 4537 2000 836184 815629 Others #> 4538 2003 836811 815809 Others #> 4539 2005 834831 815990 Motorcyle #> 4540 1998 836726 815514 Others #> 4541 2014 836638 818099 Motorcyle #> 4542 2003 836996 815445 Others #> 4543 2002 839529 817104 Others #> 4544 2004 839529 817104 Others #> 4545 2013 839529 817104 Others #> 4546 2002 839529 817104 Others #> 4547 2010 839529 817104 Others #> 4548 2005 835987 815066 Motorcyle #> 4549 NA 834123 815844 Others #> 4550 1998 835660 815590 Others #> 4551 2014 842765 814289 Others #> 4552 2004 836629 818066 Others #> 4553 2001 836629 818066 Others #> 4554 NA 844163 812416 Pedal Cycle #> 4555 2001 838149 816798 Others #> 4556 2012 831057 815933 Motorcyle #> 4557 2004 831957 813787 Others #> 4558 2001 831957 813787 Others #> 4559 1995 840867 816536 Others #> 4560 2002 840734 816169 Others #> 4561 2007 838595 810986 Motorcyle #> 4562 2010 836470 815098 Others #> 4563 2009 837927 816464 Others #> 4564 2010 833702 816363 Others #> 4565 2013 833615 816178 Others #> 4566 2001 835974 812161 Others #> 4567 2001 838112 816741 Others #> 4568 1998 0 0 Others #> 4569 2000 835122 815630 Others #> 4570 2007 835122 815630 Others #> 4571 2009 837980 816582 Others #> 4572 2011 841209 815211 Motorcyle #> 4573 2001 836113 815610 Others #> 4574 2006 837838 815974 Others #> 4575 2002 837838 815974 Others #> 4576 1997 833992 812113 Others #> 4577 NA 820936 807401 Pedal Cycle #> 4578 2011 832355 816466 Others #> 4579 2010 836986 815956 Others #> 4580 2012 836986 815956 Others #> 4581 2001 839258 817236 Others #> 4582 2001 837345 811260 Others #> 4583 2000 836296 812412 Others #> 4584 2005 836296 812412 Others #> 4585 2013 834368 816230 Others #> 4586 2001 834368 816230 Others #> 4587 1999 839185 821334 Others #> 4588 2007 844877 820460 Others #> 4589 1998 844877 820460 Others #> 4590 NA 840571 820080 Pedal Cycle #> 4591 NA 840571 820080 Pedal Cycle #> 4592 2001 841165 818577 Others #> 4593 2013 841165 818577 Others #> 4594 2002 839485 820115 Others #> 4595 2010 839485 820115 Others #> 4596 2012 838509 822587 Others #> 4597 1997 838509 822587 Others #> 4598 2007 839524 821679 Others #> 4599 2001 839524 821679 Others #> 4600 2012 842996 820176 Others #> 4601 2000 842996 820176 Others #> 4602 2012 840181 819775 Motorcyle #> 4603 NA 840181 819775 Pedal Cycle #> 4604 2002 840892 819132 Others #> 4605 2010 840892 819132 Others #> 4606 2005 845960 827017 Others #> 4607 2003 840439 819925 Others #> 4608 2000 839459 822337 Others #> 4609 1997 837540 822677 Others #> 4610 1997 840211 820062 Others #> 4611 2008 837632 822553 Others #> 4612 2003 837632 822553 Others #> 4613 2010 837632 822553 Others #> 4614 2002 838218 820529 Others #> 4615 2013 838218 820529 Motorcyle #> 4616 2009 839470 821663 Others #> 4617 2001 839470 821663 Others #> 4618 2012 839470 821663 Others #> 4619 2000 846243 826929 Others #> 4620 2005 840152 820348 Others #> 4621 2002 839335 821991 Motorcyle #> 4622 NA 844036 823619 Others #> 4623 2002 839603 820007 Others #> 4624 2003 839603 820007 Others #> 4625 2012 840857 821548 Motorcyle #> 4626 2005 838283 822794 Others #> 4627 2007 838283 822794 Others #> 4628 2005 851335 828958 Others #> 4629 2013 839429 821570 Motorcyle #> 4630 2009 841176 821540 Motorcyle #> 4631 2000 841176 821540 Others #> 4632 NA 845419 818260 Pedal Cycle #> 4633 1996 838824 822113 Others #> 4634 1997 842294 819883 Others #> 4635 2002 842294 819883 Others #> 4636 2003 843655 820535 Others #> 4637 2000 843655 820535 Others #> 4638 NA 843923 820810 Pedal Cycle #> 4639 2002 839935 821617 Others #> 4640 2000 839935 821617 Others #> 4641 2003 841442 820437 Others #> 4642 2002 841442 820437 Others #> 4643 2001 844933 821516 Others #> 4644 1999 844933 821516 Others #> 4645 2005 845092 820031 Others #> 4646 2011 845092 820031 Others #> 4647 2012 840980 818842 Motorcyle #> 4648 1997 839968 820992 Others #> 4649 2003 843283 820107 Motorcyle #> 4650 2004 838636 823331 Others #> 4651 2001 839178 821725 Others #> 4652 1996 844759 819132 Others #> 4653 2000 844759 819132 Others #> 4654 1998 838820 822332 Others #> 4655 2000 838820 822332 Others #> 4656 2001 841156 821309 Others #> 4657 2011 841156 821309 Others #> 4658 2011 845399 820000 Others #> 4659 2004 845399 820000 Others #> 4660 2007 841331 819763 Others #> 4661 2000 845264 819720 Others #> 4662 2002 842517 821659 Others #> 4663 2012 842517 821659 Others #> 4664 2008 841741 819007 Motorcyle #> 4665 2011 847195 819346 Others #> 4666 2000 847195 819346 Others #> 4667 1997 842326 818460 Others #> 4668 2005 840219 820864 Motorcyle #> 4669 2001 840219 820864 Others #> 4670 2011 837800 822519 Others #> 4671 1997 837800 822519 Motorcyle #> 4672 2002 839925 821631 Others #> 4673 2004 839925 821631 Motorcyle #> 4674 2004 838515 822483 Others #> 4675 2012 838515 822483 Others #> 4676 2007 842430 817492 Others #> 4677 NA 845456 818329 Pedal Cycle #> 4678 2013 842487 819232 Others #> 4679 1999 842487 819232 Others #> 4680 2001 842487 819232 Others #> 4681 2007 838717 823953 Others #> 4682 2013 847074 829398 Motorcyle #> 4683 2002 839131 821591 Others #> 4684 2004 839131 821591 Others #> 4685 2007 844137 818405 Others #> 4686 1999 844137 818405 Others #> 4687 NA 842026 819758 Pedal Cycle #> 4688 2011 838304 821769 Motorcyle #> 4689 1997 841703 819362 Others #> 4690 NA 841703 819362 Others #> 4691 2005 841379 819752 Others #> 4692 1997 840152 820335 Others #> 4693 2013 839444 821902 Others #> 4694 2009 838650 823333 Others #> 4695 2011 840151 820362 Others #> 4696 1997 840151 820362 Others #> 4697 2007 844820 825862 Motorcyle #> 4698 1998 844820 825862 Others #> 4699 2002 841723 819374 Others #> 4700 2007 841867 819060 Others #> 4701 2004 844855 819080 Others #> 4702 1993 844855 819080 Others #> 4703 2002 839776 820329 Others #> 4704 2013 839776 820329 Motorcyle #> 4705 2003 846225 826277 Others #> 4706 2008 841415 819242 Others #> 4707 2013 841415 819242 Others #> 4708 1997 840133 820276 Others #> 4709 2010 840133 820276 Others #> 4710 2003 838268 822172 Others #> 4711 2012 838268 822172 Others #> 4712 2006 842150 818538 Others #> 4713 NA 838389 822736 Others #> 4714 2004 838389 822736 Others #> 4715 2007 840735 821570 Motorcyle #> 4716 2008 842384 821600 Motorcyle #> 4717 2013 839824 820595 Motorcyle #> 4718 2000 839728 820242 Others #> 4719 2004 840327 820327 Others #> 4720 2009 841045 819750 Others #> 4721 2010 842249 818399 Motorcyle #> 4722 1999 840689 819598 Others #> 4723 2000 840368 819686 Others #> 4724 1998 841669 819056 Others #> 4725 2005 839344 821764 Others #> 4726 2003 845640 826793 Motorcyle #> 4727 2007 845640 826793 Others #> 4728 2002 838666 822979 Others #> 4729 2001 838666 822979 Others #> 4730 2010 841113 820845 Others #> 4731 2002 840008 819711 Others #> 4732 1997 840008 819711 Others #> 4733 2003 839560 820708 Motorcyle #> 4734 2013 839560 820708 Others #> 4735 NA 843880 821191 Pedal Cycle #> 4736 2001 839310 822203 Others #> 4737 1994 839310 822203 Others #> 4738 2011 848073 817491 Others #> 4739 2001 848073 817491 Others #> 4740 2006 841433 819876 Others #> 4741 1998 841433 819876 Others #> 4742 2005 845002 826204 Others #> 4743 2004 842699 817564 Others #> 4744 1999 838149 823462 Motorcyle #> 4745 NA 841687 819233 Others #> 4746 NA 839078 822693 Pedal Cycle #> 4747 2008 839897 821137 Others #> 4748 1997 839087 823195 Others #> 4749 1999 844748 821981 Others #> 4750 1999 839762 821244 Others #> 4751 1998 842163 818519 Others #> 4752 NA 845269 818762 Pedal Cycle #> 4753 2011 837356 821803 Others #> 4754 1998 837375 822819 Others #> 4755 2002 842389 819701 Others #> 4756 2002 841366 819721 Others #> 4757 2007 842246 819943 Others #> 4758 1995 842246 819943 Others #> 4759 2001 839496 820382 Others #> 4760 2013 844842 819738 Motorcyle #> 4761 2013 841269 820589 Motorcyle #> 4762 2008 841269 820589 Others #> 4763 2012 839538 820742 Others #> 4764 2001 839538 820742 Others #> 4765 2005 837057 822667 Others #> 4766 <NA> 837057 822667 Others #> 4767 <NA> 837057 822667 Others #> 4768 2010 837057 822667 Others #> 4769 2004 837057 822667 Motorcyle #> 4770 2007 837057 822667 Others #> 4771 NA 844603 819727 Pedal Cycle #> 4772 2001 840226 819909 Others #> 4773 1995 840226 819909 Others #> 4774 2001 843379 820346 Others #> 4775 2009 838970 821769 Motorcyle #> 4776 2004 841849 818934 Others #> 4777 1997 841849 818934 Others #> 4778 2012 838492 822015 Others #> 4779 2001 838065 822729 Others #> 4780 2004 839727 821635 Others #> 4781 2005 841010 819178 Others #> 4782 2003 838827 822404 Others #> 4783 NA 841604 819108 Others #> 4784 1998 838043 821761 Others #> 4785 2001 838043 821761 Others #> 4786 2000 842668 818945 Others #> 4787 2006 842419 818008 Others #> 4788 2001 842419 818008 Others #> 4789 1996 841252 819626 Others #> 4790 2009 838457 822280 Others #> 4791 2013 842607 818593 Others #> 4792 NA 844969 818757 Others #> 4793 2001 841401 819213 Others #> 4794 2012 841401 819213 Others #> 4795 NA 840302 819932 Others #> 4796 2001 839298 820288 Others #> 4797 2007 839298 820288 Others #> 4798 2003 838084 821589 Others #> 4799 2004 837375 822169 Others #> 4800 1998 837375 822169 Others #> 4801 2004 842657 818237 Others #> 4802 2011 839156 822052 Motorcyle #> 4803 2002 840314 820291 Others #> 4804 2012 839739 821569 Motorcyle #> 4805 1998 840148 820091 Others #> 4806 2001 841682 819997 Others #> 4807 NA 845171 818939 Pedal Cycle #> 4808 2001 840676 819619 Others #> 4809 2012 840676 819619 Others #> 4810 2010 845227 818797 Others #> 4811 2012 839537 820710 Others #> 4812 2006 839537 820710 Motorcyle #> 4813 2010 840144 821446 Motorcyle #> 4814 2008 840144 821446 Others #> 4815 2001 842384 819579 Others #> 4816 2001 841925 819917 Others #> 4817 NA 841819 820277 Others #> 4818 2008 843771 823805 Motorcyle #> 4819 2010 842282 819197 Motorcyle #> 4820 2005 847937 817863 Motorcyle #> 4821 2007 844928 826050 Others #> 4822 2010 844928 826050 Others #> 4823 2009 841234 819575 Others #> 4824 2003 836908 822752 Others #> 4825 2001 836908 822752 Others #> 4826 2006 836908 822752 Others #> 4827 2008 841509 819403 Others #> 4828 2001 838009 822252 Others #> 4829 2012 837648 823007 Others #> 4830 2004 838482 822401 Others #> 4831 2001 838482 822401 Others #> 4832 1995 844728 820671 Others #> 4833 2011 839089 822143 Others #> 4834 2007 839089 822143 Others #> 4835 2013 842273 818338 Others #> 4836 2012 842273 818338 Motorcyle #> 4837 2005 847224 819284 Others #> 4838 2009 839265 820715 Motorcyle #> 4839 2000 837882 822260 Others #> 4840 1998 837882 822260 Others #> 4841 2006 840390 820414 Others #> 4842 2001 840390 820414 Others #> 4843 2000 841783 818928 Others #> 4844 1996 841783 818928 Others #> 4845 2013 841783 818928 Others #> 4846 2003 844061 822761 Motorcyle #> 4847 2011 842283 819213 Motorcyle #> 4848 2002 840348 820420 Others #> 4849 2013 840467 819420 Others #> 4850 2002 840467 819420 Others #> 4851 2003 840467 819420 Others #> 4852 2009 839315 822206 Motorcyle #> 4853 NA 845352 820969 Pedal Cycle #> 4854 2000 845352 820969 Others #> 4855 NA 845352 820969 Pedal Cycle #> 4856 NA 845569 817495 Pedal Cycle #> 4857 2007 841787 818882 Others #> 4858 2005 838081 821322 Others #> 4859 1996 845508 819706 Others #> 4860 2007 839516 820959 Motorcyle #> 4861 2003 839516 820959 Others #> 4862 2012 844873 820434 Motorcyle #> 4863 2007 844873 820434 Others #> 4864 NA 845342 818552 Pedal Cycle #> 4865 2004 838401 822896 Others #> 4866 NA 845420 818264 Pedal Cycle #> 4867 NA 845420 818264 Pedal Cycle #> 4868 2010 841536 820160 Others #> 4869 2003 840498 823660 Others #> 4870 1998 838094 821337 Others #> 4871 2006 838094 821337 Others #> 4872 1996 839835 821691 Others #> 4873 2003 839835 821691 Others #> 4874 <NA> 839835 821691 Others #> 4875 <NA> 839835 821691 Others #> 4876 NA 840392 824130 Pedal Cycle #> 4877 2005 845386 820004 Others #> 4878 2002 845386 820004 Others #> 4879 1997 840217 820645 Others #> 4880 2004 843974 824175 Others #> 4881 2000 843974 824175 Others #> 4882 2006 844210 822732 Others #> 4883 NA 848222 817624 Pedal Cycle #> 4884 2007 845503 826715 Others #> 4885 1998 841440 821719 Others #> 4886 2003 841440 821719 Others #> 4887 2001 840104 820917 Others #> 4888 1997 838444 822689 Others #> 4889 2010 841141 819373 Others #> 4890 2011 841141 819373 Motorcyle #> 4891 2000 844164 818415 Others #> 4892 2001 840960 821394 Others #> 4893 2003 846441 816203 Others #> 4894 2001 841255 819301 Others #> 4895 2013 845133 820034 Others #> 4896 2004 845133 820034 Others #> 4897 2012 842407 818247 Motorcyle #> 4898 2002 845367 820014 Others #> 4899 2003 841352 819803 Others #> 4900 2001 845122 821246 Others #> 4901 2000 845122 821246 Others #> 4902 2009 840446 821028 Others #> 4903 2003 843738 820372 Others #> 4904 1999 844552 818993 Others #> 4905 2001 844552 818993 Others #> 4906 2007 841445 821695 Motorcyle #> 4907 2001 842730 817490 Others #> 4908 2012 842568 817405 Motorcyle #> 4909 2007 842568 817405 Others #> 4910 2005 845900 819705 Others #> 4911 2011 845900 819705 Motorcyle #> 4912 1999 842614 818303 Others #> 4913 2003 838930 823030 Others #> 4914 2001 838930 823030 Others #> 4915 1997 842833 817666 Others #> 4916 2000 843848 820203 Others #> 4917 2002 837724 822894 Others #> 4918 2008 841204 821513 Motorcyle #> 4919 2004 841204 821513 Others #> 4920 2008 842239 818108 Others #> 4921 2013 842239 818108 Others #> 4922 2004 841602 820061 Others #> 4923 1999 839600 820014 Motorcyle #> 4924 2010 839600 820014 Others #> 4925 2001 840660 819574 Others #> 4926 2011 840660 819574 Motorcyle #> 4927 NA 841925 819904 Others #> 4928 2012 838467 822323 Motorcyle #> 4929 2009 840135 821471 Others #> 4930 2005 840135 821471 Others #> 4931 2000 839528 821703 Others #> 4932 1999 838525 822684 Others #> 4933 2002 841358 821398 Others #> 4934 2001 841358 821398 Others #> 4935 2003 841531 820548 Others #> 4936 2005 841531 820548 Others #> 4937 1999 842077 819590 Others #> 4938 2004 844516 819926 Others #> 4939 1998 844516 819926 Others #> 4940 2008 840803 821388 Others #> 4941 2010 840803 821388 Others #> 4942 2002 840864 819153 Others #> 4943 2008 840864 819153 Others #> 4944 2003 840771 819548 Others #> 4945 1996 840771 819548 Others #> 4946 2004 846242 816873 Others #> 4947 2000 846242 816873 Others #> 4948 2006 839131 821837 Others #> 4949 2001 839131 821837 Others #> 4950 2001 837937 822895 Others #> 4951 1999 845430 821730 Others #> 4952 2005 841162 819518 Others #> 4953 2001 839846 819776 Others #> 4954 2005 839846 819776 Others #> 4955 2000 839075 821868 Others #> 4956 2005 841674 819638 Others #> 4957 1997 840366 820437 Others #> 4958 2000 839645 821652 Others #> 4959 2000 839645 821652 Others #> 4960 2000 837603 822552 Others #> 4961 2012 837603 822552 Others #> 4962 2013 840297 821498 Others #> 4963 2005 839412 820383 Others #> 4964 NA 845037 819956 Pedal Cycle #> 4965 1996 841465 820813 Others #> 4966 2010 846207 817394 Others #> 4967 2011 846207 817394 Others #> 4968 2004 838879 822925 Others #> 4969 2012 839551 820565 Others #> 4970 2012 839551 820565 Others #> 4971 2006 839551 820565 Others #> 4972 2000 844624 820583 Others #> 4973 2000 839879 821107 Others #> 4974 2009 838977 821662 Others #> 4975 NA 842032 819912 Pedal Cycle #> 4976 2012 838525 822683 Motorcyle #> 4977 2005 841589 819189 Others #> 4978 2001 841220 819217 Others #> 4979 2001 839519 822480 Others #> 4980 2013 844805 821812 Others #> 4981 2004 844805 821812 Others #> 4982 2005 844805 821812 Others #> 4983 2010 841466 819979 Others #> 4984 2007 837150 822635 Motorcyle #> 4985 2008 838472 822345 Others #> 4986 2005 838472 822345 Others #> 4987 2003 838117 821643 Others #> 4988 2002 838117 821643 Others #> 4989 2006 838900 820429 Motorcyle #> 4990 2004 839521 822424 Motorcyle #> 4991 2011 837946 822164 Others #> 4992 1994 840373 820749 Motorcyle #> 4993 2008 840373 820749 Others #> 4994 2013 841403 818787 Motorcyle #> 4995 2009 841403 818787 Others #> 4996 2005 838610 823079 Others #> 4997 NA 845342 820972 Pedal Cycle #> 4998 2011 844993 826207 Others #> 4999 2000 844993 826207 Others #> 5000 2011 847480 828582 Motorcyle #> 5001 2004 842397 818640 Others #> 5002 2013 839307 820687 Others #> 5003 2005 839307 820687 Others #> 5004 2011 839307 820687 Others #> 5005 2001 839307 820687 Others #> 5006 2008 839307 820687 Others #> 5007 2012 839287 820199 Motorcyle #> 5008 1998 837333 822956 Others #> 5009 2003 841020 819519 Others #> 5010 2005 838533 823030 Others #> 5011 2007 838533 823030 Motorcyle #> 5012 2001 838907 821767 Others #> 5013 2000 841316 819163 Others #> 5014 2001 840870 820241 Others #> 5015 2004 837202 822778 Motorcyle #> 5016 2008 837202 822778 Others #> 5017 NA 842837 819452 Others #> 5018 2002 845394 819993 Others #> 5019 2001 845394 819993 Motorcyle #> 5020 2012 838785 823434 Motorcyle #> 5021 2012 838785 823434 Others #> 5022 2001 841093 818892 Others #> 5023 2008 841093 818892 Others #> 5024 2000 839316 822256 Others #> 5025 2001 839316 822256 Others #> 5026 NA 844935 819578 Pedal Cycle #> 5027 2008 847271 828770 Others #> 5028 2011 847271 828770 Motorcyle #> 5029 2008 842174 817357 Others #> 5030 2009 840861 818675 Motorcyle #> 5031 1995 841336 820344 Others #> 5032 2009 839477 819935 Others #> 5033 2003 839477 819935 Others #> 5034 2013 838268 821622 Motorcyle #> 5035 1999 838268 821622 Others #> 5036 2005 841662 819036 Others #> 5037 2004 841662 819036 Motorcyle #> 5038 2003 843814 823744 Others #> 5039 2003 843814 823744 Others #> 5040 2010 845426 820023 Others #> 5041 2008 845426 820023 Others #> 5042 2004 841284 820385 Others #> 5043 2002 841683 819557 Others #> 5044 NA 845242 818655 Pedal Cycle #> 5045 2002 842005 819661 Others #> 5046 1999 842278 819232 Motorcyle #> 5047 2003 840928 818880 Others #> 5048 2010 840928 818880 Others #> 5049 2012 842808 819647 Others #> 5050 2003 842808 819647 Others #> 5051 2004 841301 819307 Others #> 5052 1996 839136 821113 Others #> 5053 NA 846126 827953 Pedal Cycle #> 5054 2005 839540 819856 Motorcyle #> 5055 2006 839540 819856 Others #> 5056 2002 841200 819562 Others #> 5057 2012 841200 819562 Others #> 5058 1994 842397 818637 Others #> 5059 2002 842397 818637 Others #> 5060 1996 841962 817781 Others #> 5061 NA 841962 817781 Pedal Cycle #> 5062 1996 839491 820475 Others #> 5063 2013 842228 818790 Others #> 5064 2005 846237 817085 Motorcyle #> 5065 2007 847107 829332 Others #> 5066 2002 847107 829332 Others #> 5067 2006 838949 823035 Others #> 5068 2000 838949 823035 Others #> 5069 1998 838706 822361 Others #> 5070 2013 838706 822361 Others #> 5071 2005 838523 822121 Others #> 5072 2002 838523 822121 Motorcyle #> 5073 2007 842338 818356 Others #> 5074 2006 842338 818356 Others #> 5075 2001 841807 819345 Others #> 5076 2001 841807 819345 Others #> 5077 NA 846512 828029 Pedal Cycle #> 5078 2002 838594 823513 Others #> 5079 2003 845953 827111 Others #> 5080 2003 845132 820066 Others #> 5081 2001 845132 820066 Others #> 5082 2001 838458 822517 Others #> 5083 1997 838458 822517 Others #> 5084 2000 841377 819740 Others #> 5085 2000 841377 819740 Others #> 5086 2011 848774 813943 Others #> 5087 2004 841844 818908 Motorcyle #> 5088 2001 841844 818908 Others #> 5089 2003 841009 819706 Others #> 5090 2001 841009 819706 Others #> 5091 1997 845090 826770 Others #> 5092 2011 845090 826770 Others #> 5093 2001 845333 819519 Others #> 5094 2011 845333 819519 Others #> 5095 NA 839501 820387 Others #> 5096 2009 841553 821695 Others #> 5097 2012 841553 821695 Others #> 5098 1997 845348 820029 Others #> 5099 2013 845348 820029 Others #> 5100 2007 844851 819654 Others #> 5101 1998 844851 819654 Others #> 5102 2010 842565 817235 Others #> 5103 2001 842208 818050 Others #> 5104 2013 842208 818050 Others #> 5105 1995 840348 820391 Others #> 5106 2007 840348 820391 Others #> 5107 2002 840366 820467 Others #> 5108 2004 839283 822216 Others #> 5109 2012 839283 822216 Others #> 5110 1998 837163 822403 Others #> 5111 2001 845374 819816 Others #> 5112 2013 845374 819816 Others #> 5113 2001 838430 822267 Others #> 5114 2009 841772 818967 Motorcyle #> 5115 2010 841772 819945 Others #> 5116 1997 837850 822525 Others #> 5117 NA 844460 820090 Pedal Cycle #> 5118 NA 842256 818354 Pedal Cycle #> 5119 1998 841396 819789 Others #> 5120 2013 844045 822742 Others #> 5121 1997 839226 821122 Others #> 5122 2013 839226 821122 Others #> 5123 2010 839430 820506 Others #> 5124 2010 842482 819354 Others #> 5125 2004 842482 819354 Others #> 5126 2012 839895 819603 Others #> 5127 2001 839895 819603 Others #> 5128 2007 839858 821142 Others #> 5129 2008 839858 821142 Others #> 5130 2010 839858 821142 Others #> 5131 2002 839400 821893 Others #> 5132 2003 839400 821893 Others #> 5133 2003 841347 819796 Others #> 5134 NA 841347 819796 Pedal Cycle #> 5135 2005 840280 820518 Others #> 5136 2011 841351 819228 Others #> 5137 1998 841351 819228 Others #> 5138 2004 840910 818609 Others #> 5139 2006 841172 819840 Motorcyle #> 5140 2002 839356 821981 Others #> 5141 2001 839356 821981 Others #> 5142 2007 844833 825415 Others #> 5143 2005 844833 825415 Others #> 5144 2003 837187 822190 Others #> 5145 1998 840954 821394 Others #> 5146 2013 839079 820637 Motorcyle #> 5147 2002 842224 818493 Others #> 5148 2006 842224 818493 Others #> 5149 2001 842227 819521 Others #> 5150 2005 845392 820010 Motorcyle #> 5151 1997 839473 821684 Others #> 5152 2007 839473 821684 Others #> 5153 2001 843541 822366 Others #> 5154 2007 841187 819609 Others #> 5155 2006 841111 818873 Others #> 5156 2001 841319 819096 Others #> 5157 2001 841589 818634 Others #> 5158 1999 841589 818634 Others #> 5159 2001 841334 819254 Others #> 5160 2010 841334 819254 Others #> 5161 1998 839318 821976 Others #> 5162 2007 842613 818303 Others #> 5163 1998 842613 818303 Others #> 5164 2000 844755 819729 Others #> 5165 2008 844755 819729 Others #> 5166 2013 841649 819005 Others #> 5167 1994 841649 819005 Others #> 5168 2012 841143 819191 Others #> 5169 2001 845413 820035 Others #> 5170 1996 845413 820035 Others #> 5171 2004 841329 820550 Others #> 5172 2011 841329 820550 Others #> 5173 2005 844979 826223 Others #> 5174 2007 839829 821143 Others #> 5175 1995 839829 821143 Others #> 5176 1996 840256 820173 Others #> 5177 2011 837450 822331 Others #> 5178 1998 839373 821499 Others #> 5179 1997 839373 821499 Others #> 5180 2000 843179 820209 Others #> 5181 2000 840604 819283 Others #> 5182 2002 840604 819283 Others #> 5183 2002 844830 825871 Others #> 5184 2005 844830 825871 Motorcyle #> 5185 2008 841386 818776 Motorcyle #> 5186 2001 838432 821625 Others #> 5187 2001 838432 821625 Others #> 5188 2010 838432 821625 Others #> 5189 2001 840707 821663 Others #> 5190 1997 841295 819578 Others #> 5191 1999 839163 821175 Others #> 5192 NA 840384 820875 Pedal Cycle #> 5193 2004 841714 819978 Motorcyle #> 5194 2006 842255 819243 Others #> 5195 2004 842255 819243 Others #> 5196 2006 841218 819070 Others #> 5197 2008 838524 822126 Others #> 5198 2012 838078 821691 Motorcyle #> 5199 2013 842602 819642 Others #> 5200 2002 842602 819642 Others #> 5201 2001 841813 818953 Others #> 5202 <NA> 841813 818953 Others #> 5203 <NA> 841813 818953 Others #> 5204 2011 844890 820436 Others #> 5205 NA 844890 820436 Others #> 5206 2001 841771 818969 Others #> 5207 1999 841771 818969 Others #> 5208 2001 843932 822699 Others #> 5209 2011 841586 819115 Others #> 5210 2004 841586 819115 Others #> 5211 2005 841130 819543 Motorcyle #> 5212 2005 841130 819543 Others #> 5213 2001 841047 818753 Others #> 5214 2006 841047 818753 Others #> 5215 2002 838891 823305 Others #> 5216 1999 839301 822259 Motorcyle #> 5217 2013 839301 822259 Motorcyle #> 5218 2013 838236 821851 Others #> 5219 NA 839038 820802 Others #> 5220 2010 838329 821545 Others #> 5221 2003 838329 821545 Others #> 5222 2012 838533 821657 Others #> 5223 1997 838533 821657 Others #> 5224 2013 840600 819287 Others #> 5225 2004 840600 819287 Others #> 5226 2005 840087 819654 Others #> 5227 2005 840087 819654 Others #> 5228 2002 839743 820023 Motorcyle #> 5229 2012 842223 818000 Others #> 5230 NA 844476 823777 Pedal Cycle #> 5231 2000 845694 819887 Others #> 5232 2011 841197 819351 Others #> 5233 2000 841197 819351 Others #> 5234 2008 841197 819351 Others #> 5235 2011 838628 823332 Others #> 5236 1993 841336 819450 Motorcyle #> 5237 2006 839353 820130 Others #> 5238 1998 839353 820130 Others #> 5239 1998 841653 820550 Others #> 5240 2013 840222 819821 Others #> 5241 2010 840222 819821 Others #> 5242 2003 841217 819691 Others #> 5243 2008 838398 822751 Others #> 5244 2004 840262 821505 Others #> 5245 2011 840262 821505 Others #> 5246 2006 838211 821711 Others #> 5247 2001 838211 821711 Others #> 5248 2008 844773 825101 Others #> 5249 2001 844773 825101 Others #> 5250 2001 844773 825101 Others #> 5251 2007 844773 825101 Others #> 5252 NA 844558 820623 Pedal Cycle #> 5253 2012 838379 822532 Motorcyle #> 5254 2010 845041 819179 Others #> 5255 2000 845041 819179 Others #> 5256 2003 845534 820726 Others #> 5257 2003 845534 820726 Motorcyle #> 5258 2011 841443 821697 Motorcyle #> 5259 2001 840000 820996 Others #> 5260 2006 841031 818968 Others #> 5261 2004 844529 822504 Others #> 5262 2000 844529 822504 Others #> 5263 NA 845424 818270 Pedal Cycle #> 5264 1999 839425 821480 Others #> 5265 2000 839425 821480 Others #> 5266 1995 842143 818896 Others #> 5267 NA 841048 821567 Pedal Cycle #> 5268 2013 841052 820173 Others #> 5269 2004 841052 820173 Others #> 5270 2009 841052 820173 Motorcyle #> 5271 NA 839261 821021 Pedal Cycle #> 5272 NA 839261 821021 Pedal Cycle #> 5273 2004 841388 820857 Motorcyle #> 5274 2005 841388 820857 Others #> 5275 1997 839549 820635 Others #> 5276 2001 839549 820635 Others #> 5277 2008 841163 819380 Others #> 5278 2013 842287 818993 Others #> 5279 2013 842287 818993 Motorcyle #> 5280 2004 838609 823148 Others #> 5281 2011 840192 819894 Others #> 5282 1993 840192 819894 Others #> 5283 2000 840192 819894 Others #> 5284 2000 0 0 Others #> 5285 2005 0 0 Others #> 5286 NA 845407 818238 Pedal Cycle #> 5287 2007 837183 822627 Others #> 5288 2010 837183 822627 Others #> 5289 2003 837183 822627 Others #> 5290 2006 838720 822989 Others #> 5291 2010 840766 819551 Others #> 5292 2013 840998 818574 Others #> 5293 1999 840998 818574 Others #> 5294 2001 840117 820666 Others #> 5295 2013 847543 816511 Motorcyle #> 5296 2007 838937 822232 Others #> 5297 2001 838937 822232 Others #> 5298 2000 845472 819656 Others #> 5299 2000 840792 820188 Others #> 5300 2001 840792 820188 Others #> 5301 1999 840964 819781 Others #> 5302 NA 846025 827264 Others #> 5303 2002 846025 827264 Others #> 5304 NA 845263 817831 Pedal Cycle #> 5305 2004 839794 820218 Others #> 5306 2000 839794 820218 Others #> 5307 2004 842966 820144 Motorcyle #> 5308 2007 842862 820008 Others #> 5309 2000 842862 820008 Others #> 5310 2001 844542 820429 Others #> 5311 2007 844542 820429 Motorcyle #> 5312 2007 845693 818699 Others #> 5313 2010 845693 818699 Others #> 5314 2000 840885 819137 Others #> 5315 2005 840885 819137 Others #> 5316 1999 838525 821994 Others #> 5317 2011 841383 819751 Others #> 5318 2007 838186 821676 Motorcyle #> 5319 2010 845268 821107 Motorcyle #> 5320 2001 845268 821107 Others #> 5321 2003 841169 821465 Others #> 5322 2013 839482 820586 Others #> 5323 2004 839402 822410 Others #> 5324 2012 839290 822208 Motorcyle #> 5325 2007 838336 822204 Others #> 5326 2011 838336 822204 Others #> 5327 2012 838336 822204 Others #> 5328 2012 839233 821362 Motorcyle #> 5329 2008 840826 820003 Others #> 5330 2005 845289 818912 Others #> 5331 2005 839474 820102 Others #> 5332 2004 839474 820102 Others #> 5333 2007 838150 821630 Others #> 5334 2006 838410 821765 Others #> 5335 NA 845388 818450 Pedal Cycle #> 5336 2003 838554 822585 Others #> 5337 2014 838554 822585 Others #> 5338 2005 838186 821398 Motorcyle #> 5339 2000 839429 820049 Others #> 5340 2006 839429 820049 Others #> 5341 2005 844902 819718 Others #> 5342 2000 840399 819840 Others #> 5343 2002 846961 829446 Others #> 5344 2011 846961 829446 Others #> 5345 1996 838179 822427 Others #> 5346 2003 839604 821352 Others #> 5347 1997 839604 821352 Others #> 5348 2002 839604 821352 Others #> 5349 2002 837380 822606 Motorcyle #> 5350 2003 844547 820634 Others #> 5351 2004 840661 819552 Others #> 5352 2005 840661 819552 Others #> 5353 1997 840661 819552 Others #> 5354 2004 840661 819552 Others #> 5355 2008 840661 819552 Others #> 5356 2001 845790 819848 Others #> 5357 2004 842822 819606 Others #> 5358 2005 842822 819606 Others #> 5359 2013 845423 820027 Others #> 5360 2001 845423 820027 Others #> 5361 2009 838510 822664 Others #> 5362 2002 838510 822664 Others #> 5363 2000 845394 819993 Others #> 5364 2009 845394 819993 Others #> 5365 2011 838429 821626 Others #> 5366 2002 838429 821626 Others #> 5367 2006 838095 822364 Others #> 5368 2008 842972 819732 Others #> 5369 2004 842972 819732 Others #> 5370 2001 842972 819732 Others #> 5371 2002 846158 826802 Others #> 5372 2001 846158 826802 Others #> 5373 2011 840712 819303 Others #> 5374 1999 839921 820895 Others #> 5375 2002 839921 820895 Others #> 5376 2001 839921 820895 Others #> 5377 2001 839921 820895 Others #> 5378 2000 841038 819762 Others #> 5379 2009 840215 821725 Motorcyle #> 5380 2003 842715 817553 Others #> 5381 2002 839049 822019 Others #> 5382 2004 839049 822019 Others #> 5383 2002 841320 818817 Others #> 5384 2003 840177 819519 Others #> 5385 2003 840177 819519 Others #> 5386 2008 842166 818997 Motorcyle #> 5387 2011 843112 820227 Motorcyle #> 5388 2001 841108 818979 Others #> 5389 2001 837530 822587 Others #> 5390 2000 837530 822587 Others #> 5391 2001 838988 820446 Others #> 5392 2011 838988 820446 Others #> 5393 2013 838988 820446 Others #> 5394 2001 839509 820295 Others #> 5395 2002 839509 820295 Motorcyle #> 5396 2006 838471 822418 Others #> 5397 2010 839948 819647 Others #> 5398 2001 837931 822520 Others #> 5399 2008 842474 817613 Motorcyle #> 5400 2002 838127 821658 Others #> 5401 2005 838127 821658 Others #> 5402 2011 839180 821244 Others #> 5403 2007 839180 821244 Others #> 5404 2006 842610 817915 Others #> 5405 2003 842610 817915 Others #> 5406 1997 0 0 Others #> 5407 2004 0 0 Others #> 5408 2002 845394 819839 Others #> 5409 1998 845394 819839 Others #> 5410 1998 845394 819839 Others #> 5411 NA 845425 818273 Pedal Cycle #> 5412 1996 839883 821074 Others #> 5413 2003 842589 818394 Others #> 5414 NA 845816 817582 Pedal Cycle #> 5415 2009 839554 822701 Motorcyle #> 5416 2007 840146 821611 Others #> 5417 2002 840146 821611 Others #> 5418 2008 840146 821611 Others #> 5419 2001 840168 820739 Others #> 5420 2008 840168 820739 Others #> 5421 2010 0 0 Others #> 5422 2011 0 0 Others #> 5423 2004 845412 826623 Others #> 5424 2000 845412 826623 Others #> 5425 1998 841423 819860 Others #> 5426 2004 841423 819860 Others #> 5427 2000 0 0 Others #> 5428 2007 841092 819582 Others #> 5429 2012 839745 822422 Others #> 5430 2005 839745 822422 Others #> 5431 2001 840952 818580 Others #> 5432 2003 840952 818580 Others #> 5433 2012 843850 820244 Motorcyle #> 5434 2008 839356 820945 Others #> 5435 2002 839356 820945 Others #> 5436 2001 839218 823006 Others #> 5437 1999 0 0 Others #> 5438 2002 841009 821515 Others #> 5439 2000 841009 821515 Others #> 5440 2008 840090 820838 Others #> 5441 2012 840090 820838 Others #> 5442 2001 838966 822053 Others #> 5443 2014 838966 822053 Others #> 5444 2001 844438 818977 Others #> 5445 1997 844438 818977 Others #> 5446 2008 840699 819598 Others #> 5447 2013 843980 824166 Motorcyle #> 5448 2010 843980 824166 Motorcyle #> 5449 1998 841139 820914 Others #> 5450 2004 841139 820914 Others #> 5451 1999 844368 820644 Others #> 5452 NA 840012 820985 Pedal Cycle #> 5453 2013 840410 819665 Others #> 5454 2007 840410 819665 Others #> 5455 2005 840410 819665 Others #> 5456 NA 840410 819665 Others #> 5457 2002 842884 817414 Others #> 5458 2013 842884 817414 Motorcyle #> 5459 2005 841199 818597 Others #> 5460 2001 841199 818597 Others #> 5461 NA 839793 821313 Pedal Cycle #> 5462 2006 841632 819056 Others #> 5463 2010 841632 819056 Others #> 5464 NA 838922 822999 Pedal Cycle #> 5465 2002 846286 828070 Others #> 5466 2013 844029 818741 Others #> 5467 1998 844029 818741 Others #> 5468 NA 844844 819443 Pedal Cycle #> 5469 NA 844844 819443 Pedal Cycle #> 5470 2001 843807 822688 Motorcyle #> 5471 1997 836955 822295 Others #> 5472 2010 836955 822295 Others #> 5473 2009 0 0 Others #> 5474 1999 842247 818407 Others #> 5475 2007 842247 818407 Others #> 5476 2002 0 0 Others #> 5477 2003 0 0 Others #> 5478 NA 838948 822948 Pedal Cycle #> 5479 2004 841784 818924 Others #> 5480 2010 841784 818924 Others #> 5481 2000 840410 819830 Others #> 5482 2001 840410 819830 Others #> 5483 2006 839368 821569 Others #> 5484 2004 839368 821569 Others #> 5485 2012 839033 822363 Others #> 5486 <NA> 846010 827346 Others #> 5487 <NA> 846010 827346 Others #> 5488 2001 840401 823156 Others #> 5489 1997 840924 818878 Others #> 5490 2006 840924 818878 Others #> 5491 2012 842851 819680 Others #> 5492 2001 841031 819608 Others #> 5493 2002 841850 818687 Others #> 5494 1998 840522 821651 Others #> 5495 1993 840522 821651 Motorcyle #> 5496 2012 847229 819266 Others #> 5497 2002 841280 819663 Others #> 5498 2012 818513 822669 Others #> 5499 1997 818513 822669 Others #> 5500 NA 841542 820305 Others #> 5501 2013 0 0 Others #> 5502 2009 843958 818494 Others #> 5503 2012 842327 819286 Others #> 5504 2003 842327 819286 Others #> 5505 1998 842327 819286 Others #> 5506 2002 842327 819286 Others #> 5507 NA 853632 825411 Pedal Cycle #> 5508 2014 839434 822330 Motorcyle #> 5509 2000 839434 822330 Others #> 5510 2012 847612 816354 Motorcyle #> 5511 2001 838324 821470 Others #> 5512 2000 841438 819886 Others #> 5513 2013 838994 822390 Others #> 5514 2001 838994 822390 Others #> 5515 NA 844463 818959 Pedal Cycle #> 5516 NA 841541 819906 Pedal Cycle #> 5517 2011 844935 819731 Motorcyle #> 5518 2006 838573 821671 Motorcyle #> 5519 2001 838573 821671 Others #> 5520 2000 839401 821941 Others #> 5521 2000 839050 822173 Others #> 5522 2002 839050 822173 Others #> 5523 2009 843536 822359 Motorcyle #> 5524 2004 843536 822359 Others #> 5525 2006 841799 818995 Motorcyle #> 5526 2005 841403 820214 Others #> 5527 2011 841410 819816 Others #> 5528 2007 840956 819536 Motorcyle #> 5529 1997 841584 820554 Motorcyle #> 5530 2006 841584 820554 Others #> 5531 2001 840292 821075 Others #> 5532 NA 840536 819197 Pedal Cycle #> 5533 NA 845441 818307 Pedal Cycle #> 5534 NA 841886 819819 Pedal Cycle #> 5535 2007 842404 817724 Others #> 5536 2014 842404 817724 Motorcyle #> 5537 2009 842784 817381 Motorcyle #> 5538 2004 842784 817381 Others #> 5539 2002 841223 819395 Others #> 5540 2003 843902 823980 Others #> 5541 2003 842178 818866 Others #> 5542 2001 841162 819030 Others #> 5543 2000 841162 819030 Others #> 5544 2013 838049 822507 Motorcyle #> 5545 2007 840151 820281 Others #> 5546 2009 840151 820281 Motorcyle #> 5547 1991 843905 820796 Motorcyle #> 5548 1998 843905 820796 Others #> 5549 2004 839938 819784 Others #> 5550 2003 839602 820015 Motorcyle #> 5551 2004 839131 820858 Others #> 5552 2013 839131 820858 Others #> 5553 2007 839131 820858 Others #> 5554 1998 839398 821948 Others #> 5555 1996 844756 825047 Others #> 5556 2008 844756 825047 Others #> 5557 1999 844756 825047 Others #> 5558 2002 841803 818954 Motorcyle #> 5559 2004 841513 819532 Others #> 5560 2009 841234 821057 Motorcyle #> 5561 1999 844011 824381 Others #> 5562 1994 844011 824381 Others #> 5563 2001 840619 821564 Others #> 5564 2012 838254 822509 Motorcyle #> 5565 2006 838254 822509 Others #> 5566 2007 838596 822440 Others #> 5567 2011 838596 822440 Others #> 5568 2001 838596 822440 Others #> 5569 NA 840292 822810 Pedal Cycle #> 5570 NA 844277 818456 Pedal Cycle #> 5571 1998 845243 819583 Others #> 5572 2013 838074 821698 Others #> 5573 2001 838074 821698 Others #> 5574 1998 843469 819983 Motorcyle #> 5575 2001 843469 819983 Others #> 5576 2000 839579 821684 Others #> 5577 1994 839579 821684 Others #> 5578 2013 842630 817850 Motorcyle #> 5579 2003 842630 817850 Others #> 5580 2006 838092 822518 Others #> 5581 2011 838092 822518 Motorcyle #> 5582 2005 0 0 Others #> 5583 2002 838774 822488 Others #> 5584 2011 845278 826550 Others #> 5585 2002 845278 826550 Others #> 5586 NA 845384 819279 Pedal Cycle #> 5587 NA 840887 819552 Others #> 5588 2001 838836 822446 Others #> 5589 2013 842855 819677 Others #> 5590 2001 842855 819677 Others #> 5591 1998 844043 818494 Others #> 5592 NA 838164 823357 Pedal Cycle #> 5593 2007 838164 823357 Others #> 5594 1997 841367 819735 Others #> 5595 2012 841367 819735 Others #> 5596 NA 838225 822524 Others #> 5597 NA 844990 818336 Pedal Cycle #> 5598 1996 839728 819791 Others #> 5599 2000 840148 820468 Others #> 5600 2014 837527 822686 Motorcyle #> 5601 2006 837527 822686 Others #> 5602 2011 844743 822138 Others #> 5603 2009 840010 821508 Others #> 5604 2011 840010 821508 Others #> 5605 2000 840625 819019 Others #> 5606 2012 840625 819019 Others #> 5607 2001 840625 819019 Others #> 5608 2004 846191 817470 Others #> 5609 1999 846191 817470 Others #> 5610 2001 846191 817470 Others #> 5611 2013 844486 819960 Others #> 5612 2006 844486 819960 Others #> 5613 2012 844486 819960 Others #> 5614 2002 838361 821825 Others #> 5615 1995 838361 821825 Others #> 5616 NA 846220 817265 Pedal Cycle #> 5617 NA 842513 817548 Pedal Cycle #> 5618 2000 838145 822732 Others #> 5619 1998 838145 822732 Others #> 5620 2009 845429 819191 Motorcyle #> 5621 2012 846086 826778 Others #> 5622 NA 845225 818606 Pedal Cycle #> 5623 1998 0 0 Others #> 5624 2000 838642 822965 Others #> 5625 2004 838642 822965 Others #> 5626 2003 841751 819243 Others #> 5627 2000 841751 819243 Others #> 5628 2004 838518 822587 Others #> 5629 2013 838518 822587 Others #> 5630 2009 842119 817805 Others #> 5631 2012 842119 817805 Others #> 5632 2002 838174 821888 Others #> 5633 2002 838790 823427 Others #> 5634 2004 841557 820777 Others #> 5635 NA 845074 819918 Pedal Cycle #> 5636 NA 845074 819918 Pedal Cycle #> 5637 NA 845576 818676 Pedal Cycle #> 5638 2001 844013 824391 Others #> 5639 2004 844013 824391 Motorcyle #> 5640 2011 838865 822286 Others #> 5641 2003 837525 822689 Others #> 5642 NA 845271 818284 Pedal Cycle #> 5643 1998 841665 819708 Others #> 5644 1997 844250 819991 Others #> 5645 2002 842829 820003 Others #> 5646 2003 842829 820003 Others #> 5647 2001 839823 820332 Others #> 5648 2011 846228 817365 Motorcyle #> 5649 1999 846392 816512 Others #> 5650 2001 846392 816512 Others #> 5651 2003 839107 820435 Others #> 5652 2012 838317 821954 Others #> 5653 2001 842195 818996 Others #> 5654 2003 842701 818206 Others #> 5655 2012 842701 818206 Others #> 5656 NA 852274 831612 Pedal Cycle #> 5657 2001 841753 820521 Others #> 5658 2005 841753 820521 Others #> 5659 NA 845051 819489 Pedal Cycle #> 5660 1994 838519 822713 Others #> 5661 2013 838519 822713 Others #> 5662 NA 847026 819660 Pedal Cycle #> 5663 NA 847933 817864 Pedal Cycle #> 5664 2005 0 0 Others #> 5665 2009 841112 819403 Others #> 5666 2001 840686 820187 Others #> 5667 2002 840686 820187 Others #> 5668 2002 839469 821734 Others #> 5669 2001 843839 823731 Others #> 5670 2003 844696 819740 Others #> 5671 2011 843461 820035 Others #> 5672 2013 843461 820035 Others #> 5673 2010 843461 820035 Others #> 5674 2010 841128 821719 Others #> 5675 2000 843793 818364 Others #> 5676 2013 839330 822234 Others #> 5677 2007 839330 822234 Motorcyle #> 5678 2002 840774 820205 Others #> 5679 2012 842425 819880 Motorcyle #> 5680 2012 842425 819880 Others #> 5681 2013 0 0 Others #> 5682 2013 838601 821666 Motorcyle #> 5683 2001 846726 828423 Others #> 5684 NA 846726 828423 Pedal Cycle #> 5685 2001 838705 822993 Others #> 5686 2013 838705 822993 Others #> 5687 2008 844090 822776 Motorcyle #> 5688 2000 0 0 Others #> 5689 2001 0 0 Others #> 5690 2013 844979 818483 Others #> 5691 2010 844979 818483 Others #> 5692 1997 840163 821471 Others #> 5693 2010 840163 821471 Others #> 5694 2007 840094 821605 Motorcyle #> 5695 2000 840094 821605 Others #> 5696 2010 841392 819799 Others #> 5697 2013 842286 818424 Others #> 5698 2007 842286 818424 Motorcyle #> 5699 NA 837736 821712 Motorcyle #> 5700 2013 837771 821876 Motorcyle #> 5701 2004 837771 821876 Others #> 5702 1999 838585 822534 Others #> 5703 2000 841078 819595 Others #> 5704 2010 838721 821836 Others #> 5705 2013 846048 827111 Others #> 5706 2001 846048 827111 Others #> 5707 2013 840121 820774 Others #> 5708 2005 839017 820434 Others #> 5709 2012 839017 820434 Others #> 5710 2007 838310 822523 Others #> 5711 1993 838310 822523 Others #> 5712 1999 846285 816141 Others #> 5713 2005 846285 816141 Others #> 5714 2007 0 0 Others #> 5715 2000 837818 822526 Others #> 5716 1997 824452 819940 Others #> 5717 2005 841100 818574 Others #> 5718 2010 841100 818574 Others #> 5719 2001 839505 822686 Others #> 5720 2003 839505 822686 Others #> 5721 1997 841430 818237 Others #> 5722 1999 841430 818237 Others #> 5723 2010 844485 820588 Others #> 5724 2000 837905 822519 Others #> 5725 2003 837905 822519 Others #> 5726 2013 837905 822519 Others #> 5727 1997 837905 822519 Others #> 5728 1999 837905 822519 Others #> 5729 NA 843975 820814 Pedal Cycle #> 5730 2002 840296 821770 Others #> 5731 NA 848284 831955 Pedal Cycle #> 5732 2000 841653 819182 Others #> 5733 NA 840660 819632 Others #> 5734 2000 844490 820595 Others #> 5735 2006 841383 819495 Others #> 5736 2006 842314 819261 Others #> 5737 2002 842314 819261 Others #> 5738 2004 842314 819261 Others #> 5739 2003 842314 819261 Others #> 5740 2008 842314 819261 Others #> 5741 1998 842314 819261 Others #> 5742 2006 842314 819261 Others #> 5743 2001 844052 820248 Others #> 5744 2001 844052 820248 Others #> 5745 2013 839899 820766 Motorcyle #> 5746 2010 841139 819366 Others #> 5747 2002 841139 819366 Others #> 5748 1999 841139 819366 Others #> 5749 1996 838234 822505 Others #> 5750 1998 839732 821625 Others #> 5751 1997 839732 821625 Others #> 5752 2000 838975 822053 Others #> 5753 2013 838975 822053 Others #> 5754 1995 838975 822053 Others #> 5755 1996 841629 819153 Others #> 5756 2007 841629 819153 Motorcyle #> 5757 2009 841704 819442 Others #> 5758 1988 841466 820744 Motorcyle #> 5759 2003 841512 819206 Others #> 5760 2010 841512 819206 Others #> 5761 2001 839038 822414 Others #> 5762 2005 839038 822414 Others #> 5763 2008 842687 819315 Others #> 5764 2010 841144 821288 Others #> 5765 2000 841144 821288 Others #> 5766 2013 842575 818006 Motorcyle #> 5767 2002 841126 819439 Others #> 5768 2003 841126 819439 Others #> 5769 2000 838491 822570 Motorcyle #> 5770 2005 837940 822509 Others #> 5771 1999 837940 822509 Others #> 5772 2008 841440 820120 Others #> 5773 1999 841440 820120 Others #> 5774 2007 841092 819543 Others #> 5775 2004 845396 819812 Others #> 5776 2001 845396 819812 Others #> 5777 2007 842312 818390 Others #> 5778 2001 842312 818390 Others #> 5779 2002 839518 821714 Others #> 5780 2003 845039 818964 Others #> 5781 1997 839393 821890 Motorcyle #> 5782 2008 840883 821300 Others #> 5783 2001 840883 821300 Others #> 5784 NA 843762 820627 Pedal Cycle #> 5785 2000 843981 824199 Others #> 5786 1993 843981 824199 Others #> 5787 2004 846216 819979 Others #> 5788 2002 846216 819979 Others #> 5789 2006 839574 820024 Others #> 5790 2001 839574 820024 Others #> 5791 2004 838911 821771 Others #> 5792 2002 0 0 Others #> 5793 1999 0 0 Others #> 5794 2011 842029 817947 Others #> 5795 2002 842029 817947 Others #> 5796 2010 839777 821228 Others #> 5797 2011 839777 821228 Others #> 5798 2001 839777 821228 Others #> 5799 2000 839790 821703 Others #> 5800 2012 0 0 Others #> 5801 2011 843869 820229 Others #> 5802 2001 843869 820229 Others #> 5803 2010 843869 820229 Others #> 5804 2007 839462 821795 Others #> 5805 2006 839462 821795 Others #> 5806 2000 839462 821795 Others #> 5807 2013 839462 821795 Others #> 5808 2011 844891 818896 Others #> 5809 2001 839839 820330 Others #> 5810 2014 839839 820330 Others #> 5811 1998 0 0 Others #> 5812 NA 845285 817714 Pedal Cycle #> 5813 1997 838836 822116 Others #> 5814 NA 845563 819414 Pedal Cycle #> 5815 2003 844243 824585 Motorcyle #> 5816 2011 845412 819991 Others #> 5817 2001 845412 819991 Others #> 5818 1997 838170 821419 Others #> 5819 2006 838170 821419 Others #> 5820 2008 841774 818938 Motorcyle #> 5821 1997 842597 818404 Others #> 5822 2004 840598 819424 Motorcyle #> 5823 NA 839292 820455 Pedal Cycle #> 5824 1997 839292 820455 Others #> 5825 NA 842317 819836 Others #> 5826 2000 0 0 Others #> 5827 2002 841675 819611 Others #> 5828 2012 844628 819051 Others #> 5829 1996 840161 820248 Others #> 5830 1999 0 0 Motorcyle #> 5831 2011 840299 820270 Others #> 5832 2004 841754 819013 Others #> 5833 2008 839725 821265 Others #> 5834 1997 839725 821265 Others #> 5835 2012 841450 818161 Others #> 5836 2013 841450 818161 Others #> 5837 1998 845398 819472 Others #> 5838 2001 840690 819603 Others #> 5839 2013 837071 822404 Others #> 5840 2009 837023 822600 Others #> 5841 2013 837023 822600 Others #> 5842 2010 838114 821657 Others #> 5843 2012 838114 821657 Others #> 5844 1998 838114 821657 Others #> 5845 2011 842272 817380 Others #> 5846 2013 842272 817380 Others #> 5847 2011 842272 817380 Others #> 5848 2008 839256 822740 Others #> 5849 2012 839256 822740 Others #> 5850 2005 838382 821908 Others #> 5851 1998 838382 821908 Others #> 5852 2004 838319 821444 Others #> 5853 2002 838319 821444 Others #> 5854 2001 840533 819601 Others #> 5855 NA 840533 819601 Others #> 5856 2000 838414 821767 Others #> 5857 2013 0 0 Others #> 5858 2013 0 0 Others #> 5859 2012 841649 819165 Motorcyle #> 5860 2001 837391 822865 Others #> 5861 2000 837391 822865 Others #> 5862 2012 840764 819262 Others #> 5863 1998 841281 819667 Others #> 5864 2012 850897 828584 Others #> 5865 2008 844424 820128 Others #> 5866 2002 845261 826410 Others #> 5867 2006 845261 826410 Others #> 5868 2013 841825 818980 Others #> 5869 2008 841825 818980 Others #> 5870 2004 838624 823345 Others #> 5871 2001 838624 823345 Others #> 5872 NA 856576 825151 Pedal Cycle #> 5873 2001 0 0 Others #> 5874 2008 0 0 Motorcyle #> 5875 1999 0 0 Others #> 5876 2001 847588 816465 Others #> 5877 NA 847588 816465 Pedal Cycle #> 5878 NA 844487 818288 Pedal Cycle #> 5879 2009 838170 823204 Motorcyle #> 5880 2013 842695 818686 Motorcyle #> 5881 1992 839744 819841 Others #> 5882 2000 841318 820542 Others #> 5883 NA 841514 820467 Pedal Cycle #> 5884 2010 838828 823390 Motorcyle #> 5885 NA 0 0 Pedal Cycle #> 5886 2000 841336 819416 Others #> 5887 2001 839182 822080 Others #> 5888 2003 839182 822080 Others #> 5889 2013 0 0 Others #> 5890 2000 847423 818785 Others #> 5891 2008 847423 818785 Motorcyle #> 5892 NA 844889 820407 Pedal Cycle #> 5893 2003 844472 826488 Others #> 5894 2006 845434 819248 Motorcyle #> 5895 2001 839264 820194 Others #> 5896 2000 841079 819593 Others #> 5897 2006 0 0 Others #> 5898 2000 0 0 Others #> 5899 2013 844006 822709 Others #> 5900 2004 844006 822709 Motorcyle #> 5901 2001 844006 822709 Others #> 5902 2008 842136 818024 Motorcyle #> 5903 2004 842136 818024 Others #> 5904 2010 0 0 Others #> 5905 2000 838342 821470 Others #> 5906 2007 844916 821573 Others #> 5907 2002 844916 821573 Others #> 5908 2002 842040 819283 Others #> 5909 NA 839355 820165 Pedal Cycle #> 5910 2004 839591 822450 Others #> 5911 2001 839591 822450 Others #> 5912 1996 840145 820131 Others #> 5913 2009 838091 821362 Others #> 5914 2009 841849 818926 Motorcyle #> 5915 2003 0 0 Others #> 5916 2004 0 0 Others #> 5917 NA 846205 827770 Pedal Cycle #> 5918 2001 839329 822252 Others #> 5919 2002 838786 821613 Motorcyle #> 5920 2002 844310 820895 Others #> 5921 2010 844310 820895 Others #> 5922 2004 0 0 Others #> 5923 2012 0 0 Others #> 5924 2008 840150 820284 Others #> 5925 2010 840150 820284 Others #> 5926 2013 838898 823298 Others #> 5927 2006 0 0 Others #> 5928 2003 837411 822596 Others #> 5929 2008 837411 822596 Others #> 5930 2003 841294 820883 Others #> 5931 2001 839451 820144 Others #> 5932 2007 839451 820144 Others #> 5933 2002 840435 820421 Others #> 5934 NA 844600 818583 Pedal Cycle #> 5935 2005 0 0 Others #> 5936 2007 839654 821684 Motorcyle #> 5937 2009 839654 821684 Others #> 5938 NA 851835 832647 Pedal Cycle #> 5939 2010 841608 819067 Others #> 5940 2008 841608 819067 Others #> 5941 2003 840131 819735 Others #> 5942 2011 840131 819735 Others #> 5943 2008 0 0 Others #> 5944 1998 839884 821654 Others #> 5945 2005 839884 821654 Others #> 5946 2000 840038 821618 Others #> 5947 2001 840038 821618 Others #> 5948 2005 840288 819944 Others #> 5949 2005 840288 819944 Others #> 5950 NA 838495 822684 Others #> 5951 2000 837692 822525 Others #> 5952 2004 841059 819700 Others #> 5953 1998 838081 821775 Others #> 5954 2014 841316 818943 Others #> 5955 2008 841316 818943 Others #> 5956 1998 844427 818965 Others #> 5957 2010 837712 822668 Others #> 5958 2013 844629 820580 Others #> 5959 2000 844629 820580 Others #> 5960 NA 0 0 Pedal Cycle #> 5961 2010 838410 821951 Motorcyle #> 5962 2000 838410 821951 Others #> 5963 2004 838602 822946 Others #> 5964 2011 838708 822376 Others #> 5965 2011 838708 822376 Others #> 5966 1999 837375 822811 Others #> 5967 2011 840768 818886 Motorcyle #> 5968 2010 840828 819367 Motorcyle #> 5969 2005 839463 820289 Others #> 5970 2000 839463 820289 Others #> 5971 2014 839344 821157 Others #> 5972 2005 842179 818870 Others #> 5973 1998 842236 817399 Others #> 5974 2000 842236 817399 Others #> 5975 2004 842236 817399 Others #> 5976 2005 842236 817399 Others #> 5977 2013 841339 819242 Others #> 5978 2003 841339 819242 Others #> 5979 2013 0 0 Motorcyle #> 5980 1998 846117 826230 Others #> 5981 1998 846117 826230 Others #> 5982 2001 838508 822544 Others #> 5983 NA 838508 822544 Others #> 5984 2012 842310 819278 Motorcyle #> 5985 2012 839668 821657 Others #> 5986 NA 839668 821657 Others #> 5987 2004 839668 821657 Others #> 5988 2005 839668 821657 Others #> 5989 2001 844429 818984 Others #> 5990 1999 840877 819595 Others #> 5991 2004 840305 819568 Others #> 5992 2007 840305 819568 Others #> 5993 2001 844645 820290 Others #> 5994 2003 839179 827037 Others #> 5995 1990 839179 827037 Motorcyle #> 5996 2000 845437 819623 Others #> 5997 2002 845437 819623 Others #> 5998 2002 841769 818988 Others #> 5999 1995 0 0 Others #> 6000 2003 844516 822624 Others #> 6001 2013 844516 822624 Others #> 6002 2005 841077 819640 Others #> 6003 2014 844486 822542 Motorcyle #> 6004 2001 838346 821677 Others #> 6005 NA 844439 818903 Pedal Cycle #> 6006 2004 839541 820022 Others #> 6007 2002 839541 820022 Others #> 6008 2000 839541 820022 Others #> 6009 NA 844273 822727 Pedal Cycle #> 6010 2001 841525 820793 Others #> 6011 2001 841525 820793 Others #> 6012 2001 842854 819664 Others #> 6013 2014 838077 821705 Motorcyle #> 6014 2001 0 0 Others #> 6015 2007 0 0 Others #> 6016 2009 0 0 Others #> 6017 2005 0 0 Others #> 6018 2012 839854 821702 Others #> 6019 NA 845929 826934 Pedal Cycle #> 6020 2013 846764 828441 Motorcyle #> 6021 2010 0 0 Others #> 6022 2001 0 0 Others #> 6023 2010 0 0 Others #> 6024 2006 0 0 Motorcyle #> 6025 2002 841237 819290 Others #> 6026 2001 841237 819290 Others #> 6027 2002 839847 821143 Others #> 6028 1998 839847 821143 Others #> 6029 2005 839847 821143 Others #> 6030 2003 838298 822517 Motorcyle #> 6031 2009 838298 822517 Others #> 6032 2013 838298 822517 Others #> 6033 NA 844989 826201 Others #> 6034 2006 841344 819656 Motorcyle #> 6035 2005 841344 819656 Others #> 6036 2001 838571 822501 Motorcyle #> 6037 2005 844558 819012 Others #> 6038 2001 844558 819012 Others #> 6039 2006 841673 819031 Others #> 6040 2006 841673 819031 Others #> 6041 1997 845252 818760 Others #> 6042 2001 845252 818760 Others #> 6043 2007 843004 817574 Motorcyle #> 6044 2009 841225 819616 Others #> 6045 2003 838009 822520 Motorcyle #> 6046 2009 838009 822520 Others #> 6047 2013 838009 822520 Others #> 6048 2013 838009 822520 Others #> 6049 <NA> 0 0 Others #> 6050 <NA> 0 0 Others #> 6051 2002 839409 821586 Others #> 6052 2005 839409 821586 Others #> 6053 2003 845856 819599 Motorcyle #> 6054 2012 845856 819599 Others #> 6055 2010 837644 822905 Others #> 6056 1996 841446 819214 Motorcyle #> 6057 2009 845947 815705 Motorcyle #> 6058 2004 838101 821339 Others #> 6059 2013 838101 821339 Others #> 6060 2002 838101 821339 Others #> 6061 2010 838101 821339 Others #> 6062 2001 841457 818923 Others #> 6063 2005 841457 818923 Others #> 6064 2001 837542 822601 Others #> 6065 2001 837542 822601 Others #> 6066 2005 837542 822601 Others #> 6067 2013 837542 822601 Others #> 6068 2009 837542 822601 Others #> 6069 NA 839981 821595 Others #> 6070 2014 0 0 Motorcyle #> 6071 1998 0 0 Others #> 6072 2001 843821 823736 Motorcyle #> 6073 2008 837853 822513 Motorcyle #> 6074 2012 845663 818760 Others #> 6075 2013 847111 829236 Motorcyle #> 6076 2008 847111 829236 Others #> 6077 2004 842695 817388 Others #> 6078 2009 842313 818390 Motorcyle #> 6079 2011 842313 818390 Others #> 6080 2013 845498 819717 Motorcyle #> 6081 2001 844836 825900 Others #> 6082 2002 844836 825900 Motorcyle #> 6083 2002 841053 818569 Others #> 6084 NA 848196 827737 Motorcyle #> 6085 1999 847000 828295 Others #> 6086 NA 847000 828295 Pedal Cycle #> 6087 2008 838462 821471 Others #> 6088 2001 838462 821471 Others #> 6089 2004 842729 818183 Others #> 6090 2004 842729 818183 Others #> 6091 2008 839981 820345 Others #> 6092 2001 840910 820061 Others #> 6093 2002 0 0 Others #> 6094 2008 0 0 Others #> 6095 1999 840931 819459 Others #> 6096 2013 844139 818380 Others #> 6097 NA 844139 818380 Pedal Cycle #> 6098 2013 0 0 Others #> 6099 2005 0 0 Others #> 6100 2005 0 0 Others #> 6101 2013 841427 818792 Motorcyle #> 6102 2013 841390 819218 Motorcyle #> 6103 2009 0 0 Motorcyle #> 6104 2003 845414 820049 Others #> 6105 2002 845414 820049 Others #> 6106 NA 840332 821502 Pedal Cycle #> 6107 NA 844520 819152 Pedal Cycle #> 6108 2002 844520 819152 Others #> 6109 2011 837297 822967 Others #> 6110 2013 840112 820795 Others #> 6111 2006 838225 821468 Motorcyle #> 6112 2012 841268 818865 Others #> 6113 2011 841268 818865 Others #> 6114 2000 838548 821672 Others #> 6115 2011 838548 821672 Others #> 6116 NA 844428 820884 Pedal Cycle #> 6117 2003 839139 821235 Others #> 6118 2001 840392 820413 Others #> 6119 2008 840392 820413 Motorcyle #> 6120 2012 845395 819168 Motorcyle #> 6121 2001 845395 819168 Others #> 6122 2001 843917 820233 Others #> 6123 2001 843917 820233 Others #> 6124 2004 840285 820533 Others #> 6125 2004 840285 820533 Others #> 6126 2002 839649 820064 Motorcyle #> 6127 2014 844830 825419 Others #> 6128 1995 844830 825419 Motorcyle #> 6129 2009 840111 821605 Others #> 6130 2009 840111 821605 Motorcyle #> 6131 2014 845515 819000 Others #> 6132 2000 845515 819000 Others #> 6133 1995 841589 819085 Others #> 6134 2001 841589 819085 Others #> 6135 2001 841589 819085 Others #> 6136 2000 841589 819085 Others #> 6137 1997 0 0 Others #> 6138 2001 843219 822140 Others #> 6139 2002 837503 822961 Others #> 6140 2013 846177 827012 Others #> 6141 2005 846177 827012 Others #> 6142 NA 846051 827249 Pedal Cycle #> 6143 2003 841588 819902 Motorcyle #> 6144 2013 840105 821613 Others #> 6145 2001 840105 821613 Others #> 6146 2004 838265 823413 Others #> 6147 2001 838265 823413 Others #> 6148 1989 838265 823413 Others #> 6149 2007 845130 818833 Motorcyle #> 6150 1998 845130 818833 Others #> 6151 1999 838898 821986 Others #> 6152 2008 846274 816748 Others #> 6153 2013 846274 816748 Others #> 6154 2001 0 0 Others #> 6155 1999 842169 818508 Others #> 6156 2011 842169 818508 Others #> 6157 1999 845417 820024 Others #> 6158 2010 838840 823382 Others #> 6159 2003 838629 821946 Others #> 6160 2005 844440 818949 Others #> 6161 2007 844440 818949 Others #> 6162 2001 845118 820034 Others #> 6163 2005 845118 820034 Others #> 6164 2004 841602 819095 Others #> 6165 2001 841602 819095 Others #> 6166 NA 845292 818007 Pedal Cycle #> 6167 NA 845292 818007 Pedal Cycle #> 6168 2008 838390 821604 Others #> 6169 2013 837826 822929 Motorcyle #> 6170 2001 842599 819099 Others #> 6171 1996 837894 822254 Others #> 6172 2005 840161 819954 Others #> 6173 2003 841976 819261 Others #> 6174 1997 840650 819617 Others #> 6175 2010 840650 819617 Others #> 6176 2005 840865 819593 Others #> 6177 2001 839738 819571 Others #> 6178 NA 839738 819571 Pedal Cycle #> 6179 2002 838234 822627 Others #> 6180 1993 844040 818561 Motorcyle #> 6181 1999 838245 822511 Others #> 6182 2014 838245 822511 Others #> 6183 1997 838245 822511 Others #> 6184 2008 838245 822511 Others #> 6185 2003 838245 822511 Others #> 6186 2008 838245 822511 Others #> 6187 1993 839533 821678 Others #> 6188 1989 839533 821678 Others #> 6189 2010 838429 821627 Others #> 6190 2003 846038 820161 Others #> 6191 2005 846038 820161 Others #> 6192 <NA> 0 0 Others #> 6193 <NA> 0 0 Others #> 6194 1999 843952 823644 Others #> 6195 2012 843952 823644 Others #> 6196 2009 839280 822215 Others #> 6197 2002 839280 822215 Motorcyle #> 6198 2001 835338 841574 Others #> 6199 NA 835338 841574 Others #> 6200 2003 839551 820707 Others #> 6201 2009 839551 820707 Others #> 6202 2010 840750 820781 Others #> 6203 1994 840750 820781 Others #> 6204 2013 842106 818607 Others #> 6205 1998 842106 818607 Others #> 6206 2001 842106 818607 Others #> 6207 2002 837462 822652 Others #> 6208 1995 837462 822652 Others #> 6209 2005 840120 819623 Others #> 6210 2000 842307 818509 Others #> 6211 2012 842307 818509 Others #> 6212 2003 828182 825548 Others #> 6213 2013 0 0 Others #> 6214 2001 0 0 Others #> 6215 2000 0 0 Others #> 6216 2006 842275 818424 Others #> 6217 2001 842275 818424 Others #> 6218 1998 845044 818750 Others #> 6219 1997 837548 822672 Others #> 6220 2002 837990 822898 Others #> 6221 2004 837990 822898 Motorcyle #> 6222 2011 841065 818719 Others #> 6223 2011 841069 819461 Others #> 6224 2010 841662 819733 Others #> 6225 2001 841662 819733 Others #> 6226 NA 838653 821691 Others #> 6227 NA 838653 821691 Pedal Cycle #> 6228 2006 844832 819113 Motorcyle #> 6229 NA 845342 818599 Pedal Cycle #> 6230 2001 841624 818858 Others #> 6231 2007 841624 818858 Others #> 6232 2009 0 0 Others #> 6233 2001 846071 817696 Others #> 6234 2009 846071 817696 Others #> 6235 1989 842153 820040 Others #> 6236 2001 842153 820040 Others #> 6237 2007 839490 822556 Motorcyle #> 6238 2008 839490 822556 Others #> 6239 2002 837140 822745 Others #> 6240 2007 839451 820140 Others #> 6241 2012 839451 820140 Others #> 6242 2005 838858 822462 Others #> 6243 2006 843521 822309 Others #> 6244 2008 843521 822309 Motorcyle #> 6245 2009 840959 819530 Others #> 6246 2005 847490 818320 Motorcyle #> 6247 2004 848993 827925 Others #> 6248 2011 848993 827925 Others #> 6249 2006 841037 819557 Others #> 6250 2001 0 0 Others #> 6251 2011 844301 820905 Others #> 6252 2014 0 0 Motorcyle #> 6253 2004 0 0 Others #> 6254 2010 0 0 Others #> 6255 1998 842124 817994 Others #> 6256 2004 839134 820326 Others #> 6257 2003 844510 824749 Others #> 6258 1997 841739 819968 Others #> 6259 2002 840848 818704 Others #> 6260 NA 845349 817565 Pedal Cycle #> 6261 2008 839837 821115 Others #> 6262 2005 839837 821115 Others #> 6263 2007 839598 821668 Others #> 6264 2013 839598 821668 Others #> 6265 2011 839598 821668 Others #> 6266 NA 845660 819485 Pedal Cycle #> 6267 2013 844057 822757 Motorcyle #> 6268 2004 838392 822904 Others #> 6269 2001 839432 822582 Others #> 6270 2012 846223 816981 Others #> 6271 2010 846223 816981 Others #> 6272 1995 839941 821580 Others #> 6273 2000 839941 821580 Others #> 6274 2000 839941 821580 Others #> 6275 2001 839941 821580 Others #> 6276 2010 841350 819058 Others #> 6277 2011 841350 819058 Others #> 6278 2002 842781 819532 Others #> 6279 2007 840857 819383 Others #> 6280 2001 840857 819383 Others #> 6281 2002 841805 820290 Others #> 6282 NA 845279 818304 Pedal Cycle #> 6283 2005 841134 819377 Others #> 6284 2013 841134 819377 Others #> 6285 2007 841134 819377 Others #> 6286 2002 845621 819963 Others #> 6287 NA 846882 819711 Pedal Cycle #> 6288 2001 846882 819711 Others #> 6289 NA 845303 817625 Pedal Cycle #> 6290 2004 838786 822518 Others #> 6291 NA 846347 830176 Pedal Cycle #> 6292 2007 0 0 Motorcyle #> 6293 2011 0 0 Motorcyle #> 6294 2001 0 0 Others #> 6295 1999 841343 821622 Others #> 6296 2005 841468 818826 Others #> 6297 1999 841468 818826 Others #> 6298 2002 838583 822025 Others #> 6299 2012 838583 822025 Others #> 6300 2013 841144 821413 Others #> 6301 2002 841144 821413 Others #> 6302 2000 846587 828170 Others #> 6303 2007 846587 828170 Others #> 6304 2014 847433 818358 Motorcyle #> 6305 2008 843603 820170 Others #> 6306 2002 843603 820170 Others #> 6307 2013 843603 820170 Others #> 6308 2001 843603 820170 Others #> 6309 2013 839574 820708 Motorcyle #> 6310 2002 839574 820708 Others #> 6311 NA 845373 818450 Pedal Cycle #> 6312 NA 845373 818450 Pedal Cycle #> 6313 2001 839791 821204 Others #> 6314 2002 839791 821204 Others #> 6315 2000 841798 818981 Others #> 6316 2007 0 0 Others #> 6317 2008 840389 820503 Others #> 6318 NA 838229 821820 Others #> 6319 1998 840955 821396 Others #> 6320 2001 840066 819652 Others #> 6321 2010 840066 819652 Others #> 6322 2008 843427 822258 Others #> 6323 2002 841400 819278 Others #> 6324 2006 841400 819278 Others #> 6325 2009 840376 820151 Others #> 6326 2010 837614 822955 Others #> 6327 2000 842411 818261 Others #> 6328 2000 841312 820393 Others #> 6329 2000 840987 818827 Others #> 6330 2003 840987 818827 Others #> 6331 2001 0 0 Others #> 6332 NA 846028 820164 Others #> 6333 2003 838000 822903 Others #> 6334 2005 841241 819384 Others #> 6335 2000 844128 819833 Others #> 6336 2003 0 0 Others #> 6337 NA 844610 819719 Pedal Cycle #> 6338 2006 844821 825827 Others #> 6339 2000 844821 825827 Others #> 6340 2001 844821 825827 Others #> 6341 1996 841400 819821 Others #> 6342 2007 846842 819697 Motorcyle #> 6343 NA 839582 824142 Pedal Cycle #> 6344 2006 841404 818533 Motorcyle #> 6345 2014 841404 818533 Others #> 6346 2001 842093 818726 Others #> 6347 NA 844524 818981 Pedal Cycle #> 6348 NA 845401 819423 Pedal Cycle #> 6349 NA 845401 819423 Pedal Cycle #> 6350 2000 846334 827980 Others #> 6351 2007 839492 823055 Others #> 6352 2010 839492 823055 Others #> 6353 2010 839492 823055 Others #> 6354 NA 838924 822861 Pedal Cycle #> 6355 2005 839052 820393 Others #> 6356 NA 839052 820393 Others #> 6357 2014 838336 821938 Others #> 6358 2009 838902 821756 Others #> 6359 2000 838709 822647 Others #> 6360 2011 838709 822647 Others #> 6361 2013 846616 828224 Others #> 6362 1997 846616 828224 Others #> 6363 2009 841036 819415 Motorcyle #> 6364 2007 841036 819415 Others #> 6365 NA 0 0 Pedal Cycle #> 6366 2001 840841 819002 Others #> 6367 2000 840097 820458 Others #> 6368 1995 840097 820458 Others #> 6369 2008 839291 820679 Others #> 6370 2013 844983 818655 Others #> 6371 2000 839814 821713 Others #> 6372 2012 839814 821713 Others #> 6373 NA 844226 817691 Pedal Cycle #> 6374 2013 838475 821630 Motorcyle #> 6375 2005 838475 821630 Others #> 6376 2011 839721 821226 Motorcyle #> 6377 2000 0 0 Others #> 6378 2013 0 0 Others #> 6379 2002 837162 822626 Others #> 6380 2001 837162 822626 Others #> 6381 2009 841138 821539 Others #> 6382 2001 841138 821539 Others #> 6383 2003 845418 820034 Others #> 6384 2013 845418 820034 Motorcyle #> 6385 2003 0 0 Others #> 6386 2010 843043 820214 Motorcyle #> 6387 2007 843043 820214 Others #> 6388 2012 0 0 Others #> 6389 1999 0 0 Others #> 6390 NA 844431 823089 Pedal Cycle #> 6391 2011 842691 817389 Others #> 6392 2003 841727 819837 Others #> 6393 2007 839505 821438 Others #> 6394 2011 839505 821438 Others #> 6395 2002 839505 821438 Others #> 6396 1997 839505 821438 Others #> 6397 2002 839505 821438 Others #> 6398 2009 841143 819390 Others #> 6399 2002 838617 822399 Others #> 6400 2011 838617 822399 Others #> 6401 2001 838617 822399 Others #> 6402 2005 838617 822399 Others #> 6403 1992 852090 830978 Motorcyle #> 6404 NA 844455 818975 Pedal Cycle #> 6405 1999 841312 819602 Others #> 6406 2011 841070 818791 Others #> 6407 2010 841070 818791 Others #> 6408 2002 0 0 Motorcyle #> 6409 2011 0 0 Others #> 6410 2002 0 0 Motorcyle #> 6411 2013 838302 821544 Others #> 6412 2005 840347 819392 Others #> 6413 NA 845048 819987 Pedal Cycle #> 6414 NA 844149 823539 Pedal Cycle #> 6415 1996 840134 820100 Others #> 6416 1997 837475 822596 Others #> 6417 2010 837475 822596 Others #> 6418 2003 837475 822596 Others #> 6419 2001 837475 822596 Others #> 6420 2002 840388 819492 Others #> 6421 NA 0 0 Pedal Cycle #> 6422 1999 838123 822893 Others #> 6423 2002 839349 821522 Others #> 6424 2005 840876 819591 Others #> 6425 NA 0 0 Others #> 6426 2006 0 0 Others #> 6427 2004 0 0 Others #> 6428 2012 0 0 Others #> 6429 2007 843842 820221 Others #> 6430 2005 843842 820221 Others #> 6431 2013 843842 820221 Others #> 6432 2002 839361 820942 Others #> 6433 2004 839361 820942 Others #> 6434 2012 841777 818925 Motorcyle #> 6435 2014 841559 819913 Motorcyle #> 6436 2005 838065 821306 Others #> 6437 1993 838065 821306 Others #> 6438 2013 839276 822001 Others #> 6439 2005 839276 822001 Others #> 6440 2013 845126 820038 Others #> 6441 2007 845126 820038 Motorcyle #> 6442 2011 842202 818476 Others #> 6443 2008 842202 818476 Others #> 6444 2005 838737 822655 Others #> 6445 2004 838737 822655 Motorcyle #> 6446 2002 840473 823478 Others #> 6447 2012 839325 821552 Others #> 6448 1998 839325 821552 Others #> 6449 2007 838125 821970 Others #> 6450 2014 838125 821970 Motorcyle #> 6451 2014 842570 819381 Motorcyle #> 6452 2010 841318 819618 Others #> 6453 2008 849747 827907 Others #> 6454 NA 849747 827907 Others #> 6455 2010 837163 822628 Others #> 6456 2008 837163 822628 Others #> 6457 2003 840118 820737 Others #> 6458 1997 845118 825728 Others #> 6459 2012 840363 820413 Motorcyle #> 6460 NA 843940 818465 Pedal Cycle #> 6461 NA 853853 825045 Pedal Cycle #> 6462 2001 853853 825045 Others #> 6463 2011 839883 820739 Motorcyle #> 6464 2001 837524 822683 Others #> 6465 2007 837524 822683 Others #> 6466 2004 842296 819069 Others #> 6467 2005 837319 822010 Others #> 6468 2003 839660 821307 Others #> 6469 2007 839660 821307 Others #> 6470 2014 840370 819318 Others #> 6471 2006 840370 819318 Others #> 6472 2002 840370 819318 Others #> 6473 <NA> 840370 819318 Others #> 6474 <NA> 840370 819318 Others #> 6475 2008 840370 819318 Motorcyle #> 6476 2012 840370 819318 Others #> 6477 1999 839671 821676 Others #> 6478 1999 838432 822704 Others #> 6479 1998 839857 820753 Motorcyle #> 6480 NA 839857 820753 Others #> 6481 NA 839230 821078 Pedal Cycle #> 6482 2010 839230 821078 Others #> 6483 2010 844798 819473 Motorcyle #> 6484 NA 845184 818800 Pedal Cycle #> 6485 NA 844614 820715 Pedal Cycle #> 6486 2012 841321 820388 Others #> 6487 2008 840933 819458 Others #> 6488 2013 840933 819458 Others #> 6489 2007 837733 822517 Others #> 6490 2013 837733 822517 Others #> 6491 2008 837733 822517 Others #> 6492 2009 837733 822517 Others #> 6493 2014 838068 822806 Motorcyle #> 6494 2008 838068 822806 Others #> 6495 2001 840163 819523 Others #> 6496 2004 840163 819523 Others #> 6497 2013 846854 819698 Motorcyle #> 6498 NA 844489 818737 Pedal Cycle #> 6499 2007 844517 820469 Others #> 6500 2010 844517 820469 Others #> 6501 2013 840110 820530 Others #> 6502 2002 839244 820931 Motorcyle #> 6503 2011 839244 820931 Others #> 6504 2007 0 0 Others #> 6505 2014 839069 822148 Others #> 6506 2004 839069 822148 Others #> 6507 2008 840178 819687 Others #> 6508 2005 840178 819687 Others #> 6509 NA 845221 831584 Pedal Cycle #> 6510 2008 843640 820522 Others #> 6511 2013 843640 820522 Motorcyle #> 6512 2013 846217 817026 Others #> 6513 2008 846217 817026 Others #> 6514 2002 841751 819375 Others #> 6515 1995 841308 820423 Motorcyle #> 6516 1996 841345 820318 Others #> 6517 2011 838788 823425 Others #> 6518 1995 842048 818989 Motorcyle #> 6519 2009 845694 818674 Others #> 6520 <NA> 845694 818674 Others #> 6521 <NA> 845694 818674 Others #> 6522 2010 839734 819792 Others #> 6523 2013 839734 819792 Others #> 6524 2007 839734 819792 Others #> 6525 2001 839734 819792 Others #> 6526 2007 841668 820002 Others #> 6527 2007 845016 818869 Others #> 6528 1996 842353 821606 Others #> 6529 2002 0 0 Others #> 6530 NA 0 0 Pedal Cycle #> 6531 2000 840250 821504 Others #> 6532 2006 838575 822463 Others #> 6533 2002 838575 822463 Others #> 6534 2006 845681 826633 Motorcyle #> 6535 2011 845681 826633 Others #> 6536 2004 838121 822430 Others #> 6537 1998 838121 822430 Others #> 6538 NA 845297 818939 Pedal Cycle #> 6539 2007 0 0 Motorcyle #> 6540 NA 845438 818302 Pedal Cycle #> 6541 NA 844164 817854 Pedal Cycle #> 6542 2014 837530 822687 Motorcyle #> 6543 2011 837530 822687 Others #> 6544 2001 840449 819544 Others #> 6545 2004 838991 820657 Others #> 6546 2001 838991 820657 Others #> 6547 NA 844380 818138 Pedal Cycle #> 6548 2014 840141 821479 Others #> 6549 NA 840141 821479 Pedal Cycle #> 6550 1998 841313 819268 Others #> 6551 2001 844830 825296 Others #> 6552 2011 844830 825296 Others #> 6553 1998 844011 820833 Others #> 6554 2001 845425 820022 Others #> 6555 2010 845425 820022 Others #> 6556 2002 842558 817360 Others #> 6557 2013 842558 817360 Others #> 6558 2006 840635 819455 Others #> 6559 2010 840635 819455 Others #> 6560 2012 839322 822255 Others #> 6561 2000 840285 820532 Others #> 6562 NA 846033 827277 Pedal Cycle #> 6563 2007 846033 827277 Others #> 6564 2002 841218 819571 Others #> 6565 NA 839289 821133 Others #> 6566 2008 842267 818703 Others #> 6567 2012 842267 818703 Others #> 6568 2014 840701 819324 Others #> 6569 2001 840856 820247 Others #> 6570 NA 844975 819735 Pedal Cycle #> 6571 2001 839568 821666 Others #> 6572 1999 839568 821666 Others #> 6573 2003 839568 821666 Motorcyle #> 6574 2012 0 0 Others #> 6575 2006 839158 820677 Others #> 6576 2008 839158 820677 Others #> 6577 2008 839158 820677 Others #> 6578 2006 839158 820677 Others #> 6579 2001 843295 822170 Others #> 6580 2013 843295 822170 Others #> 6581 2002 839527 820077 Others #> 6582 2010 839527 820077 Others #> 6583 2003 838563 822168 Others #> 6584 2001 842085 819189 Others #> 6585 2010 842085 819189 Others #> 6586 2000 842085 819189 Others #> 6587 1996 840115 820742 Others #> 6588 2011 841081 819233 Others #> 6589 2013 841081 819233 Others #> 6590 2008 841660 819034 Others #> 6591 2012 841660 819034 Motorcyle #> 6592 1998 837272 822612 Others #> 6593 2003 837272 822612 Others #> 6594 NA 843013 818144 Pedal Cycle #> 6595 NA 840254 822482 Pedal Cycle #> 6596 2010 842828 819428 Others #> 6597 2007 842828 819428 Others #> 6598 2013 840957 819529 Others #> 6599 2008 840944 818594 Others #> 6600 2005 840944 818594 Others #> 6601 2001 840944 818594 Others #> 6602 2001 0 0 Motorcyle #> 6603 2005 0 0 Others #> 6604 2008 840910 819548 Others #> 6605 2014 841791 818990 Motorcyle #> 6606 1999 842417 819634 Motorcyle #> 6607 1998 842417 819634 Others #> 6608 2003 838142 821973 Others #> 6609 1997 838142 821973 Others #> 6610 1995 838182 822508 Motorcyle #> 6611 2008 838182 822508 Others #> 6612 2005 842264 819925 Others #> 6613 2010 846128 827053 Others #> 6614 2013 842848 820010 Others #> 6615 2003 837480 822393 Others #> 6616 2012 837480 822393 Others #> 6617 2003 842250 819515 Others #> 6618 2012 839632 821335 Others #> 6619 1990 839632 821335 Others #> 6620 2003 841031 820185 Others #> 6621 2009 839187 821531 Others #> 6622 2004 839187 821531 Others #> 6623 2005 838122 821965 Others #> 6624 2005 838122 821965 Others #> 6625 1998 839718 821690 Others #> 6626 2004 839718 821690 Others #> 6627 NA 843625 820274 Pedal Cycle #> 6628 2000 0 0 Others #> 6629 1997 0 0 Others #> 6630 2001 842073 821612 Others #> 6631 2011 0 0 Others #> 6632 1998 0 0 Motorcyle #> 6633 2012 840855 820245 Others #> 6634 2007 840855 820245 Others #> 6635 NA 844875 820503 Pedal Cycle #> 6636 2014 0 0 Others #> 6637 1997 0 0 Others #> 6638 NA 844365 820320 Pedal Cycle #> 6639 2002 843815 820405 Others #> 6640 2001 843815 820405 Others #> 6641 1999 838315 822194 Others #> 6642 2009 838315 822194 Others #> 6643 2014 842542 818061 Others #> 6644 2000 842542 818061 Others #> 6645 2011 0 0 Others #> 6646 <NA> 840207 819651 Others #> 6647 <NA> 840207 819651 Others #> 6648 2012 842164 818573 Others #> 6649 2007 842164 818573 Others #> 6650 NA 840528 819627 Others #> 6651 NA 839860 818863 Pedal Cycle #> 6652 2014 839860 818863 Others #> 6653 2001 840525 821691 Others #> 6654 1998 840525 821691 Others #> 6655 2013 840525 821691 Others #> 6656 2007 840525 821691 Others #> 6657 NA 847129 829031 Pedal Cycle #> 6658 2013 847616 816534 Others #> 6659 NA 851285 834540 Pedal Cycle #> 6660 2004 840601 819670 Others #> 6661 2005 840601 819670 Others #> 6662 2010 840601 819670 Others #> 6663 2006 837735 821732 Motorcyle #> 6664 2001 837735 821732 Others #> 6665 2006 841768 819008 Others #> 6666 2006 841768 819008 Others #> 6667 NA 844528 818144 Pedal Cycle #> 6668 2001 846409 827292 Others #> 6669 2003 846409 827292 Others #> 6670 2014 842815 819384 Motorcyle #> 6671 2011 838395 822712 Others #> 6672 2004 846189 827001 Others #> 6673 2006 844489 820481 Others #> 6674 1997 838151 821988 Others #> 6675 2008 844475 818970 Motorcyle #> 6676 1998 845462 826681 Others #> 6677 1997 845462 826681 Others #> 6678 2009 0 0 Others #> 6679 1997 0 0 Others #> 6680 2003 845422 820176 Motorcyle #> 6681 2004 841029 819974 Others #> 6682 2008 837734 821721 Motorcyle #> 6683 2000 844733 822040 Others #> 6684 2001 844733 822040 Others #> 6685 2001 842597 819110 Others #> 6686 2014 841199 819561 Motorcyle #> 6687 2005 839622 821316 Others #> 6688 2007 839622 821316 Others #> 6689 2000 837530 822687 Others #> 6690 2011 837530 822687 Others #> 6691 1999 840974 819528 Others #> 6692 2011 841263 818344 Others #> 6693 2002 0 0 Others #> 6694 2010 0 0 Others #> 6695 2014 839456 823073 Others #> 6696 1998 839456 823073 Others #> 6697 2008 838430 823038 Others #> 6698 1998 841379 819341 Others #> 6699 2007 841281 819663 Others #> 6700 2011 847095 819699 Others #> 6701 2005 845973 826993 Others #> 6702 2000 845973 826993 Others #> 6703 2001 845973 826993 Others #> 6704 2001 845283 819723 Others #> 6705 NA 845442 819966 Pedal Cycle #> 6706 NA 845442 819966 Pedal Cycle #> 6707 NA 845442 819966 Pedal Cycle #> 6708 NA 0 0 Others #> 6709 1998 0 0 Others #> 6710 2005 838430 822261 Others #> 6711 1997 838430 822261 Others #> 6712 2000 840683 819607 Others #> 6713 2000 838901 821768 Others #> 6714 2000 838307 821443 Others #> 6715 2000 838307 821443 Others #> 6716 NA 847784 828337 Pedal Cycle #> 6717 2004 839840 821122 Others #> 6718 2001 839840 821122 Others #> 6719 2010 0 0 Motorcyle #> 6720 2011 0 0 Others #> 6721 NA 845595 818640 Others #> 6722 1999 841041 818569 Others #> 6723 1997 842195 819169 Others #> 6724 2012 842195 819169 Others #> 6725 2001 839013 823278 Others #> 6726 2005 839013 823278 Others #> 6727 2001 840053 820176 Others #> 6728 1995 840053 820176 Others #> 6729 NA 844869 819984 Pedal Cycle #> 6730 NA 850256 825562 Others #> 6731 2007 838824 822602 Others #> 6732 2001 838824 822602 Others #> 6733 2012 0 0 Motorcyle #> 6734 2014 837595 822899 Others #> 6735 2011 839617 820567 Others #> 6736 2004 841681 819052 Others #> 6737 2004 847916 817223 Others #> 6738 2001 841129 818655 Motorcyle #> 6739 2008 841129 818655 Others #> 6740 2004 839943 820141 Others #> 6741 NA 839943 820141 Motorcyle #> 6742 2004 838468 821641 Others #> 6743 2006 838468 821641 Motorcyle #> 6744 2004 838468 821641 Others #> 6745 2002 841796 818889 Others #> 6746 2005 841796 818889 Others #> 6747 2002 844403 820048 Others #> 6748 2010 844403 820048 Others #> 6749 2009 844248 820880 Motorcyle #> 6750 2012 849332 827503 Others #> 6751 1996 837624 822558 Others #> 6752 2013 837624 822558 Others #> 6753 2014 837624 822558 Others #> 6754 2003 845891 819744 Others #> 6755 1996 845891 819744 Motorcyle #> 6756 2005 839895 826475 Others #> 6757 2008 839895 826475 Others #> 6758 2013 845143 819438 Others #> 6759 2006 845143 819438 Others #> 6760 2005 838339 821466 Others #> 6761 2009 844769 818587 Motorcyle #> 6762 2009 837479 822888 Others #> 6763 1999 837479 822888 Others #> 6764 2007 842283 818427 Others #> 6765 2013 842283 818427 Others #> 6766 2005 839502 822402 Others #> 6767 2002 839502 822402 Others #> 6768 2002 838976 823033 Others #> 6769 2001 838976 823033 Others #> 6770 2000 847178 828466 Others #> 6771 2011 844687 819773 Others #> 6772 2011 844687 819773 Others #> 6773 1998 845090 820078 Others #> 6774 2004 845090 820078 Motorcyle #> 6775 2001 840126 820767 Others #> 6776 2006 837760 821729 Others #> 6777 2011 837575 822574 Motorcyle #> 6778 2014 839245 820225 Motorcyle #> 6779 2007 839245 820225 Others #> 6780 2011 838012 822246 Others #> 6781 2014 841083 819942 Others #> 6782 2004 844279 819764 Motorcyle #> 6783 2013 842973 817522 Others #> 6784 2014 841156 819341 Motorcyle #> 6785 1999 841156 819341 Others #> 6786 2006 841156 819341 Others #> 6787 NA 839749 819077 Pedal Cycle #> 6788 2013 841344 819230 Others #> 6789 2000 841344 819230 Others #> 6790 2013 842711 817369 Others #> 6791 NA 844502 820469 Others #> 6792 2003 845405 820046 Others #> 6793 2001 841350 819290 Others #> 6794 NA 841350 819290 Pedal Cycle #> 6795 2005 841921 818814 Others #> 6796 2008 839907 819758 Others #> 6797 2013 839907 819758 Others #> 6798 2008 840922 819324 Others #> 6799 2014 840922 819324 Others #> 6800 2006 839335 822243 Others #> 6801 2002 839335 822243 Others #> 6802 2012 841417 820988 Others #> 6803 2003 839684 821308 Motorcyle #> 6804 2014 839338 821967 Others #> 6805 2013 839338 821967 Others #> 6806 2001 838378 822733 Others #> 6807 2014 844812 819095 Motorcyle #> 6808 1996 847445 818352 Others #> 6809 2003 847445 818352 Others #> 6810 2001 843577 822420 Others #> 6811 2001 843577 822420 Others #> 6812 2002 838872 822431 Others #> 6813 2010 842570 819186 Others #> 6814 1998 838092 821921 Others #> 6815 2004 839618 819862 Others #> 6816 2007 839618 819862 Others #> 6817 2008 843090 819873 Motorcyle #> 6818 NA 837853 822508 Others #> 6819 1999 837853 822508 Others #> 6820 2010 846072 816603 Motorcyle #> 6821 2006 837250 822599 Others #> 6822 1999 837250 822599 Others #> 6823 1997 837250 822599 Others #> 6824 2003 837250 822599 Others #> 6825 2002 839101 820505 Others #> 6826 2010 839101 820505 Others #> 6827 2013 843356 819725 Others #> 6828 2012 843356 819725 Motorcyle #> 6829 2005 838590 822451 Others #> 6830 2014 839169 821751 Motorcyle #> 6831 2006 839169 821751 Others #> 6832 2000 841417 821000 Others #> 6833 2013 840572 819620 Others #> 6834 2013 840572 819620 Motorcyle #> 6835 NA 844094 824563 Pedal Cycle #> 6836 2013 841408 821359 Others #> 6837 2004 841408 821359 Others #> 6838 1992 839184 822612 Motorcyle #> 6839 NA 839741 824939 Pedal Cycle #> 6840 NA 840050 820913 Others #> 6841 2013 840741 818866 Others #> 6842 2004 840741 818866 Others #> 6843 2012 841389 819214 Others #> 6844 1996 841389 819214 Others #> 6845 2000 840383 820501 Others #> 6846 2011 843654 824014 Others #> 6847 2009 841355 821541 Motorcyle #> 6848 2007 843715 820473 Motorcyle #> 6849 2001 841321 819622 Motorcyle #> 6850 2013 842320 817810 Others #> 6851 2010 842320 817810 Others #> 6852 2002 840112 820923 Others #> 6853 2005 841084 819664 Others #> 6854 2012 841084 819664 Others #> 6855 2003 839677 819807 Motorcyle #> 6856 2010 0 0 Others #> 6857 2013 0 0 Motorcyle #> 6858 NA 845421 818273 Pedal Cycle #> 6859 1999 838870 823307 Others #> 6860 2008 838151 821623 Motorcyle #> 6861 2003 837596 822564 Others #> 6862 2012 837596 822564 Motorcyle #> 6863 2010 0 0 Motorcyle #> 6864 2010 0 0 Others #> 6865 2005 838518 822659 Others #> 6866 2004 838518 822659 Others #> 6867 2002 846208 817430 Others #> 6868 2006 846208 817430 Others #> 6869 2000 837877 822052 Others #> 6870 2005 838593 822936 Others #> 6871 1997 839486 822573 Others #> 6872 2003 839486 822573 Others #> 6873 2012 839052 822172 Motorcyle #> 6874 1998 839052 822172 Others #> 6875 2013 844827 825439 Others #> 6876 2002 837858 822495 Others #> 6877 2005 838308 821757 Others #> 6878 2013 838308 821757 Others #> 6879 NA 842489 817588 Pedal Cycle #> 6880 2013 842489 817588 Others #> 6881 2013 840893 819339 Others #> 6882 2006 840893 819339 Others #> 6883 2013 844434 820024 Others #> 6884 2013 844434 820024 Others #> 6885 2001 844434 820024 Others #> 6886 2008 846126 827050 Others #> 6887 2000 0 0 Others #> 6888 2005 0 0 Others #> 6889 2005 0 0 Others #> 6890 NA 840589 819974 Pedal Cycle #> 6891 2010 843160 820205 Others #> 6892 2005 843160 820205 Others #> 6893 1998 841159 819027 Others #> 6894 2004 839071 820411 Others #> 6895 2012 841083 818958 Others #> 6896 2003 842448 818205 Others #> 6897 2004 842448 818205 Others #> 6898 1998 842448 818205 Others #> 6899 2005 840414 820414 Others #> 6900 2007 838262 822524 Others #> 6901 2013 838262 822524 Others #> 6902 2000 840235 819628 Others #> 6903 2003 840235 819628 Others #> 6904 2006 840235 819628 Others #> 6905 2010 840235 819628 Others #> 6906 1997 840235 819628 Others #> 6907 2006 0 0 Others #> 6908 2011 0 0 Motorcyle #> 6909 2012 838121 822141 Others #> 6910 2005 841366 819214 Motorcyle #> 6911 2000 838509 822599 Others #> 6912 2004 838509 822599 Others #> 6913 2003 839685 821680 Motorcyle #> 6914 1998 839685 821680 Others #> 6915 2001 841038 819586 Others #> 6916 2001 845188 818813 Others #> 6917 2008 845188 818813 Others #> 6918 2006 838789 822519 Others #> 6919 2007 838789 822519 Others #> 6920 2009 846311 819852 Motorcyle #> 6921 2005 842095 818652 Others #> 6922 2009 842095 818652 Others #> 6923 NA 845548 819398 Pedal Cycle #> 6924 NA 845548 819398 Pedal Cycle #> 6925 1997 838116 821662 Others #> 6926 2002 840653 819550 Others #> 6927 2014 840653 819550 Others #> 6928 2013 840653 819550 Others #> 6929 NA 848603 828008 Pedal Cycle #> 6930 2004 844298 820179 Others #> 6931 2002 844298 820179 Others #> 6932 2012 844298 820179 Others #> 6933 2001 841080 820149 Others #> 6934 1995 839976 826382 Motorcyle #> 6935 <NA> 838066 822515 Others #> 6936 <NA> 838066 822515 Others #> 6937 2006 838066 822515 Others #> 6938 2013 838066 822515 Others #> 6939 2003 838066 822515 Others #> 6940 2003 837984 822514 Others #> 6941 2005 837984 822514 Others #> 6942 2005 837984 822514 Others #> 6943 1997 837984 822514 Others #> 6944 NA 837798 821970 Pedal Cycle #> 6945 1995 843951 818474 Others #> 6946 2009 840914 819107 Others #> 6947 2007 840914 819107 Others #> 6948 2004 845414 820046 Others #> 6949 2007 845414 820046 Others #> 6950 2014 838401 822247 Others #> 6951 2011 838401 822247 Others #> 6952 2000 842425 819938 Others #> 6953 2007 842425 819938 Others #> 6954 2012 845281 819337 Others #> 6955 NA 845441 818307 Pedal Cycle #> 6956 1995 840290 820231 Others #> 6957 NA 843566 820492 Others #> 6958 2002 846060 827104 Others #> 6959 NA 851701 832709 Pedal Cycle #> 6960 2007 841136 821424 Others #> 6961 2010 841136 821424 Others #> 6962 2001 841429 818892 Others #> 6963 2006 841429 818892 Others #> 6964 2003 844780 821896 Others #> 6965 2002 844780 821896 Motorcyle #> 6966 2006 842247 818406 Others #> 6967 2010 842247 818406 Others #> 6968 2004 839895 820752 Others #> 6969 2000 0 0 Others #> 6970 2003 838120 821738 Others #> 6971 1998 840963 819444 Others #> 6972 2007 844525 820318 Others #> 6973 1996 838230 822985 Others #> 6974 1998 840314 821676 Motorcyle #> 6975 2009 839137 821270 Others #> 6976 2001 844881 819651 Others #> 6977 2011 838230 822986 Others #> 6978 2001 841433 821095 Others #> 6979 2007 840864 820234 Others #> 6980 2013 840864 820234 Others #> 6981 2003 0 0 Pedal Cycle #> 6982 2003 0 0 Pedal Cycle #> 6983 2003 0 0 Pedal Cycle #> 6984 2001 839591 821685 Others #> 6985 2000 840813 819506 Motorcyle #> 6986 2004 840933 819552 Others #> 6987 2012 841287 820382 Others #> 6988 2003 840363 821706 Others #> 6989 2007 840363 821706 Others #> 6990 2013 845923 814869 Others #> 6991 2010 845923 814869 Others #> 6992 2002 840251 820589 Others #> 6993 2008 845659 826780 Others #> 6994 2011 838090 821279 Motorcyle #> 6995 1999 838090 821279 Others #> 6996 2013 839454 821505 Others #> 6997 1998 839454 821505 Others #> 6998 1996 844434 820913 Others #> 6999 2014 841156 821408 Others #> 7000 2012 841156 821408 Others #> 7001 2009 841156 821408 Others #> 7002 2000 839077 821812 Others #> 7003 2003 839244 822060 Others #> 7004 2014 847827 828286 Others #> 7005 2008 847827 828286 Others #> 7006 2001 847827 828286 Motorcyle #> 7007 2003 840176 821478 Others #> 7008 2007 840176 821478 Others #> 7009 1998 840176 821478 Others #> 7010 2003 840176 821478 Others #> 7011 2004 842793 817386 Others #> 7012 2000 842793 817386 Others #> 7013 2003 842185 819609 Others #> 7014 1996 840685 819609 Others #> 7015 1990 841832 818997 Others #> 7016 NA 843731 820464 Pedal Cycle #> 7017 2005 839604 820811 Others #> 7018 2005 839604 820811 Others #> 7019 NA 839260 820995 Pedal Cycle #> 7020 2001 838873 822049 Others #> 7021 2001 838873 822049 Others #> 7022 2014 837464 822960 Others #> 7023 2014 838931 820503 Motorcyle #> 7024 2000 839526 821448 Others #> 7025 NA 0 0 Others #> 7026 2000 839237 821777 Others #> 7027 2005 839237 821777 Others #> 7028 2003 845492 819015 Motorcyle #> 7029 2009 845492 819015 Others #> 7030 2014 845492 819015 Others #> 7031 2014 841567 819914 Motorcyle #> 7032 2001 845492 819710 Others #> 7033 2000 845492 819710 Others #> 7034 2004 844441 820550 Others #> 7035 2010 844441 820550 Others #> 7036 2010 845946 818382 Others #> 7037 2007 845946 818382 Others #> 7038 2007 0 0 Motorcyle #> 7039 2013 0 0 Others #> 7040 1999 839663 822411 Others #> 7041 2005 839663 822411 Others #> 7042 2001 840375 820309 Others #> 7043 2014 0 0 Others #> 7044 2012 0 0 Others #> 7045 2010 840312 821672 Others #> 7046 2001 840312 821672 Others #> 7047 1997 839784 820838 Others #> 7048 2005 839784 820838 Others #> 7049 2009 841334 819640 Others #> 7050 2005 841921 818915 Others #> 7051 2007 844441 818951 Others #> 7052 2004 844441 818951 Motorcyle #> 7053 1995 847915 817226 Others #> 7054 2003 847915 817226 Others #> 7055 2011 841050 819392 Others #> 7056 2010 841050 819392 Others #> 7057 2002 844320 820890 Others #> 7058 1995 847920 817204 Motorcyle #> 7059 2002 843794 820354 Others #> 7060 2001 843794 820354 Others #> 7061 2001 843794 820354 Others #> 7062 2013 844459 818554 Others #> 7063 2014 844459 818554 Others #> 7064 2006 842318 819856 Others #> 7065 2010 842318 819856 Others #> 7066 2012 842318 819856 Others #> 7067 2013 842318 819856 Others #> 7068 2003 838819 822125 Others #> 7069 2001 846223 817038 Others #> 7070 2013 846223 817038 Motorcyle #> 7071 2012 846223 817038 Others #> 7072 2001 846223 817038 Motorcyle #> 7073 2004 845696 818699 Others #> 7074 2007 845696 818699 Others #> 7075 2007 842274 818688 Others #> 7076 2003 844710 822218 Motorcyle #> 7077 NA 844087 817988 Pedal Cycle #> 7078 2014 839222 820690 Others #> 7079 2004 839222 820690 Others #> 7080 2005 0 0 Others #> 7081 2005 0 0 Others #> 7082 1997 839514 821837 Others #> 7083 2006 845199 820032 Motorcyle #> 7084 2002 845199 820032 Others #> 7085 2003 845199 820032 Others #> 7086 2002 842440 821622 Motorcyle #> 7087 NA 847131 829016 Pedal Cycle #> 7088 NA 845422 818267 Pedal Cycle #> 7089 2006 840923 818877 Others #> 7090 2014 840923 818877 Others #> 7091 2012 841502 818845 Others #> 7092 1996 841502 818845 Motorcyle #> 7093 NA 845433 818289 Pedal Cycle #> 7094 2005 839269 819560 Others #> 7095 2004 840001 820953 Others #> 7096 2007 840001 820953 Others #> 7097 2009 840001 820953 Others #> 7098 2013 0 0 Others #> 7099 1998 838081 821772 Others #> 7100 2009 0 0 Others #> 7101 2003 0 0 Others #> 7102 2007 844758 822254 Others #> 7103 2005 839643 819643 Others #> 7104 2007 0 0 Others #> 7105 1998 839110 820485 Others #> 7106 NA 854259 824712 Pedal Cycle #> 7107 2010 837512 822965 Others #> 7108 2010 844890 825997 Others #> 7109 2001 844890 825997 Others #> 7110 2005 839498 819968 Motorcyle #> 7111 2014 838538 822920 Others #> 7112 2000 839967 821550 Others #> 7113 2013 839967 821550 Others #> 7114 2013 840244 820140 Others #> 7115 2001 844249 819998 Others #> 7116 2003 844249 819998 Others #> 7117 1997 842357 817788 Others #> 7118 NA 845252 818595 Pedal Cycle #> 7119 2013 844546 822517 Motorcyle #> 7120 2001 841743 819000 Others #> 7121 2008 0 0 Others #> 7122 1996 0 0 Others #> 7123 2010 0 0 Others #> 7124 2012 842576 817203 Others #> 7125 2001 842576 817203 Others #> 7126 2002 842576 817203 Others #> 7127 2000 840191 819949 Others #> 7128 2000 838797 822128 Others #> 7129 1998 842656 819294 Others #> 7130 2004 843037 819795 Motorcyle #> 7131 2004 839398 820022 Others #> 7132 2005 839398 820022 Others #> 7133 2001 839398 820022 Others #> 7134 2001 844958 818717 Others #> 7135 1998 844958 818717 Others #> 7136 1998 841764 820345 Others #> 7137 2014 847745 816775 Motorcyle #> 7138 2003 838216 821543 Others #> 7139 2011 839829 820580 Others #> 7140 2006 0 0 Others #> 7141 2007 0 0 Others #> 7142 2004 845021 822198 Others #> [ reached 'max' / getOption("max.print") -- omitted 145920 rows ]
# }